Statistics
| Branch: | Tag: | Revision:

root / lib / opcodes.py @ a8282327

History | View | Annotate | Download (52.1 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"),
513
    (COMMENT_ATTR, None, ht.TMaybeString,
514
     "Comment describing the purpose of the opcode"),
515
    ]
516
  OP_RESULT = None
517

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

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

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

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

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

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

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

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

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

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

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

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

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

    
589
    text = self.OP_ID[3:]
590

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

    
595
    return text
596

    
597

    
598
# cluster opcodes
599

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

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

606
  """
607

    
608

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

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

615
  """
616

    
617

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

    
621

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

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

    
636

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

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

    
649

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

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

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

    
671

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

675
  """
676
  OP_RESULT = TJobIdListOnly
677

    
678

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

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

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

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

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

    
708

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

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

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

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

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

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

    
729

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

    
736

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

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

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

    
751

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

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

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

    
815

    
816
class OpClusterRedistConf(OpCode):
817
  """Force a full push of the cluster configuration.
818

819
  """
820

    
821

    
822
class OpClusterActivateMasterIp(OpCode):
823
  """Activate the master IP on the master node.
824

825
  """
826

    
827

    
828
class OpClusterDeactivateMasterIp(OpCode):
829
  """Deactivate the master IP on the master node.
830

831
  """
832

    
833

    
834
class OpQuery(OpCode):
835
  """Query for resources/items.
836

837
  @ivar what: Resources to query for, must be one of L{constants.QR_VIA_OP}
838
  @ivar fields: List of fields to retrieve
839
  @ivar qfilter: Query filter
840

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

    
852

    
853
class OpQueryFields(OpCode):
854
  """Query for available resource/item fields.
855

856
  @ivar what: Resources to query for, must be one of L{constants.QR_VIA_OP}
857
  @ivar fields: List of fields to retrieve
858

859
  """
860
  OP_DSC_FIELD = "what"
861
  OP_PARAMS = [
862
    _PQueryWhat,
863
    ("fields", None, ht.TOr(ht.TNone, ht.TListOf(ht.TNonEmptyString)),
864
     "Requested fields; if not given, all are returned"),
865
    ]
866

    
867

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

    
883

    
884
# node opcodes
885

    
886
class OpNodeRemove(OpCode):
887
  """Remove a node.
888

889
  @type node_name: C{str}
890
  @ivar node_name: The name of the node to remove. If the node still has
891
                   instances on it, the operation will fail.
892

893
  """
894
  OP_DSC_FIELD = "node_name"
895
  OP_PARAMS = [
896
    _PNodeName,
897
    ]
898

    
899

    
900
class OpNodeAdd(OpCode):
901
  """Add a node to the cluster.
902

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

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

    
942

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

    
952

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

    
961

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

    
971

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

    
981

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

    
992

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

    
1021

    
1022
class OpNodePowercycle(OpCode):
1023
  """Tries to powercycle a node."""
1024
  OP_DSC_FIELD = "node_name"
1025
  OP_PARAMS = [
1026
    _PNodeName,
1027
    _PForce,
1028
    ]
1029

    
1030

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

    
1044

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

    
1058

    
1059
# instance opcodes
1060

    
1061
class OpInstanceCreate(OpCode):
1062
  """Create an instance.
1063

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

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

    
1135

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

    
1146

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

    
1157

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

    
1168

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

    
1183

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

    
1195

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

    
1208

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

    
1224

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

    
1237

    
1238
class OpInstanceMigrate(OpCode):
1239
  """Migrate an instance.
1240

1241
  This migrates (without shutting down an instance) to its secondary
1242
  node.
1243

1244
  @ivar instance_name: the name of the instance
1245
  @ivar mode: the migration mode (live, non-live or None for auto)
1246

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

    
1262

    
1263
class OpInstanceMove(OpCode):
1264
  """Move an instance.
1265

1266
  This move (with shutting down an instance and data copying) to an
1267
  arbitrary node.
1268

1269
  @ivar instance_name: the name of the instance
1270
  @ivar target_node: the destination node
1271

1272
  """
1273
  OP_DSC_FIELD = "instance_name"
1274
  OP_PARAMS = [
1275
    _PInstanceName,
1276
    _PShutdownTimeout,
1277
    ("target_node", ht.NoDefault, ht.TNonEmptyString, "Target node"),
1278
    _PIgnoreConsistency,
1279
    ]
1280

    
1281

    
1282
class OpInstanceConsole(OpCode):
1283
  """Connect to an instance's console."""
1284
  OP_DSC_FIELD = "instance_name"
1285
  OP_PARAMS = [
1286
    _PInstanceName
1287
    ]
