Statistics
| Branch: | Tag: | Revision:

root / lib / opcodes.py @ 822a50c4

History | View | Annotate | Download (52.4 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""OpCodes module
23

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

27
Every operation which modifies the cluster state is expressed via
28
opcodes.
29

30
"""
31

    
32
# this are practically structures, so disable the message about too
33
# few public methods:
34
# pylint: disable=R0903
35

    
36
import logging
37
import re
38

    
39
from ganeti import compat
40
from ganeti import constants
41
from ganeti import errors
42
from ganeti import ht
43

    
44

    
45
# Common opcode attributes
46

    
47
#: output fields for a query operation
48
_POutputFields = ("output_fields", ht.NoDefault, ht.TListOf(ht.TNonEmptyString),
49
                  "Selected output fields")
50

    
51
#: the shutdown timeout
52
_PShutdownTimeout = \
53
  ("shutdown_timeout", constants.DEFAULT_SHUTDOWN_TIMEOUT, ht.TPositiveInt,
54
   "How long to wait for instance to shut down")
55

    
56
#: the force parameter
57
_PForce = ("force", False, ht.TBool, "Whether to force the operation")
58

    
59
#: a required instance name (for single-instance LUs)
60
_PInstanceName = ("instance_name", ht.NoDefault, ht.TNonEmptyString,
61
                  "Instance name")
62

    
63
#: Whether to ignore offline nodes
64
_PIgnoreOfflineNodes = ("ignore_offline_nodes", False, ht.TBool,
65
                        "Whether to ignore offline nodes")
66

    
67
#: a required node name (for single-node LUs)
68
_PNodeName = ("node_name", ht.NoDefault, ht.TNonEmptyString, "Node name")
69

    
70
#: a required node group name (for single-group LUs)
71
_PGroupName = ("group_name", ht.NoDefault, ht.TNonEmptyString, "Group name")
72

    
73
#: Migration type (live/non-live)
74
_PMigrationMode = ("mode", None,
75
                   ht.TOr(ht.TNone, ht.TElemOf(constants.HT_MIGRATION_MODES)),
76
                   "Migration mode")
77

    
78
#: Obsolete 'live' migration mode (boolean)
79
_PMigrationLive = ("live", None, ht.TMaybeBool,
80
                   "Legacy setting for live migration, do not use")
81

    
82
#: Tag type
83
_PTagKind = ("kind", ht.NoDefault, ht.TElemOf(constants.VALID_TAG_TYPES), None)
84

    
85
#: List of tag strings
86
_PTags = ("tags", ht.NoDefault, ht.TListOf(ht.TNonEmptyString), None)
87

    
88
_PForceVariant = ("force_variant", False, ht.TBool,
89
                  "Whether to force an unknown OS variant")
90

    
91
_PWaitForSync = ("wait_for_sync", True, ht.TBool,
92
                 "Whether to wait for the disk to synchronize")
93

    
94
_PIgnoreConsistency = ("ignore_consistency", False, ht.TBool,
95
                       "Whether to ignore disk consistency")
96

    
97
_PStorageName = ("name", ht.NoDefault, ht.TMaybeString, "Storage name")
98

    
99
_PUseLocking = ("use_locking", False, ht.TBool,
100
                "Whether to use synchronization")
101

    
102
_PNameCheck = ("name_check", True, ht.TBool, "Whether to check name")
103

    
104
_PNodeGroupAllocPolicy = \
105
  ("alloc_policy", None,
106
   ht.TOr(ht.TNone, ht.TElemOf(constants.VALID_ALLOC_POLICIES)),
107
   "Instance allocation policy")
108

    
109
_PGroupNodeParams = ("ndparams", None, ht.TMaybeDict,
110
                     "Default node parameters for group")
111

    
112
_PQueryWhat = ("what", ht.NoDefault, ht.TElemOf(constants.QR_VIA_OP),
113
               "Resource(s) to query for")
114

    
115
_PEarlyRelease = ("early_release", False, ht.TBool,
116
                  "Whether to release locks as soon as possible")
117

    
118
_PIpCheckDoc = "Whether to ensure instance's IP address is inactive"
119

    
120
#: Do not remember instance state changes
121
_PNoRemember = ("no_remember", False, ht.TBool,
122
                "Do not remember the state change")
123

    
124
#: Target node for instance migration/failover
125
_PMigrationTargetNode = ("target_node", None, ht.TMaybeString,
126
                         "Target node for shared-storage instances")
127

    
128
_PStartupPaused = ("startup_paused", False, ht.TBool,
129
                   "Pause instance at startup")
130

    
131
_PVerbose = ("verbose", False, ht.TBool, "Verbose mode")
132

    
133
# Parameters for cluster verification
134
_PDebugSimulateErrors = ("debug_simulate_errors", False, ht.TBool,
135
                         "Whether to simulate errors (useful for debugging)")
136
_PErrorCodes = ("error_codes", False, ht.TBool, "Error codes")
137
_PSkipChecks = ("skip_checks", ht.EmptyList,
138
                ht.TListOf(ht.TElemOf(constants.VERIFY_OPTIONAL_CHECKS)),
139
                "Which checks to skip")
140
_PIgnoreErrors = ("ignore_errors", ht.EmptyList,
141
                  ht.TListOf(ht.TElemOf(constants.CV_ALL_ECODES_STRINGS)),
142
                  "List of error codes that should be treated as warnings")
143

    
144
# Disk parameters
145
_PDiskParams = ("diskparams", None,
146
                ht.TOr(
147
                  ht.TDictOf(ht.TElemOf(constants.DISK_TEMPLATES), ht.TDict),
148
                  ht.TNone),
149
                "Disk templates' parameter defaults")
150

    
151
# Parameters for node resource model
152
_PHvState = ("hv_state", None, ht.TMaybeDict, "Set hypervisor states")
153
_PDiskState = ("disk_state", None, ht.TMaybeDict, "Set disk states")
154

    
155
#: OP_ID conversion regular expression
156
_OPID_RE = re.compile("([a-z])([A-Z])")
157

    
158
#: Utility function for L{OpClusterSetParams}
159
_TestClusterOsList = ht.TOr(ht.TNone,
160
  ht.TListOf(ht.TAnd(ht.TList, ht.TIsLength(2),
161
    ht.TMap(ht.WithDesc("GetFirstItem")(compat.fst),
162
            ht.TElemOf(constants.DDMS_VALUES)))))
163

    
164

    
165
# TODO: Generate check from constants.INIC_PARAMS_TYPES
166
#: Utility function for testing NIC definitions
167
_TestNicDef = ht.TDictOf(ht.TElemOf(constants.INIC_PARAMS),
168
                         ht.TOr(ht.TNone, ht.TNonEmptyString))
169

    
170
_TSetParamsResultItemItems = [
171
  ht.Comment("name of changed parameter")(ht.TNonEmptyString),
172
  ht.Comment("new value")(ht.TAny),
173
  ]
174

    
175
_TSetParamsResult = \
176
  ht.TListOf(ht.TAnd(ht.TIsLength(len(_TSetParamsResultItemItems)),
177
                     ht.TItems(_TSetParamsResultItemItems)))
178

    
179
_SUMMARY_PREFIX = {
180
  "CLUSTER_": "C_",
181
  "GROUP_": "G_",
182
  "NODE_": "N_",
183
  "INSTANCE_": "I_",
184
  }
185

    
186
#: Attribute name for dependencies
187
DEPEND_ATTR = "depends"
188

    
189
#: Attribute name for comment
190
COMMENT_ATTR = "comment"
191

    
192

    
193
def _NameToId(name):
194
  """Convert an opcode class name to an OP_ID.
195

196
  @type name: string
197
  @param name: the class name, as OpXxxYyy
198
  @rtype: string
199
  @return: the name in the OP_XXXX_YYYY format
200

201
  """
202
  if not name.startswith("Op"):
203
    return None
204
  # Note: (?<=[a-z])(?=[A-Z]) would be ideal, since it wouldn't
205
  # consume any input, and hence we would just have all the elements
206
  # in the list, one by one; but it seems that split doesn't work on
207
  # non-consuming input, hence we have to process the input string a
208
  # bit
209
  name = _OPID_RE.sub(r"\1,\2", name)
210
  elems = name.split(",")
211
  return "_".join(n.upper() for n in elems)
212

    
213

    
214
def RequireFileStorage():
215
  """Checks that file storage is enabled.
216

217
  While it doesn't really fit into this module, L{utils} was deemed too large
218
  of a dependency to be imported for just one or two functions.
219

220
  @raise errors.OpPrereqError: when file storage is disabled
221

222
  """
223
  if not constants.ENABLE_FILE_STORAGE:
224
    raise errors.OpPrereqError("File storage disabled at configure time",
225
                               errors.ECODE_INVAL)
226

    
227

    
228
def RequireSharedFileStorage():
229
  """Checks that shared file storage is enabled.
230

231
  While it doesn't really fit into this module, L{utils} was deemed too large
232
  of a dependency to be imported for just one or two functions.
233

234
  @raise errors.OpPrereqError: when shared file storage is disabled
235

236
  """
237
  if not constants.ENABLE_SHARED_FILE_STORAGE:
238
    raise errors.OpPrereqError("Shared file storage disabled at"
239
                               " configure time", errors.ECODE_INVAL)
240

    
241

    
242
@ht.WithDesc("CheckFileStorage")
243
def _CheckFileStorage(value):
244
  """Ensures file storage is enabled if used.
245

246
  """
247
  if value == constants.DT_FILE:
248
    RequireFileStorage()
249
  elif value == constants.DT_SHARED_FILE:
250
    RequireSharedFileStorage()
251
  return True
252

    
253

    
254
def _BuildDiskTemplateCheck(accept_none):
255
  """Builds check for disk template.
256

257
  @type accept_none: bool
258
  @param accept_none: whether to accept None as a correct value
259
  @rtype: callable
260

261
  """
262
  template_check = ht.TElemOf(constants.DISK_TEMPLATES)
263

    
264
  if accept_none:
265
    template_check = ht.TOr(template_check, ht.TNone)
266

    
267
  return ht.TAnd(template_check, _CheckFileStorage)
268

    
269

    
270
def _CheckStorageType(storage_type):
271
  """Ensure a given storage type is valid.
272

273
  """
274
  if storage_type not in constants.VALID_STORAGE_TYPES:
275
    raise errors.OpPrereqError("Unknown storage type: %s" % storage_type,
276
                               errors.ECODE_INVAL)
277
  if storage_type == constants.ST_FILE:
278
    RequireFileStorage()
279
  return True
280

    
281

    
282
#: Storage type parameter
283
_PStorageType = ("storage_type", ht.NoDefault, _CheckStorageType,
284
                 "Storage type")
285

    
286

    
287
class _AutoOpParamSlots(type):
288
  """Meta class for opcode definitions.
289

290
  """
291
  def __new__(mcs, name, bases, attrs):
292
    """Called when a class should be created.
293

294
    @param mcs: The meta class
295
    @param name: Name of created class
296
    @param bases: Base classes
297
    @type attrs: dict
298
    @param attrs: Class attributes
299

300
    """
301
    assert "__slots__" not in attrs, \
302
      "Class '%s' defines __slots__ when it should use OP_PARAMS" % name
303
    assert "OP_ID" not in attrs, "Class '%s' defining OP_ID" % name
304

    
305
    attrs["OP_ID"] = _NameToId(name)
306

    
307
    # Always set OP_PARAMS to avoid duplicates in BaseOpCode.GetAllParams
308
    params = attrs.setdefault("OP_PARAMS", [])
309

    
310
    # Use parameter names as slots
311
    slots = [pname for (pname, _, _, _) in params]
312

    
313
    assert "OP_DSC_FIELD" not in attrs or attrs["OP_DSC_FIELD"] in slots, \
314
      "Class '%s' uses unknown field in OP_DSC_FIELD" % name
315

    
316
    attrs["__slots__"] = slots
317

    
318
    return type.__new__(mcs, name, bases, attrs)
319

    
320

    
321
class BaseOpCode(object):
322
  """A simple serializable object.
323

324
  This object serves as a parent class for OpCode without any custom
325
  field handling.
326

327
  """
328
  # pylint: disable=E1101
329
  # as OP_ID is dynamically defined
330
  __metaclass__ = _AutoOpParamSlots
331

    
332
  def __init__(self, **kwargs):
333
    """Constructor for BaseOpCode.
334

335
    The constructor takes only keyword arguments and will set
336
    attributes on this object based on the passed arguments. As such,
337
    it means that you should not pass arguments which are not in the
338
    __slots__ attribute for this class.
339

340
    """
341
    slots = self._all_slots()
342
    for key in kwargs:
343
      if key not in slots:
344
        raise TypeError("Object %s doesn't support the parameter '%s'" %
345
                        (self.__class__.__name__, key))
346
      setattr(self, key, kwargs[key])
347

    
348
  def __getstate__(self):
349
    """Generic serializer.
350

351
    This method just returns the contents of the instance as a
352
    dictionary.
353

354
    @rtype:  C{dict}
355
    @return: the instance attributes and their values
356

357
    """
358
    state = {}
359
    for name in self._all_slots():
360
      if hasattr(self, name):
361
        state[name] = getattr(self, name)
362
    return state
363

    
364
  def __setstate__(self, state):
365
    """Generic unserializer.
366

367
    This method just restores from the serialized state the attributes
368
    of the current instance.
369

370
    @param state: the serialized opcode data
371
    @type state:  C{dict}
372

373
    """
374
    if not isinstance(state, dict):
375
      raise ValueError("Invalid data to __setstate__: expected dict, got %s" %
376
                       type(state))
377

    
378
    for name in self._all_slots():
379
      if name not in state and hasattr(self, name):
380
        delattr(self, name)
381

    
382
    for name in state:
383
      setattr(self, name, state[name])
384

    
385
  @classmethod
386
  def _all_slots(cls):
387
    """Compute the list of all declared slots for a class.
388

389
    """
390
    slots = []
391
    for parent in cls.__mro__:
392
      slots.extend(getattr(parent, "__slots__", []))
393
    return slots
394

    
395
  @classmethod
396
  def GetAllParams(cls):
397
    """Compute list of all parameters for an opcode.
398

399
    """
400
    slots = []
401
    for parent in cls.__mro__:
402
      slots.extend(getattr(parent, "OP_PARAMS", []))
403
    return slots
404

    
405
  def Validate(self, set_defaults):
406
    """Validate opcode parameters, optionally setting default values.
407

408
    @type set_defaults: bool
409
    @param set_defaults: Whether to set default values
410
    @raise errors.OpPrereqError: When a parameter value doesn't match
411
                                 requirements
412

413
    """
414
    for (attr_name, default, test, _) in self.GetAllParams():
415
      assert test == ht.NoType or callable(test)
416

    
417
      if not hasattr(self, attr_name):
418
        if default == ht.NoDefault:
419
          raise errors.OpPrereqError("Required parameter '%s.%s' missing" %
420
                                     (self.OP_ID, attr_name),
421
                                     errors.ECODE_INVAL)
422
        elif set_defaults:
423
          if callable(default):
424
            dval = default()
425
          else:
426
            dval = default
427
          setattr(self, attr_name, dval)
428

    
429
      if test == ht.NoType:
430
        # no tests here
431
        continue
432

    
433
      if set_defaults or hasattr(self, attr_name):
434
        attr_val = getattr(self, attr_name)
435
        if not test(attr_val):
436
          logging.error("OpCode %s, parameter %s, has invalid type %s/value %s",
437
                        self.OP_ID, attr_name, type(attr_val), attr_val)
438
          raise errors.OpPrereqError("Parameter '%s.%s' fails validation" %
439
                                     (self.OP_ID, attr_name),
440
                                     errors.ECODE_INVAL)
441

    
442

    
443
def _BuildJobDepCheck(relative):
444
  """Builds check for job dependencies (L{DEPEND_ATTR}).
445

446
  @type relative: bool
447
  @param relative: Whether to accept relative job IDs (negative)
448
  @rtype: callable
449

450
  """
451
  if relative:
452
    job_id = ht.TOr(ht.TJobId, ht.TRelativeJobId)
453
  else:
454
    job_id = ht.TJobId
455

    
456
  job_dep = \
457
    ht.TAnd(ht.TIsLength(2),
458
            ht.TItems([job_id,
459
                       ht.TListOf(ht.TElemOf(constants.JOBS_FINALIZED))]))
460

    
461
  return ht.TOr(ht.TNone, ht.TListOf(job_dep))
462

    
463

    
464
TNoRelativeJobDependencies = _BuildJobDepCheck(False)
465

    
466
#: List of submission status and job ID as returned by C{SubmitManyJobs}
467
_TJobIdListItem = \
468
  ht.TAnd(ht.TIsLength(2),
469
          ht.TItems([ht.Comment("success")(ht.TBool),
470
                     ht.Comment("Job ID if successful, error message"
471
                                " otherwise")(ht.TOr(ht.TString,
472
                                                     ht.TJobId))]))
473
TJobIdList = ht.TListOf(_TJobIdListItem)
474

    
475
#: Result containing only list of submitted jobs
476
TJobIdListOnly = ht.TStrictDict(True, True, {
477
  constants.JOB_IDS_KEY: ht.Comment("List of submitted jobs")(TJobIdList),
478
  })
479

    
480

    
481
class OpCode(BaseOpCode):
482
  """Abstract OpCode.
483

484
  This is the root of the actual OpCode hierarchy. All clases derived
485
  from this class should override OP_ID.
486

487
  @cvar OP_ID: The ID of this opcode. This should be unique amongst all
488
               children of this class.
489
  @cvar OP_DSC_FIELD: The name of a field whose value will be included in the
490
                      string returned by Summary(); see the docstring of that
491
                      method for details).
