Statistics
| Branch: | Tag: | Revision:

root / lib / hypervisor / hv_xen.py @ 76c364d9

History | View | Annotate | Download (29.7 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
"""Xen hypervisors
23

24
"""
25

    
26
import logging
27
from cStringIO import StringIO
28

    
29
from ganeti import constants
30
from ganeti import errors
31
from ganeti import utils
32
from ganeti.hypervisor import hv_base
33
from ganeti import netutils
34
from ganeti import objects
35
from ganeti import pathutils
36
from ganeti import ssconf
37

    
38

    
39
XEND_CONFIG_FILE = utils.PathJoin(pathutils.XEN_CONFIG_DIR, "xend-config.sxp")
40
XL_CONFIG_FILE = utils.PathJoin(pathutils.XEN_CONFIG_DIR, "xen/xl.conf")
41
VIF_BRIDGE_SCRIPT = utils.PathJoin(pathutils.XEN_CONFIG_DIR,
42
                                   "scripts/vif-bridge")
43
_DOM0_NAME = "Domain-0"
44

    
45

    
46
def _CreateConfigCpus(cpu_mask):
47
  """Create a CPU config string for Xen's config file.
48

49
  """
50
  # Convert the string CPU mask to a list of list of int's
51
  cpu_list = utils.ParseMultiCpuMask(cpu_mask)
52

    
53
  if len(cpu_list) == 1:
54
    all_cpu_mapping = cpu_list[0]
55
    if all_cpu_mapping == constants.CPU_PINNING_OFF:
56
      # If CPU pinning has 1 entry that's "all", then remove the
57
      # parameter from the config file
58
      return None
59
    else:
60
      # If CPU pinning has one non-all entry, mapping all vCPUS (the entire
61
      # VM) to one physical CPU, using format 'cpu = "C"'
62
      return "cpu = \"%s\"" % ",".join(map(str, all_cpu_mapping))
63
  else:
64

    
65
    def _GetCPUMap(vcpu):
66
      if vcpu[0] == constants.CPU_PINNING_ALL_VAL:
67
        cpu_map = constants.CPU_PINNING_ALL_XEN
68
      else:
69
        cpu_map = ",".join(map(str, vcpu))
70
      return "\"%s\"" % cpu_map
71

    
72
    # build the result string in format 'cpus = [ "c", "c", "c" ]',
73
    # where each c is a physical CPU number, a range, a list, or any
74
    # combination
75
    return "cpus = [ %s ]" % ", ".join(map(_GetCPUMap, cpu_list))
76

    
77

    
78
class XenHypervisor(hv_base.BaseHypervisor):
79
  """Xen generic hypervisor interface
80

81
  This is the Xen base class used for both Xen PVM and HVM. It contains
82
  all the functionality that is identical for both.
83

84
  """
85
  CAN_MIGRATE = True
86
  REBOOT_RETRY_COUNT = 60
87
  REBOOT_RETRY_INTERVAL = 10
88

    
89
  ANCILLARY_FILES = [
90
    XEND_CONFIG_FILE,
91
    XL_CONFIG_FILE,
92
    VIF_BRIDGE_SCRIPT,
93
    ]
94
  ANCILLARY_FILES_OPT = [
95
    XL_CONFIG_FILE,
96
    ]
97

    
98
  @staticmethod
99
  def _ConfigFileName(instance_name):
100
    """Get the config file name for an instance.
101

102
    @param instance_name: instance name
103
    @type instance_name: str
104
    @return: fully qualified path to instance config file
105
    @rtype: str
106

107
    """
108
    return utils.PathJoin(pathutils.XEN_CONFIG_DIR, instance_name)
109

    
110
  @classmethod
111
  def _WriteConfigFile(cls, instance, startup_memory, block_devices):
112
    """Write the Xen config file for the instance.
113

114
    """
115
    raise NotImplementedError
116

    
117
  @staticmethod
118
  def _WriteConfigFileStatic(instance_name, data):
119
    """Write the Xen config file for the instance.
120

121
    This version of the function just writes the config file from static data.
122

123
    """
124
    # just in case it exists
125
    utils.RemoveFile(utils.PathJoin(pathutils.XEN_CONFIG_DIR, "auto",
126
                                    instance_name))
127

    
128
    cfg_file = XenHypervisor._ConfigFileName(instance_name)
129
    try:
130
      utils.WriteFile(cfg_file, data=data)
131
    except EnvironmentError, err:
132
      raise errors.HypervisorError("Cannot write Xen instance configuration"
133
                                   " file %s: %s" % (cfg_file, err))
134

    
135
  @staticmethod
136
  def _ReadConfigFile(instance_name):
137
    """Returns the contents of the instance config file.
138

139
    """
140
    filename = XenHypervisor._ConfigFileName(instance_name)
141

    
142
    try:
143
      file_content = utils.ReadFile(filename)
144
    except EnvironmentError, err:
145
      raise errors.HypervisorError("Failed to load Xen config file: %s" % err)
146

    
147
    return file_content
148

    
149
  @staticmethod
150
  def _RemoveConfigFile(instance_name):
151
    """Remove the xen configuration file.
152

153
    """
154
    utils.RemoveFile(XenHypervisor._ConfigFileName(instance_name))
155

    
156
  @staticmethod
157
  def _RunXmList(xmlist_errors):
158
    """Helper function for L{_GetXMList} to run "xm list".
159

160
    """
161
    result = utils.RunCmd([constants.XEN_CMD, "list"])
162
    if result.failed:
163
      logging.error("xm list failed (%s): %s", result.fail_reason,
164
                    result.output)
165
      xmlist_errors.append(result)
166
      raise utils.RetryAgain()
167

    
168
    # skip over the heading
169
    return result.stdout.splitlines()[1:]
170

    
171
  @classmethod
172
  def _GetXMList(cls, include_node):
173
    """Return the list of running instances.
174

175
    If the include_node argument is True, then we return information
176
    for dom0 also, otherwise we filter that from the return value.
177

178
    @return: list of (name, id, memory, vcpus, state, time spent)
179

180
    """
181
    xmlist_errors = []
182
    try:
183
      lines = utils.Retry(cls._RunXmList, 1, 5, args=(xmlist_errors, ))
184
    except utils.RetryTimeout:
185
      if xmlist_errors:
186
        xmlist_result = xmlist_errors.pop()
187

    
188
        errmsg = ("xm list failed, timeout exceeded (%s): %s" %
189
                  (xmlist_result.fail_reason, xmlist_result.output))
190
      else:
191
        errmsg = "xm list failed"
192

    
193
      raise errors.HypervisorError(errmsg)
194

    
195
    result = []
196
    for line in lines:
197
      # The format of lines is:
198
      # Name      ID Mem(MiB) VCPUs State  Time(s)
199
      # Domain-0   0  3418     4 r-----    266.2
200
      data = line.split()
201
      if len(data) != 6:
202
        raise errors.HypervisorError("Can't parse output of xm list,"
203
                                     " line: %s" % line)
204
      try:
205
        data[1] = int(data[1])
206
        data[2] = int(data[2])
207
        data[3] = int(data[3])
208
        data[5] = float(data[5])
209
      except (TypeError, ValueError), err:
210
        raise errors.HypervisorError("Can't parse output of xm list,"
211
                                     " line: %s, error: %s" % (line, err))
212

    
213
      # skip the Domain-0 (optional)
214
      if include_node or data[0] != _DOM0_NAME:
215
        result.append(data)
216

    
217
    return result
218

    
219
  def ListInstances(self):
220
    """Get the list of running instances.
221

222
    """
223
    xm_list = self._GetXMList(False)
224
    names = [info[0] for info in xm_list]
225
    return names
226

    
227
  def GetInstanceInfo(self, instance_name):
228
    """Get instance properties.
229

230
    @param instance_name: the instance name
231

232
    @return: tuple (name, id, memory, vcpus, stat, times)
233

234
    """
235
    xm_list = self._GetXMList(instance_name == _DOM0_NAME)
236
    result = None
237
    for data in xm_list:
238
      if data[0] == instance_name:
239
        result = data
240
        break
241
    return result
242

    
243
  def GetAllInstancesInfo(self):
244
    """Get properties of all instances.
245

246
    @return: list of tuples (name, id, memory, vcpus, stat, times)
247

248
    """
249
    xm_list = self._GetXMList(False)
250
    return xm_list
251

    
252
  def StartInstance(self, instance, block_devices, startup_paused):
253
    """Start an instance.
254

255
    """
256
    startup_memory = self._InstanceStartupMemory(instance)
257
    self._WriteConfigFile(instance, startup_memory, block_devices)
258
    cmd = [constants.XEN_CMD, "create"]
259
    if startup_paused:
260
      cmd.extend(["-p"])
261
    cmd.extend([self._ConfigFileName(instance.name)])
262
    result = utils.RunCmd(cmd)
263

    
264
    if result.failed:
265
      raise errors.HypervisorError("Failed to start instance %s: %s (%s)" %
266
                                   (instance.name, result.fail_reason,
267
                                    result.output))
268

    
269
  def StopInstance(self, instance, force=False, retry=False, name=None):
270
    """Stop an instance.
271

272
    """
273
    if name is None:
274
      name = instance.name
275
    self._RemoveConfigFile(name)
276
    if force:
277
      command = [constants.XEN_CMD, "destroy", name]
278
    else:
279
      command = [constants.XEN_CMD, "shutdown", name]
280
    result = utils.RunCmd(command)
281

    
282
    if result.failed:
283
      raise errors.HypervisorError("Failed to stop instance %s: %s, %s" %
284
                                   (name, result.fail_reason, result.output))
285

    
286
  def RebootInstance(self, instance):
287
    """Reboot an instance.
288

289
    """
290
    ini_info = self.GetInstanceInfo(instance.name)
291

    
292
    if ini_info is None:
293
      raise errors.HypervisorError("Failed to reboot instance %s,"
294
                                   " not running" % instance.name)
295

    
296
    result = utils.RunCmd([constants.XEN_CMD, "reboot", instance.name])
297
    if result.failed:
298
      raise errors.HypervisorError("Failed to reboot instance %s: %s, %s" %
299
                                   (instance.name, result.fail_reason,
300
                                    result.output))
301

    
302
    def _CheckInstance():
303
      new_info = self.GetInstanceInfo(instance.name)
304

    
305
      # check if the domain ID has changed or the run time has decreased
306
      if (new_info is not None and
307
          (new_info[1] != ini_info[1] or new_info[5] < ini_info[5])):
308
        return
309

    
310
      raise utils.RetryAgain()
311

    
312
    try:
313
      utils.Retry(_CheckInstance, self.REBOOT_RETRY_INTERVAL,
314
                  self.REBOOT_RETRY_INTERVAL * self.REBOOT_RETRY_COUNT)
315
    except utils.RetryTimeout:
316
      raise errors.HypervisorError("Failed to reboot instance %s: instance"
317
                                   " did not reboot in the expected interval" %
318
                                   (instance.name, ))
319

    
320
  def BalloonInstanceMemory(self, instance, mem):
321
    """Balloon an instance memory to a certain value.
322

323
    @type instance: L{objects.Instance}
324
    @param instance: instance to be accepted
325
    @type mem: int
326
    @param mem: actual memory size to use for instance runtime
327

328
    """
329
    cmd = [constants.XEN_CMD, "mem-set", instance.name, mem]
330
    result = utils.RunCmd(cmd)
331
    if result.failed:
332
      raise errors.HypervisorError("Failed to balloon instance %s: %s (%s)" %
333
                                   (instance.name, result.fail_reason,
334
                                    result.output))
335
    cmd = ["sed", "-ie", "s/^memory.*$/memory = %s/" % mem]
336
    cmd.append(XenHypervisor._ConfigFileName(instance.name))
337
    result = utils.RunCmd(cmd)
338
    if result.failed:
339
      raise errors.HypervisorError("Failed to update memory for %s: %s (%s)" %
340
                                   (instance.name, result.fail_reason,
341
                                    result.output))
342

    
343
  def GetNodeInfo(self):
344
    """Return information about the node.
345

346
    @return: a dict with the following keys (memory values in MiB):
347
          - memory_total: the total memory size on the node
348
          - memory_free: the available memory on the node for instances
349
          - memory_dom0: the memory used by the node itself, if available
350
          - nr_cpus: total number of CPUs
351
          - nr_nodes: in a NUMA system, the number of domains
352
          - nr_sockets: the number of physical CPU sockets in the node
353
          - hv_version: the hypervisor version in the form (major, minor)
354

355
    """
356
    result = utils.RunCmd([constants.XEN_CMD, "info"])
357
    if result.failed:
358
      logging.error("Can't run 'xm info' (%s): %s", result.fail_reason,
359
                    result.output)
360
      return None
361

    
362
    xmoutput = result.stdout.splitlines()
363
    result = {}
364
    cores_per_socket = threads_per_core = nr_cpus = None
365
    xen_major, xen_minor = None, None
366
    memory_total = None
367
    memory_free = None
368

    
369
    for line in xmoutput:
370
      splitfields = line.split(":", 1)
371

    
372
      if len(splitfields) > 1:
373
        key = splitfields[0].strip()
374
        val = splitfields[1].strip()
375

    
376
        # note: in xen 3, memory has changed to total_memory
377
        if key == "memory" or key == "total_memory":
378
          memory_total = int(val)
379
        elif key == "free_memory":
380
          memory_free = int(val)
381
        elif key == "nr_cpus":
382
          nr_cpus = result["cpu_total"] = int(val)
383
        elif key == "nr_nodes":
384
          result["cpu_nodes"] = int(val)
385
        elif key == "cores_per_socket":
386
          cores_per_socket = int(val)
387
        elif key == "threads_per_core":
388
          threads_per_core = int(val)
389
        elif key == "xen_major":
390
          xen_major = int(val)
391
        elif key == "xen_minor":
392
          xen_minor = int(val)
393

    
394
    if None not in [cores_per_socket, threads_per_core, nr_cpus]:
395
      result["cpu_sockets"] = nr_cpus / (cores_per_socket * threads_per_core)
396

    
397
    total_instmem = 0
398
    for (name, _, mem, vcpus, _, _) in self._GetXMList(True):
399
      if name == _DOM0_NAME:
400
        result["memory_dom0"] = mem
401
        result["dom0_cpus"] = vcpus
402

    
403
      # Include Dom0 in total memory usage
404
      total_instmem += mem
405

    
406
    if memory_free is not None:
407
      result["memory_free"] = memory_free
408

    
409
    if memory_total is not None:
410
      result["memory_total"] = memory_total
411

    
412
    # Calculate memory used by hypervisor
413
    if None not in [memory_total, memory_free, total_instmem]:
414
      result["memory_hv"] = memory_total - memory_free - total_instmem
415

    
416
    if not (xen_major is None or xen_minor is None):
417
      result[constants.HV_NODEINFO_KEY_VERSION] = (xen_major, xen_minor)
418

    
419
    return result
420

    
421
  @classmethod
422
  def GetInstanceConsole(cls, instance, hvparams, beparams):
423
    """Return a command for connecting to the console of an instance.
424

425
    """
426
    return objects.InstanceConsole(instance=instance.name,
427
                                   kind=constants.CONS_SSH,
428
                                   host=instance.primary_node,
429
                                   user=constants.SSH_CONSOLE_USER,
430
                                   command=[pathutils.XEN_CONSOLE_WRAPPER,
431
                                            constants.XEN_CMD, instance.name])
432

    
433
  def Verify(self):
434
    """Verify the hypervisor.
435

436
    For Xen, this verifies that the xend process is running.
437

438
    """
439
    result = utils.RunCmd([constants.XEN_CMD, "info"])
440
    if result.failed:
441
      return "'xm info' failed: %s, %s" % (result.fail_reason, result.output)
442

    
443
  @staticmethod
444
  def _GetConfigFileDiskData(block_devices, blockdev_prefix):
445
    """Get disk directive for xen config file.
446

447
    This method builds the xen config disk directive according to the
448
    given disk_template and block_devices.
449

450
    @param block_devices: list of tuples (cfdev, rldev):
451
        - cfdev: dict containing ganeti config disk part
452
        - rldev: ganeti.bdev.BlockDev object
453
    @param blockdev_prefix: a string containing blockdevice prefix,
454
                            e.g. "sd" for /dev/sda
455

456
    @return: string containing disk directive for xen instance config file
457

458
    """
459
    FILE_DRIVER_MAP = {
460
      constants.FD_LOOP: "file",
461
      constants.FD_BLKTAP: "tap:aio",
462
      }
463
    disk_data = []
464
    if len(block_devices) > 24:
465
      # 'z' - 'a' = 24
466
      raise errors.HypervisorError("Too many disks")
467
    namespace = [blockdev_prefix + chr(i + ord("a")) for i in range(24)]
468
    for sd_name, (cfdev, dev_path) in zip(namespace, block_devices):
469
      if cfdev.mode == constants.DISK_RDWR:
470
        mode = "w"
471
      else:
472
        mode = "r"
473
      if cfdev.dev_type == constants.LD_FILE:
474
        line = "'%s:%s,%s,%s'" % (FILE_DRIVER_MAP[cfdev.physical_id[0]],
475
                                  dev_path, sd_name, mode)
476
      else:
477
        line = "'phy:%s,%s,%s'" % (dev_path, sd_name, mode)
478
      disk_data.append(line)
479

    
480
    return disk_data
481

    
482
  def MigrationInfo(self, instance):
483
    """Get instance information to perform a migration.
484

485
    @type instance: L{objects.Instance}
486
    @param instance: instance to be migrated
487
    @rtype: string
488
    @return: content of the xen config file
489

490
    """
491
    return self._ReadConfigFile(instance.name)
492

    
493
  def AcceptInstance(self, instance, info, target):
494
    """Prepare to accept an instance.
495

496
    @type instance: L{objects.Instance}
497
    @param instance: instance to be accepted
498
    @type info: string
499
    @param info: content of the xen config file on the source node
500
    @type target: string
501
    @param target: target host (usually ip), on this node
502

503
    """
504
    pass
505

    
506
  def FinalizeMigrationDst(self, instance, info, success):
507
    """Finalize an instance migration.
508

509
    After a successful migration we write the xen config file.
510
    We do nothing on a failure, as we did not change anything at accept time.
511

512
    @type instance: L{objects.Instance}
513
    @param instance: instance whose migration is being finalized
514
    @type info: string
515
    @param info: content of the xen config file on the source node
516
    @type success: boolean
517
    @param success: whether the migration was a success or a failure
518

519
    """
520
    if success:
521
      self._WriteConfigFileStatic(instance.name, info)
522

    
523
  def MigrateInstance(self, instance, target, live):
524
    """Migrate an instance to a target node.
525

526
    The migration will not be attempted if the instance is not
527
    currently running.
528

529
    @type instance: L{objects.Instance}
530
    @param instance: the instance to be migrated
531
    @type target: string
532
    @param target: ip address of the target node
533
    @type live: boolean
534
    @param live: perform a live migration
535

536
    """
537
    if self.GetInstanceInfo(instance.name) is None:
538
      raise errors.HypervisorError("Instance not running, cannot migrate")
539

    
540
    port = instance.hvparams[constants.HV_MIGRATION_PORT]
541

    
542
    if (constants.XEN_CMD == constants.XEN_CMD_XM and
543
        not netutils.TcpPing(target, port, live_port_needed=True)):
544
      raise errors.HypervisorError("Remote host %s not listening on port"
545
                                   " %s, cannot migrate" % (target, port))
546

    
547
    args = [constants.XEN_CMD, "migrate"]
548
    if constants.XEN_CMD == constants.XEN_CMD_XM:
549
      args.extend(["-p", "%d" % port])
550
      if live:
551
        args.append("-l")
552
    elif constants.XEN_CMD == constants.XEN_CMD_XL:
553
      cluster_name = ssconf.SimpleStore().GetClusterName()
554
      args.extend(["-s", constants.XL_SSH_CMD % cluster_name])
555
      args.extend(["-C", self._ConfigFileName(instance.name)])
556
    else:
557
      raise errors.HypervisorError("Unsupported xen command: %s" %
558
                                   constants.XEN_CMD)
559

    
560
    args.extend([instance.name, target])
561
    result = utils.RunCmd(args)
562
    if result.failed:
563
      raise errors.HypervisorError("Failed to migrate instance %s: %s" %
564
                                   (instance.name, result.output))
565

    
566
  def FinalizeMigrationSource(self, instance, success, live):
567
    """Finalize the instance migration on the source node.
568

569
    @type instance: L{objects.Instance}
570
    @param instance: the instance that was migrated
571
    @type success: bool
572
    @param success: whether the migration succeeded or not
573
    @type live: bool
574
    @param live: whether the user requested a live migration or not
575

576
    """
577
    # pylint: disable=W0613
578
    if success:
579
      # remove old xen file after migration succeeded
580
      try:
581
        self._RemoveConfigFile(instance.name)
582
      except EnvironmentError:
583
        logging.exception("Failure while removing instance config file")
584

    
585
  def GetMigrationStatus(self, instance):
586
    """Get the migration status
587

588
    As MigrateInstance for Xen is still blocking, if this method is called it
589
    means that MigrateInstance has completed successfully. So we can safely
590
    assume that the migration was successful and notify this fact to the client.
591

592
    @type instance: L{objects.Instance}
593
    @param instance: the instance that is being migrated
594
    @rtype: L{objects.MigrationStatus}
595
    @return: the status of the current migration (one of
596
             L{constants.HV_MIGRATION_VALID_STATUSES}), plus any additional
597
             progress info that can be retrieved from the hypervisor
598

599
    """
600
    return objects.MigrationStatus(status=constants.HV_MIGRATION_COMPLETED)
601

    
602
  @classmethod
603
  def PowercycleNode(cls):
604
    """Xen-specific powercycle.
605

606
    This first does a Linux reboot (which triggers automatically a Xen
607
    reboot), and if that fails it tries to do a Xen reboot. The reason
608
    we don't try a Xen reboot first is that the xen reboot launches an
609
    external command which connects to the Xen hypervisor, and that
610
    won't work in case the root filesystem is broken and/or the xend
611
    daemon is not working.
612

613
    """
614
    try:
615
      cls.LinuxPowercycle()
616
    finally:
617
      utils.RunCmd([constants.XEN_CMD, "debug", "R"])
618

    
619

    
620
class XenPvmHypervisor(XenHypervisor):
621
  """Xen PVM hypervisor interface"""
622

    
623
  PARAMETERS = {
624
    constants.HV_USE_BOOTLOADER: hv_base.NO_CHECK,
625
    constants.HV_BOOTLOADER_PATH: hv_base.OPT_FILE_CHECK,
626
    constants.HV_BOOTLOADER_ARGS: hv_base.NO_CHECK,
627
    constants.HV_KERNEL_PATH: hv_base.REQ_FILE_CHECK,
628
    constants.HV_INITRD_PATH: hv_base.OPT_FILE_CHECK,
629
    constants.HV_ROOT_PATH: hv_base.NO_CHECK,
630
    constants.HV_KERNEL_ARGS: hv_base.NO_CHECK,
631
    constants.HV_MIGRATION_PORT: hv_base.REQ_NET_PORT_CHECK,
632
    constants.HV_MIGRATION_MODE: hv_base.MIGRATION_MODE_CHECK,
633
    # TODO: Add a check for the blockdev prefix (matching [a-z:] or similar).
634
    constants.HV_BLOCKDEV_PREFIX: hv_base.NO_CHECK,
635
    constants.HV_REBOOT_BEHAVIOR:
636
      hv_base.ParamInSet(True, constants.REBOOT_BEHAVIORS),
637
    constants.HV_CPU_MASK: hv_base.OPT_MULTI_CPU_MASK_CHECK,
638
    constants.HV_CPU_CAP: hv_base.OPT_NONNEGATIVE_INT_CHECK,
639
    constants.HV_CPU_WEIGHT:
640
      (False, lambda x: 0 < x < 65536, "invalid weight", None, None),
641
    }
642

    
643
  @classmethod
644
  def _WriteConfigFile(cls, instance, startup_memory, block_devices):
645
    """Write the Xen config file for the instance.
646

647
    """
648
    hvp = instance.hvparams
649
    config = StringIO()
650
    config.write("# this is autogenerated by Ganeti, please do not edit\n#\n")
651

    
652
    # if bootloader is True, use bootloader instead of kernel and ramdisk
653
    # parameters.
654
    if hvp[constants.HV_USE_BOOTLOADER]:
655
      # bootloader handling
656
      bootloader_path = hvp[constants.HV_BOOTLOADER_PATH]
657
      if bootloader_path:
658
        config.write("bootloader = '%s'\n" % bootloader_path)
659
      else:
660
        raise errors.HypervisorError("Bootloader enabled, but missing"
661
                                     " bootloader path")
662

    
663
      bootloader_args = hvp[constants.HV_BOOTLOADER_ARGS]
664
      if bootloader_args:
665
        config.write("bootargs = '%s'\n" % bootloader_args)
666
    else:
667
      # kernel handling
668
      kpath = hvp[constants.HV_KERNEL_PATH]
669
      config.write("kernel = '%s'\n" % kpath)
670

    
671
      # initrd handling
672
      initrd_path = hvp[constants.HV_INITRD_PATH]
673
      if initrd_path:
674
        config.write("ramdisk = '%s'\n" % initrd_path)
675

    
676
    # rest of the settings
677
    config.write("memory = %d\n" % startup_memory)
678
    config.write("maxmem = %d\n" % instance.beparams[constants.BE_MAXMEM])
679
    config.write("vcpus = %d\n" % instance.beparams[constants.BE_VCPUS])
680
    cpu_pinning = _CreateConfigCpus(hvp[constants.HV_CPU_MASK])
681
    if cpu_pinning:
682
      config.write("%s\n" % cpu_pinning)
683
    cpu_cap = hvp[constants.HV_CPU_CAP]
684
    if cpu_cap:
685
      config.write("cpu_cap=%d\n" % cpu_cap)
686
    cpu_weight = hvp[constants.HV_CPU_WEIGHT]
687
    if cpu_weight:
688
      config.write("cpu_weight=%d\n" % cpu_weight)
689

    
690
    config.write("name = '%s'\n" % instance.name)
691

    
692
    vif_data = []
693
    for nic in instance.nics:
694
      nic_str = "mac=%s" % (nic.mac)
695
      ip = getattr(nic, "ip", None)
696
      if ip is not None:
697
        nic_str += ", ip=%s" % ip
698
      if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
699
        nic_str += ", bridge=%s" % nic.nicparams[constants.NIC_LINK]
700
      vif_data.append("'%s'" % nic_str)
701

    
702
    disk_data = cls._GetConfigFileDiskData(block_devices,
703
                                           hvp[constants.HV_BLOCKDEV_PREFIX])
704

    
705
    config.write("vif = [%s]\n" % ",".join(vif_data))
706
    config.write("disk = [%s]\n" % ",".join(disk_data))
707

    
708
    if hvp[constants.HV_ROOT_PATH]:
709
      config.write("root = '%s'\n" % hvp[constants.HV_ROOT_PATH])
710
    config.write("on_poweroff = 'destroy'\n")
711
    if hvp[constants.HV_REBOOT_BEHAVIOR] == constants.INSTANCE_REBOOT_ALLOWED:
712
      config.write("on_reboot = 'restart'\n")
713
    else:
714
      config.write("on_reboot = 'destroy'\n")
715
    config.write("on_crash = 'restart'\n")
716
    config.write("extra = '%s'\n" % hvp[constants.HV_KERNEL_ARGS])
717
    cls._WriteConfigFileStatic(instance.name, config.getvalue())
718

    
719
    return True
720

    
721

    
722
class XenHvmHypervisor(XenHypervisor):
723
  """Xen HVM hypervisor interface"""
724

    
725
  ANCILLARY_FILES = XenHypervisor.ANCILLARY_FILES + [
726
    pathutils.VNC_PASSWORD_FILE,
727
    ]
728
  ANCILLARY_FILES_OPT = XenHypervisor.ANCILLARY_FILES_OPT + [
729
    pathutils.VNC_PASSWORD_FILE,
730
    ]
731

    
732
  PARAMETERS = {
733
    constants.HV_ACPI: hv_base.NO_CHECK,
734
    constants.HV_BOOT_ORDER: (True, ) +
735
      (lambda x: x and len(x.strip("acdn")) == 0,
736
       "Invalid boot order specified, must be one or more of [acdn]",
737
       None, None),
738
    constants.HV_CDROM_IMAGE_PATH: hv_base.OPT_FILE_CHECK,
739
    constants.HV_DISK_TYPE:
740
      hv_base.ParamInSet(True, constants.HT_HVM_VALID_DISK_TYPES),
741
    constants.HV_NIC_TYPE:
742
      hv_base.ParamInSet(True, constants.HT_HVM_VALID_NIC_TYPES),
743
    constants.HV_PAE: hv_base.NO_CHECK,
744
    constants.HV_VNC_BIND_ADDRESS:
745
      (False, netutils.IP4Address.IsValid,
746
       "VNC bind address is not a valid IP address", None, None),
747
    constants.HV_KERNEL_PATH: hv_base.REQ_FILE_CHECK,
748
    constants.HV_DEVICE_MODEL: hv_base.REQ_FILE_CHECK,
749
    constants.HV_VNC_PASSWORD_FILE: hv_base.REQ_FILE_CHECK,
750
    constants.HV_MIGRATION_PORT: hv_base.REQ_NET_PORT_CHECK,
751
    constants.HV_MIGRATION_MODE: hv_base.MIGRATION_MODE_CHECK,
752
    constants.HV_USE_LOCALTIME: hv_base.NO_CHECK,
753
    # TODO: Add a check for the blockdev prefix (matching [a-z:] or similar).
754
    constants.HV_BLOCKDEV_PREFIX: hv_base.NO_CHECK,
755
    # Add PCI passthrough
756
    constants.HV_PASSTHROUGH: hv_base.NO_CHECK,
757
    constants.HV_REBOOT_BEHAVIOR:
758
      hv_base.ParamInSet(True, constants.REBOOT_BEHAVIORS),
759
    constants.HV_CPU_MASK: hv_base.OPT_MULTI_CPU_MASK_CHECK,
760
    constants.HV_CPU_CAP: hv_base.NO_CHECK,
761
    constants.HV_CPU_WEIGHT:
762
      (False, lambda x: 0 < x < 65535, "invalid weight", None, None),
763
    }
764

    
765
  @classmethod
766
  def _WriteConfigFile(cls, instance, startup_memory, block_devices):
767
    """Create a Xen 3.1 HVM config file.
768

769
    """
770
    hvp = instance.hvparams
771

    
772
    config = StringIO()
773
    config.write("# this is autogenerated by Ganeti, please do not edit\n#\n")
774

    
775
    # kernel handling
776
    kpath = hvp[constants.HV_KERNEL_PATH]
777
    config.write("kernel = '%s'\n" % kpath)
778

    
779
    config.write("builder = 'hvm'\n")
780
    config.write("memory = %d\n" % startup_memory)
781
    config.write("maxmem = %d\n" % instance.beparams[constants.BE_MAXMEM])
782
    config.write("vcpus = %d\n" % instance.beparams[constants.BE_VCPUS])
783
    cpu_pinning = _CreateConfigCpus(hvp[constants.HV_CPU_MASK])
784
    if cpu_pinning:
785
      config.write("%s\n" % cpu_pinning)
786
    cpu_cap = hvp[constants.HV_CPU_CAP]
787
    if cpu_cap:
788
      config.write("cpu_cap=%d\n" % cpu_cap)
789
    cpu_weight = hvp[constants.HV_CPU_WEIGHT]
790
    if cpu_weight:
791
      config.write("cpu_weight=%d\n" % cpu_weight)
792

    
793
    config.write("name = '%s'\n" % instance.name)
794
    if hvp[constants.HV_PAE]:
795
      config.write("pae = 1\n")
796
    else:
797
      config.write("pae = 0\n")
798
    if hvp[constants.HV_ACPI]:
799
      config.write("acpi = 1\n")
800
    else:
801
      config.write("acpi = 0\n")
802
    config.write("apic = 1\n")
803
    config.write("device_model = '%s'\n" % hvp[constants.HV_DEVICE_MODEL])
804
    config.write("boot = '%s'\n" % hvp[constants.HV_BOOT_ORDER])
805
    config.write("sdl = 0\n")
806
    config.write("usb = 1\n")
807
    config.write("usbdevice = 'tablet'\n")
808
    config.write("vnc = 1\n")
809
    if hvp[constants.HV_VNC_BIND_ADDRESS] is None:
810
      config.write("vnclisten = '%s'\n" % constants.VNC_DEFAULT_BIND_ADDRESS)
811
    else:
812
      config.write("vnclisten = '%s'\n" % hvp[constants.HV_VNC_BIND_ADDRESS])
813

    
814
    if instance.network_port > constants.VNC_BASE_PORT:
815
      display = instance.network_port - constants.VNC_BASE_PORT
816
      config.write("vncdisplay = %s\n" % display)
817
      config.write("vncunused = 0\n")
818
    else:
819
      config.write("# vncdisplay = 1\n")
820
      config.write("vncunused = 1\n")
821

    
822
    vnc_pwd_file = hvp[constants.HV_VNC_PASSWORD_FILE]
823
    try:
824
      password = utils.ReadFile(vnc_pwd_file)
825
    except EnvironmentError, err:
826
      raise errors.HypervisorError("Failed to open VNC password file %s: %s" %
827
                                   (vnc_pwd_file, err))
828

    
829
    config.write("vncpasswd = '%s'\n" % password.rstrip())
830

    
831
    config.write("serial = 'pty'\n")
832
    if hvp[constants.HV_USE_LOCALTIME]:
833
      config.write("localtime = 1\n")
834

    
835
    vif_data = []
836
    nic_type = hvp[constants.HV_NIC_TYPE]
837
    if nic_type is None:
838
      # ensure old instances don't change
839
      nic_type_str = ", type=ioemu"
840
    elif nic_type == constants.HT_NIC_PARAVIRTUAL:
841
      nic_type_str = ", type=paravirtualized"
842
    else:
843
      nic_type_str = ", model=%s, type=ioemu" % nic_type
844
    for nic in instance.nics:
845
      nic_str = "mac=%s%s" % (nic.mac, nic_type_str)
846
      ip = getattr(nic, "ip", None)
847
      if ip is not None:
848
        nic_str += ", ip=%s" % ip
849
      if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
850
        nic_str += ", bridge=%s" % nic.nicparams[constants.NIC_LINK]
851
      vif_data.append("'%s'" % nic_str)
852

    
853
    config.write("vif = [%s]\n" % ",".join(vif_data))
854

    
855
    disk_data = cls._GetConfigFileDiskData(block_devices,
856
                                           hvp[constants.HV_BLOCKDEV_PREFIX])
857

    
858
    iso_path = hvp[constants.HV_CDROM_IMAGE_PATH]
859
    if iso_path:
860
      iso = "'file:%s,hdc:cdrom,r'" % iso_path
861
      disk_data.append(iso)
862

    
863
    config.write("disk = [%s]\n" % (",".join(disk_data)))
864
    # Add PCI passthrough
865
    pci_pass_arr = []
866
    pci_pass = hvp[constants.HV_PASSTHROUGH]
867
    if pci_pass:
868
      pci_pass_arr = pci_pass.split(";")
869
      config.write("pci = %s\n" % pci_pass_arr)
870
    config.write("on_poweroff = 'destroy'\n")
871
    if hvp[constants.HV_REBOOT_BEHAVIOR] == constants.INSTANCE_REBOOT_ALLOWED:
872
      config.write("on_reboot = 'restart'\n")
873
    else:
874
      config.write("on_reboot = 'destroy'\n")
875
    config.write("on_crash = 'restart'\n")
876
    cls._WriteConfigFileStatic(instance.name, config.getvalue())
877

    
878
    return True