1288

    
1289

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

    
1298

    
1299
class OpInstanceDeactivateDisks(OpCode):
1300
  """Deactivate an instance's disks."""
1301
  OP_DSC_FIELD = "instance_name"
1302
  OP_PARAMS = [
1303
    _PInstanceName,
1304
    _PForce,
1305
    ]
1306

    
1307

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

    
1319

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

    
1329

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

    
1341

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

    
1376

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

    
1388

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

    
1401

    
1402
# Node group opcodes
1403

    
1404
class OpGroupAdd(OpCode):
1405
  """Add a node group to the cluster."""
1406
  OP_DSC_FIELD = "group_name"
1407
  OP_PARAMS = [
1408
    _PGroupName,
1409
    _PNodeGroupAllocPolicy,
1410
    _PGroupNodeParams,
1411
    _PDiskParams,
1412
    ]
1413

    
1414

    
1415
class OpGroupAssignNodes(OpCode):
1416
  """Assign nodes to a node group."""
1417
  OP_DSC_FIELD = "group_name"
1418
  OP_PARAMS = [
1419
    _PGroupName,
1420
    _PForce,
1421
    ("nodes", ht.NoDefault, ht.TListOf(ht.TNonEmptyString),
1422
     "List of nodes to assign"),
1423
    ]
1424

    
1425

    
1426
class OpGroupQuery(OpCode):
1427
  """Compute the list of node groups."""
1428
  OP_PARAMS = [
1429
    _POutputFields,
1430
    ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1431
     "Empty list to query all groups, group names otherwise"),
1432
    ]
1433

    
1434

    
1435
class OpGroupSetParams(OpCode):
1436
  """Change the parameters of a node group."""
1437
  OP_DSC_FIELD = "group_name"
1438
  OP_PARAMS = [
1439
    _PGroupName,
1440
    _PNodeGroupAllocPolicy,
1441
    _PGroupNodeParams,
1442
    _PDiskParams,
1443
    _PHvState,
1444
    _PDiskState,
1445
    ]
1446
  OP_RESULT = _TSetParamsResult
1447

    
1448

    
1449
class OpGroupRemove(OpCode):
1450
  """Remove a node group from the cluster."""
1451
  OP_DSC_FIELD = "group_name"
1452
  OP_PARAMS = [
1453
    _PGroupName,
1454
    ]
1455

    
1456

    
1457
class OpGroupRename(OpCode):
1458
  """Rename a node group in the cluster."""
1459
  OP_PARAMS = [
1460
    _PGroupName,
1461
    ("new_name", ht.NoDefault, ht.TNonEmptyString, "New group name"),
1462
    ]
1463
  OP_RESULT = ht.Comment("New group name")(ht.TNonEmptyString)
1464

    
1465

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

    
1478

    
1479
# OS opcodes
1480
class OpOsDiagnose(OpCode):
1481
  """Compute the list of guest operating systems."""
1482
  OP_PARAMS = [
1483
    _POutputFields,
1484
    ("names", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1485
     "Which operating systems to diagnose"),
1486
    ]
1487

    
1488

    
1489
# Exports opcodes
1490
class OpBackupQuery(OpCode):
1491
  """Compute the list of exported images."""
1492
  OP_PARAMS = [
1493
    _PUseLocking,
1494
    ("nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString),
1495
     "Empty list to query all nodes, node names otherwise"),
1496
    ]
1497

    
1498

    
1499
class OpBackupPrepare(OpCode):
1500
  """Prepares an instance export.
1501

1502
  @ivar instance_name: Instance name
1503
  @ivar mode: Export mode (one of L{constants.EXPORT_MODES})
1504

1505
  """
1506
  OP_DSC_FIELD = "instance_name"
1507
  OP_PARAMS = [
1508
    _PInstanceName,
1509
    ("mode", ht.NoDefault, ht.TElemOf(constants.EXPORT_MODES),
1510
     "Export mode"),
1511
    ]
1512

    
1513

    
1514
class OpBackupExport(OpCode):
1515
  """Export an instance.
1516

1517
  For local exports, the export destination is the node name. For remote
1518
  exports, the export destination is a list of tuples, each consisting of
1519
  hostname/IP address, port, HMAC and HMAC salt. The HMAC is calculated using
1520
  the cluster domain secret over the value "${index}:${hostname}:${port}". The
1521
  destination X509 CA must be a signed certificate.
1522

1523
  @ivar mode: Export mode (one of L{constants.EXPORT_MODES})
1524
  @ivar target_node: Export destination
1525
  @ivar x509_key_name: X509 key to use (remote export only)
1526
  @ivar destination_x509_ca: Destination X509 CA in PEM format (remote export
1527
                             only)
1528

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

    
1551

    
1552
class OpBackupRemove(OpCode):
1553
  """Remove an instance's export."""