492
  @cvar OP_PARAMS: List of opcode attributes, the default values they should
493
                   get if not already defined, and types they must match.
494
  @cvar OP_RESULT: Callable to verify opcode result
495
  @cvar WITH_LU: Boolean that specifies whether this should be included in
496
      mcpu's dispatch table
497
  @ivar dry_run: Whether the LU should be run in dry-run mode, i.e. just
498
                 the check steps
499
  @ivar priority: Opcode priority for queue
500

501
  """
502
  # pylint: disable=E1101
503
  # as OP_ID is dynamically defined
504
  WITH_LU = True
505
  OP_PARAMS = [
506
    ("dry_run", None, ht.TMaybeBool, "Run checks only, don't execute"),
507
    ("debug_level", None, ht.TOr(ht.TNone, ht.TPositiveInt), "Debug level"),
508
    ("priority", constants.OP_PRIO_DEFAULT,
509
     ht.TElemOf(constants.OP_PRIO_SUBMIT_VALID), "Opcode priority"),
510
    (DEPEND_ATTR, None, _BuildJobDepCheck(True),
511
     "Job dependencies; if used through ``SubmitManyJobs`` relative (negative)"
512
     " job IDs can be used; see :doc:`design document <design-chained-jobs>`"
513
     " for details"),
514
    (COMMENT_ATTR, None, ht.TMaybeString,
515
     "Comment describing the purpose of the opcode"),
516
    ]
517
  OP_RESULT = None
518

    
519
  def __getstate__(self):
520
    """Specialized getstate for opcodes.
