Statistics
| Branch: | Tag: | Revision:

root / lib / objects.py @ a0d2a91e

History | View | Annotate | Download (64.8 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 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
"""Transportable objects for Ganeti.
23

24
This module provides small, mostly data-only objects which are safe to
25
pass to and from external parties.
26

27
"""
28

    
29
# pylint: disable=E0203,W0201,R0902
30

    
31
# E0203: Access to member %r before its definition, since we use
32
# objects.py which doesn't explicitly initialise its members
33

    
34
# W0201: Attribute '%s' defined outside __init__
35

    
36
# R0902: Allow instances of these objects to have more than 20 attributes
37

    
38
import ConfigParser
39
import re
40
import copy
41
import logging
42
import time
43
from cStringIO import StringIO
44

    
45
from ganeti import errors
46
from ganeti import constants
47
from ganeti import netutils
48
from ganeti import outils
49
from ganeti import utils
50

    
51
from socket import AF_INET
52

    
53

    
54
__all__ = ["ConfigObject", "ConfigData", "NIC", "Disk", "Instance",
55
           "OS", "Node", "NodeGroup", "Cluster", "FillDict", "Network"]
56

    
57
_TIMESTAMPS = ["ctime", "mtime"]
58
_UUID = ["uuid"]
59

    
60

    
61
def FillDict(defaults_dict, custom_dict, skip_keys=None):
62
  """Basic function to apply settings on top a default dict.
63

64
  @type defaults_dict: dict
65
  @param defaults_dict: dictionary holding the default values
66
  @type custom_dict: dict
67
  @param custom_dict: dictionary holding customized value
68
  @type skip_keys: list
69
  @param skip_keys: which keys not to fill
70
  @rtype: dict
71
  @return: dict with the 'full' values
72

73
  """
74
  ret_dict = copy.deepcopy(defaults_dict)
75
  ret_dict.update(custom_dict)
76
  if skip_keys:
77
    for k in skip_keys:
78
      try:
79
        del ret_dict[k]
80
      except KeyError:
81
        pass
82
  return ret_dict
83

    
84

    
85
def FillIPolicy(default_ipolicy, custom_ipolicy):
86
  """Fills an instance policy with defaults.
87

88
  """
89
  assert frozenset(default_ipolicy.keys()) == constants.IPOLICY_ALL_KEYS
90
  ret_dict = copy.deepcopy(custom_ipolicy)
91
  for key in default_ipolicy:
92
    if key not in ret_dict:
93
      ret_dict[key] = copy.deepcopy(default_ipolicy[key])
94
    elif key == constants.ISPECS_STD:
95
      ret_dict[key] = FillDict(default_ipolicy[key], ret_dict[key])
96
  return ret_dict
97

    
98

    
99
def FillDiskParams(default_dparams, custom_dparams, skip_keys=None):
100
  """Fills the disk parameter defaults.
101

102
  @see: L{FillDict} for parameters and return value
103

104
  """
105
  assert frozenset(default_dparams.keys()) == constants.DISK_TEMPLATES
106

    
107
  return dict((dt, FillDict(default_dparams[dt], custom_dparams.get(dt, {}),
108
                             skip_keys=skip_keys))
109
              for dt in constants.DISK_TEMPLATES)
110

    
111

    
112
def UpgradeGroupedParams(target, defaults):
113
  """Update all groups for the target parameter.
114

115
  @type target: dict of dicts
116
  @param target: {group: {parameter: value}}
117
  @type defaults: dict
118
  @param defaults: default parameter values
119

120
  """
121
  if target is None:
122
    target = {constants.PP_DEFAULT: defaults}
123
  else:
124
    for group in target:
125
      target[group] = FillDict(defaults, target[group])
126
  return target
127

    
128

    
129
def UpgradeBeParams(target):
130
  """Update the be parameters dict to the new format.
131

132
  @type target: dict
133
  @param target: "be" parameters dict
134

135
  """
136
  if constants.BE_MEMORY in target:
137
    memory = target[constants.BE_MEMORY]
138
    target[constants.BE_MAXMEM] = memory
139
    target[constants.BE_MINMEM] = memory
140
    del target[constants.BE_MEMORY]
141

    
142

    
143
def UpgradeDiskParams(diskparams):
144
  """Upgrade the disk parameters.
145

146
  @type diskparams: dict
147
  @param diskparams: disk parameters to upgrade
148
  @rtype: dict
149
  @return: the upgraded disk parameters dict
150

151
  """
152
  if not diskparams:
153
    result = {}
154
  else:
155
    result = FillDiskParams(constants.DISK_DT_DEFAULTS, diskparams)
156

    
157
  return result
158

    
159

    
160
def UpgradeNDParams(ndparams):
161
  """Upgrade ndparams structure.
162

163
  @type ndparams: dict
164
  @param ndparams: disk parameters to upgrade
165
  @rtype: dict
166
  @return: the upgraded node parameters dict
167

168
  """
169
  if ndparams is None:
170
    ndparams = {}
171

    
172
  if (constants.ND_OOB_PROGRAM in ndparams and
173
      ndparams[constants.ND_OOB_PROGRAM] is None):
174
    # will be reset by the line below
175
    del ndparams[constants.ND_OOB_PROGRAM]
176
  return FillDict(constants.NDC_DEFAULTS, ndparams)
177

    
178

    
179
def MakeEmptyIPolicy():
180
  """Create empty IPolicy dictionary.
181

182
  """
183
  return {}
184

    
185

    
186
class ConfigObject(outils.ValidatedSlots):
187
  """A generic config object.
188

189
  It has the following properties:
190

191
    - provides somewhat safe recursive unpickling and pickling for its classes
192
    - unset attributes which are defined in slots are always returned
193
      as None instead of raising an error
194

195
  Classes derived from this must always declare __slots__ (we use many
196
  config objects and the memory reduction is useful)
197

198
  """
199
  __slots__ = []
200

    
201
  def __getattr__(self, name):
202
    if name not in self.GetAllSlots():
203
      raise AttributeError("Invalid object attribute %s.%s" %
204
                           (type(self).__name__, name))
205
    return None
206

    
207
  def __setstate__(self, state):
208
    slots = self.GetAllSlots()
209
    for name in state:
210
      if name in slots:
211
        setattr(self, name, state[name])
212

    
213
  def Validate(self):
214
    """Validates the slots.
215

216
    """
217

    
218
  def ToDict(self):
219
    """Convert to a dict holding only standard python types.
220

221
    The generic routine just dumps all of this object's attributes in
222
    a dict. It does not work if the class has children who are
223
    ConfigObjects themselves (e.g. the nics list in an Instance), in
224
    which case the object should subclass the function in order to
225
    make sure all objects returned are only standard python types.
226

227
    """
228
    result = {}
229
    for name in self.GetAllSlots():
230
      value = getattr(self, name, None)
231
      if value is not None:
232
        result[name] = value
233
    return result
234

    
235
  __getstate__ = ToDict
236

    
237
  @classmethod
238
  def FromDict(cls, val):
239
    """Create an object from a dictionary.
240

241
    This generic routine takes a dict, instantiates a new instance of
242
    the given class, and sets attributes based on the dict content.
243

244
    As for `ToDict`, this does not work if the class has children
245
    who are ConfigObjects themselves (e.g. the nics list in an
246
    Instance), in which case the object should subclass the function
247
    and alter the objects.
248

249
    """
250
    if not isinstance(val, dict):
251
      raise errors.ConfigurationError("Invalid object passed to FromDict:"
252
                                      " expected dict, got %s" % type(val))
253
    val_str = dict([(str(k), v) for k, v in val.iteritems()])
254
    obj = cls(**val_str) # pylint: disable=W0142
255
    return obj
256

    
257
  def Copy(self):
258
    """Makes a deep copy of the current object and its children.
259

260
    """
261
    dict_form = self.ToDict()
262
    clone_obj = self.__class__.FromDict(dict_form)
263
    return clone_obj
264

    
265
  def __repr__(self):
266
    """Implement __repr__ for ConfigObjects."""
267
    return repr(self.ToDict())
268

    
269
  def __eq__(self, other):
270
    """Implement __eq__ for ConfigObjects."""
271
    return isinstance(other, self.__class__) and self.ToDict() == other.ToDict()
272

    
273
  def UpgradeConfig(self):
274
    """Fill defaults for missing configuration values.
275

276
    This method will be called at configuration load time, and its
277
    implementation will be object dependent.
278

279
    """
280
    pass
281

    
282

    
283
class TaggableObject(ConfigObject):
284
  """An generic class supporting tags.
285

286
  """
287
  __slots__ = ["tags"]
288
  VALID_TAG_RE = re.compile(r"^[\w.+*/:@-]+$")
289

    
290
  @classmethod
291
  def ValidateTag(cls, tag):
292
    """Check if a tag is valid.
293

294
    If the tag is invalid, an errors.TagError will be raised. The
295
    function has no return value.
296

297
    """
298
    if not isinstance(tag, basestring):
299
      raise errors.TagError("Invalid tag type (not a string)")
300
    if len(tag) > constants.MAX_TAG_LEN:
301
      raise errors.TagError("Tag too long (>%d characters)" %
302
                            constants.MAX_TAG_LEN)
303
    if not tag:
304
      raise errors.TagError("Tags cannot be empty")
305
    if not cls.VALID_TAG_RE.match(tag):
306
      raise errors.TagError("Tag contains invalid characters")
307

    
308
  def GetTags(self):
309
    """Return the tags list.
310

311
    """
312
    tags = getattr(self, "tags", None)
313
    if tags is None:
314
      tags = self.tags = set()
315
    return tags
316

    
317
  def AddTag(self, tag):
318
    """Add a new tag.
319

320
    """
321
    self.ValidateTag(tag)
322
    tags = self.GetTags()
323
    if len(tags) >= constants.MAX_TAGS_PER_OBJ:
324
      raise errors.TagError("Too many tags")
325
    self.GetTags().add(tag)
326

    
327
  def RemoveTag(self, tag):
328
    """Remove a tag.
329

330
    """
331
    self.ValidateTag(tag)
332
    tags = self.GetTags()
333
    try:
334
      tags.remove(tag)
335
    except KeyError:
336
      raise errors.TagError("Tag not found")
337

    
338
  def ToDict(self):
339
    """Taggable-object-specific conversion to standard python types.
340

341
    This replaces the tags set with a list.
342

343
    """
344
    bo = super(TaggableObject, self).ToDict()
345

    
346
    tags = bo.get("tags", None)
347
    if isinstance(tags, set):
348
      bo["tags"] = list(tags)
349
    return bo
350

    
351
  @classmethod
352
  def FromDict(cls, val):
353
    """Custom function for instances.
354

355
    """
356
    obj = super(TaggableObject, cls).FromDict(val)
357
    if hasattr(obj, "tags") and isinstance(obj.tags, list):
358
      obj.tags = set(obj.tags)
359
    return obj
360

    
361

    
362
class MasterNetworkParameters(ConfigObject):
363
  """Network configuration parameters for the master
364

365
  @ivar uuid: master nodes UUID
366
  @ivar ip: master IP
367
  @ivar netmask: master netmask
368
  @ivar netdev: master network device
369
  @ivar ip_family: master IP family
370

371
  """
372
  __slots__ = [
373
    "uuid",
374
    "ip",
375
    "netmask",
376
    "netdev",
377
    "ip_family",
378
    ]
379

    
380

    
381
class ConfigData(ConfigObject):
382
  """Top-level config object."""
383
  __slots__ = [
384
    "version",
385
    "cluster",
386
    "nodes",
387
    "nodegroups",
388
    "instances",
389
    "networks",
390
    "serial_no",
391
    ] + _TIMESTAMPS
392

    
393
  def ToDict(self):
394
    """Custom function for top-level config data.
395

396
    This just replaces the list of instances, nodes and the cluster
397
    with standard python types.
398

399
    """
400
    mydict = super(ConfigData, self).ToDict()
401
    mydict["cluster"] = mydict["cluster"].ToDict()
402
    for key in "nodes", "instances", "nodegroups", "networks":
403
      mydict[key] = outils.ContainerToDicts(mydict[key])
404

    
405
    return mydict
406

    
407
  @classmethod
408
  def FromDict(cls, val):
409
    """Custom function for top-level config data
410

411
    """
412
    obj = super(ConfigData, cls).FromDict(val)
413
    obj.cluster = Cluster.FromDict(obj.cluster)
414
    obj.nodes = outils.ContainerFromDicts(obj.nodes, dict, Node)
415
    obj.instances = \
416
      outils.ContainerFromDicts(obj.instances, dict, Instance)
417
    obj.nodegroups = \
418
      outils.ContainerFromDicts(obj.nodegroups, dict, NodeGroup)
419
    obj.networks = outils.ContainerFromDicts(obj.networks, dict, Network)
420
    return obj
421

    
422
  def HasAnyDiskOfType(self, dev_type):
423
    """Check if in there is at disk of the given type in the configuration.
424

425
    @type dev_type: L{constants.DTS_BLOCK}
426
    @param dev_type: the type to look for
427
    @rtype: boolean
428
    @return: boolean indicating if a disk of the given type was found or not
429

430
    """
431
    for instance in self.instances.values():
432
      for disk in instance.disks:
433
        if disk.IsBasedOnDiskType(dev_type):
434
          return True
435
    return False
436

    
437
  def UpgradeConfig(self):
438
    """Fill defaults for missing configuration values.
439

440
    """
441
    self.cluster.UpgradeConfig()
442
    for node in self.nodes.values():
443
      node.UpgradeConfig()
444
    for instance in self.instances.values():
445
      instance.UpgradeConfig()
446
    if self.nodegroups is None:
447
      self.nodegroups = {}
448
    for nodegroup in self.nodegroups.values():
449
      nodegroup.UpgradeConfig()
450
    if self.cluster.drbd_usermode_helper is None:
451
      if self.cluster.IsDiskTemplateEnabled(constants.DT_DRBD8):
452
        self.cluster.drbd_usermode_helper = constants.DEFAULT_DRBD_HELPER
453
    if self.networks is None:
454
      self.networks = {}
455
    for network in self.networks.values():
456
      network.UpgradeConfig()
457
    self._UpgradeEnabledDiskTemplates()
458

    
459
  def _UpgradeEnabledDiskTemplates(self):
460
    """Upgrade the cluster's enabled disk templates by inspecting the currently
461
       enabled and/or used disk templates.
462

463
    """
464
    # enabled_disk_templates in the cluster config were introduced in 2.8.
465
    # Remove this code once upgrading from earlier versions is deprecated.
466
    if not self.cluster.enabled_disk_templates:
467
      template_set = \
468
        set([inst.disk_template for inst in self.instances.values()])
469
      # Add drbd and plain, if lvm is enabled (by specifying a volume group)
470
      if self.cluster.volume_group_name:
471
        template_set.add(constants.DT_DRBD8)
472
        template_set.add(constants.DT_PLAIN)
473
      # Set enabled_disk_templates to the inferred disk templates. Order them
474
      # according to a preference list that is based on Ganeti's history of
475
      # supported disk templates.
476
      self.cluster.enabled_disk_templates = []
477
      for preferred_template in constants.DISK_TEMPLATE_PREFERENCE:
478
        if preferred_template in template_set:
479
          self.cluster.enabled_disk_templates.append(preferred_template)
480
          template_set.remove(preferred_template)
481
      self.cluster.enabled_disk_templates.extend(list(template_set))
482

    
483

    
484
class NIC(ConfigObject):
485
  """Config object representing a network card."""
486
  __slots__ = ["name", "mac", "ip", "network", "nicparams", "netinfo"] + _UUID
487

    
488
  @classmethod
489
  def CheckParameterSyntax(cls, nicparams):
490
    """Check the given parameters for validity.
491

492
    @type nicparams:  dict
493
    @param nicparams: dictionary with parameter names/value
494
    @raise errors.ConfigurationError: when a parameter is not valid
495

496
    """
497
    mode = nicparams[constants.NIC_MODE]
498
    if (mode not in constants.NIC_VALID_MODES and
499
        mode != constants.VALUE_AUTO):
500
      raise errors.ConfigurationError("Invalid NIC mode '%s'" % mode)
501

    
502
    if (mode == constants.NIC_MODE_BRIDGED and
503
        not nicparams[constants.NIC_LINK]):
504
      raise errors.ConfigurationError("Missing bridged NIC link")
505

    
506

    
507
class Disk(ConfigObject):
508
  """Config object representing a block device."""
509
  __slots__ = (["name", "dev_type", "logical_id", "children", "iv_name",
510
                "size", "mode", "params", "spindles"] + _UUID +
511
               # dynamic_params is special. It depends on the node this instance
512
               # is sent to, and should not be persisted.
513
               ["dynamic_params"])
514

    
515
  def CreateOnSecondary(self):
516
    """Test if this device needs to be created on a secondary node."""
517
    return self.dev_type in (constants.DT_DRBD8, constants.DT_PLAIN)
518

    
519
  def AssembleOnSecondary(self):
520
    """Test if this device needs to be assembled on a secondary node."""
521
    return self.dev_type in (constants.DT_DRBD8, constants.DT_PLAIN)
522

    
523
  def OpenOnSecondary(self):
524
    """Test if this device needs to be opened on a secondary node."""
525
    return self.dev_type in (constants.DT_PLAIN,)
526

    
527
  def StaticDevPath(self):
528
    """Return the device path if this device type has a static one.
529

530
    Some devices (LVM for example) live always at the same /dev/ path,
531
    irrespective of their status. For such devices, we return this
532
    path, for others we return None.
533

534
    @warning: The path returned is not a normalized pathname; callers
535
        should check that it is a valid path.
536

537
    """
538
    if self.dev_type == constants.DT_PLAIN:
539
      return "/dev/%s/%s" % (self.logical_id[0], self.logical_id[1])
540
    elif self.dev_type == constants.DT_BLOCK:
541
      return self.logical_id[1]
542
    elif self.dev_type == constants.DT_RBD:
543
      return "/dev/%s/%s" % (self.logical_id[0], self.logical_id[1])
544
    return None
545

    
546
  def ChildrenNeeded(self):
547
    """Compute the needed number of children for activation.
548

549
    This method will return either -1 (all children) or a positive
550
    number denoting the minimum number of children needed for
551
    activation (only mirrored devices will usually return >=0).
552

553
    Currently, only DRBD8 supports diskless activation (therefore we
554
    return 0), for all other we keep the previous semantics and return
555
    -1.
556

557
    """
558
    if self.dev_type == constants.DT_DRBD8:
559
      return 0
560
    return -1
561

    
562
  def IsBasedOnDiskType(self, dev_type):
563
    """Check if the disk or its children are based on the given type.
564

565
    @type dev_type: L{constants.DTS_BLOCK}
566
    @param dev_type: the type to look for
567
    @rtype: boolean
568
    @return: boolean indicating if a device of the given type was found or not
569

570
    """
571
    if self.children:
572
      for child in self.children:
573
        if child.IsBasedOnDiskType(dev_type):
574
          return True
575
    return self.dev_type == dev_type
576

    
577
  def GetNodes(self, node_uuid):
578
    """This function returns the nodes this device lives on.
579

580
    Given the node on which the parent of the device lives on (or, in
581
    case of a top-level device, the primary node of the devices'
582
    instance), this function will return a list of nodes on which this
583
    devices needs to (or can) be assembled.
584

585
    """
586
    if self.dev_type in [constants.DT_PLAIN, constants.DT_FILE,
587
                         constants.DT_BLOCK, constants.DT_RBD,
588
                         constants.DT_EXT, constants.DT_SHARED_FILE]:
589
      result = [node_uuid]
590
    elif self.dev_type in constants.LDS_DRBD:
591
      result = [self.logical_id[0], self.logical_id[1]]
592
      if node_uuid not in result:
593
        raise errors.ConfigurationError("DRBD device passed unknown node")
594
    else:
595
      raise errors.ProgrammerError("Unhandled device type %s" % self.dev_type)
596
    return result
597

    
598
  def ComputeNodeTree(self, parent_node_uuid):
599
    """Compute the node/disk tree for this disk and its children.
600

601
    This method, given the node on which the parent disk lives, will
602
    return the list of all (node UUID, disk) pairs which describe the disk
603
    tree in the most compact way. For example, a drbd/lvm stack
604
    will be returned as (primary_node, drbd) and (secondary_node, drbd)
605
    which represents all the top-level devices on the nodes.
606

607
    """
608
    my_nodes = self.GetNodes(parent_node_uuid)
609
    result = [(node, self) for node in my_nodes]
610
    if not self.children:
611
      # leaf device
612
      return result
613
    for node in my_nodes:
614
      for child in self.children:
615
        child_result = child.ComputeNodeTree(node)
616
        if len(child_result) == 1:
617
          # child (and all its descendants) is simple, doesn't split
618
          # over multiple hosts, so we don't need to describe it, our
619
          # own entry for this node describes it completely
620
          continue
621
        else:
622
          # check if child nodes differ from my nodes; note that
623
          # subdisk can differ from the child itself, and be instead
624
          # one of its descendants
625
          for subnode, subdisk in child_result:
626
            if subnode not in my_nodes:
627
              result.append((subnode, subdisk))
628
            # otherwise child is under our own node, so we ignore this
629
            # entry (but probably the other results in the list will
630
            # be different)
631
    return result
632

    
633
  def ComputeGrowth(self, amount):
634
    """Compute the per-VG growth requirements.
635

636
    This only works for VG-based disks.
637

638
    @type amount: integer
639
    @param amount: the desired increase in (user-visible) disk space
640
    @rtype: dict
641
    @return: a dictionary of volume-groups and the required size
642

643
    """
644
    if self.dev_type == constants.DT_PLAIN:
645
      return {self.logical_id[0]: amount}
646
    elif self.dev_type == constants.DT_DRBD8:
647
      if self.children:
648
        return self.children[0].ComputeGrowth(amount)
649
      else:
650
        return {}
651
    else:
652
      # Other disk types do not require VG space
653
      return {}
654

    
655
  def RecordGrow(self, amount):
656
    """Update the size of this disk after growth.
657

658
    This method recurses over the disks's children and updates their
659
    size correspondigly. The method needs to be kept in sync with the
660
    actual algorithms from bdev.
661

662
    """
663
    if self.dev_type in (constants.DT_PLAIN, constants.DT_FILE,
664
                         constants.DT_RBD, constants.DT_EXT,
665
                         constants.DT_SHARED_FILE):
666
      self.size += amount
667
    elif self.dev_type == constants.DT_DRBD8:
668
      if self.children:
669
        self.children[0].RecordGrow(amount)
670
      self.size += amount
671
    else:
672
      raise errors.ProgrammerError("Disk.RecordGrow called for unsupported"
673
                                   " disk type %s" % self.dev_type)
674

    
675
  def Update(self, size=None, mode=None, spindles=None):
676
    """Apply changes to size, spindles and mode.
677

678
    """
679
    if self.dev_type == constants.DT_DRBD8:
680
      if self.children:
681
        self.children[0].Update(size=size, mode=mode)
682
    else:
683
      assert not self.children
684

    
685
    if size is not None:
686
      self.size = size
687
    if mode is not None:
688
      self.mode = mode
689
    if spindles is not None:
690
      self.spindles = spindles
691

    
692
  def UnsetSize(self):
693
    """Sets recursively the size to zero for the disk and its children.
694

695
    """
696
    if self.children:
697
      for child in self.children:
698
        child.UnsetSize()
699
    self.size = 0
700

    
701
  def UpdateDynamicDiskParams(self, target_node_uuid, nodes_ip):
702
    """Updates the dynamic disk params for the given node.
703

704
    This is mainly used for drbd, which needs ip/port configuration.
705

706
    Arguments:
707
      - target_node_uuid: the node UUID we wish to configure for
708
      - nodes_ip: a mapping of node name to ip
709

710
    The target_node must exist in nodes_ip, and should be one of the
711
    nodes in the logical ID if this device is a DRBD device.
712

713
    """
714
    if self.children:
715
      for child in self.children:
716
        child.UpdateDynamicDiskParams(target_node_uuid, nodes_ip)
717

    
718
    dyn_disk_params = {}
719
    if self.logical_id is not None and self.dev_type in constants.LDS_DRBD:
720
      pnode_uuid, snode_uuid, _, pminor, sminor, _ = self.logical_id
721
      if target_node_uuid not in (pnode_uuid, snode_uuid):
722
        # disk object is being sent to neither the primary nor the secondary
723
        # node. reset the dynamic parameters, the target node is not
724
        # supposed to use them.
725
        self.dynamic_params = dyn_disk_params
726
        return
727

    
728
      pnode_ip = nodes_ip.get(pnode_uuid, None)
729
      snode_ip = nodes_ip.get(snode_uuid, None)
730
      if pnode_ip is None or snode_ip is None:
731
        raise errors.ConfigurationError("Can't find primary or secondary node"
732
                                        " for %s" % str(self))
733
      if pnode_uuid == target_node_uuid:
734
        dyn_disk_params[constants.DDP_LOCAL_IP] = pnode_ip
735
        dyn_disk_params[constants.DDP_REMOTE_IP] = snode_ip
736
        dyn_disk_params[constants.DDP_LOCAL_MINOR] = pminor
737
        dyn_disk_params[constants.DDP_REMOTE_MINOR] = sminor
738
      else: # it must be secondary, we tested above
739
        dyn_disk_params[constants.DDP_LOCAL_IP] = snode_ip
740
        dyn_disk_params[constants.DDP_REMOTE_IP] = pnode_ip
741
        dyn_disk_params[constants.DDP_LOCAL_MINOR] = sminor
742
        dyn_disk_params[constants.DDP_REMOTE_MINOR] = pminor
743

    
744
    self.dynamic_params = dyn_disk_params
745

    
746
  # pylint: disable=W0221
747
  def ToDict(self, include_dynamic_params=False):
748
    """Disk-specific conversion to standard python types.
749

750
    This replaces the children lists of objects with lists of
751
    standard python types.
752

753
    """
754
    bo = super(Disk, self).ToDict()
755
    if not include_dynamic_params and "dynamic_params" in bo:
756
      del bo["dynamic_params"]
757

    
758
    for attr in ("children",):
759
      alist = bo.get(attr, None)
760
      if alist:
761
        bo[attr] = outils.ContainerToDicts(alist)
762
    return bo
763

    
764
  @classmethod
765
  def FromDict(cls, val):
766
    """Custom function for Disks
767

768
    """
769
    obj = super(Disk, cls).FromDict(val)
770
    if obj.children:
771
      obj.children = outils.ContainerFromDicts(obj.children, list, Disk)
772
    if obj.logical_id and isinstance(obj.logical_id, list):
773
      obj.logical_id = tuple(obj.logical_id)
774
    if obj.dev_type in constants.LDS_DRBD:
775
      # we need a tuple of length six here
776
      if len(obj.logical_id) < 6:
777
        obj.logical_id += (None,) * (6 - len(obj.logical_id))
778
    return obj
779

    
780
  def __str__(self):
781
    """Custom str() formatter for disks.
782

783
    """
784
    if self.dev_type == constants.DT_PLAIN:
785
      val = "<LogicalVolume(/dev/%s/%s" % self.logical_id
786
    elif self.dev_type in constants.LDS_DRBD:
787
      node_a, node_b, port, minor_a, minor_b = self.logical_id[:5]
788
      val = "<DRBD8("
789

    
790
      val += ("hosts=%s/%d-%s/%d, port=%s, " %
791
              (node_a, minor_a, node_b, minor_b, port))
792
      if self.children and self.children.count(None) == 0:
793
        val += "backend=%s, metadev=%s" % (self.children[0], self.children[1])
794
      else:
795
        val += "no local storage"
796
    else:
797
      val = ("<Disk(type=%s, logical_id=%s, children=%s" %
798
             (self.dev_type, self.logical_id, self.children))
799
    if self.iv_name is None:
800
      val += ", not visible"
801
    else:
802
      val += ", visible as /dev/%s" % self.iv_name
803
    if self.spindles is not None:
804
      val += ", spindles=%s" % self.spindles
805
    if isinstance(self.size, int):
806
      val += ", size=%dm)>" % self.size
807
    else:
808
      val += ", size='%s')>" % (self.size,)
809
    return val
810

    
811
  def Verify(self):
812
    """Checks that this disk is correctly configured.
813

814
    """
815
    all_errors = []
816
    if self.mode not in constants.DISK_ACCESS_SET:
817
      all_errors.append("Disk access mode '%s' is invalid" % (self.mode, ))
818
    return all_errors
819

    
820
  def UpgradeConfig(self):
821
    """Fill defaults for missing configuration values.
822

823
    """
824
    if self.children:
825
      for child in self.children:
826
        child.UpgradeConfig()
827

    
828
    # FIXME: Make this configurable in Ganeti 2.7
829
    self.params = {}
830
    # add here config upgrade for this disk
831

    
832
    # map of legacy device types (mapping differing LD constants to new
833
    # DT constants)
834
    LEG_DEV_TYPE_MAP = {"lvm": constants.DT_PLAIN, "drbd8": constants.DT_DRBD8}
835
    if self.dev_type in LEG_DEV_TYPE_MAP:
836
      self.dev_type = LEG_DEV_TYPE_MAP[self.dev_type]
837

    
838
  @staticmethod
839
  def ComputeLDParams(disk_template, disk_params):
840
    """Computes Logical Disk parameters from Disk Template parameters.
841

842
    @type disk_template: string
843
    @param disk_template: disk template, one of L{constants.DISK_TEMPLATES}
844
    @type disk_params: dict
845
    @param disk_params: disk template parameters;
846
                        dict(template_name -> parameters
847
    @rtype: list(dict)
848
    @return: a list of dicts, one for each node of the disk hierarchy. Each dict
849
      contains the LD parameters of the node. The tree is flattened in-order.
850

851
    """
852
    if disk_template not in constants.DISK_TEMPLATES:
853
      raise errors.ProgrammerError("Unknown disk template %s" % disk_template)
854

    
855
    assert disk_template in disk_params
856

    
857
    result = list()
858
    dt_params = disk_params[disk_template]
859
    if disk_template == constants.DT_DRBD8:
860
      result.append(FillDict(constants.DISK_LD_DEFAULTS[constants.DT_DRBD8], {
861
        constants.LDP_RESYNC_RATE: dt_params[constants.DRBD_RESYNC_RATE],
862
        constants.LDP_BARRIERS: dt_params[constants.DRBD_DISK_BARRIERS],
863
        constants.LDP_NO_META_FLUSH: dt_params[constants.DRBD_META_BARRIERS],
864
        constants.LDP_DEFAULT_METAVG: dt_params[constants.DRBD_DEFAULT_METAVG],
865
        constants.LDP_DISK_CUSTOM: dt_params[constants.DRBD_DISK_CUSTOM],
866
        constants.LDP_NET_CUSTOM: dt_params[constants.DRBD_NET_CUSTOM],
867
        constants.LDP_PROTOCOL: dt_params[constants.DRBD_PROTOCOL],
868
        constants.LDP_DYNAMIC_RESYNC: dt_params[constants.DRBD_DYNAMIC_RESYNC],
869
        constants.LDP_PLAN_AHEAD: dt_params[constants.DRBD_PLAN_AHEAD],
870
        constants.LDP_FILL_TARGET: dt_params[constants.DRBD_FILL_TARGET],
871
        constants.LDP_DELAY_TARGET: dt_params[constants.DRBD_DELAY_TARGET],
872
        constants.LDP_MAX_RATE: dt_params[constants.DRBD_MAX_RATE],
873
        constants.LDP_MIN_RATE: dt_params[constants.DRBD_MIN_RATE],
874
        }))
875

    
876
      # data LV
877
      result.append(FillDict(constants.DISK_LD_DEFAULTS[constants.DT_PLAIN], {
878
        constants.LDP_STRIPES: dt_params[constants.DRBD_DATA_STRIPES],
879
        }))
880

    
881
      # metadata LV
882
      result.append(FillDict(constants.DISK_LD_DEFAULTS[constants.DT_PLAIN], {
883
        constants.LDP_STRIPES: dt_params[constants.DRBD_META_STRIPES],
884
        }))
885

    
886
    elif disk_template in (constants.DT_FILE, constants.DT_SHARED_FILE):
887
      result.append(constants.DISK_LD_DEFAULTS[disk_template])
888

    
889
    elif disk_template == constants.DT_PLAIN:
890
      result.append(FillDict(constants.DISK_LD_DEFAULTS[constants.DT_PLAIN], {
891
        constants.LDP_STRIPES: dt_params[constants.LV_STRIPES],
892
        }))
893

    
894
    elif disk_template == constants.DT_BLOCK:
895
      result.append(constants.DISK_LD_DEFAULTS[constants.DT_BLOCK])
896

    
897
    elif disk_template == constants.DT_RBD:
898
      result.append(FillDict(constants.DISK_LD_DEFAULTS[constants.DT_RBD], {
899
        constants.LDP_POOL: dt_params[constants.RBD_POOL],
900
        }))
901

    
902
    elif disk_template == constants.DT_EXT:
903
      result.append(constants.DISK_LD_DEFAULTS[constants.DT_EXT])
904

    
905
    return result
906

    
907

    
908
class InstancePolicy(ConfigObject):
909
  """Config object representing instance policy limits dictionary.
910

911
  Note that this object is not actually used in the config, it's just
912
  used as a placeholder for a few functions.
913

914
  """
915
  @classmethod
916
  def CheckParameterSyntax(cls, ipolicy, check_std):
917
    """ Check the instance policy for validity.
918

919
    @type ipolicy: dict
920
    @param ipolicy: dictionary with min/max/std specs and policies
921
    @type check_std: bool
922
    @param check_std: Whether to check std value or just assume compliance
923
    @raise errors.ConfigurationError: when the policy is not legal
924

925
    """
926
    InstancePolicy.CheckISpecSyntax(ipolicy, check_std)
927
    if constants.IPOLICY_DTS in ipolicy:
928
      InstancePolicy.CheckDiskTemplates(ipolicy[constants.IPOLICY_DTS])
929
    for key in constants.IPOLICY_PARAMETERS:
930
      if key in ipolicy:
931
        InstancePolicy.CheckParameter(key, ipolicy[key])
932
    wrong_keys = frozenset(ipolicy.keys()) - constants.IPOLICY_ALL_KEYS
933
    if wrong_keys:
934
      raise errors.ConfigurationError("Invalid keys in ipolicy: %s" %
935
                                      utils.CommaJoin(wrong_keys))
936

    
937
  @classmethod
938
  def _CheckIncompleteSpec(cls, spec, keyname):
939
    missing_params = constants.ISPECS_PARAMETERS - frozenset(spec.keys())
940
    if missing_params:
941
      msg = ("Missing instance specs parameters for %s: %s" %
942
             (keyname, utils.CommaJoin(missing_params)))
943
      raise errors.ConfigurationError(msg)
944

    
945
  @classmethod
946
  def CheckISpecSyntax(cls, ipolicy, check_std):
947
    """Check the instance policy specs for validity.
948

949
    @type ipolicy: dict
950
    @param ipolicy: dictionary with min/max/std specs
951
    @type check_std: bool
952
    @param check_std: Whether to check std value or just assume compliance
953
    @raise errors.ConfigurationError: when specs are not valid
954

955
    """
956
    if constants.ISPECS_MINMAX not in ipolicy:
957
      # Nothing to check
958
      return
959

    
960
    if check_std and constants.ISPECS_STD not in ipolicy:
961
      msg = "Missing key in ipolicy: %s" % constants.ISPECS_STD
962
      raise errors.ConfigurationError(msg)
963
    stdspec = ipolicy.get(constants.ISPECS_STD)
964
    if check_std:
965
      InstancePolicy._CheckIncompleteSpec(stdspec, constants.ISPECS_STD)
966

    
967
    if not ipolicy[constants.ISPECS_MINMAX]:
968
      raise errors.ConfigurationError("Empty minmax specifications")
969
    std_is_good = False
970
    for minmaxspecs in ipolicy[constants.ISPECS_MINMAX]:
971
      missing = constants.ISPECS_MINMAX_KEYS - frozenset(minmaxspecs.keys())
972
      if missing:
973
        msg = "Missing instance specification: %s" % utils.CommaJoin(missing)
974
        raise errors.ConfigurationError(msg)
975
      for (key, spec) in minmaxspecs.items():
976
        InstancePolicy._CheckIncompleteSpec(spec, key)
977

    
978
      spec_std_ok = True
979
      for param in constants.ISPECS_PARAMETERS:
980
        par_std_ok = InstancePolicy._CheckISpecParamSyntax(minmaxspecs, stdspec,
981
                                                           param, check_std)
982
        spec_std_ok = spec_std_ok and par_std_ok
983
      std_is_good = std_is_good or spec_std_ok
984
    if not std_is_good:
985
      raise errors.ConfigurationError("Invalid std specifications")
986

    
987
  @classmethod
988
  def _CheckISpecParamSyntax(cls, minmaxspecs, stdspec, name, check_std):
989
    """Check the instance policy specs for validity on a given key.
990

991
    We check if the instance specs makes sense for a given key, that is
992
    if minmaxspecs[min][name] <= stdspec[name] <= minmaxspec[max][name].
993

994
    @type minmaxspecs: dict
995
    @param minmaxspecs: dictionary with min and max instance spec
996
    @type stdspec: dict
997
    @param stdspec: dictionary with standard instance spec
998
    @type name: string
999
    @param name: what are the limits for
1000
    @type check_std: bool
1001
    @param check_std: Whether to check std value or just assume compliance
1002
    @rtype: bool
1003
    @return: C{True} when specs are valid, C{False} when standard spec for the
1004
        given name is not valid
1005
    @raise errors.ConfigurationError: when min/max specs for the given name
1006
        are not valid
1007

1008
    """
1009
    minspec = minmaxspecs[constants.ISPECS_MIN]
1010
    maxspec = minmaxspecs[constants.ISPECS_MAX]
1011
    min_v = minspec[name]
1012
    max_v = maxspec[name]
1013

    
1014
    if min_v > max_v:
1015
      err = ("Invalid specification of min/max values for %s: %s/%s" %
1016
             (name, min_v, max_v))
1017
      raise errors.ConfigurationError(err)
1018
    elif check_std:
1019
      std_v = stdspec.get(name, min_v)
1020
      return std_v >= min_v and std_v <= max_v
1021
    else:
1022
      return True
1023

    
1024
  @classmethod
1025
  def CheckDiskTemplates(cls, disk_templates):
1026
    """Checks the disk templates for validity.
1027

1028
    """
1029
    if not disk_templates:
1030
      raise errors.ConfigurationError("Instance policy must contain" +
1031
                                      " at least one disk template")
1032
    wrong = frozenset(disk_templates).difference(constants.DISK_TEMPLATES)
1033
    if wrong:
1034
      raise errors.ConfigurationError("Invalid disk template(s) %s" %
1035
                                      utils.CommaJoin(wrong))
1036

    
1037
  @classmethod
1038
  def CheckParameter(cls, key, value):
1039
    """Checks a parameter.
1040

1041
    Currently we expect all parameters to be float values.
1042

1043
    """
1044
    try:
1045
      float(value)
1046
    except (TypeError, ValueError), err:
1047
      raise errors.ConfigurationError("Invalid value for key" " '%s':"
1048
                                      " '%s', error: %s" % (key, value, err))
1049

    
1050

    
1051
class Instance(TaggableObject):
1052
  """Config object representing an instance."""
1053
  __slots__ = [
1054
    "name",
1055
    "primary_node",
1056
    "os",
1057
    "hypervisor",
1058
    "hvparams",
1059
    "beparams",
1060
    "osparams",
1061
    "admin_state",
1062
    "nics",
1063
    "disks",
1064
    "disk_template",
1065
    "disks_active",
1066
    "network_port",
1067
    "serial_no",
1068
    ] + _TIMESTAMPS + _UUID
1069

    
1070
  def _ComputeSecondaryNodes(self):
1071
    """Compute the list of secondary nodes.
1072

1073
    This is a simple wrapper over _ComputeAllNodes.
1074

1075
    """
1076
    all_nodes = set(self._ComputeAllNodes())
1077
    all_nodes.discard(self.primary_node)
1078
    return tuple(all_nodes)
1079

    
1080
  secondary_nodes = property(_ComputeSecondaryNodes, None, None,
1081
                             "List of names of secondary nodes")
1082

    
1083
  def _ComputeAllNodes(self):
1084
    """Compute the list of all nodes.
1085

1086
    Since the data is already there (in the drbd disks), keeping it as
1087
    a separate normal attribute is redundant and if not properly
1088
    synchronised can cause problems. Thus it's better to compute it
1089
    dynamically.
1090

1091
    """
1092
    def _Helper(nodes, device):
1093
      """Recursively computes nodes given a top device."""
1094
      if device.dev_type in constants.LDS_DRBD:
1095
        nodea, nodeb = device.logical_id[:2]
1096
        nodes.add(nodea)
1097
        nodes.add(nodeb)
1098
      if device.children:
1099
        for child in device.children:
1100
          _Helper(nodes, child)
1101

    
1102
    all_nodes = set()
1103
    all_nodes.add(self.primary_node)
1104
    for device in self.disks:
1105
      _Helper(all_nodes, device)
1106
    return tuple(all_nodes)
1107

    
1108
  all_nodes = property(_ComputeAllNodes, None, None,
1109
                       "List of names of all the nodes of the instance")
1110

    
1111
  def MapLVsByNode(self, lvmap=None, devs=None, node_uuid=None):
1112
    """Provide a mapping of nodes to LVs this instance owns.
1113

1114
    This function figures out what logical volumes should belong on
1115
    which nodes, recursing through a device tree.
1116

1117
    @type lvmap: dict
1118
    @param lvmap: optional dictionary to receive the
1119
        'node' : ['lv', ...] data.
1120
    @type devs: list of L{Disk}
1121
    @param devs: disks to get the LV name for. If None, all disk of this
1122
        instance are used.
1123
    @type node_uuid: string
1124
    @param node_uuid: UUID of the node to get the LV names for. If None, the
1125
        primary node of this instance is used.
1126
    @return: None if lvmap arg is given, otherwise, a dictionary of
1127
        the form { 'node_uuid' : ['volume1', 'volume2', ...], ... };
1128
        volumeN is of the form "vg_name/lv_name", compatible with
1129
        GetVolumeList()
1130

1131
    """
1132
    if node_uuid is None:
1133
      node_uuid = self.primary_node
1134

    
1135
    if lvmap is None:
1136
      lvmap = {
1137
        node_uuid: [],
1138
        }
1139
      ret = lvmap
1140
    else:
1141
      if not node_uuid in lvmap:
1142
        lvmap[node_uuid] = []
1143
      ret = None
1144

    
1145
    if not devs:
1146
      devs = self.disks
1147

    
1148
    for dev in devs:
1149
      if dev.dev_type == constants.DT_PLAIN:
1150
        lvmap[node_uuid].append(dev.logical_id[0] + "/" + dev.logical_id[1])
1151

    
1152
      elif dev.dev_type in constants.LDS_DRBD:
1153
        if dev.children:
1154
          self.MapLVsByNode(lvmap, dev.children, dev.logical_id[0])
1155
          self.MapLVsByNode(lvmap, dev.children, dev.logical_id[1])
1156

    
1157
      elif dev.children:
1158
        self.MapLVsByNode(lvmap, dev.children, node_uuid)
1159

    
1160
    return ret
1161

    
1162
  def FindDisk(self, idx):
1163
    """Find a disk given having a specified index.
1164

1165
    This is just a wrapper that does validation of the index.
1166

1167
    @type idx: int
1168
    @param idx: the disk index
1169
    @rtype: L{Disk}
1170
    @return: the corresponding disk
1171
    @raise errors.OpPrereqError: when the given index is not valid
1172

1173
    """
1174
    try:
1175
      idx = int(idx)
1176
      return self.disks[idx]
1177
    except (TypeError, ValueError), err:
1178
      raise errors.OpPrereqError("Invalid disk index: '%s'" % str(err),
1179
                                 errors.ECODE_INVAL)
1180
    except IndexError:
1181
      raise errors.OpPrereqError("Invalid disk index: %d (instace has disks"
1182
                                 " 0 to %d" % (idx, len(self.disks) - 1),
1183
                                 errors.ECODE_INVAL)
1184

    
1185
  def ToDict(self):
1186
    """Instance-specific conversion to standard python types.
1187

1188
    This replaces the children lists of objects with lists of standard
1189
    python types.
1190

1191
    """
1192
    bo = super(Instance, self).ToDict()
1193

    
1194
    for attr in "nics", "disks":
1195
      alist = bo.get(attr, None)
1196
      if alist:
1197
        nlist = outils.ContainerToDicts(alist)
1198
      else:
1199
        nlist = []
1200
      bo[attr] = nlist
1201
    return bo
1202

    
1203
  @classmethod
1204
  def FromDict(cls, val):
1205
    """Custom function for instances.
1206

1207
    """
1208
    if "admin_state" not in val:
1209
      if val.get("admin_up", False):
1210
        val["admin_state"] = constants.ADMINST_UP
1211
      else:
1212
        val["admin_state"] = constants.ADMINST_DOWN
1213
    if "admin_up" in val:
1214
      del val["admin_up"]
1215
    obj = super(Instance, cls).FromDict(val)
1216
    obj.nics = outils.ContainerFromDicts(obj.nics, list, NIC)
1217
    obj.disks = outils.ContainerFromDicts(obj.disks, list, Disk)
1218
    return obj
1219

    
1220
  def UpgradeConfig(self):
1221
    """Fill defaults for missing configuration values.
1222

1223
    """
1224
    for nic in self.nics:
1225
      nic.UpgradeConfig()
1226
    for disk in self.disks:
1227
      disk.UpgradeConfig()
1228
    if self.hvparams:
1229
      for key in constants.HVC_GLOBALS:
1230
        try:
1231
          del self.hvparams[key]
1232
        except KeyError:
1233
          pass
1234
    if self.osparams is None:
1235
      self.osparams = {}
1236
    UpgradeBeParams(self.beparams)
1237
    if self.disks_active is None:
1238
      self.disks_active = self.admin_state == constants.ADMINST_UP
1239

    
1240

    
1241
class OS(ConfigObject):
1242
  """Config object representing an operating system.
1243

1244
  @type supported_parameters: list
1245
  @ivar supported_parameters: a list of tuples, name and description,
1246
      containing the supported parameters by this OS
1247

1248
  @type VARIANT_DELIM: string
1249
  @cvar VARIANT_DELIM: the variant delimiter
1250

1251
  """
1252
  __slots__ = [
1253
    "name",
1254
    "path",
1255
    "api_versions",
1256
    "create_script",
1257
    "export_script",
1258
    "import_script",
1259
    "rename_script",
1260
    "verify_script",
1261
    "supported_variants",
1262
    "supported_parameters",
1263
    ]
1264

    
1265
  VARIANT_DELIM = "+"
1266

    
1267
  @classmethod
1268
  def SplitNameVariant(cls, name):
1269
    """Splits the name into the proper name and variant.
1270

1271
    @param name: the OS (unprocessed) name
1272
    @rtype: list
1273
    @return: a list of two elements; if the original name didn't
1274
        contain a variant, it's returned as an empty string
1275

1276
    """
1277
    nv = name.split(cls.VARIANT_DELIM, 1)
1278
    if len(nv) == 1:
1279
      nv.append("")
1280
    return nv
1281

    
1282
  @classmethod
1283
  def GetName(cls, name):
1284
    """Returns the proper name of the os (without the variant).
1285

1286
    @param name: the OS (unprocessed) name
1287

1288
    """
1289
    return cls.SplitNameVariant(name)[0]
1290

    
1291
  @classmethod
1292
  def GetVariant(cls, name):
1293
    """Returns the variant the os (without the base name).
1294

1295
    @param name: the OS (unprocessed) name
1296

1297
    """
1298
    return cls.SplitNameVariant(name)[1]
1299

    
1300

    
1301
class ExtStorage(ConfigObject):
1302
  """Config object representing an External Storage Provider.
1303

1304
  """
1305
  __slots__ = [
1306
    "name",
1307
    "path",
1308
    "create_script",
1309
    "remove_script",
1310
    "grow_script",
1311
    "attach_script",
1312
    "detach_script",
1313
    "setinfo_script",
1314
    "verify_script",
1315
    "supported_parameters",
1316
    ]
1317

    
1318

    
1319
class NodeHvState(ConfigObject):
1320
  """Hypvervisor state on a node.
1321

1322
  @ivar mem_total: Total amount of memory
1323
  @ivar mem_node: Memory used by, or reserved for, the node itself (not always
1324
    available)
1325
  @ivar mem_hv: Memory used by hypervisor or lost due to instance allocation
1326
    rounding
1327
  @ivar mem_inst: Memory used by instances living on node
1328
  @ivar cpu_total: Total node CPU core count
1329
  @ivar cpu_node: Number of CPU cores reserved for the node itself
1330

1331
  """
1332
  __slots__ = [
1333
    "mem_total",
1334
    "mem_node",
1335
    "mem_hv",
1336
    "mem_inst",
1337
    "cpu_total",
1338
    "cpu_node",
1339
    ] + _TIMESTAMPS
1340

    
1341

    
1342
class NodeDiskState(ConfigObject):
1343
  """Disk state on a node.
1344

1345
  """
1346
  __slots__ = [
1347
    "total",
1348
    "reserved",
1349
    "overhead",
1350
    ] + _TIMESTAMPS
1351

    
1352

    
1353
class Node(TaggableObject):
1354
  """Config object representing a node.
1355

1356
  @ivar hv_state: Hypervisor state (e.g. number of CPUs)
1357
  @ivar hv_state_static: Hypervisor state overriden by user
1358
  @ivar disk_state: Disk state (e.g. free space)
1359
  @ivar disk_state_static: Disk state overriden by user
1360

1361
  """
1362
  __slots__ = [
1363
    "name",
1364
    "primary_ip",
1365
    "secondary_ip",
1366
    "serial_no",
1367
    "master_candidate",
1368
    "offline",
1369
    "drained",
1370
    "group",
1371
    "master_capable",
1372
    "vm_capable",
1373
    "ndparams",
1374
    "powered",
1375
    "hv_state",
1376
    "hv_state_static",
1377
    "disk_state",
1378
    "disk_state_static",
1379
    ] + _TIMESTAMPS + _UUID
1380

    
1381
  def UpgradeConfig(self):
1382
    """Fill defaults for missing configuration values.
1383

1384
    """
1385
    # pylint: disable=E0203
1386
    # because these are "defined" via slots, not manually
1387
    if self.master_capable is None:
1388
      self.master_capable = True
1389

    
1390
    if self.vm_capable is None:
1391
      self.vm_capable = True
1392

    
1393
    if self.ndparams is None:
1394
      self.ndparams = {}
1395
    # And remove any global parameter
1396
    for key in constants.NDC_GLOBALS:
1397
      if key in self.ndparams:
1398
        logging.warning("Ignoring %s node parameter for node %s",
1399
                        key, self.name)
1400
        del self.ndparams[key]
1401

    
1402
    if self.powered is None:
1403
      self.powered = True
1404

    
1405
  def ToDict(self):
1406
    """Custom function for serializing.
1407

1408
    """
1409
    data = super(Node, self).ToDict()
1410

    
1411
    hv_state = data.get("hv_state", None)
1412
    if hv_state is not None:
1413
      data["hv_state"] = outils.ContainerToDicts(hv_state)
1414

    
1415
    disk_state = data.get("disk_state", None)
1416
    if disk_state is not None:
1417
      data["disk_state"] = \
1418
        dict((key, outils.ContainerToDicts(value))
1419
             for (key, value) in disk_state.items())
1420

    
1421
    return data
1422

    
1423
  @classmethod
1424
  def FromDict(cls, val):
1425
    """Custom function for deserializing.
1426

1427
    """
1428
    obj = super(Node, cls).FromDict(val)
1429

    
1430
    if obj.hv_state is not None:
1431
      obj.hv_state = \
1432
        outils.ContainerFromDicts(obj.hv_state, dict, NodeHvState)
1433

    
1434
    if obj.disk_state is not None:
1435
      obj.disk_state = \
1436
        dict((key, outils.ContainerFromDicts(value, dict, NodeDiskState))
1437
             for (key, value) in obj.disk_state.items())
1438

    
1439
    return obj
1440

    
1441

    
1442
class NodeGroup(TaggableObject):
1443
  """Config object representing a node group."""
1444
  __slots__ = [
1445
    "name",
1446
    "members",
1447
    "ndparams",
1448
    "diskparams",
1449
    "ipolicy",
1450
    "serial_no",
1451
    "hv_state_static",
1452
    "disk_state_static",
1453
    "alloc_policy",
1454
    "networks",
1455
    ] + _TIMESTAMPS + _UUID
1456

    
1457
  def ToDict(self):
1458
    """Custom function for nodegroup.
1459

1460
    This discards the members object, which gets recalculated and is only kept
1461
    in memory.
1462

1463
    """
1464
    mydict = super(NodeGroup, self).ToDict()
1465
    del mydict["members"]
1466
    return mydict
1467

    
1468
  @classmethod
1469
  def FromDict(cls, val):
1470
    """Custom function for nodegroup.
1471

1472
    The members slot is initialized to an empty list, upon deserialization.
1473

1474
    """
1475
    obj = super(NodeGroup, cls).FromDict(val)
1476
    obj.members = []
1477
    return obj
1478

    
1479
  def UpgradeConfig(self):
1480
    """Fill defaults for missing configuration values.
1481

1482
    """
1483
    if self.ndparams is None:
1484
      self.ndparams = {}
1485

    
1486
    if self.serial_no is None:
1487
      self.serial_no = 1
1488

    
1489
    if self.alloc_policy is None:
1490
      self.alloc_policy = constants.ALLOC_POLICY_PREFERRED
1491

    
1492
    # We only update mtime, and not ctime, since we would not be able
1493
    # to provide a correct value for creation time.
1494
    if self.mtime is None:
1495
      self.mtime = time.time()
1496

    
1497
    if self.diskparams is None:
1498
      self.diskparams = {}
1499
    if self.ipolicy is None:
1500
      self.ipolicy = MakeEmptyIPolicy()
1501

    
1502
    if self.networks is None:
1503
      self.networks = {}
1504

    
1505
  def FillND(self, node):
1506
    """Return filled out ndparams for L{objects.Node}
1507

1508
    @type node: L{objects.Node}
1509
    @param node: A Node object to fill
1510
    @return a copy of the node's ndparams with defaults filled
1511

1512
    """
1513
    return self.SimpleFillND(node.ndparams)
1514

    
1515
  def SimpleFillND(self, ndparams):
1516
    """Fill a given ndparams dict with defaults.
1517

1518
    @type ndparams: dict
1519
    @param ndparams: the dict to fill
1520
    @rtype: dict
1521
    @return: a copy of the passed in ndparams with missing keys filled
1522
        from the node group defaults
1523

1524
    """
1525
    return FillDict(self.ndparams, ndparams)
1526

    
1527

    
1528
class Cluster(TaggableObject):
1529
  """Config object representing the cluster."""
1530
  __slots__ = [
1531
    "serial_no",
1532
    "rsahostkeypub",
1533
    "dsahostkeypub",
1534
    "highest_used_port",
1535
    "tcpudp_port_pool",
1536
    "mac_prefix",
1537
    "volume_group_name",
1538
    "reserved_lvs",
1539
    "drbd_usermode_helper",
1540
    "default_bridge",
1541
    "default_hypervisor",
1542
    "master_node",
1543
    "master_ip",
1544
    "master_netdev",
1545
    "master_netmask",
1546
    "use_external_mip_script",
1547
    "cluster_name",
1548
    "file_storage_dir",
1549
    "shared_file_storage_dir",
1550
    "enabled_hypervisors",
1551
    "hvparams",
1552
    "ipolicy",
1553
    "os_hvp",
1554
    "beparams",
1555
    "osparams",
1556
    "nicparams",
1557
    "ndparams",
1558
    "diskparams",
1559
    "candidate_pool_size",
1560
    "modify_etc_hosts",
1561
    "modify_ssh_setup",
1562
    "maintain_node_health",
1563
    "uid_pool",
1564
    "default_iallocator",
1565
    "hidden_os",
1566
    "blacklisted_os",
1567
    "primary_ip_family",
1568
    "prealloc_wipe_disks",
1569
    "hv_state_static",
1570
    "disk_state_static",
1571
    "enabled_disk_templates",
1572
    ] + _TIMESTAMPS + _UUID
1573

    
1574
  def UpgradeConfig(self):
1575
    """Fill defaults for missing configuration values.
1576

1577
    """
1578
    # pylint: disable=E0203
1579
    # because these are "defined" via slots, not manually
1580
    if self.hvparams is None:
1581
      self.hvparams = constants.HVC_DEFAULTS
1582
    else:
1583
      for hypervisor in self.hvparams:
1584
        self.hvparams[hypervisor] = FillDict(
1585
            constants.HVC_DEFAULTS[hypervisor], self.hvparams[hypervisor])
1586

    
1587
    if self.os_hvp is None:
1588
      self.os_hvp = {}
1589

    
1590
    # osparams added before 2.2
1591
    if self.osparams is None:
1592
      self.osparams = {}
1593

    
1594
    self.ndparams = UpgradeNDParams(self.ndparams)
1595

    
1596
    self.beparams = UpgradeGroupedParams(self.beparams,
1597
                                         constants.BEC_DEFAULTS)
1598
    for beparams_group in self.beparams:
1599
      UpgradeBeParams(self.beparams[beparams_group])
1600

    
1601
    migrate_default_bridge = not self.nicparams
1602
    self.nicparams = UpgradeGroupedParams(self.nicparams,
1603
                                          constants.NICC_DEFAULTS)
1604
    if migrate_default_bridge:
1605
      self.nicparams[constants.PP_DEFAULT][constants.NIC_LINK] = \
1606
        self.default_bridge
1607

    
1608
    if self.modify_etc_hosts is None:
1609
      self.modify_etc_hosts = True
1610

    
1611
    if self.modify_ssh_setup is None:
1612
      self.modify_ssh_setup = True
1613

    
1614
    # default_bridge is no longer used in 2.1. The slot is left there to
1615
    # support auto-upgrading. It can be removed once we decide to deprecate
1616
    # upgrading straight from 2.0.
1617
    if self.default_bridge is not None:
1618
      self.default_bridge = None
1619

    
1620
    # default_hypervisor is just the first enabled one in 2.1. This slot and
1621
    # code can be removed once upgrading straight from 2.0 is deprecated.
1622
    if self.default_hypervisor is not None:
1623
      self.enabled_hypervisors = ([self.default_hypervisor] +
1624
                                  [hvname for hvname in self.enabled_hypervisors
1625
                                   if hvname != self.default_hypervisor])
1626
      self.default_hypervisor = None
1627

    
1628
    # maintain_node_health added after 2.1.1
1629
    if self.maintain_node_health is None:
1630
      self.maintain_node_health = False
1631

    
1632
    if self.uid_pool is None:
1633
      self.uid_pool = []
1634

    
1635
    if self.default_iallocator is None:
1636
      self.default_iallocator = ""
1637

    
1638
    # reserved_lvs added before 2.2
1639
    if self.reserved_lvs is None:
1640
      self.reserved_lvs = []
1641

    
1642
    # hidden and blacklisted operating systems added before 2.2.1
1643
    if self.hidden_os is None:
1644
      self.hidden_os = []
1645

    
1646
    if self.blacklisted_os is None:
1647
      self.blacklisted_os = []
1648

    
1649
    # primary_ip_family added before 2.3
1650
    if self.primary_ip_family is None:
1651
      self.primary_ip_family = AF_INET
1652

    
1653
    if self.master_netmask is None:
1654
      ipcls = netutils.IPAddress.GetClassFromIpFamily(self.primary_ip_family)
1655
      self.master_netmask = ipcls.iplen
1656

    
1657
    if self.prealloc_wipe_disks is None:
1658
      self.prealloc_wipe_disks = False
1659

    
1660
    # shared_file_storage_dir added before 2.5
1661
    if self.shared_file_storage_dir is None:
1662
      self.shared_file_storage_dir = ""
1663

    
1664
    if self.use_external_mip_script is None:
1665
      self.use_external_mip_script = False
1666

    
1667
    if self.diskparams:
1668
      self.diskparams = UpgradeDiskParams(self.diskparams)
1669
    else:
1670
      self.diskparams = constants.DISK_DT_DEFAULTS.copy()
1671

    
1672
    # instance policy added before 2.6
1673
    if self.ipolicy is None:
1674
      self.ipolicy = FillIPolicy(constants.IPOLICY_DEFAULTS, {})
1675
    else:
1676
      # we can either make sure to upgrade the ipolicy always, or only
1677
      # do it in some corner cases (e.g. missing keys); note that this
1678
      # will break any removal of keys from the ipolicy dict
1679
      wrongkeys = frozenset(self.ipolicy.keys()) - constants.IPOLICY_ALL_KEYS
1680
      if wrongkeys:
1681
        # These keys would be silently removed by FillIPolicy()
1682
        msg = ("Cluster instance policy contains spurious keys: %s" %
1683
               utils.CommaJoin(wrongkeys))
1684
        raise errors.ConfigurationError(msg)
1685
      self.ipolicy = FillIPolicy(constants.IPOLICY_DEFAULTS, self.ipolicy)
1686

    
1687
  @property
1688
  def primary_hypervisor(self):
1689
    """The first hypervisor is the primary.
1690

1691
    Useful, for example, for L{Node}'s hv/disk state.
1692

1693
    """
1694
    return self.enabled_hypervisors[0]
1695

    
1696
  def ToDict(self):
1697
    """Custom function for cluster.
1698

1699
    """
1700
    mydict = super(Cluster, self).ToDict()
1701

    
1702
    if self.tcpudp_port_pool is None:
1703
      tcpudp_port_pool = []
1704
    else:
1705
      tcpudp_port_pool = list(self.tcpudp_port_pool)
1706

    
1707
    mydict["tcpudp_port_pool"] = tcpudp_port_pool
1708

    
1709
    return mydict
1710

    
1711
  @classmethod
1712
  def FromDict(cls, val):
1713
    """Custom function for cluster.
1714

1715
    """
1716
    obj = super(Cluster, cls).FromDict(val)
1717

    
1718
    if obj.tcpudp_port_pool is None:
1719
      obj.tcpudp_port_pool = set()
1720
    elif not isinstance(obj.tcpudp_port_pool, set):
1721
      obj.tcpudp_port_pool = set(obj.tcpudp_port_pool)
1722

    
1723
    return obj
1724

    
1725
  def SimpleFillDP(self, diskparams):
1726
    """Fill a given diskparams dict with cluster defaults.
1727

1728
    @param diskparams: The diskparams
1729
    @return: The defaults dict
1730

1731
    """
1732
    return FillDiskParams(self.diskparams, diskparams)
1733

    
1734
  def GetHVDefaults(self, hypervisor, os_name=None, skip_keys=None):
1735
    """Get the default hypervisor parameters for the cluster.
1736

1737
    @param hypervisor: the hypervisor name
1738
    @param os_name: if specified, we'll also update the defaults for this OS
1739
    @param skip_keys: if passed, list of keys not to use
1740
    @return: the defaults dict
1741

1742
    """
1743
    if skip_keys is None:
1744
      skip_keys = []
1745

    
1746
    fill_stack = [self.hvparams.get(hypervisor, {})]
1747
    if os_name is not None:
1748
      os_hvp = self.os_hvp.get(os_name, {}).get(hypervisor, {})
1749
      fill_stack.append(os_hvp)
1750

    
1751
    ret_dict = {}
1752
    for o_dict in fill_stack:
1753
      ret_dict = FillDict(ret_dict, o_dict, skip_keys=skip_keys)
1754

    
1755
    return ret_dict
1756

    
1757
  def SimpleFillHV(self, hv_name, os_name, hvparams, skip_globals=False):
1758
    """Fill a given hvparams dict with cluster defaults.
1759

1760
    @type hv_name: string
1761
    @param hv_name: the hypervisor to use
1762
    @type os_name: string
1763
    @param os_name: the OS to use for overriding the hypervisor defaults
1764
    @type skip_globals: boolean
1765
    @param skip_globals: if True, the global hypervisor parameters will
1766
        not be filled
1767
    @rtype: dict
1768
    @return: a copy of the given hvparams with missing keys filled from
1769
        the cluster defaults
1770

1771
    """
1772
    if skip_globals:
1773
      skip_keys = constants.HVC_GLOBALS
1774
    else:
1775
      skip_keys = []
1776

    
1777
    def_dict = self.GetHVDefaults(hv_name, os_name, skip_keys=skip_keys)
1778
    return FillDict(def_dict, hvparams, skip_keys=skip_keys)
1779

    
1780
  def FillHV(self, instance, skip_globals=False):
1781
    """Fill an instance's hvparams dict with cluster defaults.
1782

1783
    @type instance: L{objects.Instance}
1784
    @param instance: the instance parameter to fill
1785
    @type skip_globals: boolean
1786
    @param skip_globals: if True, the global hypervisor parameters will
1787
        not be filled
1788
    @rtype: dict
1789
    @return: a copy of the instance's hvparams with missing keys filled from
1790
        the cluster defaults
1791

1792
    """
1793
    return self.SimpleFillHV(instance.hypervisor, instance.os,
1794
                             instance.hvparams, skip_globals)
1795

    
1796
  def SimpleFillBE(self, beparams):
1797
    """Fill a given beparams dict with cluster defaults.
1798

1799
    @type beparams: dict
1800
    @param beparams: the dict to fill
1801
    @rtype: dict
1802
    @return: a copy of the passed in beparams with missing keys filled
1803
        from the cluster defaults
1804

1805
    """
1806
    return FillDict(self.beparams.get(constants.PP_DEFAULT, {}), beparams)
1807

    
1808
  def FillBE(self, instance):
1809
    """Fill an instance's beparams dict with cluster defaults.
1810

1811
    @type instance: L{objects.Instance}
1812
    @param instance: the instance parameter to fill
1813
    @rtype: dict
1814
    @return: a copy of the instance's beparams with missing keys filled from
1815
        the cluster defaults
1816

1817
    """
1818
    return self.SimpleFillBE(instance.beparams)
1819

    
1820
  def SimpleFillNIC(self, nicparams):
1821
    """Fill a given nicparams dict with cluster defaults.
1822

1823
    @type nicparams: dict
1824
    @param nicparams: the dict to fill
1825
    @rtype: dict
1826
    @return: a copy of the passed in nicparams with missing keys filled
1827
        from the cluster defaults
1828

1829
    """
1830
    return FillDict(self.nicparams.get(constants.PP_DEFAULT, {}), nicparams)
1831

    
1832
  def SimpleFillOS(self, os_name, os_params):
1833
    """Fill an instance's osparams dict with cluster defaults.
1834

1835
    @type os_name: string
1836
    @param os_name: the OS name to use
1837
    @type os_params: dict
1838
    @param os_params: the dict to fill with default values
1839
    @rtype: dict
1840
    @return: a copy of the instance's osparams with missing keys filled from
1841
        the cluster defaults
1842

1843
    """
1844
    name_only = os_name.split("+", 1)[0]
1845
    # base OS
1846
    result = self.osparams.get(name_only, {})
1847
    # OS with variant
1848
    result = FillDict(result, self.osparams.get(os_name, {}))
1849
    # specified params
1850
    return FillDict(result, os_params)
1851

    
1852
  @staticmethod
1853
  def SimpleFillHvState(hv_state):
1854
    """Fill an hv_state sub dict with cluster defaults.
1855

1856
    """
1857
    return FillDict(constants.HVST_DEFAULTS, hv_state)
1858

    
1859
  @staticmethod
1860
  def SimpleFillDiskState(disk_state):
1861
    """Fill an disk_state sub dict with cluster defaults.
1862

1863
    """
1864
    return FillDict(constants.DS_DEFAULTS, disk_state)
1865

    
1866
  def FillND(self, node, nodegroup):
1867
    """Return filled out ndparams for L{objects.NodeGroup} and L{objects.Node}
1868

1869
    @type node: L{objects.Node}
1870
    @param node: A Node object to fill
1871
    @type nodegroup: L{objects.NodeGroup}
1872
    @param nodegroup: A Node object to fill
1873
    @return a copy of the node's ndparams with defaults filled
1874

1875
    """
1876
    return self.SimpleFillND(nodegroup.FillND(node))
1877

    
1878
  def SimpleFillND(self, ndparams):
1879
    """Fill a given ndparams dict with defaults.
1880

1881
    @type ndparams: dict
1882
    @param ndparams: the dict to fill
1883
    @rtype: dict
1884
    @return: a copy of the passed in ndparams with missing keys filled
1885
        from the cluster defaults
1886

1887
    """
1888
    return FillDict(self.ndparams, ndparams)
1889

    
1890
  def SimpleFillIPolicy(self, ipolicy):
1891
    """ Fill instance policy dict with defaults.
1892

1893
    @type ipolicy: dict
1894
    @param ipolicy: the dict to fill
1895
    @rtype: dict
1896
    @return: a copy of passed ipolicy with missing keys filled from
1897
      the cluster defaults
1898

1899
    """
1900
    return FillIPolicy(self.ipolicy, ipolicy)
1901

    
1902
  def IsDiskTemplateEnabled(self, disk_template):
1903
    """Checks if a particular disk template is enabled.
1904

1905
    """
1906
    return utils.storage.IsDiskTemplateEnabled(
1907
        disk_template, self.enabled_disk_templates)
1908

    
1909
  def IsFileStorageEnabled(self):
1910
    """Checks if file storage is enabled.
1911

1912
    """
1913
    return utils.storage.IsFileStorageEnabled(self.enabled_disk_templates)
1914

    
1915
  def IsSharedFileStorageEnabled(self):
1916
    """Checks if shared file storage is enabled.
1917

1918
    """
1919
    return utils.storage.IsSharedFileStorageEnabled(
1920
        self.enabled_disk_templates)
1921

    
1922

    
1923
class BlockDevStatus(ConfigObject):
1924
  """Config object representing the status of a block device."""
1925
  __slots__ = [
1926
    "dev_path",
1927
    "major",
1928
    "minor",
1929
    "sync_percent",
1930
    "estimated_time",
1931
    "is_degraded",
1932
    "ldisk_status",
1933
    ]
1934

    
1935

    
1936
class ImportExportStatus(ConfigObject):
1937
  """Config object representing the status of an import or export."""
1938
  __slots__ = [
1939
    "recent_output",
1940
    "listen_port",
1941
    "connected",
1942
    "progress_mbytes",
1943
    "progress_throughput",
1944
    "progress_eta",
1945
    "progress_percent",
1946
    "exit_status",
1947
    "error_message",
1948
    ] + _TIMESTAMPS
1949

    
1950

    
1951
class ImportExportOptions(ConfigObject):
1952
  """Options for import/export daemon
1953

1954
  @ivar key_name: X509 key name (None for cluster certificate)
1955
  @ivar ca_pem: Remote peer CA in PEM format (None for cluster certificate)
1956
  @ivar compress: Compression method (one of L{constants.IEC_ALL})
1957
  @ivar magic: Used to ensure the connection goes to the right disk
1958
  @ivar ipv6: Whether to use IPv6
1959
  @ivar connect_timeout: Number of seconds for establishing connection
1960

1961
  """
1962
  __slots__ = [
1963
    "key_name",
1964
    "ca_pem",
1965
    "compress",
1966
    "magic",
1967
    "ipv6",
1968
    "connect_timeout",
1969
    ]
1970

    
1971

    
1972
class ConfdRequest(ConfigObject):
1973
  """Object holding a confd request.
1974

1975
  @ivar protocol: confd protocol version
1976
  @ivar type: confd query type
1977
  @ivar query: query request
1978
  @ivar rsalt: requested reply salt
1979

1980
  """
1981
  __slots__ = [
1982
    "protocol",
1983
    "type",
1984
    "query",
1985
    "rsalt",
1986
    ]
1987

    
1988

    
1989
class ConfdReply(ConfigObject):
1990
  """Object holding a confd reply.
1991

1992
  @ivar protocol: confd protocol version
1993
  @ivar status: reply status code (ok, error)
1994
  @ivar answer: confd query reply
1995
  @ivar serial: configuration serial number
1996

1997
  """
1998
  __slots__ = [
1999
    "protocol",
2000
    "status",
2001
    "answer",
2002
    "serial",
2003
    ]
2004

    
2005

    
2006
class QueryFieldDefinition(ConfigObject):
2007
  """Object holding a query field definition.
2008

2009
  @ivar name: Field name
2010
  @ivar title: Human-readable title
2011
  @ivar kind: Field type
2012
  @ivar doc: Human-readable description
2013

2014
  """
2015
  __slots__ = [
2016
    "name",
2017
    "title",
2018
    "kind",
2019
    "doc",
2020
    ]
2021

    
2022

    
2023
class _QueryResponseBase(ConfigObject):
2024
  __slots__ = [
2025
    "fields",
2026
    ]
2027

    
2028
  def ToDict(self):
2029
    """Custom function for serializing.
2030

2031
    """
2032
    mydict = super(_QueryResponseBase, self).ToDict()
2033
    mydict["fields"] = outils.ContainerToDicts(mydict["fields"])
2034
    return mydict
2035

    
2036
  @classmethod
2037
  def FromDict(cls, val):
2038
    """Custom function for de-serializing.
2039

2040
    """
2041
    obj = super(_QueryResponseBase, cls).FromDict(val)
2042
    obj.fields = \
2043
      outils.ContainerFromDicts(obj.fields, list, QueryFieldDefinition)
2044
    return obj
2045

    
2046

    
2047
class QueryResponse(_QueryResponseBase):
2048
  """Object holding the response to a query.
2049

2050
  @ivar fields: List of L{QueryFieldDefinition} objects
2051
  @ivar data: Requested data
2052

2053
  """
2054
  __slots__ = [
2055
    "data",
2056
    ]
2057

    
2058

    
2059
class QueryFieldsRequest(ConfigObject):
2060
  """Object holding a request for querying available fields.
2061

2062
  """
2063
  __slots__ = [
2064
    "what",
2065
    "fields",
2066
    ]
2067

    
2068

    
2069
class QueryFieldsResponse(_QueryResponseBase):
2070
  """Object holding the response to a query for fields.
2071

2072
  @ivar fields: List of L{QueryFieldDefinition} objects
2073

2074
  """
2075
  __slots__ = []
2076

    
2077

    
2078
class MigrationStatus(ConfigObject):
2079
  """Object holding the status of a migration.
2080

2081
  """
2082
  __slots__ = [
2083
    "status",
2084
    "transferred_ram",
2085
    "total_ram",
2086
    ]
2087

    
2088

    
2089
class InstanceConsole(ConfigObject):
2090
  """Object describing how to access the console of an instance.
2091

2092
  """
2093
  __slots__ = [
2094
    "instance",
2095
    "kind",
2096
    "message",
2097
    "host",
2098
    "port",
2099
    "user",
2100
    "command",
2101
    "display",
2102
    ]
2103

    
2104
  def Validate(self):
2105
    """Validates contents of this object.
2106

2107
    """
2108
    assert self.kind in constants.CONS_ALL, "Unknown console type"
2109
    assert self.instance, "Missing instance name"
2110
    assert self.message or self.kind in [constants.CONS_SSH,
2111
                                         constants.CONS_SPICE,
2112
                                         constants.CONS_VNC]
2113
    assert self.host or self.kind == constants.CONS_MESSAGE
2114
    assert self.port or self.kind in [constants.CONS_MESSAGE,
2115
                                      constants.CONS_SSH]
2116
    assert self.user or self.kind in [constants.CONS_MESSAGE,
2117
                                      constants.CONS_SPICE,
2118
                                      constants.CONS_VNC]
2119
    assert self.command or self.kind in [constants.CONS_MESSAGE,
2120
                                         constants.CONS_SPICE,
2121
                                         constants.CONS_VNC]
2122
    assert self.display or self.kind in [constants.CONS_MESSAGE,
2123
                                         constants.CONS_SPICE,
2124
                                         constants.CONS_SSH]
2125
    return True
2126

    
2127

    
2128
class Network(TaggableObject):
2129
  """Object representing a network definition for ganeti.
2130

2131
  """
2132
  __slots__ = [
2133
    "name",
2134
    "serial_no",
2135
    "mac_prefix",
2136
    "network",
2137
    "network6",
2138
    "gateway",
2139
    "gateway6",
2140
    "reservations",
2141
    "ext_reservations",
2142
    ] + _TIMESTAMPS + _UUID
2143

    
2144
  def HooksDict(self, prefix=""):
2145
    """Export a dictionary used by hooks with a network's information.
2146

2147
    @type prefix: String
2148
    @param prefix: Prefix to prepend to the dict entries
2149

2150
    """
2151
    result = {
2152
      "%sNETWORK_NAME" % prefix: self.name,
2153
      "%sNETWORK_UUID" % prefix: self.uuid,
2154
      "%sNETWORK_TAGS" % prefix: " ".join(self.GetTags()),
2155
    }
2156
    if self.network:
2157
      result["%sNETWORK_SUBNET" % prefix] = self.network
2158
    if self.gateway:
2159
      result["%sNETWORK_GATEWAY" % prefix] = self.gateway
2160
    if self.network6:
2161
      result["%sNETWORK_SUBNET6" % prefix] = self.network6
2162
    if self.gateway6:
2163
      result["%sNETWORK_GATEWAY6" % prefix] = self.gateway6
2164
    if self.mac_prefix:
2165
      result["%sNETWORK_MAC_PREFIX" % prefix] = self.mac_prefix
2166

    
2167
    return result
2168

    
2169
  @classmethod
2170
  def FromDict(cls, val):
2171
    """Custom function for networks.
2172

2173
    Remove deprecated network_type and family.
2174

2175
    """
2176
    if "network_type" in val:
2177
      del val["network_type"]
2178
    if "family" in val:
2179
      del val["family"]
2180
    obj = super(Network, cls).FromDict(val)
2181
    return obj
2182

    
2183

    
2184
class SerializableConfigParser(ConfigParser.SafeConfigParser):
2185
  """Simple wrapper over ConfigParse that allows serialization.
2186

2187
  This class is basically ConfigParser.SafeConfigParser with two
2188
  additional methods that allow it to serialize/unserialize to/from a
2189
  buffer.
2190

2191
  """
2192
  def Dumps(self):
2193
    """Dump this instance and return the string representation."""
2194
    buf = StringIO()
2195
    self.write(buf)
2196
    return buf.getvalue()
2197

    
2198
  @classmethod
2199
  def Loads(cls, data):
2200
    """Load data from a string."""
2201
    buf = StringIO(data)
2202
    cfp = cls()
2203
    cfp.readfp(buf)
2204
    return cfp
2205

    
2206

    
2207
class LvmPvInfo(ConfigObject):
2208
  """Information about an LVM physical volume (PV).
2209

2210
  @type name: string
2211
  @ivar name: name of the PV
2212
  @type vg_name: string
2213
  @ivar vg_name: name of the volume group containing the PV
2214
  @type size: float
2215
  @ivar size: size of the PV in MiB
2216
  @type free: float
2217
  @ivar free: free space in the PV, in MiB
2218
  @type attributes: string
2219
  @ivar attributes: PV attributes
2220
  @type lv_list: list of strings
2221
  @ivar lv_list: names of the LVs hosted on the PV
2222
  """
2223
  __slots__ = [
2224
    "name",
2225
    "vg_name",
2226
    "size",
2227
    "free",
2228
    "attributes",
2229
    "lv_list"
2230
    ]
2231

    
2232
  def IsEmpty(self):
2233
    """Is this PV empty?
2234

2235
    """
2236
    return self.size <= (self.free + 1)
2237

    
2238
  def IsAllocatable(self):
2239
    """Is this PV allocatable?
2240

2241
    """
2242
    return ("a" in self.attributes)