1554
  OP_DSC_FIELD = "instance_name"
1555
  OP_PARAMS = [
1556
    _PInstanceName,
1557
    ]
1558

    
1559

    
1560
# Tags opcodes
1561
class OpTagsGet(OpCode):
1562
  """Returns the tags of the given object."""
1563
  OP_DSC_FIELD = "name"
1564
  OP_PARAMS = [
1565
    _PTagKind,
1566
    # Name is only meaningful for nodes and instances
1567
    ("name", ht.NoDefault, ht.TMaybeString, None),
1568
    ]
1569

    
1570

    
1571
class OpTagsSearch(OpCode):
1572
  """Searches the tags in the cluster for a given pattern."""
1573
  OP_DSC_FIELD = "pattern"
1574
  OP_PARAMS = [
1575
    ("pattern", ht.NoDefault, ht.TNonEmptyString, None),
1576
    ]
1577

    
1578

    
1579
class OpTagsSet(OpCode):
1580
  """Add a list of tags on a given object."""
1581
  OP_PARAMS = [
1582
    _PTagKind,
1583
    _PTags,
1584
    # Name is only meaningful for nodes and instances
1585
    ("name", ht.NoDefault, ht.TMaybeString, None),
1586
    ]
1587

    
1588

    
1589
class OpTagsDel(OpCode):
1590
  """Remove a list of tags from a given object."""
1591
  OP_PARAMS = [
1592
    _PTagKind,
1593
    _PTags,
1594
    # Name is only meaningful for nodes and instances
1595
    ("name", ht.NoDefault, ht.TMaybeString, None),
1596
    ]
1597

    
1598

    
1599
# Test opcodes
1600
class OpTestDelay(OpCode):
1601
  """Sleeps for a configured amount of time.
1602

1603
  This is used just for debugging and testing.
1604

1605
  Parameters:
1606
    - duration: the time to sleep
1607
    - on_master: if true, sleep on the master
1608
    - on_nodes: list of nodes in which to sleep
1609

1610
  If the on_master parameter is true, it will execute a sleep on the
1611
  master (before any node sleep).
1612

1613
  If the on_nodes list is not empty, it will sleep on those nodes
1614
  (after the sleep on the master, if that is enabled).
1615

1616
  As an additional feature, the case of duration < 0 will be reported
1617
  as an execution error, so this opcode can be used as a failure
1618
  generator. The case of duration == 0 will not be treated specially.
1619

1620
  """
1621
  OP_DSC_FIELD = "duration"
1622
  OP_PARAMS = [
1623
    ("duration", ht.NoDefault, ht.TNumber, None),
1624
    ("on_master", True, ht.TBool, None),
1625
    ("on_nodes", ht.EmptyList, ht.TListOf(ht.TNonEmptyString), None),
1626
    ("repeat", 0, ht.TPositiveInt, None),
1627
    ]
1628

    
1629

    
1630
class OpTestAllocator(OpCode):
1631
  """Allocator framework testing.
1632

1633
  This opcode has two modes:
1634
    - gather and return allocator input for a given mode (allocate new
1635
      or replace secondary) and a given instance definition (direction
1636
      'in')
1637
    - run a selected allocator for a given operation (as above) and
1638
      return the allocator output (direction 'out')
1639

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

    
1666

    
1667
class OpTestJqueue(OpCode):
1668
  """Utility opcode to test some aspects of the job queue.
1669

1670
  """
1671
  OP_PARAMS = [
1672
    ("notify_waitlock", False, ht.TBool, None),
1673
    ("notify_exec", False, ht.TBool, None),
1674
    ("log_messages", ht.EmptyList, ht.TListOf(ht.TString), None),
1675
    ("fail", False, ht.TBool, None),
1676
    ]
1677

    
1678

    
1679
class OpTestDummy(OpCode):
1680
  """Utility opcode used by unittests.
1681

1682
  """
1683
  OP_PARAMS = [
1684
    ("result", ht.NoDefault, ht.NoType, None),
1685
    ("messages", ht.NoDefault, ht.NoType, None),
1686
    ("fail", ht.NoDefault, ht.NoType, None),
1687
    ("submit_jobs", None, ht.NoType, None),
1688
    ]
1689
  WITH_LU = False
1690

    
1691

    
1692
def _GetOpList():
1693
  """Returns list of all defined opcodes.
1694

1695
  Does not eliminate duplicates by C{OP_ID}.
1696

1697
  """
1698
  return [v for v in globals().values()
1699
          if (isinstance(v, type) and issubclass(v, OpCode) and
1700
              hasattr(v, "OP_ID") and v is not OpCode)]
1701

    
1702

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