521

522
    This method adds to the state dictionary the OP_ID of the class,
523
    so that on unload we can identify the correct class for
524
    instantiating the opcode.
525

526
    @rtype:   C{dict}
527
    @return:  the state as a dictionary
528

529
    """
530
    data = BaseOpCode.__getstate__(self)
531
    data["OP_ID"] = self.OP_ID
532
    return data
533

    
534
  @classmethod
535
  def LoadOpCode(cls, data):
536
    """Generic load opcode method.
537

538
    The method identifies the correct opcode class from the dict-form
539
    by looking for a OP_ID key, if this is not found, or its value is
540
    not available in this module as a child of this class, we fail.
541

542
    @type data:  C{dict}
543
    @param data: the serialized opcode
544

545
    """
546
    if not isinstance(data, dict):
547
      raise ValueError("Invalid data to LoadOpCode (%s)" % type(data))
548
    if "OP_ID" not in data:
549
      raise ValueError("Invalid data to LoadOpcode, missing OP_ID")
550
    op_id = data["OP_ID"]
551
    op_class = None
552
    if op_id in OP_MAPPING:
553
      op_class = OP_MAPPING[op_id]
554
    else:
555
      raise ValueError("Invalid data to LoadOpCode: OP_ID %s unsupported" %
556
                       op_id)
557
    op = op_class()
558
    new_data = data.copy()
559
    del new_data["OP_ID"]
560
    op.__setstate__(new_data)
561
    return op
562

    
563
  def Summary(self):
564
    """Generates a summary description of this opcode.
565

566
    The summary is the value of the OP_ID attribute (without the "OP_"
567
    prefix), plus the value of the OP_DSC_FIELD attribute, if one was
568
    defined; this field should allow to easily identify the operation
569
    (for an instance creation job, e.g., it would be the instance
570
    name).
571

572
    """
573
    assert self.OP_ID is not None and len(self.OP_ID) > 3
574
    # all OP_ID start with OP_, we remove that
575
    txt = self.OP_ID[3:]
576
    field_name = getattr(self, "OP_DSC_FIELD", None)
577
    if field_name:
578
      field_value = getattr(self, field_name, None)
579
      if isinstance(field_value, (list, tuple)):
580
        field_value = ",".join(str(i) for i in field_value)
581
      txt = "%s(%s)" % (txt, field_value)
582
    return txt
583

    
584
  def TinySummary(self):
585
    """Generates a compact summary description of the opcode.
586

587
    """
588
    assert self.OP_ID.startswith("OP_")
589

    
590
    text = self.OP_ID[3:]
591

    
592
    for (prefix, supplement) in _SUMMARY_PREFIX.items():
593
      if text.startswith(prefix):
594
        return supplement + text[len(prefix):]
595

    
596
    return text
597

    
598

    
599
# cluster opcodes
600

    
601
class OpClusterPostInit(OpCode):
602
  """Post cluster initialization.
603

604
  This opcode does not touch the cluster at all. Its purpose is to run hooks
605
  after the cluster has been initialized.
606

607
  """
608

    
609

    
610
class OpClusterDestroy(OpCode):
611
  """Destroy the cluster.
612

613
  This opcode has no other parameters. All the state is irreversibly
614
  lost after the execution of this opcode.
615

616
  """
617

    
618

    
619
class OpClusterQuery(OpCode):
620
  """Query cluster information."""
621

    
622

    
623
class OpClusterVerify(OpCode):
624
  """Submits all jobs necessary to verify the cluster.
625

626
  """
627
  OP_PARAMS = [
628
    _PDebugSimulateErrors,
629
    _PErrorCodes,
630
    _PSkipChecks,
631
    _PIgnoreErrors,
632
    _PVerbose,
633
    ("group_name", None, ht.TMaybeString, "Group to verify")
634
    ]
635
  OP_RESULT = TJobIdListOnly
636

    
637

    
638
class OpClusterVerifyConfig(OpCode):
639
  """Verify the cluster config.
640

641
  """
642
  OP_PARAMS = [
643
    _PDebugSimulateErrors,
644
    _PErrorCodes,
645
    _PIgnoreErrors,
646
    _PVerbose,
647
    ]
648
  OP_RESULT = ht.TBool
649

    
650

    
651
class OpClusterVerifyGroup(OpCode):
652
  """Run verify on a node group from the cluster.
653

654
  @type skip_checks: C{list}
655
  @ivar skip_checks: steps to be skipped from the verify process; this
656
                     needs to be a subset of
657
                     L{constants.VERIFY_OPTIONAL_CHECKS}; currently
658
                     only L{constants.VERIFY_NPLUSONE_MEM} can be passed
659

660
  """
661
  OP_DSC_FIELD = "group_name"
662
  OP_PARAMS = [
663
    _PGroupName,
664
    _PDebugSimulateErrors,
665
    _PErrorCodes,
666
    _PSkipChecks,
667
    _PIgnoreErrors,
668
    _PVerbose,
669
    ]
670
  OP_RESULT = ht.TBool
671

    
672

    
673
class OpClusterVerifyDisks(OpCode):
674
  """Verify the cluster disks.
675

676
  """
677
  OP_RESULT = TJobIdListOnly
678

    
679

    
680
class OpGroupVerifyDisks(OpCode):
681
  """Verifies the status of all disks in a node group.
682

683
  Result: a tuple of three elements:
684
    - dict of node names with issues (values: error msg)
685
    - list of instances with degraded disks (that should be activated)
686
    - dict of instances with missing logical volumes (values: (node, vol)
687
      pairs with details about the missing volumes)
688

689
  In normal operation, all lists should be empty. A non-empty instance
690
  list (3rd element of the result) is still ok (errors were fixed) but
691
  non-empty node list means some node is down, and probably there are
692
  unfixable drbd errors.
693

694
  Note that only instances that are drbd-based are taken into
695
  consideration. This might need to be revisited in the future.
696

697
  """
698
  OP_DSC_FIELD = "group_name"
699
  OP_PARAMS = [
700
    _PGroupName,
701
    ]
702
  OP_RESULT = \
703
    ht.TAnd(ht.TIsLength(3),
704
            ht.TItems([ht.TDictOf(ht.TString, ht.TString),
705
                       ht.TListOf(ht.TString),
706
                       ht.TDictOf(ht.TString,
707
                                  ht.TListOf(ht.TListOf(ht.TString)))]))
708

    
709

    
710
class OpClusterRepairDiskSizes(OpCode):
711
  """Verify the disk sizes of the instances and fixes configuration
712
  mimatches.
713

