Statistics
| Branch: | Tag: | Revision:

root / lib / objects.py @ 5d419c34

History | View | Annotate | Download (58.4 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 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 explicitely 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 time
42
from cStringIO import StringIO
43

    
44
from ganeti import errors
45
from ganeti import constants
46
from ganeti import netutils
47
from ganeti import utils
48

    
49
from socket import AF_INET
50

    
51

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

    
55
_TIMESTAMPS = ["ctime", "mtime"]
56
_UUID = ["uuid"]
57

    
58

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

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

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

    
82

    
83
def FillIPolicy(default_ipolicy, custom_ipolicy, skip_keys=None):
84
  """Fills an instance policy with defaults.
85

86
  """
87
  assert frozenset(default_ipolicy.keys()) == constants.IPOLICY_ALL_KEYS
88
  ret_dict = {}
89
  for key in constants.IPOLICY_ISPECS:
90
    ret_dict[key] = FillDict(default_ipolicy[key],
91
                             custom_ipolicy.get(key, {}),
92
                             skip_keys=skip_keys)
93
  # list items
94
  for key in [constants.IPOLICY_DTS]:
95
    ret_dict[key] = list(custom_ipolicy.get(key, default_ipolicy[key]))
96
  # other items which we know we can directly copy (immutables)
97
  for key in constants.IPOLICY_PARAMETERS:
98
    ret_dict[key] = custom_ipolicy.get(key, default_ipolicy[key])
99

    
100
  return ret_dict
101

    
102

    
103
def FillDiskParams(default_dparams, custom_dparams, skip_keys=None):
104
  """Fills the disk parameter defaults.
105

106
  @see: L{FillDict} for parameters and return value
107

108
  """
109
  assert frozenset(default_dparams.keys()) == constants.DISK_TEMPLATES
110

    
111
  return dict((dt, FillDict(default_dparams[dt], custom_dparams.get(dt, {}),
112
                             skip_keys=skip_keys))
113
              for dt in constants.DISK_TEMPLATES)
114

    
115

    
116
def UpgradeGroupedParams(target, defaults):
117
  """Update all groups for the target parameter.
118

119
  @type target: dict of dicts
120
  @param target: {group: {parameter: value}}
121
  @type defaults: dict
122
  @param defaults: default parameter values
123

124
  """
125
  if target is None:
126
    target = {constants.PP_DEFAULT: defaults}
127
  else:
128
    for group in target:
129
      target[group] = FillDict(defaults, target[group])
130
  return target
131

    
132

    
133
def UpgradeBeParams(target):
134
  """Update the be parameters dict to the new format.
135

136
  @type target: dict
137
  @param target: "be" parameters dict
138

139
  """
140
  if constants.BE_MEMORY in target:
141
    memory = target[constants.BE_MEMORY]
142
    target[constants.BE_MAXMEM] = memory
143
    target[constants.BE_MINMEM] = memory
144
    del target[constants.BE_MEMORY]
145

    
146

    
147
def UpgradeDiskParams(diskparams):
148
  """Upgrade the disk parameters.
149

150
  @type diskparams: dict
151
  @param diskparams: disk parameters to upgrade
152
  @rtype: dict
153
  @return: the upgraded disk parameters dict
154

155
  """
156
  if not diskparams:
157
    result = {}
158
  else:
159
    result = FillDiskParams(constants.DISK_DT_DEFAULTS, diskparams)
160

    
161
  return result
162

    
163

    
164
def UpgradeNDParams(ndparams):
165
  """Upgrade ndparams structure.
166

167
  @type ndparams: dict
168
  @param ndparams: disk parameters to upgrade
169
  @rtype: dict
170
  @return: the upgraded node parameters dict
171

172
  """
173
  if ndparams is None:
174
    ndparams = {}
175

    
176
  return FillDict(constants.NDC_DEFAULTS, ndparams)
177

    
178

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

182
  """
183
  return dict([
184
    (constants.ISPECS_MIN, {}),
185
    (constants.ISPECS_MAX, {}),
186
    (constants.ISPECS_STD, {}),
187
    ])
188

    
189

    
190
class ConfigObject(object):
191
  """A generic config object.
192

193
  It has the following properties:
194

195
    - provides somewhat safe recursive unpickling and pickling for its classes
196
    - unset attributes which are defined in slots are always returned
197
      as None instead of raising an error
198

199
  Classes derived from this must always declare __slots__ (we use many
200
  config objects and the memory reduction is useful)
201

202
  """
203
  __slots__ = []
204

    
205
  def __init__(self, **kwargs):
206
    for k, v in kwargs.iteritems():
207
      setattr(self, k, v)
208

    
209
  def __getattr__(self, name):
210
    if name not in self._all_slots():
211
      raise AttributeError("Invalid object attribute %s.%s" %
212
                           (type(self).__name__, name))
213
    return None
214

    
215
  def __setstate__(self, state):
216
    slots = self._all_slots()
217
    for name in state:
218
      if name in slots:
219
        setattr(self, name, state[name])
220

    
221
  @classmethod
222
  def _all_slots(cls):
223
    """Compute the list of all declared slots for a class.
224

225
    """
226
    slots = []
227
    for parent in cls.__mro__:
228
      slots.extend(getattr(parent, "__slots__", []))
229
    return slots
230

    
231
  #: Public getter for the defined slots
232
  GetAllSlots = _all_slots
233

    
234
  def ToDict(self):
235
    """Convert to a dict holding only standard python types.
236

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

243
    """
244
    result = {}
245
    for name in self._all_slots():
246
      value = getattr(self, name, None)
247
      if value is not None:
248
        result[name] = value
249
    return result
250

    
251
  __getstate__ = ToDict
252

    
253
  @classmethod
254
  def FromDict(cls, val):
255
    """Create an object from a dictionary.
256

257
    This generic routine takes a dict, instantiates a new instance of
258
    the given class, and sets attributes based on the dict content.
259

260
    As for `ToDict`, this does not work if the class has children
261
    who are ConfigObjects themselves (e.g. the nics list in an
262
    Instance), in which case the object should subclass the function
263
    and alter the objects.
264

265
    """
266
    if not isinstance(val, dict):
267
      raise errors.ConfigurationError("Invalid object passed to FromDict:"
268
                                      " expected dict, got %s" % type(val))
269
    val_str = dict([(str(k), v) for k, v in val.iteritems()])
270
    obj = cls(**val_str) # pylint: disable=W0142
271
    return obj
272

    
273
  @staticmethod
274
  def _ContainerToDicts(container):
275
    """Convert the elements of a container to standard python types.
276

277
    This method converts a container with elements derived from
278
    ConfigData to standard python types. If the container is a dict,
279
    we don't touch the keys, only the values.
280

281
    """
282
    if isinstance(container, dict):
283
      ret = dict([(k, v.ToDict()) for k, v in container.iteritems()])
284
    elif isinstance(container, (list, tuple, set, frozenset)):
285
      ret = [elem.ToDict() for elem in container]
286
    else:
287
      raise TypeError("Invalid type %s passed to _ContainerToDicts" %
288
                      type(container))
289
    return ret
290

    
291
  @staticmethod
292
  def _ContainerFromDicts(source, c_type, e_type):
293
    """Convert a container from standard python types.
294

295
    This method converts a container with standard python types to
296
    ConfigData objects. If the container is a dict, we don't touch the
297
    keys, only the values.
298

299
    """
300
    if not isinstance(c_type, type):
301
      raise TypeError("Container type %s passed to _ContainerFromDicts is"
302
                      " not a type" % type(c_type))
303
    if source is None:
304
      source = c_type()
305
    if c_type is dict:
306
      ret = dict([(k, e_type.FromDict(v)) for k, v in source.iteritems()])
307
    elif c_type in (list, tuple, set, frozenset):
308
      ret = c_type([e_type.FromDict(elem) for elem in source])
309
    else:
310
      raise TypeError("Invalid container type %s passed to"
311
                      " _ContainerFromDicts" % c_type)
312
    return ret
313

    
314
  def Copy(self):
315
    """Makes a deep copy of the current object and its children.
316

317
    """
318
    dict_form = self.ToDict()
319
    clone_obj = self.__class__.FromDict(dict_form)
320
    return clone_obj
321

    
322
  def __repr__(self):
323
    """Implement __repr__ for ConfigObjects."""
324
    return repr(self.ToDict())
325

    
326
  def UpgradeConfig(self):
327
    """Fill defaults for missing configuration values.
328

329
    This method will be called at configuration load time, and its
330
    implementation will be object dependent.
331

332
    """
333
    pass
334

    
335

    
336
class TaggableObject(ConfigObject):
337
  """An generic class supporting tags.
338

339
  """
340
  __slots__ = ["tags"]
341
  VALID_TAG_RE = re.compile("^[\w.+*/:@-]+$")
342

    
343
  @classmethod
344
  def ValidateTag(cls, tag):
345
    """Check if a tag is valid.
346

347
    If the tag is invalid, an errors.TagError will be raised. The
348
    function has no return value.
349

350
    """
351
    if not isinstance(tag, basestring):
352
      raise errors.TagError("Invalid tag type (not a string)")
353
    if len(tag) > constants.MAX_TAG_LEN:
354
      raise errors.TagError("Tag too long (>%d characters)" %
355
                            constants.MAX_TAG_LEN)
356
    if not tag:
357
      raise errors.TagError("Tags cannot be empty")
358
    if not cls.VALID_TAG_RE.match(tag):
359
      raise errors.TagError("Tag contains invalid characters")
360

    
361
  def GetTags(self):
362
    """Return the tags list.
363

364
    """
365
    tags = getattr(self, "tags", None)
366
    if tags is None:
367
      tags = self.tags = set()
368
    return tags
369

    
370
  def AddTag(self, tag):
371
    """Add a new tag.
372

373
    """
374
    self.ValidateTag(tag)
375
    tags = self.GetTags()
376
    if len(tags) >= constants.MAX_TAGS_PER_OBJ:
377
      raise errors.TagError("Too many tags")
378
    self.GetTags().add(tag)
379

    
380
  def RemoveTag(self, tag):
381
    """Remove a tag.
382

383
    """
384
    self.ValidateTag(tag)
385
    tags = self.GetTags()
386
    try:
387
      tags.remove(tag)
388
    except KeyError:
389
      raise errors.TagError("Tag not found")
390

    
391
  def ToDict(self):
392
    """Taggable-object-specific conversion to standard python types.
393

394
    This replaces the tags set with a list.
395

396
    """
397
    bo = super(TaggableObject, self).ToDict()
398

    
399
    tags = bo.get("tags", None)
400
    if isinstance(tags, set):
401
      bo["tags"] = list(tags)
402
    return bo
403

    
404
  @classmethod
405
  def FromDict(cls, val):
406
    """Custom function for instances.
407

408
    """
409
    obj = super(TaggableObject, cls).FromDict(val)
410
    if hasattr(obj, "tags") and isinstance(obj.tags, list):
411
      obj.tags = set(obj.tags)
412
    return obj
413

    
414

    
415
class MasterNetworkParameters(ConfigObject):
416
  """Network configuration parameters for the master
417

418
  @ivar name: master name
419
  @ivar ip: master IP
420
  @ivar netmask: master netmask
421
  @ivar netdev: master network device
422
  @ivar ip_family: master IP family
423

424
  """
425
  __slots__ = [
426
    "name",
427
    "ip",
428
    "netmask",
429
    "netdev",
430
    "ip_family"
431
    ]
432

    
433

    
434
class ConfigData(ConfigObject):
435
  """Top-level config object."""
436
  __slots__ = [
437
    "version",
438
    "cluster",
439
    "nodes",
440
    "nodegroups",
441
    "instances",
442
    "networks",
443
    "serial_no",
444
    ] + _TIMESTAMPS
445

    
446
  def ToDict(self):
447
    """Custom function for top-level config data.
448

449
    This just replaces the list of instances, nodes and the cluster
450
    with standard python types.
451

452
    """
453
    mydict = super(ConfigData, self).ToDict()
454
    mydict["cluster"] = mydict["cluster"].ToDict()
455
    for key in "nodes", "instances", "nodegroups", "networks":
456
      mydict[key] = self._ContainerToDicts(mydict[key])
457

    
458
    return mydict
459

    
460
  @classmethod
461
  def FromDict(cls, val):
462
    """Custom function for top-level config data
463

464
    """
465
    obj = super(ConfigData, cls).FromDict(val)
466
    obj.cluster = Cluster.FromDict(obj.cluster)
467
    obj.nodes = cls._ContainerFromDicts(obj.nodes, dict, Node)
468
    obj.instances = cls._ContainerFromDicts(obj.instances, dict, Instance)
469
    obj.nodegroups = cls._ContainerFromDicts(obj.nodegroups, dict, NodeGroup)
470
    obj.networks = cls._ContainerFromDicts(obj.networks, dict, Network)
471
    return obj
472

    
473
  def HasAnyDiskOfType(self, dev_type):
474
    """Check if in there is at disk of the given type in the configuration.
475

476
    @type dev_type: L{constants.LDS_BLOCK}
477
    @param dev_type: the type to look for
478
    @rtype: boolean
479
    @return: boolean indicating if a disk of the given type was found or not
480

481
    """
482
    for instance in self.instances.values():
483
      for disk in instance.disks:
484
        if disk.IsBasedOnDiskType(dev_type):
485
          return True
486
    return False
487

    
488
  def UpgradeConfig(self):
489
    """Fill defaults for missing configuration values.
490

491
    """
492
    self.cluster.UpgradeConfig()
493
    for node in self.nodes.values():
494
      node.UpgradeConfig()
495
    for instance in self.instances.values():
496
      instance.UpgradeConfig()
497
    if self.nodegroups is None:
498
      self.nodegroups = {}
499
    for nodegroup in self.nodegroups.values():
500
      nodegroup.UpgradeConfig()
501
    if self.cluster.drbd_usermode_helper is None:
502
      # To decide if we set an helper let's check if at least one instance has
503
      # a DRBD disk. This does not cover all the possible scenarios but it
504
      # gives a good approximation.
505
      if self.HasAnyDiskOfType(constants.LD_DRBD8):
506
        self.cluster.drbd_usermode_helper = constants.DEFAULT_DRBD_HELPER
507
    if self.networks is None:
508
      self.networks = {}
509

    
510

    
511
class NIC(ConfigObject):
512
  """Config object representing a network card."""
513
  __slots__ = ["mac", "ip", "network", "nicparams"]
514

    
515
  @classmethod
516
  def CheckParameterSyntax(cls, nicparams):
517
    """Check the given parameters for validity.
518

519
    @type nicparams:  dict
520
    @param nicparams: dictionary with parameter names/value
521
    @raise errors.ConfigurationError: when a parameter is not valid
522

523
    """
524
    if (nicparams[constants.NIC_MODE] not in constants.NIC_VALID_MODES and
525
        nicparams[constants.NIC_MODE] != constants.VALUE_AUTO):
526
      err = "Invalid nic mode: %s" % nicparams[constants.NIC_MODE]
527
      raise errors.ConfigurationError(err)
528

    
529
    if (nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED and
530
        not nicparams[constants.NIC_LINK]):
531
      err = "Missing bridged nic link"
532
      raise errors.ConfigurationError(err)
533

    
534

    
535
class Disk(ConfigObject):
536
  """Config object representing a block device."""
537
  __slots__ = ["dev_type", "logical_id", "physical_id",
538
               "children", "iv_name", "size", "mode", "params"]
539

    
540
  def CreateOnSecondary(self):
541
    """Test if this device needs to be created on a secondary node."""
542
    return self.dev_type in (constants.LD_DRBD8, constants.LD_LV)
543

    
544
  def AssembleOnSecondary(self):
545
    """Test if this device needs to be assembled on a secondary node."""
546
    return self.dev_type in (constants.LD_DRBD8, constants.LD_LV)
547

    
548
  def OpenOnSecondary(self):
549
    """Test if this device needs to be opened on a secondary node."""
550
    return self.dev_type in (constants.LD_LV,)
551

    
552
  def StaticDevPath(self):
553
    """Return the device path if this device type has a static one.
554

555
    Some devices (LVM for example) live always at the same /dev/ path,
556
    irrespective of their status. For such devices, we return this
557
    path, for others we return None.
558

559
    @warning: The path returned is not a normalized pathname; callers
560
        should check that it is a valid path.
561

562
    """
563
    if self.dev_type == constants.LD_LV:
564
      return "/dev/%s/%s" % (self.logical_id[0], self.logical_id[1])
565
    elif self.dev_type == constants.LD_BLOCKDEV:
566
      return self.logical_id[1]
567
    elif self.dev_type == constants.LD_RBD:
568
      return "/dev/%s/%s" % (self.logical_id[0], self.logical_id[1])
569
    return None
570

    
571
  def ChildrenNeeded(self):
572
    """Compute the needed number of children for activation.
573

574
    This method will return either -1 (all children) or a positive
575
    number denoting the minimum number of children needed for
576
    activation (only mirrored devices will usually return >=0).
577

578
    Currently, only DRBD8 supports diskless activation (therefore we
579
    return 0), for all other we keep the previous semantics and return
580
    -1.
581

582
    """
583
    if self.dev_type == constants.LD_DRBD8:
584
      return 0
585
    return -1
586

    
587
  def IsBasedOnDiskType(self, dev_type):
588
    """Check if the disk or its children are based on the given type.
589

590
    @type dev_type: L{constants.LDS_BLOCK}
591
    @param dev_type: the type to look for
592
    @rtype: boolean
593
    @return: boolean indicating if a device of the given type was found or not
594

595
    """
596
    if self.children:
597
      for child in self.children:
598
        if child.IsBasedOnDiskType(dev_type):
599
          return True
600
    return self.dev_type == dev_type
601

    
602
  def GetNodes(self, node):
603
    """This function returns the nodes this device lives on.
604

605
    Given the node on which the parent of the device lives on (or, in
606
    case of a top-level device, the primary node of the devices'
607
    instance), this function will return a list of nodes on which this
608
    devices needs to (or can) be assembled.
609

610
    """
611
    if self.dev_type in [constants.LD_LV, constants.LD_FILE,
612
                         constants.LD_BLOCKDEV, constants.LD_RBD]:
613
      result = [node]
614
    elif self.dev_type in constants.LDS_DRBD:
615
      result = [self.logical_id[0], self.logical_id[1]]
616
      if node not in result:
617
        raise errors.ConfigurationError("DRBD device passed unknown node")
618
    else:
619
      raise errors.ProgrammerError("Unhandled device type %s" % self.dev_type)
620
    return result
621

    
622
  def ComputeNodeTree(self, parent_node):
623
    """Compute the node/disk tree for this disk and its children.
624

625
    This method, given the node on which the parent disk lives, will
626
    return the list of all (node, disk) pairs which describe the disk
627
    tree in the most compact way. For example, a drbd/lvm stack
628
    will be returned as (primary_node, drbd) and (secondary_node, drbd)
629
    which represents all the top-level devices on the nodes.
630

631
    """
632
    my_nodes = self.GetNodes(parent_node)
633
    result = [(node, self) for node in my_nodes]
634
    if not self.children:
635
      # leaf device
636
      return result
637
    for node in my_nodes:
638
      for child in self.children:
639
        child_result = child.ComputeNodeTree(node)
640
        if len(child_result) == 1:
641
          # child (and all its descendants) is simple, doesn't split
642
          # over multiple hosts, so we don't need to describe it, our
643
          # own entry for this node describes it completely
644
          continue
645
        else:
646
          # check if child nodes differ from my nodes; note that
647
          # subdisk can differ from the child itself, and be instead
648
          # one of its descendants
649
          for subnode, subdisk in child_result:
650
            if subnode not in my_nodes:
651
              result.append((subnode, subdisk))
652
            # otherwise child is under our own node, so we ignore this
653
            # entry (but probably the other results in the list will
654
            # be different)
655
    return result
656

    
657
  def ComputeGrowth(self, amount):
658
    """Compute the per-VG growth requirements.
659

660
    This only works for VG-based disks.
661

662
    @type amount: integer
663
    @param amount: the desired increase in (user-visible) disk space
664
    @rtype: dict
665
    @return: a dictionary of volume-groups and the required size
666

667
    """
668
    if self.dev_type == constants.LD_LV:
669
      return {self.logical_id[0]: amount}
670
    elif self.dev_type == constants.LD_DRBD8:
671
      if self.children:
672
        return self.children[0].ComputeGrowth(amount)
673
      else:
674
        return {}
675
    else:
676
      # Other disk types do not require VG space
677
      return {}
678

    
679
  def RecordGrow(self, amount):
680
    """Update the size of this disk after growth.
681

682
    This method recurses over the disks's children and updates their
683
    size correspondigly. The method needs to be kept in sync with the
684
    actual algorithms from bdev.
685

686
    """
687
    if self.dev_type in (constants.LD_LV, constants.LD_FILE,
688
                         constants.LD_RBD):
689
      self.size += amount
690
    elif self.dev_type == constants.LD_DRBD8:
691
      if self.children:
692
        self.children[0].RecordGrow(amount)
693
      self.size += amount
694
    else:
695
      raise errors.ProgrammerError("Disk.RecordGrow called for unsupported"
696
                                   " disk type %s" % self.dev_type)
697

    
698
  def Update(self, size=None, mode=None):
699
    """Apply changes to size and mode.
700

701
    """
702
    if self.dev_type == constants.LD_DRBD8:
703
      if self.children:
704
        self.children[0].Update(size=size, mode=mode)
705
    else:
706
      assert not self.children
707

    
708
    if size is not None:
709
      self.size = size
710
    if mode is not None:
711
      self.mode = mode
712

    
713
  def UnsetSize(self):
714
    """Sets recursively the size to zero for the disk and its children.
715

716
    """
717
    if self.children:
718
      for child in self.children:
719
        child.UnsetSize()
720
    self.size = 0
721

    
722
  def SetPhysicalID(self, target_node, nodes_ip):
723
    """Convert the logical ID to the physical ID.
724

725
    This is used only for drbd, which needs ip/port configuration.
726

727
    The routine descends down and updates its children also, because
728
    this helps when the only the top device is passed to the remote
729
    node.
730

731
    Arguments:
732
      - target_node: the node we wish to configure for
733
      - nodes_ip: a mapping of node name to ip
734

735
    The target_node must exist in in nodes_ip, and must be one of the
736
    nodes in the logical ID for each of the DRBD devices encountered
737
    in the disk tree.
738

739
    """
740
    if self.children:
741
      for child in self.children:
742
        child.SetPhysicalID(target_node, nodes_ip)
743

    
744
    if self.logical_id is None and self.physical_id is not None:
745
      return
746
    if self.dev_type in constants.LDS_DRBD:
747
      pnode, snode, port, pminor, sminor, secret = self.logical_id
748
      if target_node not in (pnode, snode):
749
        raise errors.ConfigurationError("DRBD device not knowing node %s" %
750
                                        target_node)
751
      pnode_ip = nodes_ip.get(pnode, None)
752
      snode_ip = nodes_ip.get(snode, None)
753
      if pnode_ip is None or snode_ip is None:
754
        raise errors.ConfigurationError("Can't find primary or secondary node"
755
                                        " for %s" % str(self))
756
      p_data = (pnode_ip, port)
757
      s_data = (snode_ip, port)
758
      if pnode == target_node:
759
        self.physical_id = p_data + s_data + (pminor, secret)
760
      else: # it must be secondary, we tested above
761
        self.physical_id = s_data + p_data + (sminor, secret)
762
    else:
763
      self.physical_id = self.logical_id
764
    return
765

    
766
  def ToDict(self):
767
    """Disk-specific conversion to standard python types.
768

769
    This replaces the children lists of objects with lists of
770
    standard python types.
771

772
    """
773
    bo = super(Disk, self).ToDict()
774

    
775
    for attr in ("children",):
776
      alist = bo.get(attr, None)
777
      if alist:
778
        bo[attr] = self._ContainerToDicts(alist)
779
    return bo
780

    
781
  @classmethod
782
  def FromDict(cls, val):
783
    """Custom function for Disks
784

785
    """
786
    obj = super(Disk, cls).FromDict(val)
787
    if obj.children:
788
      obj.children = cls._ContainerFromDicts(obj.children, list, Disk)
789
    if obj.logical_id and isinstance(obj.logical_id, list):
790
      obj.logical_id = tuple(obj.logical_id)
791
    if obj.physical_id and isinstance(obj.physical_id, list):
792
      obj.physical_id = tuple(obj.physical_id)
793
    if obj.dev_type in constants.LDS_DRBD:
794
      # we need a tuple of length six here
795
      if len(obj.logical_id) < 6:
796
        obj.logical_id += (None,) * (6 - len(obj.logical_id))
797
    return obj
798

    
799
  def __str__(self):
800
    """Custom str() formatter for disks.
801

802
    """
803
    if self.dev_type == constants.LD_LV:
804
      val = "<LogicalVolume(/dev/%s/%s" % self.logical_id
805
    elif self.dev_type in constants.LDS_DRBD:
806
      node_a, node_b, port, minor_a, minor_b = self.logical_id[:5]
807
      val = "<DRBD8("
808
      if self.physical_id is None:
809
        phy = "unconfigured"
810
      else:
811
        phy = ("configured as %s:%s %s:%s" %
812
               (self.physical_id[0], self.physical_id[1],
813
                self.physical_id[2], self.physical_id[3]))
814

    
815
      val += ("hosts=%s/%d-%s/%d, port=%s, %s, " %
816
              (node_a, minor_a, node_b, minor_b, port, phy))
817
      if self.children and self.children.count(None) == 0:
818
        val += "backend=%s, metadev=%s" % (self.children[0], self.children[1])
819
      else:
820
        val += "no local storage"
821
    else:
822
      val = ("<Disk(type=%s, logical_id=%s, physical_id=%s, children=%s" %
823
             (self.dev_type, self.logical_id, self.physical_id, self.children))
824
    if self.iv_name is None:
825
      val += ", not visible"
826
    else:
827
      val += ", visible as /dev/%s" % self.iv_name
828
    if isinstance(self.size, int):
829
      val += ", size=%dm)>" % self.size
830
    else:
831
      val += ", size='%s')>" % (self.size,)
832
    return val
833

    
834
  def Verify(self):
835
    """Checks that this disk is correctly configured.
836

837
    """
838
    all_errors = []
839
    if self.mode not in constants.DISK_ACCESS_SET:
840
      all_errors.append("Disk access mode '%s' is invalid" % (self.mode, ))
841
    return all_errors
842

    
843
  def UpgradeConfig(self):
844
    """Fill defaults for missing configuration values.
845

846
    """
847
    if self.children:
848
      for child in self.children:
849
        child.UpgradeConfig()
850

    
851
    # FIXME: Make this configurable in Ganeti 2.7
852
    self.params = {}
853
    # add here config upgrade for this disk
854

    
855
  @staticmethod
856
  def ComputeLDParams(disk_template, disk_params):
857
    """Computes Logical Disk parameters from Disk Template parameters.
858

859
    @type disk_template: string
860
    @param disk_template: disk template, one of L{constants.DISK_TEMPLATES}
861
    @type disk_params: dict
862
    @param disk_params: disk template parameters;
863
                        dict(template_name -> parameters
864
    @rtype: list(dict)
865
    @return: a list of dicts, one for each node of the disk hierarchy. Each dict
866
      contains the LD parameters of the node. The tree is flattened in-order.
867

868
    """
869
    if disk_template not in constants.DISK_TEMPLATES:
870
      raise errors.ProgrammerError("Unknown disk template %s" % disk_template)
871

    
872
    assert disk_template in disk_params
873

    
874
    result = list()
875
    dt_params = disk_params[disk_template]
876
    if disk_template == constants.DT_DRBD8:
877
      drbd_params = {
878
        constants.LDP_RESYNC_RATE: dt_params[constants.DRBD_RESYNC_RATE],
879
        constants.LDP_BARRIERS: dt_params[constants.DRBD_DISK_BARRIERS],
880
        constants.LDP_NO_META_FLUSH: dt_params[constants.DRBD_META_BARRIERS],
881
        constants.LDP_DEFAULT_METAVG: dt_params[constants.DRBD_DEFAULT_METAVG],
882
        constants.LDP_DISK_CUSTOM: dt_params[constants.DRBD_DISK_CUSTOM],
883
        constants.LDP_NET_CUSTOM: dt_params[constants.DRBD_NET_CUSTOM],
884
        constants.LDP_DYNAMIC_RESYNC: dt_params[constants.DRBD_DYNAMIC_RESYNC],
885
        constants.LDP_PLAN_AHEAD: dt_params[constants.DRBD_PLAN_AHEAD],
886
        constants.LDP_FILL_TARGET: dt_params[constants.DRBD_FILL_TARGET],
887
        constants.LDP_DELAY_TARGET: dt_params[constants.DRBD_DELAY_TARGET],
888
        constants.LDP_MAX_RATE: dt_params[constants.DRBD_MAX_RATE],
889
        constants.LDP_MIN_RATE: dt_params[constants.DRBD_MIN_RATE],
890
        }
891

    
892
      drbd_params = \
893
        FillDict(constants.DISK_LD_DEFAULTS[constants.LD_DRBD8],
894
                 drbd_params)
895

    
896
      result.append(drbd_params)
897

    
898
      # data LV
899
      data_params = {
900
        constants.LDP_STRIPES: dt_params[constants.DRBD_DATA_STRIPES],
901
        }
902
      data_params = \
903
        FillDict(constants.DISK_LD_DEFAULTS[constants.LD_LV],
904
                 data_params)
905
      result.append(data_params)
906

    
907
      # metadata LV
908
      meta_params = {
909
        constants.LDP_STRIPES: dt_params[constants.DRBD_META_STRIPES],
910
        }
911
      meta_params = \
912
        FillDict(constants.DISK_LD_DEFAULTS[constants.LD_LV],
913
                 meta_params)
914
      result.append(meta_params)
915

    
916
    elif (disk_template == constants.DT_FILE or
917
          disk_template == constants.DT_SHARED_FILE):
918
      result.append(constants.DISK_LD_DEFAULTS[constants.LD_FILE])
919

    
920
    elif disk_template == constants.DT_PLAIN:
921
      params = {
922
        constants.LDP_STRIPES: dt_params[constants.LV_STRIPES],
923
        }
924
      params = \
925
        FillDict(constants.DISK_LD_DEFAULTS[constants.LD_LV],
926
                 params)
927
      result.append(params)
928

    
929
    elif disk_template == constants.DT_BLOCK:
930
      result.append(constants.DISK_LD_DEFAULTS[constants.LD_BLOCKDEV])
931

    
932
    elif disk_template == constants.DT_RBD:
933
      params = {
934
        constants.LDP_POOL: dt_params[constants.RBD_POOL]
935
        }
936
      params = \
937
        FillDict(constants.DISK_LD_DEFAULTS[constants.LD_RBD],
938
                 params)
939
      result.append(params)
940

    
941
    return result
942

    
943

    
944
class InstancePolicy(ConfigObject):
945
  """Config object representing instance policy limits dictionary.
946

947

948
  Note that this object is not actually used in the config, it's just
949
  used as a placeholder for a few functions.
950

951
  """
952
  @classmethod
953
  def CheckParameterSyntax(cls, ipolicy, check_std):
954
    """ Check the instance policy for validity.
955

956
    """
957
    for param in constants.ISPECS_PARAMETERS:
958
      InstancePolicy.CheckISpecSyntax(ipolicy, param, check_std)
959
    if constants.IPOLICY_DTS in ipolicy:
960
      InstancePolicy.CheckDiskTemplates(ipolicy[constants.IPOLICY_DTS])
961
    for key in constants.IPOLICY_PARAMETERS:
962
      if key in ipolicy:
963
        InstancePolicy.CheckParameter(key, ipolicy[key])
964
    wrong_keys = frozenset(ipolicy.keys()) - constants.IPOLICY_ALL_KEYS
965
    if wrong_keys:
966
      raise errors.ConfigurationError("Invalid keys in ipolicy: %s" %
967
                                      utils.CommaJoin(wrong_keys))
968

    
969
  @classmethod
970
  def CheckISpecSyntax(cls, ipolicy, name, check_std):
971
    """Check the instance policy for validity on a given key.
972

973
    We check if the instance policy makes sense for a given key, that is
974
    if ipolicy[min][name] <= ipolicy[std][name] <= ipolicy[max][name].
975

976
    @type ipolicy: dict
977
    @param ipolicy: dictionary with min, max, std specs
978
    @type name: string
979
    @param name: what are the limits for
980
    @type check_std: bool
981
    @param check_std: Whether to check std value or just assume compliance
982
    @raise errors.ConfigureError: when specs for given name are not valid
983

984
    """
985
    min_v = ipolicy[constants.ISPECS_MIN].get(name, 0)
986

    
987
    if check_std:
988
      std_v = ipolicy[constants.ISPECS_STD].get(name, min_v)
989
      std_msg = std_v
990
    else:
991
      std_v = min_v
992
      std_msg = "-"
993

    
994
    max_v = ipolicy[constants.ISPECS_MAX].get(name, std_v)
995
    err = ("Invalid specification of min/max/std values for %s: %s/%s/%s" %
996
           (name,
997
            ipolicy[constants.ISPECS_MIN].get(name, "-"),
998
            ipolicy[constants.ISPECS_MAX].get(name, "-"),
999
            std_msg))
1000
    if min_v > std_v or std_v > max_v:
1001
      raise errors.ConfigurationError(err)
1002

    
1003
  @classmethod
1004
  def CheckDiskTemplates(cls, disk_templates):
1005
    """Checks the disk templates for validity.
1006

1007
    """
1008
    wrong = frozenset(disk_templates).difference(constants.DISK_TEMPLATES)
1009
    if wrong:
1010
      raise errors.ConfigurationError("Invalid disk template(s) %s" %
1011
                                      utils.CommaJoin(wrong))
1012

    
1013
  @classmethod
1014
  def CheckParameter(cls, key, value):
1015
    """Checks a parameter.
1016

1017
    Currently we expect all parameters to be float values.
1018

1019
    """
1020
    try:
1021
      float(value)
1022
    except (TypeError, ValueError), err:
1023
      raise errors.ConfigurationError("Invalid value for key" " '%s':"
1024
                                      " '%s', error: %s" % (key, value, err))
1025

    
1026

    
1027
class Instance(TaggableObject):
1028
  """Config object representing an instance."""
1029
  __slots__ = [
1030
    "name",
1031
    "primary_node",
1032
    "os",
1033
    "hypervisor",
1034
    "hvparams",
1035
    "beparams",
1036
    "osparams",
1037
    "admin_state",
1038
    "nics",
1039
    "disks",
1040
    "disk_template",
1041
    "network_port",
1042
    "serial_no",
1043
    ] + _TIMESTAMPS + _UUID
1044

    
1045
  def _ComputeSecondaryNodes(self):
1046
    """Compute the list of secondary nodes.
1047

1048
    This is a simple wrapper over _ComputeAllNodes.
1049

1050
    """
1051
    all_nodes = set(self._ComputeAllNodes())
1052
    all_nodes.discard(self.primary_node)
1053
    return tuple(all_nodes)
1054

    
1055
  secondary_nodes = property(_ComputeSecondaryNodes, None, None,
1056
                             "List of secondary nodes")
1057

    
1058
  def _ComputeAllNodes(self):
1059
    """Compute the list of all nodes.
1060

1061
    Since the data is already there (in the drbd disks), keeping it as
1062
    a separate normal attribute is redundant and if not properly
1063
    synchronised can cause problems. Thus it's better to compute it
1064
    dynamically.
1065

1066
    """
1067
    def _Helper(nodes, device):
1068
      """Recursively computes nodes given a top device."""
1069
      if device.dev_type in constants.LDS_DRBD:
1070
        nodea, nodeb = device.logical_id[:2]
1071
        nodes.add(nodea)
1072
        nodes.add(nodeb)
1073
      if device.children:
1074
        for child in device.children:
1075
          _Helper(nodes, child)
1076

    
1077
    all_nodes = set()
1078
    all_nodes.add(self.primary_node)
1079
    for device in self.disks:
1080
      _Helper(all_nodes, device)
1081
    return tuple(all_nodes)
1082

    
1083
  all_nodes = property(_ComputeAllNodes, None, None,
1084
                       "List of all nodes of the instance")
1085

    
1086
  def MapLVsByNode(self, lvmap=None, devs=None, node=None):
1087
    """Provide a mapping of nodes to LVs this instance owns.
1088

1089
    This function figures out what logical volumes should belong on
1090
    which nodes, recursing through a device tree.
1091

1092
    @param lvmap: optional dictionary to receive the
1093
        'node' : ['lv', ...] data.
1094

1095
    @return: None if lvmap arg is given, otherwise, a dictionary of
1096
        the form { 'nodename' : ['volume1', 'volume2', ...], ... };
1097
        volumeN is of the form "vg_name/lv_name", compatible with
1098
        GetVolumeList()
1099

1100
    """
1101
    if node == None:
1102
      node = self.primary_node
1103

    
1104
    if lvmap is None:
1105
      lvmap = {
1106
        node: [],
1107
        }
1108
      ret = lvmap
1109
    else:
1110
      if not node in lvmap:
1111
        lvmap[node] = []
1112
      ret = None
1113

    
1114
    if not devs:
1115
      devs = self.disks
1116

    
1117
    for dev in devs:
1118
      if dev.dev_type == constants.LD_LV:
1119
        lvmap[node].append(dev.logical_id[0] + "/" + dev.logical_id[1])
1120

    
1121
      elif dev.dev_type in constants.LDS_DRBD:
1122
        if dev.children:
1123
          self.MapLVsByNode(lvmap, dev.children, dev.logical_id[0])
1124
          self.MapLVsByNode(lvmap, dev.children, dev.logical_id[1])
1125

    
1126
      elif dev.children:
1127
        self.MapLVsByNode(lvmap, dev.children, node)
1128

    
1129
    return ret
1130

    
1131
  def FindDisk(self, idx):
1132
    """Find a disk given having a specified index.
1133

1134
    This is just a wrapper that does validation of the index.
1135

1136
    @type idx: int
1137
    @param idx: the disk index
1138
    @rtype: L{Disk}
1139
    @return: the corresponding disk
1140
    @raise errors.OpPrereqError: when the given index is not valid
1141

1142
    """
1143
    try:
1144
      idx = int(idx)
1145
      return self.disks[idx]
1146
    except (TypeError, ValueError), err:
1147
      raise errors.OpPrereqError("Invalid disk index: '%s'" % str(err),
1148
                                 errors.ECODE_INVAL)
1149
    except IndexError:
1150
      raise errors.OpPrereqError("Invalid disk index: %d (instace has disks"
1151
                                 " 0 to %d" % (idx, len(self.disks) - 1),
1152
                                 errors.ECODE_INVAL)
1153

    
1154
  def ToDict(self):
1155
    """Instance-specific conversion to standard python types.
1156

1157
    This replaces the children lists of objects with lists of standard
1158
    python types.
1159

1160
    """
1161
    bo = super(Instance, self).ToDict()
1162

    
1163
    for attr in "nics", "disks":
1164
      alist = bo.get(attr, None)
1165
      if alist:
1166
        nlist = self._ContainerToDicts(alist)
1167
      else:
1168
        nlist = []
1169
      bo[attr] = nlist
1170
    return bo
1171

    
1172
  @classmethod
1173
  def FromDict(cls, val):
1174
    """Custom function for instances.
1175

1176
    """
1177
    if "admin_state" not in val:
1178
      if val.get("admin_up", False):
1179
        val["admin_state"] = constants.ADMINST_UP
1180
      else:
1181
        val["admin_state"] = constants.ADMINST_DOWN
1182
    if "admin_up" in val:
1183
      del val["admin_up"]
1184
    obj = super(Instance, cls).FromDict(val)
1185
    obj.nics = cls._ContainerFromDicts(obj.nics, list, NIC)
1186
    obj.disks = cls._ContainerFromDicts(obj.disks, list, Disk)
1187
    return obj
1188

    
1189
  def UpgradeConfig(self):
1190
    """Fill defaults for missing configuration values.
1191

1192
    """
1193
    for nic in self.nics:
1194
      nic.UpgradeConfig()
1195
    for disk in self.disks:
1196
      disk.UpgradeConfig()
1197
    if self.hvparams:
1198
      for key in constants.HVC_GLOBALS:
1199
        try:
1200
          del self.hvparams[key]
1201
        except KeyError:
1202
          pass
1203
    if self.osparams is None:
1204
      self.osparams = {}
1205
    UpgradeBeParams(self.beparams)
1206

    
1207

    
1208
class OS(ConfigObject):
1209
  """Config object representing an operating system.
1210

1211
  @type supported_parameters: list
1212
  @ivar supported_parameters: a list of tuples, name and description,
1213
      containing the supported parameters by this OS
1214

1215
  @type VARIANT_DELIM: string
1216
  @cvar VARIANT_DELIM: the variant delimiter
1217

1218
  """
1219
  __slots__ = [
1220
    "name",
1221
    "path",
1222
    "api_versions",
1223
    "create_script",
1224
    "export_script",
1225
    "import_script",
1226
    "rename_script",
1227
    "verify_script",
1228
    "supported_variants",
1229
    "supported_parameters",
1230
    ]
1231

    
1232
  VARIANT_DELIM = "+"
1233

    
1234
  @classmethod
1235
  def SplitNameVariant(cls, name):
1236
    """Splits the name into the proper name and variant.
1237

1238
    @param name: the OS (unprocessed) name
1239
    @rtype: list
1240
    @return: a list of two elements; if the original name didn't
1241
        contain a variant, it's returned as an empty string
1242

1243
    """
1244
    nv = name.split(cls.VARIANT_DELIM, 1)
1245
    if len(nv) == 1:
1246
      nv.append("")
1247
    return nv
1248

    
1249
  @classmethod
1250
  def GetName(cls, name):
1251
    """Returns the proper name of the os (without the variant).
1252

1253
    @param name: the OS (unprocessed) name
1254

1255
    """
1256
    return cls.SplitNameVariant(name)[0]
1257

    
1258
  @classmethod
1259
  def GetVariant(cls, name):
1260
    """Returns the variant the os (without the base name).
1261

1262
    @param name: the OS (unprocessed) name
1263

1264
    """
1265
    return cls.SplitNameVariant(name)[1]
1266

    
1267

    
1268
class NodeHvState(ConfigObject):
1269
  """Hypvervisor state on a node.
1270

1271
  @ivar mem_total: Total amount of memory
1272
  @ivar mem_node: Memory used by, or reserved for, the node itself (not always
1273
    available)
1274
  @ivar mem_hv: Memory used by hypervisor or lost due to instance allocation
1275
    rounding
1276
  @ivar mem_inst: Memory used by instances living on node
1277
  @ivar cpu_total: Total node CPU core count
1278
  @ivar cpu_node: Number of CPU cores reserved for the node itself
1279

1280
  """
1281
  __slots__ = [
1282
    "mem_total",
1283
    "mem_node",
1284
    "mem_hv",
1285
    "mem_inst",
1286
    "cpu_total",
1287
    "cpu_node",
1288
    ] + _TIMESTAMPS
1289

    
1290

    
1291
class NodeDiskState(ConfigObject):
1292
  """Disk state on a node.
1293

1294
  """
1295
  __slots__ = [
1296
    "total",
1297
    "reserved",
1298
    "overhead",
1299
    ] + _TIMESTAMPS
1300

    
1301

    
1302
class Node(TaggableObject):
1303
  """Config object representing a node.
1304

1305
  @ivar hv_state: Hypervisor state (e.g. number of CPUs)
1306
  @ivar hv_state_static: Hypervisor state overriden by user
1307
  @ivar disk_state: Disk state (e.g. free space)
1308
  @ivar disk_state_static: Disk state overriden by user
1309

1310
  """
1311
  __slots__ = [
1312
    "name",
1313
    "primary_ip",
1314
    "secondary_ip",
1315
    "serial_no",
1316
    "master_candidate",
1317
    "offline",
1318
    "drained",
1319
    "group",
1320
    "master_capable",
1321
    "vm_capable",
1322
    "ndparams",
1323
    "powered",
1324
    "hv_state",
1325
    "hv_state_static",
1326
    "disk_state",
1327
    "disk_state_static",
1328
    ] + _TIMESTAMPS + _UUID
1329

    
1330
  def UpgradeConfig(self):
1331
    """Fill defaults for missing configuration values.
1332

1333
    """
1334
    # pylint: disable=E0203
1335
    # because these are "defined" via slots, not manually
1336
    if self.master_capable is None:
1337
      self.master_capable = True
1338

    
1339
    if self.vm_capable is None:
1340
      self.vm_capable = True
1341

    
1342
    if self.ndparams is None:
1343
      self.ndparams = {}
1344

    
1345
    if self.powered is None:
1346
      self.powered = True
1347

    
1348
  def ToDict(self):
1349
    """Custom function for serializing.
1350

1351
    """
1352
    data = super(Node, self).ToDict()
1353

    
1354
    hv_state = data.get("hv_state", None)
1355
    if hv_state is not None:
1356
      data["hv_state"] = self._ContainerToDicts(hv_state)
1357

    
1358
    disk_state = data.get("disk_state", None)
1359
    if disk_state is not None:
1360
      data["disk_state"] = \
1361
        dict((key, self._ContainerToDicts(value))
1362
             for (key, value) in disk_state.items())
1363

    
1364
    return data
1365

    
1366
  @classmethod
1367
  def FromDict(cls, val):
1368
    """Custom function for deserializing.
1369

1370
    """
1371
    obj = super(Node, cls).FromDict(val)
1372

    
1373
    if obj.hv_state is not None:
1374
      obj.hv_state = cls._ContainerFromDicts(obj.hv_state, dict, NodeHvState)
1375

    
1376
    if obj.disk_state is not None:
1377
      obj.disk_state = \
1378
        dict((key, cls._ContainerFromDicts(value, dict, NodeDiskState))
1379
             for (key, value) in obj.disk_state.items())
1380

    
1381
    return obj
1382

    
1383

    
1384
class NodeGroup(TaggableObject):
1385
  """Config object representing a node group."""
1386
  __slots__ = [
1387
    "name",
1388
    "members",
1389
    "ndparams",
1390
    "diskparams",
1391
    "ipolicy",
1392
    "serial_no",
1393
    "hv_state_static",
1394
    "disk_state_static",
1395
    "alloc_policy",
1396
    "networks",
1397
    ] + _TIMESTAMPS + _UUID
1398

    
1399
  def ToDict(self):
1400
    """Custom function for nodegroup.
1401

1402
    This discards the members object, which gets recalculated and is only kept
1403
    in memory.
1404

1405
    """
1406
    mydict = super(NodeGroup, self).ToDict()
1407
    del mydict["members"]
1408
    return mydict
1409

    
1410
  @classmethod
1411
  def FromDict(cls, val):
1412
    """Custom function for nodegroup.
1413

1414
    The members slot is initialized to an empty list, upon deserialization.
1415

1416
    """
1417
    obj = super(NodeGroup, cls).FromDict(val)
1418
    obj.members = []
1419
    return obj
1420

    
1421
  def UpgradeConfig(self):
1422
    """Fill defaults for missing configuration values.
1423

1424
    """
1425
    if self.ndparams is None:
1426
      self.ndparams = {}
1427

    
1428
    if self.serial_no is None:
1429
      self.serial_no = 1
1430

    
1431
    if self.alloc_policy is None:
1432
      self.alloc_policy = constants.ALLOC_POLICY_PREFERRED
1433

    
1434
    # We only update mtime, and not ctime, since we would not be able
1435
    # to provide a correct value for creation time.
1436
    if self.mtime is None:
1437
      self.mtime = time.time()
1438

    
1439
    if self.diskparams is None:
1440
      self.diskparams = {}
1441
    if self.ipolicy is None:
1442
      self.ipolicy = MakeEmptyIPolicy()
1443

    
1444
    if self.networks is None:
1445
      self.networks = {}
1446

    
1447
  def FillND(self, node):
1448
    """Return filled out ndparams for L{objects.Node}
1449

1450
    @type node: L{objects.Node}
1451
    @param node: A Node object to fill
1452
    @return a copy of the node's ndparams with defaults filled
1453

1454
    """
1455
    return self.SimpleFillND(node.ndparams)
1456

    
1457
  def SimpleFillND(self, ndparams):
1458
    """Fill a given ndparams dict with defaults.
1459

1460
    @type ndparams: dict
1461
    @param ndparams: the dict to fill
1462
    @rtype: dict
1463
    @return: a copy of the passed in ndparams with missing keys filled
1464
        from the node group defaults
1465

1466
    """
1467
    return FillDict(self.ndparams, ndparams)
1468

    
1469

    
1470
class Cluster(TaggableObject):
1471
  """Config object representing the cluster."""
1472
  __slots__ = [
1473
    "serial_no",
1474
    "rsahostkeypub",
1475
    "highest_used_port",
1476
    "tcpudp_port_pool",
1477
    "mac_prefix",
1478
    "volume_group_name",
1479
    "reserved_lvs",
1480
    "drbd_usermode_helper",
1481
    "default_bridge",
1482
    "default_hypervisor",
1483
    "master_node",
1484
    "master_ip",
1485
    "master_netdev",
1486
    "master_netmask",
1487
    "use_external_mip_script",
1488
    "cluster_name",
1489
    "file_storage_dir",
1490
    "shared_file_storage_dir",
1491
    "enabled_hypervisors",
1492
    "hvparams",
1493
    "ipolicy",
1494
    "os_hvp",
1495
    "beparams",
1496
    "osparams",
1497
    "nicparams",
1498
    "ndparams",
1499
    "diskparams",
1500
    "candidate_pool_size",
1501
    "modify_etc_hosts",
1502
    "modify_ssh_setup",
1503
    "maintain_node_health",
1504
    "uid_pool",
1505
    "default_iallocator",
1506
    "hidden_os",
1507
    "blacklisted_os",
1508
    "primary_ip_family",
1509
    "prealloc_wipe_disks",
1510
    "hv_state_static",
1511
    "disk_state_static",
1512
    ] + _TIMESTAMPS + _UUID
1513

    
1514
  def UpgradeConfig(self):
1515
    """Fill defaults for missing configuration values.
1516

1517
    """
1518
    # pylint: disable=E0203
1519
    # because these are "defined" via slots, not manually
1520
    if self.hvparams is None:
1521
      self.hvparams = constants.HVC_DEFAULTS
1522
    else:
1523
      for hypervisor in self.hvparams:
1524
        self.hvparams[hypervisor] = FillDict(
1525
            constants.HVC_DEFAULTS[hypervisor], self.hvparams[hypervisor])
1526

    
1527
    if self.os_hvp is None:
1528
      self.os_hvp = {}
1529

    
1530
    # osparams added before 2.2
1531
    if self.osparams is None:
1532
      self.osparams = {}
1533

    
1534
    self.ndparams = UpgradeNDParams(self.ndparams)
1535

    
1536
    self.beparams = UpgradeGroupedParams(self.beparams,
1537
                                         constants.BEC_DEFAULTS)
1538
    for beparams_group in self.beparams:
1539
      UpgradeBeParams(self.beparams[beparams_group])
1540

    
1541
    migrate_default_bridge = not self.nicparams
1542
    self.nicparams = UpgradeGroupedParams(self.nicparams,
1543
                                          constants.NICC_DEFAULTS)
1544
    if migrate_default_bridge:
1545
      self.nicparams[constants.PP_DEFAULT][constants.NIC_LINK] = \
1546
        self.default_bridge
1547

    
1548
    if self.modify_etc_hosts is None:
1549
      self.modify_etc_hosts = True
1550

    
1551
    if self.modify_ssh_setup is None:
1552
      self.modify_ssh_setup = True
1553

    
1554
    # default_bridge is no longer used in 2.1. The slot is left there to
1555
    # support auto-upgrading. It can be removed once we decide to deprecate
1556
    # upgrading straight from 2.0.
1557
    if self.default_bridge is not None:
1558
      self.default_bridge = None
1559

    
1560
    # default_hypervisor is just the first enabled one in 2.1. This slot and
1561
    # code can be removed once upgrading straight from 2.0 is deprecated.
1562
    if self.default_hypervisor is not None:
1563
      self.enabled_hypervisors = ([self.default_hypervisor] +
1564
        [hvname for hvname in self.enabled_hypervisors
1565
         if hvname != self.default_hypervisor])
1566
      self.default_hypervisor = None
1567

    
1568
    # maintain_node_health added after 2.1.1
1569
    if self.maintain_node_health is None:
1570
      self.maintain_node_health = False
1571

    
1572
    if self.uid_pool is None:
1573
      self.uid_pool = []
1574

    
1575
    if self.default_iallocator is None:
1576
      self.default_iallocator = ""
1577

    
1578
    # reserved_lvs added before 2.2
1579
    if self.reserved_lvs is None:
1580
      self.reserved_lvs = []
1581

    
1582
    # hidden and blacklisted operating systems added before 2.2.1
1583
    if self.hidden_os is None:
1584
      self.hidden_os = []
1585

    
1586
    if self.blacklisted_os is None:
1587
      self.blacklisted_os = []
1588

    
1589
    # primary_ip_family added before 2.3
1590
    if self.primary_ip_family is None:
1591
      self.primary_ip_family = AF_INET
1592

    
1593
    if self.master_netmask is None:
1594
      ipcls = netutils.IPAddress.GetClassFromIpFamily(self.primary_ip_family)
1595
      self.master_netmask = ipcls.iplen
1596

    
1597
    if self.prealloc_wipe_disks is None:
1598
      self.prealloc_wipe_disks = False
1599

    
1600
    # shared_file_storage_dir added before 2.5
1601
    if self.shared_file_storage_dir is None:
1602
      self.shared_file_storage_dir = ""
1603

    
1604
    if self.use_external_mip_script is None:
1605
      self.use_external_mip_script = False
1606

    
1607
    if self.diskparams:
1608
      self.diskparams = UpgradeDiskParams(self.diskparams)
1609
    else:
1610
      self.diskparams = constants.DISK_DT_DEFAULTS.copy()
1611

    
1612
    # instance policy added before 2.6
1613
    if self.ipolicy is None:
1614
      self.ipolicy = FillIPolicy(constants.IPOLICY_DEFAULTS, {})
1615
    else:
1616
      # we can either make sure to upgrade the ipolicy always, or only
1617
      # do it in some corner cases (e.g. missing keys); note that this
1618
      # will break any removal of keys from the ipolicy dict
1619
      self.ipolicy = FillIPolicy(constants.IPOLICY_DEFAULTS, self.ipolicy)
1620

    
1621
  @property
1622
  def primary_hypervisor(self):
1623
    """The first hypervisor is the primary.
1624

1625
    Useful, for example, for L{Node}'s hv/disk state.
1626

1627
    """
1628
    return self.enabled_hypervisors[0]
1629

    
1630
  def ToDict(self):
1631
    """Custom function for cluster.
1632

1633
    """
1634
    mydict = super(Cluster, self).ToDict()
1635
    mydict["tcpudp_port_pool"] = list(self.tcpudp_port_pool)
1636
    return mydict
1637

    
1638
  @classmethod
1639
  def FromDict(cls, val):
1640
    """Custom function for cluster.
1641

1642
    """
1643
    obj = super(Cluster, cls).FromDict(val)
1644
    if not isinstance(obj.tcpudp_port_pool, set):
1645
      obj.tcpudp_port_pool = set(obj.tcpudp_port_pool)
1646
    return obj
1647

    
1648
  def SimpleFillDP(self, diskparams):
1649
    """Fill a given diskparams dict with cluster defaults.
1650

1651
    @param diskparams: The diskparams
1652
    @return: The defaults dict
1653

1654
    """
1655
    return FillDiskParams(self.diskparams, diskparams)
1656

    
1657
  def GetHVDefaults(self, hypervisor, os_name=None, skip_keys=None):
1658
    """Get the default hypervisor parameters for the cluster.
1659

1660
    @param hypervisor: the hypervisor name
1661
    @param os_name: if specified, we'll also update the defaults for this OS
1662
    @param skip_keys: if passed, list of keys not to use
1663
    @return: the defaults dict
1664

1665
    """
1666
    if skip_keys is None:
1667
      skip_keys = []
1668

    
1669
    fill_stack = [self.hvparams.get(hypervisor, {})]
1670
    if os_name is not None:
1671
      os_hvp = self.os_hvp.get(os_name, {}).get(hypervisor, {})
1672
      fill_stack.append(os_hvp)
1673

    
1674
    ret_dict = {}
1675
    for o_dict in fill_stack:
1676
      ret_dict = FillDict(ret_dict, o_dict, skip_keys=skip_keys)
1677

    
1678
    return ret_dict
1679

    
1680
  def SimpleFillHV(self, hv_name, os_name, hvparams, skip_globals=False):
1681
    """Fill a given hvparams dict with cluster defaults.
1682

1683
    @type hv_name: string
1684
    @param hv_name: the hypervisor to use
1685
    @type os_name: string
1686
    @param os_name: the OS to use for overriding the hypervisor defaults
1687
    @type skip_globals: boolean
1688
    @param skip_globals: if True, the global hypervisor parameters will
1689
        not be filled
1690
    @rtype: dict
1691
    @return: a copy of the given hvparams with missing keys filled from
1692
        the cluster defaults
1693

1694
    """
1695
    if skip_globals:
1696
      skip_keys = constants.HVC_GLOBALS
1697
    else:
1698
      skip_keys = []
1699

    
1700
    def_dict = self.GetHVDefaults(hv_name, os_name, skip_keys=skip_keys)
1701
    return FillDict(def_dict, hvparams, skip_keys=skip_keys)
1702

    
1703
  def FillHV(self, instance, skip_globals=False):
1704
    """Fill an instance's hvparams dict with cluster defaults.
1705

1706
    @type instance: L{objects.Instance}
1707
    @param instance: the instance parameter to fill
1708
    @type skip_globals: boolean
1709
    @param skip_globals: if True, the global hypervisor parameters will
1710
        not be filled
1711
    @rtype: dict
1712
    @return: a copy of the instance's hvparams with missing keys filled from
1713
        the cluster defaults
1714

1715
    """
1716
    return self.SimpleFillHV(instance.hypervisor, instance.os,
1717
                             instance.hvparams, skip_globals)
1718

    
1719
  def SimpleFillBE(self, beparams):
1720
    """Fill a given beparams dict with cluster defaults.
1721

1722
    @type beparams: dict
1723
    @param beparams: the dict to fill
1724
    @rtype: dict
1725
    @return: a copy of the passed in beparams with missing keys filled
1726
        from the cluster defaults
1727

1728
    """
1729
    return FillDict(self.beparams.get(constants.PP_DEFAULT, {}), beparams)
1730

    
1731
  def FillBE(self, instance):
1732
    """Fill an instance's beparams dict with cluster defaults.
1733

1734
    @type instance: L{objects.Instance}
1735
    @param instance: the instance parameter to fill
1736
    @rtype: dict
1737
    @return: a copy of the instance's beparams with missing keys filled from
1738
        the cluster defaults
1739

1740
    """
1741
    return self.SimpleFillBE(instance.beparams)
1742

    
1743
  def SimpleFillNIC(self, nicparams):
1744
    """Fill a given nicparams dict with cluster defaults.
1745

1746
    @type nicparams: dict
1747
    @param nicparams: the dict to fill
1748
    @rtype: dict
1749
    @return: a copy of the passed in nicparams with missing keys filled
1750
        from the cluster defaults
1751

1752
    """
1753
    return FillDict(self.nicparams.get(constants.PP_DEFAULT, {}), nicparams)
1754

    
1755
  def SimpleFillOS(self, os_name, os_params):
1756
    """Fill an instance's osparams dict with cluster defaults.
1757

1758
    @type os_name: string
1759
    @param os_name: the OS name to use
1760
    @type os_params: dict
1761
    @param os_params: the dict to fill with default values
1762
    @rtype: dict
1763
    @return: a copy of the instance's osparams with missing keys filled from
1764
        the cluster defaults
1765

1766
    """
1767
    name_only = os_name.split("+", 1)[0]
1768
    # base OS
1769
    result = self.osparams.get(name_only, {})
1770
    # OS with variant
1771
    result = FillDict(result, self.osparams.get(os_name, {}))
1772
    # specified params
1773
    return FillDict(result, os_params)
1774

    
1775
  @staticmethod
1776
  def SimpleFillHvState(hv_state):
1777
    """Fill an hv_state sub dict with cluster defaults.
1778

1779
    """
1780
    return FillDict(constants.HVST_DEFAULTS, hv_state)
1781

    
1782
  @staticmethod
1783
  def SimpleFillDiskState(disk_state):
1784
    """Fill an disk_state sub dict with cluster defaults.
1785

1786
    """
1787
    return FillDict(constants.DS_DEFAULTS, disk_state)
1788

    
1789
  def FillND(self, node, nodegroup):
1790
    """Return filled out ndparams for L{objects.NodeGroup} and L{objects.Node}
1791

1792
    @type node: L{objects.Node}
1793
    @param node: A Node object to fill
1794
    @type nodegroup: L{objects.NodeGroup}
1795
    @param nodegroup: A Node object to fill
1796
    @return a copy of the node's ndparams with defaults filled
1797

1798
    """
1799
    return self.SimpleFillND(nodegroup.FillND(node))
1800

    
1801
  def SimpleFillND(self, ndparams):
1802
    """Fill a given ndparams dict with defaults.
1803

1804
    @type ndparams: dict
1805
    @param ndparams: the dict to fill
1806
    @rtype: dict
1807
    @return: a copy of the passed in ndparams with missing keys filled
1808
        from the cluster defaults
1809

1810
    """
1811
    return FillDict(self.ndparams, ndparams)
1812

    
1813
  def SimpleFillIPolicy(self, ipolicy):
1814
    """ Fill instance policy dict with defaults.
1815

1816
    @type ipolicy: dict
1817
    @param ipolicy: the dict to fill
1818
    @rtype: dict
1819
    @return: a copy of passed ipolicy with missing keys filled from
1820
      the cluster defaults
1821

1822
    """
1823
    return FillIPolicy(self.ipolicy, ipolicy)
1824

    
1825

    
1826
class BlockDevStatus(ConfigObject):
1827
  """Config object representing the status of a block device."""
1828
  __slots__ = [
1829
    "dev_path",
1830
    "major",
1831
    "minor",
1832
    "sync_percent",
1833
    "estimated_time",
1834
    "is_degraded",
1835
    "ldisk_status",
1836
    ]
1837

    
1838

    
1839
class ImportExportStatus(ConfigObject):
1840
  """Config object representing the status of an import or export."""
1841
  __slots__ = [
1842
    "recent_output",
1843
    "listen_port",
1844
    "connected",
1845
    "progress_mbytes",
1846
    "progress_throughput",
1847
    "progress_eta",
1848
    "progress_percent",
1849
    "exit_status",
1850
    "error_message",
1851
    ] + _TIMESTAMPS
1852

    
1853

    
1854
class ImportExportOptions(ConfigObject):
1855
  """Options for import/export daemon
1856

1857
  @ivar key_name: X509 key name (None for cluster certificate)
1858
  @ivar ca_pem: Remote peer CA in PEM format (None for cluster certificate)
1859
  @ivar compress: Compression method (one of L{constants.IEC_ALL})
1860
  @ivar magic: Used to ensure the connection goes to the right disk
1861
  @ivar ipv6: Whether to use IPv6
1862
  @ivar connect_timeout: Number of seconds for establishing connection
1863

1864
  """
1865
  __slots__ = [
1866
    "key_name",
1867
    "ca_pem",
1868
    "compress",
1869
    "magic",
1870
    "ipv6",
1871
    "connect_timeout",
1872
    ]
1873

    
1874

    
1875
class ConfdRequest(ConfigObject):
1876
  """Object holding a confd request.
1877

1878
  @ivar protocol: confd protocol version
1879
  @ivar type: confd query type
1880
  @ivar query: query request
1881
  @ivar rsalt: requested reply salt
1882

1883
  """
1884
  __slots__ = [
1885
    "protocol",
1886
    "type",
1887
    "query",
1888
    "rsalt",
1889
    ]
1890

    
1891

    
1892
class ConfdReply(ConfigObject):
1893
  """Object holding a confd reply.
1894

1895
  @ivar protocol: confd protocol version
1896
  @ivar status: reply status code (ok, error)
1897
  @ivar answer: confd query reply
1898
  @ivar serial: configuration serial number
1899

1900
  """
1901
  __slots__ = [
1902
    "protocol",
1903
    "status",
1904
    "answer",
1905
    "serial",
1906
    ]
1907

    
1908

    
1909
class QueryFieldDefinition(ConfigObject):
1910
  """Object holding a query field definition.
1911

1912
  @ivar name: Field name
1913
  @ivar title: Human-readable title
1914
  @ivar kind: Field type
1915
  @ivar doc: Human-readable description
1916

1917
  """
1918
  __slots__ = [
1919
    "name",
1920
    "title",
1921
    "kind",
1922
    "doc",
1923
    ]
1924

    
1925

    
1926
class _QueryResponseBase(ConfigObject):
1927
  __slots__ = [
1928
    "fields",
1929
    ]
1930

    
1931
  def ToDict(self):
1932
    """Custom function for serializing.
1933

1934
    """
1935
    mydict = super(_QueryResponseBase, self).ToDict()
1936
    mydict["fields"] = self._ContainerToDicts(mydict["fields"])
1937
    return mydict
1938

    
1939
  @classmethod
1940
  def FromDict(cls, val):
1941
    """Custom function for de-serializing.
1942

1943
    """
1944
    obj = super(_QueryResponseBase, cls).FromDict(val)
1945
    obj.fields = cls._ContainerFromDicts(obj.fields, list, QueryFieldDefinition)
1946
    return obj
1947

    
1948

    
1949
class QueryResponse(_QueryResponseBase):
1950
  """Object holding the response to a query.
1951

1952
  @ivar fields: List of L{QueryFieldDefinition} objects
1953
  @ivar data: Requested data
1954

1955
  """
1956
  __slots__ = [
1957
    "data",
1958
    ]
1959

    
1960

    
1961
class QueryFieldsRequest(ConfigObject):
1962
  """Object holding a request for querying available fields.
1963

1964
  """
1965
  __slots__ = [
1966
    "what",
1967
    "fields",
1968
    ]
1969

    
1970

    
1971
class QueryFieldsResponse(_QueryResponseBase):
1972
  """Object holding the response to a query for fields.
1973

1974
  @ivar fields: List of L{QueryFieldDefinition} objects
1975

1976
  """
1977
  __slots__ = [
1978
    ]
1979

    
1980

    
1981
class MigrationStatus(ConfigObject):
1982
  """Object holding the status of a migration.
1983

1984
  """
1985
  __slots__ = [
1986
    "status",
1987
    "transferred_ram",
1988
    "total_ram",
1989
    ]
1990

    
1991

    
1992
class InstanceConsole(ConfigObject):
1993
  """Object describing how to access the console of an instance.
1994

1995
  """
1996
  __slots__ = [
1997
    "instance",
1998
    "kind",
1999
    "message",
2000
    "host",
2001
    "port",
2002
    "user",
2003
    "command",
2004
    "display",
2005
    ]
2006

    
2007
  def Validate(self):
2008
    """Validates contents of this object.
2009

2010
    """
2011
    assert self.kind in constants.CONS_ALL, "Unknown console type"
2012
    assert self.instance, "Missing instance name"
2013
    assert self.message or self.kind in [constants.CONS_SSH,
2014
                                         constants.CONS_SPICE,
2015
                                         constants.CONS_VNC]
2016
    assert self.host or self.kind == constants.CONS_MESSAGE
2017
    assert self.port or self.kind in [constants.CONS_MESSAGE,
2018
                                      constants.CONS_SSH]
2019
    assert self.user or self.kind in [constants.CONS_MESSAGE,
2020
                                      constants.CONS_SPICE,
2021
                                      constants.CONS_VNC]
2022
    assert self.command or self.kind in [constants.CONS_MESSAGE,
2023
                                         constants.CONS_SPICE,
2024
                                         constants.CONS_VNC]
2025
    assert self.display or self.kind in [constants.CONS_MESSAGE,
2026
                                         constants.CONS_SPICE,
2027
                                         constants.CONS_SSH]
2028
    return True
2029

    
2030

    
2031
class Network(ConfigObject):
2032
  """Object representing a network definition for ganeti.
2033

2034
  """
2035
  __slots__ = [
2036
    "name",
2037
    "serial_no",
2038
    "network_type",
2039
    "mac_prefix",
2040
    "family",
2041
    "network",
2042
    "network6",
2043
    "gateway",
2044
    "gateway6",
2045
    "size",
2046
    "reservations",
2047
    "ext_reservations",
2048
    ] + _TIMESTAMPS + _UUID
2049

    
2050

    
2051
class SerializableConfigParser(ConfigParser.SafeConfigParser):
2052
  """Simple wrapper over ConfigParse that allows serialization.
2053

2054
  This class is basically ConfigParser.SafeConfigParser with two
2055
  additional methods that allow it to serialize/unserialize to/from a
2056
  buffer.
2057

2058
  """
2059
  def Dumps(self):
2060
    """Dump this instance and return the string representation."""
2061
    buf = StringIO()
2062
    self.write(buf)
2063
    return buf.getvalue()
2064

    
2065
  @classmethod
2066
  def Loads(cls, data):
2067
    """Load data from a string."""
2068
    buf = StringIO(data)
2069
    cfp = cls()
2070
    cfp.readfp(buf)
2071
    return cfp