714
  Parameters: optional instances list, in case we want to restrict the
715
  checks to only a subset of the instances.
716

717
  Result: a list of tuples, (instance, disk, new-size) for changed
718
  configurations.
719

720
  In normal operation, the list should be empty.
721

722
  @type instances: list
723
  @ivar instances: the list of instances to check, or empty for all instances
724

725
  """
726
  OP_PARAMS = [
727
    ("instances", ht.EmptyList, ht.TListOf(ht.TNonEmptyString), None),
728
    ]
729

    
730

    
731
class OpClusterConfigQuery(OpCode):
732
  """Query cluster configuration values."""
733
  OP_PARAMS = [
734
    _POutputFields
735
    ]
736

    
737

    
738
class OpClusterRename(OpCode):
739
  """Rename the cluster.
740

741
  @type name: C{str}
742
  @ivar name: The new name of the cluster. The name and/or the master IP
743
              address will be changed to match the new name and its IP
744
              address.
745

746
  """
747
  OP_DSC_FIELD = "name"
748
  OP_PARAMS = [
749
    ("name", ht.NoDefault, ht.TNonEmptyString, None),
750
    ]
751

    
752

    
753
class OpClusterSetParams(OpCode):
754
  """Change the parameters of the cluster.
755

756
  @type vg_name: C{str} or C{None}
757
  @ivar vg_name: The new volume group name or None to disable LVM usage.
758

759
  """
760
  OP_PARAMS = [
761
    _PHvState,
762
    _PDiskState,
763
    ("vg_name", None, ht.TMaybeString, "Volume group name"),
764
    ("enabled_hypervisors", None,
765
     ht.TOr(ht.TAnd(ht.TListOf(ht.TElemOf(constants.HYPER_TYPES)), ht.TTrue),
766
            ht.TNone),
767
     "List of enabled hypervisors"),
768
    ("hvparams", None, ht.TOr(ht.TDictOf(ht.TNonEmptyString, ht.TDict),
769
                              ht.TNone),
770
     "Cluster-wide hypervisor parameter defaults, hypervisor-dependent"),
771
    ("beparams", None, ht.TOr(ht.TDict, ht.TNone),
772
     "Cluster-wide backend parameter defaults"),
773
    ("os_hvp", None, ht.TOr(ht.TDictOf(ht.TNonEmptyString, ht.TDict),
774
                            ht.TNone),
775
     "Cluster-wide per-OS hypervisor parameter defaults"),
776
    ("osparams", None, ht.TOr(ht.TDictOf(ht.TNonEmptyString, ht.TDict),
777
                              ht.TNone),
778
     "Cluster-wide OS parameter defaults"),
779
    _PDiskParams,
780
    ("candidate_pool_size", None, ht.TOr(ht.TStrictPositiveInt, ht.TNone),
781
     "Master candidate pool size"),
782
    ("uid_pool", None, ht.NoType,
783
     "Set UID pool, must be list of lists describing UID ranges (two items,"
784
     " start and end inclusive)"),
785
    ("add_uids", None, ht.NoType,
786
     "Extend UID pool, must be list of lists describing UID ranges (two"
787
     " items, start and end inclusive) to be added"),
788
    ("remove_uids", None, ht.NoType,
789
     "Shrink UID pool, must be list of lists describing UID ranges (two"
790
     " items, start and end inclusive) to be removed"),
791
    ("maintain_node_health", None, ht.TMaybeBool,
792
     "Whether to automatically maintain node health"),
793
    ("prealloc_wipe_disks", None, ht.TMaybeBool,
794
     "Whether to wipe disks before allocating them to instances"),
795
    ("nicparams", None, ht.TMaybeDict, "Cluster-wide NIC parameter defaults"),
796
    ("ndparams", None, ht.TMaybeDict, "Cluster-wide node parameter defaults"),
797
    ("ipolicy", None, ht.TMaybeDict, "Cluster-wide instance policy specs"),
798
    ("drbd_helper", None, ht.TOr(ht.TString, ht.TNone), "DRBD helper program"),
799
    ("default_iallocator", None, ht.TOr(ht.TString, ht.TNone),
800
     "Default iallocator for cluster"),
801
    ("master_netdev", None, ht.TOr(ht.TString, ht.TNone),
802
     "Master network device"),
803
    ("master_netmask", None, ht.TOr(ht.TInt, ht.TNone),
804
     "Netmask of the master IP"),
805
    ("reserved_lvs", None, ht.TOr(ht.TListOf(ht.TNonEmptyString), ht.TNone),
806
     "List of reserved LVs"),
807
    ("hidden_os", None, _TestClusterOsList,
808
     "Modify list of hidden operating systems. Each modification must have"
809
     " two items, the operation and the OS name. The operation can be"
810
     " ``%s`` or ``%s``." % (constants.DDM_ADD, constants.DDM_REMOVE)),
811
    ("blacklisted_os", None, _TestClusterOsList,
812
     "Modify list of blacklisted operating systems. Each modification must have"
813
     " two items, the operation and the OS name. The operation can be"
814
     " ``%s`` or ``%s``." % (constants.DDM_ADD, constants.DDM_REMOVE)),
815
    ("use_external_mip_script", None, ht.TMaybeBool,
816
     "Whether to use an external master IP address setup script"),
817
    ]
818

    
819

    
820
class OpClusterRedistConf(OpCode):
821
  """Force a full push of the cluster configuration.
822

823
  """
824

    
825

    
826
class OpClusterActivateMasterIp(OpCode):
827
  """Activate the master IP on the master node.
828

829
  """
830

    
831

    
832
class OpClusterDeactivateMasterIp(OpCode):
833
  """Deactivate the master IP on the master node.
834

835
  """
836

    
837

    
838
class OpQuery(OpCode):
839
  """Query for resources/items.
840

841
  @ivar what: Resources to query for, must be one of L{constants.QR_VIA_OP}
842
  @ivar fields: List of fields to retrieve
843
  @ivar qfilter: Query filter
844

845
  """
846
  OP_DSC_FIELD = "what"
847
  OP_PARAMS = [
848
    _PQueryWhat,
849
    _PUseLocking,
850
    ("fields", ht.NoDefault, ht.TListOf(ht.TNonEmptyString),
851
     "Requested fields"),
852
    ("qfilter", None, ht.TOr(ht.TNone, ht.TListOf),
853
     "Query filter"),
854
    ]
855

    
856

    
857
class OpQueryFields(OpCode):
858
  """Query for available resource/item fields.
859

860
  @ivar what: Resources to query for, must be one of L{constants.QR_VIA_OP}
861
  @ivar fields: List of fields to retrieve
862

863
  """
864
  OP_DSC_FIELD = "what"
865
  OP_PARAMS = [
866
    _PQueryWhat,
867
    ("fields", None, ht.TOr(ht.TNone, ht.TListOf(ht.TNonEmptyString)),
868
     "Requested fields; if not given, all are returned"),
869
    ]
870

    
871

    
872
class OpOobCommand(OpCode):
873
  """Interact with OOB."""
874
  OP_PARAMS = [
875
    ("node_names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
876
     "List of nodes to run the OOB command against"),
877
    ("command", None, ht.TElemOf(constants.OOB_COMMANDS),
878
     "OOB command to be run"),
879
    ("timeout", constants.OOB_TIMEOUT, ht.TInt,
880
     "Timeout before the OOB helper will be terminated"),
881
    ("ignore_status", False, ht.TBool,
882
     "Ignores the node offline status for power off"),
883
    ("power_delay", constants.OOB_POWER_DELAY, ht.TPositiveFloat,
884
     "Time in seconds to wait between powering on nodes"),
885
    ]
886

    
887

    
888
# node opcodes
889

    
890
class OpNodeRemove(OpCode):
891
  """Remove a node.
892

893
  @type node_name: C{str}
894
  @ivar node_name: The name of the node to remove. If the node still has
895
                   instances on it, the operation will fail.
896

897
  """
898
  OP_DSC_FIELD = "node_name"
899
  OP_PARAMS = [
900
    _PNodeName,
901
    ]
902

    
903

    
904
class OpNodeAdd(OpCode):
905
  """Add a node to the cluster.
906

907
  @type node_name: C{str}
908
  @ivar node_name: The name of the node to add. This can be a short name,
909
                   but it will be expanded to the FQDN.
910
  @type primary_ip: IP address
911
  @ivar primary_ip: The primary IP of the node. This will be ignored when the
912
                    opcode is submitted, but will be filled during the node
913
                    add (so it will be visible in the job query).
914
  @type secondary_ip: IP address
915
  @ivar secondary_ip: The secondary IP of the node. This needs to be passed
916
                      if the cluster has been initialized in 'dual-network'
917
                      mode, otherwise it must not be given.
918
  @type readd: C{bool}
919
  @ivar readd: Whether to re-add an existing node to the cluster. If
920
               this is not passed, then the operation will abort if the node
921
               name is already in the cluster; use this parameter to 'repair'
922
               a node that had its configuration broken, or was reinstalled
923
               without removal from the cluster.
924
  @type group: C{str}
925
  @ivar group: The node group to which this node will belong.
926
  @type vm_capable: C{bool}
927
  @ivar vm_capable: The vm_capable node attribute
928
  @type master_capable: C{bool}
929
  @ivar master_capable: The master_capable node attribute
930

931
  """
932
  OP_DSC_FIELD = "node_name"
933
  OP_PARAMS = [
934
    _PNodeName,
935
    ("primary_ip", None, ht.NoType, "Primary IP address"),
936
    ("secondary_ip", None, ht.TMaybeString, "Secondary IP address"),
937
    ("readd", False, ht.TBool, "Whether node is re-added to cluster"),
938
    ("group", None, ht.TMaybeString, "Initial node group"),
939
    ("master_capable", None, ht.TMaybeBool,
940
     "Whether node can become master or master candidate"),
941
    ("vm_capable", None, ht.TMaybeBool,
942
     "Whether node can host instances"),
943
    ("ndparams", None, ht.TMaybeDict, "Node parameters"),
944
    ]
945

    
946

    
947
class OpNodeQuery(OpCode):
948
  """Compute the list of nodes."""
949
  OP_PARAMS = [
950
    _POutputFields,
951
    _PUseLocking,
952
    ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
953
     "Empty list to query all nodes, node names otherwise"),
954
    ]
955

    
956

    
957
class OpNodeQueryvols(OpCode):
958
  """Get list of volumes on node."""
959
  OP_PARAMS = [
960
    _POutputFields,
961
    ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
962
     "Empty list to query all nodes, node names otherwise"),
963
    ]
964

    
965

    
966
class OpNodeQueryStorage(OpCode):
967
  """Get information on storage for node(s)."""
968
  OP_PARAMS = [
969
    _POutputFields,
970
    _PStorageType,
971
    ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString), "List of nodes"),
972
    ("name", None, ht.TMaybeString, "Storage name"),
973
    ]
974

    
975

    
976
class OpNodeModifyStorage(OpCode):
977
  """Modifies the properies of a storage unit"""
978
  OP_PARAMS = [
979
    _PNodeName,
980
    _PStorageType,
981
    _PStorageName,
982
    ("changes", ht.NoDefault, ht.TDict, "Requested changes"),
983
    ]
984

    
985

    
986
class OpRepairNodeStorage(OpCode):
987
  """Repairs the volume group on a node."""
988
  OP_DSC_FIELD = "node_name"
989
  OP_PARAMS = [
990
    _PNodeName,
991
    _PStorageType,
992
    _PStorageName,
993
    _PIgnoreConsistency,
994
    ]
995

    
996

    
997
class OpNodeSetParams(OpCode):
998
  """Change the parameters of a node."""
999
  OP_DSC_FIELD = "node_name"
1000
  OP_PARAMS = [
1001
    _PNodeName,
1002
    _PForce,
1003
    _PHvState,
1004
    _PDiskState,
1005
    ("master_candidate", None, ht.TMaybeBool,
1006
     "Whether the node should become a master candidate"),
1007
    ("offline", None, ht.TMaybeBool,
1008
     "Whether the node should be marked as offline"),
1009
    ("drained", None, ht.TMaybeBool,
1010
     "Whether the node should be marked as drained"),
1011
    ("auto_promote", False, ht.TBool,
1012
     "Whether node(s) should be promoted to master candidate if necessary"),
1013
    ("master_capable", None, ht.TMaybeBool,
1014
     "Denote whether node can become master or master candidate"),
1015
    ("vm_capable", None, ht.TMaybeBool,
1016
     "Denote whether node can host instances"),
1017
    ("secondary_ip", None, ht.TMaybeString,
1018
     "Change node's secondary IP address"),
1019
    ("ndparams", None, ht.TMaybeDict, "Set node parameters"),
1020
    ("powered", None, ht.TMaybeBool,
1021
     "Whether the node should be marked as powered"),
1022
    ]
1023
  OP_RESULT = _TSetParamsResult
1024

    
1025

    
1026
class OpNodePowercycle(OpCode):
1027
  """Tries to powercycle a node."""
1028
  OP_DSC_FIELD = "node_name"
1029
  OP_PARAMS = [
1030
    _PNodeName,
1031
    _PForce,
1032
    ]
1033

    
1034

    
1035
class OpNodeMigrate(OpCode):
1036
  """Migrate all instances from a node."""
1037
  OP_DSC_FIELD = "node_name"
1038
  OP_PARAMS = [
1039
    _PNodeName,
1040
    _PMigrationMode,
1041
    _PMigrationLive,
1042
    _PMigrationTargetNode,
1043
    ("iallocator", None, ht.TMaybeString,
1044
     "Iallocator for deciding the target node for shared-storage instances"),
1045
    ]
1046
  OP_RESULT = TJobIdListOnly
1047

    
1048

    
1049
class OpNodeEvacuate(OpCode):
1050
  """Evacuate instances off a number of nodes."""
1051
  OP_DSC_FIELD = "node_name"
1052
  OP_PARAMS = [
1053
    _PEarlyRelease,
1054
    _PNodeName,
1055
    ("remote_node", None, ht.TMaybeString, "New secondary node"),
1056
    ("iallocator", None, ht.TMaybeString, "Iallocator for computing solution"),
1057
    ("mode", ht.NoDefault, ht.TElemOf(constants.NODE_EVAC_MODES),
1058
     "Node evacuation mode"),
1059
    ]
1060
  OP_RESULT = TJobIdListOnly
1061

    
1062

    
1063
# instance opcodes
1064

    
1065
class OpInstanceCreate(OpCode):
1066
  """Create an instance.
1067

1068
  @ivar instance_name: Instance name
1069
  @ivar mode: Instance creation mode (one of L{constants.INSTANCE_CREATE_MODES})
1070
  @ivar source_handshake: Signed handshake from source (remote import only)
1071
  @ivar source_x509_ca: Source X509 CA in PEM format (remote import only)
1072
  @ivar source_instance_name: Previous name of instance (remote import only)
1073
  @ivar source_shutdown_timeout: Shutdown timeout used for source instance
1074
    (remote import only)
1075

1076
  """
1077
  OP_DSC_FIELD = "instance_name"
1078
  OP_PARAMS = [
1079
    _PInstanceName,
1080
    _PForceVariant,
1081
    _PWaitForSync,
1082
    _PNameCheck,
1083
    ("beparams", ht.EmptyDict, ht.TDict, "Backend parameters for instance"),
1084
    ("disks", ht.NoDefault,
1085
     # TODO: Generate check from constants.IDISK_PARAMS_TYPES
1086
     ht.TListOf(ht.TDictOf(ht.TElemOf(constants.IDISK_PARAMS),
1087
                           ht.TOr(ht.TNonEmptyString, ht.TInt))),
1088
     "Disk descriptions, for example ``[{\"%s\": 100}, {\"%s\": 5}]``;"
1089
     " each disk definition must contain a ``%s`` value and"
1090
     " can contain an optional ``%s`` value denoting the disk access mode"
1091
     " (%s)" %
1092
     (constants.IDISK_SIZE, constants.IDISK_SIZE, constants.IDISK_SIZE,
1093
      constants.IDISK_MODE,
1094
      " or ".join("``%s``" % i for i in sorted(constants.DISK_ACCESS_SET)))),
1095
    ("disk_template", ht.NoDefault, _BuildDiskTemplateCheck(True),
1096
     "Disk template"),
1097
    ("file_driver", None, ht.TOr(ht.TNone, ht.TElemOf(constants.FILE_DRIVER)),
1098
     "Driver for file-backed disks"),
1099
    ("file_storage_dir", None, ht.TMaybeString,
1100
     "Directory for storing file-backed disks"),
1101
    ("hvparams", ht.EmptyDict, ht.TDict,
1102
     "Hypervisor parameters for instance, hypervisor-dependent"),
1103
    ("hypervisor", None, ht.TMaybeString, "Hypervisor"),
1104
    ("iallocator", None, ht.TMaybeString,
1105
     "Iallocator for deciding which node(s) to use"),
1106
    ("identify_defaults", False, ht.TBool,
1107
     "Reset instance parameters to default if equal"),
1108
    ("ip_check", True, ht.TBool, _PIpCheckDoc),
1109
    ("mode", ht.NoDefault, ht.TElemOf(constants.INSTANCE_CREATE_MODES),
1110
     "Instance creation mode"),
1111
    ("nics", ht.NoDefault, ht.TListOf(_TestNicDef),
1112
     "List of NIC (network interface) definitions, for example"
1113
     " ``[{}, {}, {\"%s\": \"198.51.100.4\"}]``; each NIC definition can"
1114
     " contain the optional values %s" %
1115
     (constants.INIC_IP,
1116
      ", ".join("``%s``" % i for i in sorted(constants.INIC_PARAMS)))),
1117
    ("no_install", None, ht.TMaybeBool,
1118
     "Do not install the OS (will disable automatic start)"),
1119
    ("osparams", ht.EmptyDict, ht.TDict, "OS parameters for instance"),
1120
    ("os_type", None, ht.TMaybeString, "Operating system"),
1121
    ("pnode", None, ht.TMaybeString, "Primary node"),
1122
    ("snode", None, ht.TMaybeString, "Secondary node"),
1123
    ("source_handshake", None, ht.TOr(ht.TList, ht.TNone),
1124
     "Signed handshake from source (remote import only)"),
1125
    ("source_instance_name", None, ht.TMaybeString,
1126
     "Source instance name (remote import only)"),
1127
    ("source_shutdown_timeout", constants.DEFAULT_SHUTDOWN_TIMEOUT,
1128
     ht.TPositiveInt,
1129
     "How long source instance was given to shut down (remote import only)"),
1130
    ("source_x509_ca", None, ht.TMaybeString,
1131
     "Source X509 CA in PEM format (remote import only)"),
1132
    ("src_node", None, ht.TMaybeString, "Source node for import"),
1133
    ("src_path", None, ht.TMaybeString, "Source directory for import"),
1134
    ("start", True, ht.TBool, "Whether to start instance after creation"),
1135
    ("tags", ht.EmptyList, ht.TListOf(ht.TNonEmptyString), "Instance tags"),
1136
    ]
1137
  OP_RESULT = ht.Comment("instance nodes")(ht.TListOf(ht.TNonEmptyString))
1138

    
1139

    
1140
class OpInstanceReinstall(OpCode):
1141
  """Reinstall an instance's OS."""
1142
  OP_DSC_FIELD = "instance_name"
1143
  OP_PARAMS = [
1144
    _PInstanceName,
1145
    _PForceVariant,
1146
    ("os_type", None, ht.TMaybeString, "Instance operating system"),
1147
    ("osparams", None, ht.TMaybeDict, "Temporary OS parameters"),
1148
    ]
1149

    
1150

    
1151
class OpInstanceRemove(OpCode):
1152
  """Remove an instance."""
1153
  OP_DSC_FIELD = "instance_name"
1154
  OP_PARAMS = [
1155
    _PInstanceName,
1156
    _PShutdownTimeout,
1157
    ("ignore_failures", False, ht.TBool,
1158
     "Whether to ignore failures during removal"),
1159
    ]
1160

    
1161

    
1162
class OpInstanceRename(OpCode):
1163
  """Rename an instance."""
1164
  OP_PARAMS = [
1165
    _PInstanceName,
1166
    _PNameCheck,
1167
    ("new_name", ht.NoDefault, ht.TNonEmptyString, "New instance name"),
1168
    ("ip_check", False, ht.TBool, _PIpCheckDoc),
1169
    ]
1170
  OP_RESULT = ht.Comment("New instance name")(ht.TNonEmptyString)
1171

    
1172

    
1173
class OpInstanceStartup(OpCode):
1174
  """Startup an instance."""
1175
  OP_DSC_FIELD = "instance_name"
1176
  OP_PARAMS = [
1177
    _PInstanceName,
1178
    _PForce,
1179
    _PIgnoreOfflineNodes,
1180
    ("hvparams", ht.EmptyDict, ht.TDict,
1181
     "Temporary hypervisor parameters, hypervisor-dependent"),
1182
    ("beparams", ht.EmptyDict, ht.TDict, "Temporary backend parameters"),
1183
    _PNoRemember,
1184
    _PStartupPaused,
1185
    ]
1186

    
1187

    
1188
class OpInstanceShutdown(OpCode):
1189
  """Shutdown an instance."""
1190
  OP_DSC_FIELD = "instance_name"
1191
  OP_PARAMS = [
1192
    _PInstanceName,
1193
    _PIgnoreOfflineNodes,
1194
    ("timeout", constants.DEFAULT_SHUTDOWN_TIMEOUT, ht.TPositiveInt,
1195
     "How long to wait for instance to shut down"),
1196
    _PNoRemember,
1197
    ]
1198

    
1199

    
1200
class OpInstanceReboot(OpCode):
1201
  """Reboot an instance."""
1202
  OP_DSC_FIELD = "instance_name"
1203
  OP_PARAMS = [
1204
    _PInstanceName,
1205
    _PShutdownTimeout,
1206
    ("ignore_secondaries", False, ht.TBool,
1207
     "Whether to start the instance even if secondary disks are failing"),
1208
    ("reboot_type", ht.NoDefault, ht.TElemOf(constants.REBOOT_TYPES),
1209
     "How to reboot instance"),
1210
    ]
1211

    
1212

    
1213
class OpInstanceReplaceDisks(OpCode):
1214
  """Replace the disks of an instance."""
1215
  OP_DSC_FIELD = "instance_name"
1216
  OP_PARAMS = [
1217
    _PInstanceName,
1218
    _PEarlyRelease,
1219
    ("mode", ht.NoDefault, ht.TElemOf(constants.REPLACE_MODES),
1220
     "Replacement mode"),
1221
    ("disks", ht.EmptyList, ht.TListOf(ht.TPositiveInt),
1222
     "Disk indexes"),
1223
    ("remote_node", None, ht.TMaybeString, "New secondary node"),
1224
    ("iallocator", None, ht.TMaybeString,
1225
     "Iallocator for deciding new secondary node"),
1226
    ]
1227

    
1228

    
1229
class OpInstanceFailover(OpCode):
1230
  """Failover an instance."""
1231
  OP_DSC_FIELD = "instance_name"
1232
  OP_PARAMS = [
1233
    _PInstanceName,
1234
    _PShutdownTimeout,
1235
    _PIgnoreConsistency,
1236
    _PMigrationTargetNode,
1237
    ("iallocator", None, ht.TMaybeString,
1238
     "Iallocator for deciding the target node for shared-storage instances"),
1239
    ]
1240

    
1241

    
1242
class OpInstanceMigrate(OpCode):
1243
  """Migrate an instance.
1244

1245
  This migrates (without shutting down an instance) to its secondary
1246
  node.
1247

1248
  @ivar instance_name: the name of the instance
1249
  @ivar mode: the migration mode (live, non-live or None for auto)
1250

1251
  """
1252
  OP_DSC_FIELD = "instance_name"
1253
  OP_PARAMS = [
1254
    _PInstanceName,
1255
    _PMigrationMode,
1256
    _PMigrationLive,
1257
    _PMigrationTargetNode,
1258
    ("cleanup", False, ht.TBool,
1259
     "Whether a previously failed migration should be cleaned up"),
1260
    ("iallocator", None, ht.TMaybeString,
1261
     "Iallocator for deciding the target node for shared-storage instances"),
1262
    ("allow_failover", False, ht.TBool,
1263
     "Whether we can fallback to failover if migration is not possible"),
1264
    ]
1265

    
1266

    
1267
class OpInstanceMove(OpCode):
1268
  """Move an instance.
1269

1270
  This move (with shutting down an instance and data copying) to an
1271
  arbitrary node.
1272

1273
  @ivar instance_name: the name of the instance
1274
  @ivar target_node: the destination node
1275

1276
  """
1277
  OP_DSC_FIELD = "instance_name"
1278
  OP_PARAMS = [
1279
    _PInstanceName,
1280
    _PShutdownTimeout,
1281
    ("target_node", ht.NoDefault, ht.TNonEmptyString, "Target node"),
1282
    _PIgnoreConsistency,
1283
    ]
1284

    
1285

    
1286
class OpInstanceConsole(OpCode):
1287
  """Connect to an instance's console."""
1288
  OP_DSC_FIELD = "instance_name"
1289
  OP_PARAMS = [
1290
    _PInstanceName
1291
    ]
1292

    
1293

    
1294
class OpInstanceActivateDisks(OpCode):
1295
  """Activate an instance's disks."""
1296
  OP_DSC_FIELD = "instance_name"
1297
  OP_PARAMS = [
1298
    _PInstanceName,
1299
    ("ignore_size", False, ht.TBool, "Whether to ignore recorded size"),
1300
    ]
1301

    
1302

    
1303
class OpInstanceDeactivateDisks(OpCode):
1304
  """Deactivate an instance's disks."""
1305
  OP_DSC_FIELD = "instance_name"
1306
  OP_PARAMS = [
1307
    _PInstanceName,
1308
    _PForce,
1309
    ]
1310

    
1311

    
1312
class OpInstanceRecreateDisks(OpCode):
1313
  """Recreate an instance's disks."""
1314
  OP_DSC_FIELD = "instance_name"
1315
  OP_PARAMS = [
1316
    _PInstanceName,
1317
    ("disks", ht.EmptyList, ht.TListOf(ht.TPositiveInt),
1318
     "List of disk indexes"),
1319
    ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1320
     "New instance nodes, if relocation is desired"),
1321
    ]
1322

    
1323

    
1324
class OpInstanceQuery(OpCode):
1325
  """Compute the list of instances."""
1326
  OP_PARAMS = [
1327
    _POutputFields,
1328
    _PUseLocking,
1329
    ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1330
     "Empty list to query all instances, instance names otherwise"),
1331
    ]
1332

    
1333

    
1334
class OpInstanceQueryData(OpCode):
1335
  """Compute the run-time status of instances."""
1336
  OP_PARAMS = [
1337
    _PUseLocking,
1338
    ("instances", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1339
     "Instance names"),
1340
    ("static", False, ht.TBool,
1341
     "Whether to only return configuration data without querying"
1342
     " nodes"),
1343
    ]
1344

    
1345

    
1346
class OpInstanceSetParams(OpCode):
1347
  """Change the parameters of an instance."""
1348
  OP_DSC_FIELD = "instance_name"
1349
  OP_PARAMS = [
1350
    _PInstanceName,
1351
    _PForce,
1352
    _PForceVariant,
1353
    # TODO: Use _TestNicDef
1354
    ("nics", ht.EmptyList, ht.TList,
1355
     "List of NIC changes. Each item is of the form ``(op, settings)``."
1356
     " ``op`` can be ``%s`` to add a new NIC with the specified settings,"
1357
     " ``%s`` to remove the last NIC or a number to modify the settings"
1358
     " of the NIC with that index." %
1359
     (constants.DDM_ADD, constants.DDM_REMOVE)),
1360
    ("disks", ht.EmptyList, ht.TList, "List of disk changes. See ``nics``."),
1361
    ("beparams", ht.EmptyDict, ht.TDict, "Per-instance backend parameters"),
1362
    ("hvparams", ht.EmptyDict, ht.TDict,
1363
     "Per-instance hypervisor parameters, hypervisor-dependent"),
1364
    ("disk_template", None, ht.TOr(ht.TNone, _BuildDiskTemplateCheck(False)),
1365
     "Disk template for instance"),
1366
    ("remote_node", None, ht.TMaybeString,
1367
     "Secondary node (used when changing disk template)"),
1368
    ("os_name", None, ht.TMaybeString,
1369
     "Change instance's OS name. Does not reinstall the instance."),
1370
    ("osparams", None, ht.TMaybeDict, "Per-instance OS parameters"),
1371
    ("wait_for_sync", True, ht.TBool,
1372
     "Whether to wait for the disk to synchronize, when changing template"),
1373
    ("offline_inst", False, ht.TBool,
1374
     "Whether to turn off the down instance completely"),
1375
    ("online_inst", False, ht.TBool,
1376
     "Whether to enable the offline instance"),
1377
    ]
1378
  OP_RESULT = _TSetParamsResult
1379

    
1380

    
1381
class OpInstanceGrowDisk(OpCode):
1382
  """Grow a disk of an instance."""
1383
  OP_DSC_FIELD = "instance_name"
1384
  OP_PARAMS = [
1385
    _PInstanceName,
1386
    _PWaitForSync,
1387
    ("disk", ht.NoDefault, ht.TInt, "Disk index"),
1388
    ("amount", ht.NoDefault, ht.TInt,
1389
     "Amount of disk space to add (megabytes)"),
1390
    ]
1391

    
1392

    
1393
class OpInstanceChangeGroup(OpCode):
1394
  """Moves an instance to another node group."""
1395
  OP_DSC_FIELD = "instance_name"
1396
  OP_PARAMS = [
1397
    _PInstanceName,
1398
    _PEarlyRelease,
1399
    ("iallocator", None, ht.TMaybeString, "Iallocator for computing solution"),
1400
    ("target_groups", None, ht.TOr(ht.TNone, ht.TListOf(ht.TNonEmptyString)),
1401
     "Destination group names or UUIDs (defaults to \"all but current group\""),
1402
    ]
1403
  OP_RESULT = TJobIdListOnly
1404

    
1405

    
1406
# Node group opcodes
1407

    
1408
class OpGroupAdd(OpCode):
1409
  """Add a node group to the cluster."""
1410
  OP_DSC_FIELD = "group_name"
1411
  OP_PARAMS = [
1412
    _PGroupName,
1413
    _PNodeGroupAllocPolicy,
1414
    _PGroupNodeParams,
1415
    _PDiskParams,
1416
    ("ipolicy", None, ht.TMaybeDict, "Group-wide instance policy specs"),
1417
    ]
1418

    
1419

    
1420
class OpGroupAssignNodes(OpCode):
1421
  """Assign nodes to a node group."""
1422
  OP_DSC_FIELD = "group_name"
1423
  OP_PARAMS = [
1424
    _PGroupName,
1425
    _PForce,
1426
    ("nodes", ht.NoDefault, ht.TListOf(ht.TNonEmptyString),
1427
     "List of nodes to assign"),
1428
    ]
1429

    
1430

    
1431
class OpGroupQuery(OpCode):
1432
  """Compute the list of node groups."""
1433
  OP_PARAMS = [
1434
    _POutputFields,
1435
    ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1436
     "Empty list to query all groups, group names otherwise"),
1437
    ]
1438

    
1439

    
1440
class OpGroupSetParams(OpCode):
1441
  """Change the parameters of a node group."""
1442
  OP_DSC_FIELD = "group_name"
1443
  OP_PARAMS = [
1444
    _PGroupName,
1445
    _PNodeGroupAllocPolicy,
1446
    _PGroupNodeParams,
1447
    _PDiskParams,
1448
    _PHvState,
1449
    _PDiskState,
1450
    ("ipolicy", None, ht.TMaybeDict, "Group-wide instance policy specs"),
1451
    ]
1452
  OP_RESULT = _TSetParamsResult
1453

    
1454

    
1455
class OpGroupRemove(OpCode):
1456
  """Remove a node group from the cluster."""
1457
  OP_DSC_FIELD = "group_name"
1458
  OP_PARAMS = [
1459
    _PGroupName,
1460
    ]
1461

    
1462

    
1463
class OpGroupRename(OpCode):
1464
  """Rename a node group in the cluster."""
1465
  OP_PARAMS = [
1466
    _PGroupName,
1467
    ("new_name", ht.NoDefault, ht.TNonEmptyString, "New group name"),
1468
    ]
1469
  OP_RESULT = ht.Comment("New group name")(ht.TNonEmptyString)
1470

    
1471

    
1472
class OpGroupEvacuate(OpCode):
1473
  """Evacuate a node group in the cluster."""
1474
  OP_DSC_FIELD = "group_name"
1475
  OP_PARAMS = [
1476
    _PGroupName,
1477
    _PEarlyRelease,
1478
    ("iallocator", None, ht.TMaybeString, "Iallocator for computing solution"),
1479
    ("target_groups", None, ht.TOr(ht.TNone, ht.TListOf(ht.TNonEmptyString)),
1480
     "Destination group names or UUIDs"),
1481
    ]
1482
  OP_RESULT = TJobIdListOnly
1483

    
1484

    
1485
# OS opcodes
1486
class OpOsDiagnose(OpCode):
1487
  """Compute the list of guest operating systems."""
1488
  OP_PARAMS = [
1489
    _POutputFields,
1490
    ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1491
     "Which operating systems to diagnose"),
1492
    ]
1493

    
1494

    
1495
# Exports opcodes
1496
class OpBackupQuery(OpCode):
1497
  """Compute the list of exported images."""
1498
  OP_PARAMS = [
1499
    _PUseLocking,
1500
    ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1501
     "Empty list to query all nodes, node names otherwise"),
1502
    ]
1503

    
1504

    
1505
class OpBackupPrepare(OpCode):
1506
  """Prepares an instance export.
1507

1508
  @ivar instance_name: Instance name
1509
  @ivar mode: Export mode (one of L{constants.EXPORT_MODES})
1510

1511
  """
1512
  OP_DSC_FIELD = "instance_name"
1513
  OP_PARAMS = [
1514
    _PInstanceName,
1515
    ("mode", ht.NoDefault, ht.TElemOf(constants.EXPORT_MODES),
1516
     "Export mode"),
1517
    ]
1518

    
1519

    
1520
class OpBackupExport(OpCode):
1521
  """Export an instance.
1522

1523
  For local exports, the export destination is the node name. For remote
1524
  exports, the export destination is a list of tuples, each consisting of
1525
  hostname/IP address, port, HMAC and HMAC salt. The HMAC is calculated using
1526
  the cluster domain secret over the value "${index}:${hostname}:${port}". The
1527
  destination X509 CA must be a signed certificate.
1528

1529
  @ivar mode: Export mode (one of L{constants.EXPORT_MODES})
1530
  @ivar target_node: Export destination
1531
  @ivar x509_key_name: X509 key to use (remote export only)
1532
  @ivar destination_x509_ca: Destination X509 CA in PEM format (remote export
1533
                             only)
1534

1535
  """
1536
  OP_DSC_FIELD = "instance_name"
1537
  OP_PARAMS = [
1538
    _PInstanceName,
1539
    _PShutdownTimeout,
1540
    # TODO: Rename target_node as it changes meaning for different export modes
1541
    # (e.g. "destination")
1542
    ("target_node", ht.NoDefault, ht.TOr(ht.TNonEmptyString, ht.TList),
1543
     "Destination information, depends on export mode"),
1544
    ("shutdown", True, ht.TBool, "Whether to shutdown instance before export"),
1545
    ("remove_instance", False, ht.TBool,
1546
     "Whether to remove instance after export"),
1547
    ("ignore_remove_failures", False, ht.TBool,
1548
     "Whether to ignore failures while removing instances"),
1549
    ("mode", constants.EXPORT_MODE_LOCAL, ht.TElemOf(constants.EXPORT_MODES),
1550
     "Export mode"),
1551
    ("x509_key_name", None, ht.TOr(ht.TList, ht.TNone),
1552
     "Name of X509 key (remote export only)"),
1553
    ("destination_x509_ca", None, ht.TMaybeString,
1554
     "Destination X509 CA (remote export only)"),
1555
    ]
1556

    
1557

    
1558
class OpBackupRemove(OpCode):
1559
  """Remove an instance's export."""
1560
  OP_DSC_FIELD = "instance_name"
1561
  OP_PARAMS = [
1562
    _PInstanceName,
1563
    ]
1564

    
1565

    
1566
# Tags opcodes
1567
class OpTagsGet(OpCode):
1568
  """Returns the tags of the given object."""
1569
  OP_DSC_FIELD = "name"
1570
  OP_PARAMS = [
1571
    _PTagKind,
1572
    # Name is only meaningful for nodes and instances
1573
    ("name", ht.NoDefault, ht.TMaybeString, None),
1574
    ]
1575

    
1576

    
1577
class OpTagsSearch(OpCode):
1578
  """Searches the tags in the cluster for a given pattern."""
1579
  OP_DSC_FIELD = "pattern"
1580
  OP_PARAMS = [
1581
    ("pattern", ht.NoDefault, ht.TNonEmptyString, None),
1582
    ]
1583

    
1584

    
1585
class OpTagsSet(OpCode):
1586
  """Add a list of tags on a given object."""
1587
  OP_PARAMS = [
1588
    _PTagKind,
1589
    _PTags,
1590
    # Name is only meaningful for nodes and instances
1591
    ("name", ht.NoDefault, ht.TMaybeString, None),
1592
    ]
1593

    
1594

    
1595
class OpTagsDel(OpCode):
1596
  """Remove a list of tags from a given object."""
1597
  OP_PARAMS = [
1598
    _PTagKind,
1599
    _PTags,
1600
    # Name is only meaningful for nodes and instances
1601
    ("name", ht.NoDefault, ht.TMaybeString, None),
1602
    ]
1603

    
1604

    
1605
# Test opcodes
1606
class OpTestDelay(OpCode):
1607
  """Sleeps for a configured amount of time.
1608

1609
  This is used just for debugging and testing.
1610

1611
  Parameters:
1612
    - duration: the time to sleep
1613
    - on_master: if true, sleep on the master
1614
    - on_nodes: list of nodes in which to sleep
1615

1616
  If the on_master parameter is true, it will execute a sleep on the
1617
  master (before any node sleep).
1618

1619
  If the on_nodes list is not empty, it will sleep on those nodes
1620
  (after the sleep on the master, if that is enabled).
1621

1622
  As an additional feature, the case of duration < 0 will be reported
1623
  as an execution error, so this opcode can be used as a failure
1624
  generator. The case of duration == 0 will not be treated specially.
1625

1626
  """
1627
  OP_DSC_FIELD = "duration"
1628
  OP_PARAMS = [
1629
    ("duration", ht.NoDefault, ht.TNumber, None),
1630
    ("on_master", True, ht.TBool, None),
1631
    ("on_nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString), None),
1632
    ("repeat", 0, ht.TPositiveInt, None),
1633
    ]
1634

    
1635

    
1636
class OpTestAllocator(OpCode):
1637
  """Allocator framework testing.
1638

1639
  This opcode has two modes:
1640
    - gather and return allocator input for a given mode (allocate new
1641
      or replace secondary) and a given instance definition (direction
1642
      'in')
1643
    - run a selected allocator for a given operation (as above) and
1644
      return the allocator output (direction 'out')
1645

1646
  """
1647
  OP_DSC_FIELD = "allocator"
1648
  OP_PARAMS = [
1649
    ("direction", ht.NoDefault,
1650
     ht.TElemOf(constants.VALID_IALLOCATOR_DIRECTIONS), None),
1651
    ("mode", ht.NoDefault, ht.TElemOf(constants.VALID_IALLOCATOR_MODES), None),
1652
    ("name", ht.NoDefault, ht.TNonEmptyString, None),
1653
    ("nics", ht.NoDefault, ht.TOr(ht.TNone, ht.TListOf(
1654
     ht.TDictOf(ht.TElemOf([constants.INIC_MAC, constants.INIC_IP, "bridge"]),
1655
                ht.TOr(ht.TNone, ht.TNonEmptyString)))), None),
1656
    ("disks", ht.NoDefault, ht.TOr(ht.TNone, ht.TList), None),
1657
    ("hypervisor", None, ht.TMaybeString, None),
1658
    ("allocator", None, ht.TMaybeString, None),
1659
    ("tags", ht.EmptyList, ht.TListOf(ht.TNonEmptyString), None),
1660
    ("memory", None, ht.TOr(ht.TNone, ht.TPositiveInt), None),
1661
    ("vcpus", None, ht.TOr(ht.TNone, ht.TPositiveInt), None),
1662
    ("os", None, ht.TMaybeString, None),
1663
    ("disk_template", None, ht.TMaybeString, None),
1664
    ("instances", None, ht.TOr(ht.TNone, ht.TListOf(ht.TNonEmptyString)),
1665
     None),
1666
    ("evac_mode", None,
1667
     ht.TOr(ht.TNone, ht.TElemOf(constants.IALLOCATOR_NEVAC_MODES)), None),
1668
    ("target_groups", None, ht.TOr(ht.TNone, ht.TListOf(ht.TNonEmptyString)),
1669
     None),
1670
    ]
1671

    
1672

    
1673
class OpTestJqueue(OpCode):
1674
  """Utility opcode to test some aspects of the job queue.
1675

1676
  """
1677
  OP_PARAMS = [
1678
    ("notify_waitlock", False, ht.TBool, None),
1679
    ("notify_exec", False, ht.TBool, None),
1680
    ("log_messages", ht.EmptyList, ht.TListOf(ht.TString), None),
1681
    ("fail", False, ht.TBool, None),
1682
    ]
1683

    
1684

    
1685
class OpTestDummy(OpCode):
1686
  """Utility opcode used by unittests.
1687

1688
  """
1689
  OP_PARAMS = [
1690
    ("result", ht.NoDefault, ht.NoType, None),
1691
    ("messages", ht.NoDefault, ht.NoType, None),
1692
    ("fail", ht.NoDefault, ht.NoType, None),
1693
    ("submit_jobs", None, ht.NoType, None),
1694
    ]
1695
  WITH_LU = False
1696

    
1697

    
1698
def _GetOpList():
1699
  """Returns list of all defined opcodes.
1700

1701
  Does not eliminate duplicates by C{OP_ID}.
1702

1703
  """
1704
  return [v for v in globals().values()
1705
          if (isinstance(v, type) and issubclass(v, OpCode) and
1706
              hasattr(v, "OP_ID") and v is not OpCode)]
1707

    
1708

    
1709
OP_MAPPING = dict((v.OP_ID, v) for v in _GetOpList())