Statistics
| Branch: | Tag: | Revision:

root / scripts / gnt-instance @ 06073e85

History | View | Annotate | Download (45.4 kB)

1
#!/usr/bin/python
2
#
3

    
4
# Copyright (C) 2006, 2007 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
# pylint: disable-msg=W0401,W0614
23
# W0401: Wildcard import ganeti.cli
24
# W0614: Unused import %s from wildcard import (since we need cli)
25

    
26
import sys
27
import os
28
import itertools
29
import simplejson
30
import time
31
from cStringIO import StringIO
32

    
33
from ganeti.cli import *
34
from ganeti import opcodes
35
from ganeti import constants
36
from ganeti import utils
37
from ganeti import errors
38

    
39

    
40
_SHUTDOWN_CLUSTER = "cluster"
41
_SHUTDOWN_NODES_BOTH = "nodes"
42
_SHUTDOWN_NODES_PRI = "nodes-pri"
43
_SHUTDOWN_NODES_SEC = "nodes-sec"
44
_SHUTDOWN_INSTANCES = "instances"
45

    
46

    
47
_VALUE_TRUE = "true"
48

    
49
#: default list of options for L{ListInstances}
50
_LIST_DEF_FIELDS = [
51
  "name", "hypervisor", "os", "pnode", "status", "oper_ram",
52
  ]
53

    
54

    
55
def _ExpandMultiNames(mode, names, client=None):
56
  """Expand the given names using the passed mode.
57

    
58
  For _SHUTDOWN_CLUSTER, all instances will be returned. For
59
  _SHUTDOWN_NODES_PRI/SEC, all instances having those nodes as
60
  primary/secondary will be returned. For _SHUTDOWN_NODES_BOTH, all
61
  instances having those nodes as either primary or secondary will be
62
  returned. For _SHUTDOWN_INSTANCES, the given instances will be
63
  returned.
64

    
65
  @param mode: one of L{_SHUTDOWN_CLUSTER}, L{_SHUTDOWN_NODES_BOTH},
66
      L{_SHUTDOWN_NODES_PRI}, L{_SHUTDOWN_NODES_SEC} or
67
      L{_SHUTDOWN_INSTANCES}
68
  @param names: a list of names; for cluster, it must be empty,
69
      and for node and instance it must be a list of valid item
70
      names (short names are valid as usual, e.g. node1 instead of
71
      node1.example.com)
72
  @rtype: list
73
  @return: the list of names after the expansion
74
  @raise errors.ProgrammerError: for unknown selection type
75
  @raise errors.OpPrereqError: for invalid input parameters
76

    
77
  """
78
  if client is None:
79
    client = GetClient()
80
  if mode == _SHUTDOWN_CLUSTER:
81
    if names:
82
      raise errors.OpPrereqError("Cluster filter mode takes no arguments")
83
    idata = client.QueryInstances([], ["name"], False)
84
    inames = [row[0] for row in idata]
85

    
86
  elif mode in (_SHUTDOWN_NODES_BOTH,
87
                _SHUTDOWN_NODES_PRI,
88
                _SHUTDOWN_NODES_SEC):
89
    if not names:
90
      raise errors.OpPrereqError("No node names passed")
91
    ndata = client.QueryNodes(names, ["name", "pinst_list", "sinst_list"],
92
                              False)
93
    ipri = [row[1] for row in ndata]
94
    pri_names = list(itertools.chain(*ipri))
95
    isec = [row[2] for row in ndata]
96
    sec_names = list(itertools.chain(*isec))
97
    if mode == _SHUTDOWN_NODES_BOTH:
98
      inames = pri_names + sec_names
99
    elif mode == _SHUTDOWN_NODES_PRI:
100
      inames = pri_names
101
    elif mode == _SHUTDOWN_NODES_SEC:
102
      inames = sec_names
103
    else:
104
      raise errors.ProgrammerError("Unhandled shutdown type")
105

    
106
  elif mode == _SHUTDOWN_INSTANCES:
107
    if not names:
108
      raise errors.OpPrereqError("No instance names passed")
109
    idata = client.QueryInstances(names, ["name"], False)
110
    inames = [row[0] for row in idata]
111

    
112
  else:
113
    raise errors.OpPrereqError("Unknown mode '%s'" % mode)
114

    
115
  return inames
116

    
117

    
118
def _ConfirmOperation(inames, text, extra=""):
119
  """Ask the user to confirm an operation on a list of instances.
120

    
121
  This function is used to request confirmation for doing an operation
122
  on a given list of instances.
123

    
124
  @type inames: list
125
  @param inames: the list of names that we display when
126
      we ask for confirmation
127
  @type text: str
128
  @param text: the operation that the user should confirm
129
      (e.g. I{shutdown} or I{startup})
130
  @rtype: boolean
131
  @return: True or False depending on user's confirmation.
132

    
133
  """
134
  count = len(inames)
135
  msg = ("The %s will operate on %d instances.\n%s"
136
         "Do you want to continue?" % (text, count, extra))
137
  affected = ("\nAffected instances:\n" +
138
              "\n".join(["  %s" % name for name in inames]))
139

    
140
  choices = [('y', True, 'Yes, execute the %s' % text),
141
             ('n', False, 'No, abort the %s' % text)]
142

    
143
  if count > 20:
144
    choices.insert(1, ('v', 'v', 'View the list of affected instances'))
145
    ask = msg
146
  else:
147
    ask = msg + affected
148

    
149
  choice = AskUser(ask, choices)
150
  if choice == 'v':
151
    choices.pop(1)
152
    choice = AskUser(msg + affected, choices)
153
  return choice
154

    
155

    
156
def _EnsureInstancesExist(client, names):
157
  """Check for and ensure the given instance names exist.
158

    
159
  This function will raise an OpPrereqError in case they don't
160
  exist. Otherwise it will exit cleanly.
161

    
162
  @type client: L{ganeti.luxi.Client}
163
  @param client: the client to use for the query
164
  @type names: list
165
  @param names: the list of instance names to query
166
  @raise errors.OpPrereqError: in case any instance is missing
167

    
168
  """
169
  # TODO: change LUQueryInstances to that it actually returns None
170
  # instead of raising an exception, or devise a better mechanism
171
  result = client.QueryInstances(names, ["name"], False)
172
  for orig_name, row in zip(names, result):
173
    if row[0] is None:
174
      raise errors.OpPrereqError("Instance '%s' does not exist" % orig_name)
175

    
176

    
177
def GenericManyOps(operation, fn):
178
  """Generic multi-instance operations.
179

    
180
  The will return a wrapper that processes the options and arguments
181
  given, and uses the passed function to build the opcode needed for
182
  the specific operation. Thus all the generic loop/confirmation code
183
  is abstracted into this function.
184

    
185
  """
186
  def realfn(opts, args):
187
    if opts.multi_mode is None:
188
      opts.multi_mode = _SHUTDOWN_INSTANCES
189
    cl = GetClient()
190
    inames = _ExpandMultiNames(opts.multi_mode, args, client=cl)
191
    if not inames:
192
      raise errors.OpPrereqError("Selection filter does not match"
193
                                 " any instances")
194
    multi_on = opts.multi_mode != _SHUTDOWN_INSTANCES or len(inames) > 1
195
    if not (opts.force_multi or not multi_on
196
            or _ConfirmOperation(inames, operation)):
197
      return 1
198
    jex = JobExecutor(verbose=multi_on, cl=cl)
199
    for name in inames:
200
      op = fn(name, opts)
201
      jex.QueueJob(name, op)
202
    jex.WaitOrShow(not opts.submit_only)
203
    return 0
204
  return realfn
205

    
206

    
207
def ListInstances(opts, args):
208
  """List instances and their properties.
209

    
210
  @param opts: the command line options selected by the user
211
  @type args: list
212
  @param args: should be an empty list
213
  @rtype: int
214
  @return: the desired exit code
215

    
216
  """
217
  if opts.output is None:
218
    selected_fields = _LIST_DEF_FIELDS
219
  elif opts.output.startswith("+"):
220
    selected_fields = _LIST_DEF_FIELDS + opts.output[1:].split(",")
221
  else:
222
    selected_fields = opts.output.split(",")
223

    
224
  output = GetClient().QueryInstances(args, selected_fields, opts.do_locking)
225

    
226
  if not opts.no_headers:
227
    headers = {
228
      "name": "Instance", "os": "OS", "pnode": "Primary_node",
229
      "snodes": "Secondary_Nodes", "admin_state": "Autostart",
230
      "oper_state": "Running",
231
      "oper_ram": "Memory", "disk_template": "Disk_template",
232
      "ip": "IP_address", "mac": "MAC_address",
233
      "nic_mode": "NIC_Mode", "nic_link": "NIC_Link",
234
      "bridge": "Bridge",
235
      "sda_size": "Disk/0", "sdb_size": "Disk/1",
236
      "disk_usage": "DiskUsage",
237
      "status": "Status", "tags": "Tags",
238
      "network_port": "Network_port",
239
      "hv/kernel_path": "Kernel_path",
240
      "hv/initrd_path": "Initrd_path",
241
      "hv/boot_order": "HVM_boot_order",
242
      "hv/acpi": "HVM_ACPI",
243
      "hv/pae": "HVM_PAE",
244
      "hv/cdrom_image_path": "HVM_CDROM_image_path",
245
      "hv/nic_type": "HVM_NIC_type",
246
      "hv/disk_type": "HVM_Disk_type",
247
      "hv/vnc_bind_address": "VNC_bind_address",
248
      "serial_no": "SerialNo", "hypervisor": "Hypervisor",
249
      "hvparams": "Hypervisor_parameters",
250
      "be/memory": "Configured_memory",
251
      "be/vcpus": "VCPUs",
252
      "vcpus": "VCPUs",
253
      "be/auto_balance": "Auto_balance",
254
      "disk.count": "Disks", "disk.sizes": "Disk_sizes",
255
      "nic.count": "NICs", "nic.ips": "NIC_IPs",
256
      "nic.modes": "NIC_modes", "nic.links": "NIC_links",
257
      "nic.bridges": "NIC_bridges", "nic.macs": "NIC_MACs",
258
      "ctime": "CTime", "mtime": "MTime", "uuid": "UUID",
259
      }
260
  else:
261
    headers = None
262

    
263
  unitfields = ["be/memory", "oper_ram", "sd(a|b)_size", "disk\.size/.*"]
264
  numfields = ["be/memory", "oper_ram", "sd(a|b)_size", "be/vcpus",
265
               "serial_no", "(disk|nic)\.count", "disk\.size/.*"]
266

    
267
  list_type_fields = ("tags", "disk.sizes", "nic.macs", "nic.ips",
268
                      "nic.modes", "nic.links", "nic.bridges")
269
  # change raw values to nicer strings
270
  for row in output:
271
    for idx, field in enumerate(selected_fields):
272
      val = row[idx]
273
      if field == "snodes":
274
        val = ",".join(val) or "-"
275
      elif field == "admin_state":
276
        if val:
277
          val = "yes"
278
        else:
279
          val = "no"
280
      elif field == "oper_state":
281
        if val is None:
282
          val = "(node down)"
283
        elif val: # True
284
          val = "running"
285
        else:
286
          val = "stopped"
287
      elif field == "oper_ram":
288
        if val is None:
289
          val = "(node down)"
290
      elif field == "sda_size" or field == "sdb_size":
291
        if val is None:
292
          val = "N/A"
293
      elif field == "ctime" or field == "mtime":
294
        val = utils.FormatTime(val)
295
      elif field in list_type_fields:
296
        val = ",".join(str(item) for item in val)
297
      elif val is None:
298
        val = "-"
299
      row[idx] = str(val)
300

    
301
  data = GenerateTable(separator=opts.separator, headers=headers,
302
                       fields=selected_fields, unitfields=unitfields,
303
                       numfields=numfields, data=output, units=opts.units)
304

    
305
  for line in data:
306
    ToStdout(line)
307

    
308
  return 0
309

    
310

    
311
def AddInstance(opts, args):
312
  """Add an instance to the cluster.
313

    
314
  This is just a wrapper over GenericInstanceCreate.
315

    
316
  """
317
  return GenericInstanceCreate(constants.INSTANCE_CREATE, opts, args)
318
  return 0
319

    
320

    
321
def BatchCreate(opts, args):
322
  """Create instances using a definition file.
323

    
324
  This function reads a json file with instances defined
325
  in the form::
326

    
327
    {"instance-name":{
328
      "disk_size": [20480],
329
      "template": "drbd",
330
      "backend": {
331
        "memory": 512,
332
        "vcpus": 1 },
333
      "os": "debootstrap",
334
      "primary_node": "firstnode",
335
      "secondary_node": "secondnode",
336
      "iallocator": "dumb"}
337
    }
338

    
339
  Note that I{primary_node} and I{secondary_node} have precedence over
340
  I{iallocator}.
341

    
342
  @param opts: the command line options selected by the user
343
  @type args: list
344
  @param args: should contain one element, the json filename
345
  @rtype: int
346
  @return: the desired exit code
347

    
348
  """
349
  _DEFAULT_SPECS = {"disk_size": [20 * 1024],
350
                    "backend": {},
351
                    "iallocator": None,
352
                    "primary_node": None,
353
                    "secondary_node": None,
354
                    "nics": None,
355
                    "start": True,
356
                    "ip_check": True,
357
                    "hypervisor": None,
358
                    "hvparams": {},
359
                    "file_storage_dir": None,
360
                    "file_driver": 'loop'}
361

    
362
  def _PopulateWithDefaults(spec):
363
    """Returns a new hash combined with default values."""
364
    mydict = _DEFAULT_SPECS.copy()
365
    mydict.update(spec)
366
    return mydict
367

    
368
  def _Validate(spec):
369
    """Validate the instance specs."""
370
    # Validate fields required under any circumstances
371
    for required_field in ('os', 'template'):
372
      if required_field not in spec:
373
        raise errors.OpPrereqError('Required field "%s" is missing.' %
374
                                   required_field)
375
    # Validate special fields
376
    if spec['primary_node'] is not None:
377
      if (spec['template'] in constants.DTS_NET_MIRROR and
378
          spec['secondary_node'] is None):
379
        raise errors.OpPrereqError('Template requires secondary node, but'
380
                                   ' there was no secondary provided.')
381
    elif spec['iallocator'] is None:
382
      raise errors.OpPrereqError('You have to provide at least a primary_node'
383
                                 ' or an iallocator.')
384

    
385
    if (spec['hvparams'] and
386
        not isinstance(spec['hvparams'], dict)):
387
      raise errors.OpPrereqError('Hypervisor parameters must be a dict.')
388

    
389
  json_filename = args[0]
390
  try:
391
    instance_data = simplejson.loads(utils.ReadFile(json_filename))
392
  except Exception, err:
393
    ToStderr("Can't parse the instance definition file: %s" % str(err))
394
    return 1
395

    
396
  jex = JobExecutor()
397

    
398
  # Iterate over the instances and do:
399
  #  * Populate the specs with default value
400
  #  * Validate the instance specs
401
  i_names = utils.NiceSort(instance_data.keys())
402
  for name in i_names:
403
    specs = instance_data[name]
404
    specs = _PopulateWithDefaults(specs)
405
    _Validate(specs)
406

    
407
    hypervisor = specs['hypervisor']
408
    hvparams = specs['hvparams']
409

    
410
    disks = []
411
    for elem in specs['disk_size']:
412
      try:
413
        size = utils.ParseUnit(elem)
414
      except ValueError, err:
415
        raise errors.OpPrereqError("Invalid disk size '%s' for"
416
                                   " instance %s: %s" %
417
                                   (elem, name, err))
418
      disks.append({"size": size})
419

    
420
    utils.ForceDictType(specs['backend'], constants.BES_PARAMETER_TYPES)
421
    utils.ForceDictType(hvparams, constants.HVS_PARAMETER_TYPES)
422

    
423
    tmp_nics = []
424
    for field in ('ip', 'mac', 'mode', 'link', 'bridge'):
425
      if field in specs:
426
        if not tmp_nics:
427
          tmp_nics.append({})
428
        tmp_nics[0][field] = specs[field]
429

    
430
    if specs['nics'] is not None and tmp_nics:
431
      raise errors.OpPrereqError("'nics' list incompatible with using"
432
                                 " individual nic fields as well")
433
    elif specs['nics'] is not None:
434
      tmp_nics = specs['nics']
435
    elif not tmp_nics:
436
      tmp_nics = [{}]
437

    
438
    op = opcodes.OpCreateInstance(instance_name=name,
439
                                  disks=disks,
440
                                  disk_template=specs['template'],
441
                                  mode=constants.INSTANCE_CREATE,
442
                                  os_type=specs['os'],
443
                                  force_variant=opts.force_variant,
444
                                  pnode=specs['primary_node'],
445
                                  snode=specs['secondary_node'],
446
                                  nics=tmp_nics,
447
                                  start=specs['start'],
448
                                  ip_check=specs['ip_check'],
449
                                  wait_for_sync=True,
450
                                  iallocator=specs['iallocator'],
451
                                  hypervisor=hypervisor,
452
                                  hvparams=hvparams,
453
                                  beparams=specs['backend'],
454
                                  file_storage_dir=specs['file_storage_dir'],
455
                                  file_driver=specs['file_driver'])
456

    
457
    jex.QueueJob(name, op)
458
  # we never want to wait, just show the submitted job IDs
459
  jex.WaitOrShow(False)
460

    
461
  return 0
462

    
463

    
464
def ReinstallInstance(opts, args):
465
  """Reinstall an instance.
466

    
467
  @param opts: the command line options selected by the user
468
  @type args: list
469
  @param args: should contain only one element, the name of the
470
      instance to be reinstalled
471
  @rtype: int
472
  @return: the desired exit code
473

    
474
  """
475
  # first, compute the desired name list
476
  if opts.multi_mode is None:
477
    opts.multi_mode = _SHUTDOWN_INSTANCES
478

    
479
  inames = _ExpandMultiNames(opts.multi_mode, args)
480
  if not inames:
481
    raise errors.OpPrereqError("Selection filter does not match any instances")
482

    
483
  # second, if requested, ask for an OS
484
  if opts.select_os is True:
485
    op = opcodes.OpDiagnoseOS(output_fields=["name", "valid", "variants"],
486
                              names=[])
487
    result = SubmitOpCode(op)
488

    
489
    if not result:
490
      ToStdout("Can't get the OS list")
491
      return 1
492

    
493
    ToStdout("Available OS templates:")
494
    number = 0
495
    choices = []
496
    for (name, valid, variants) in result:
497
      if valid:
498
        for entry in CalculateOSNames(name, variants):
499
          ToStdout("%3s: %s", number, entry)
500
          choices.append(("%s" % number, entry, entry))
501
          number += 1
502

    
503
    choices.append(('x', 'exit', 'Exit gnt-instance reinstall'))
504
    selected = AskUser("Enter OS template number (or x to abort):",
505
                       choices)
506

    
507
    if selected == 'exit':
508
      ToStderr("User aborted reinstall, exiting")
509
      return 1
510

    
511
    os_name = selected
512
  else:
513
    os_name = opts.os
514

    
515
  # third, get confirmation: multi-reinstall requires --force-multi
516
  # *and* --force, single-reinstall just --force
517
  multi_on = opts.multi_mode != _SHUTDOWN_INSTANCES or len(inames) > 1
518
  if multi_on:
519
    warn_msg = "Note: this will remove *all* data for the below instances!\n"
520
    if not ((opts.force_multi and opts.force) or
521
            _ConfirmOperation(inames, "reinstall", extra=warn_msg)):
522
      return 1
523
  else:
524
    if not opts.force:
525
      usertext = ("This will reinstall the instance %s and remove"
526
                  " all data. Continue?") % inames[0]
527
      if not AskUser(usertext):
528
        return 1
529

    
530
  jex = JobExecutor(verbose=multi_on)
531
  for instance_name in inames:
532
    op = opcodes.OpReinstallInstance(instance_name=instance_name,
533
                                     os_type=os_name,
534
                                     force_variant=opts.force_variant)
535
    jex.QueueJob(instance_name, op)
536

    
537
  jex.WaitOrShow(not opts.submit_only)
538
  return 0
539

    
540

    
541
def RemoveInstance(opts, args):
542
  """Remove an instance.
543

    
544
  @param opts: the command line options selected by the user
545
  @type args: list
546
  @param args: should contain only one element, the name of
547
      the instance to be removed
548
  @rtype: int
549
  @return: the desired exit code
550

    
551
  """
552
  instance_name = args[0]
553
  force = opts.force
554
  cl = GetClient()
555

    
556
  if not force:
557
    _EnsureInstancesExist(cl, [instance_name])
558

    
559
    usertext = ("This will remove the volumes of the instance %s"
560
                " (including mirrors), thus removing all the data"
561
                " of the instance. Continue?") % instance_name
562
    if not AskUser(usertext):
563
      return 1
564

    
565
  op = opcodes.OpRemoveInstance(instance_name=instance_name,
566
                                ignore_failures=opts.ignore_failures)
567
  SubmitOrSend(op, opts, cl=cl)
568
  return 0
569

    
570

    
571
def RenameInstance(opts, args):
572
  """Rename an instance.
573

    
574
  @param opts: the command line options selected by the user
575
  @type args: list
576
  @param args: should contain two elements, the old and the
577
      new instance names
578
  @rtype: int
579
  @return: the desired exit code
580

    
581
  """
582
  op = opcodes.OpRenameInstance(instance_name=args[0],
583
                                new_name=args[1],
584
                                ignore_ip=opts.ignore_ip)
585
  SubmitOrSend(op, opts)
586
  return 0
587

    
588

    
589
def ActivateDisks(opts, args):
590
  """Activate an instance's disks.
591

    
592
  This serves two purposes:
593
    - it allows (as long as the instance is not running)
594
      mounting the disks and modifying them from the node
595
    - it repairs inactive secondary drbds
596

    
597
  @param opts: the command line options selected by the user
598
  @type args: list
599
  @param args: should contain only one element, the instance name
600
  @rtype: int
601
  @return: the desired exit code
602

    
603
  """
604
  instance_name = args[0]
605
  op = opcodes.OpActivateInstanceDisks(instance_name=instance_name,
606
                                       ignore_size=opts.ignore_size)
607
  disks_info = SubmitOrSend(op, opts)
608
  for host, iname, nname in disks_info:
609
    ToStdout("%s:%s:%s", host, iname, nname)
610
  return 0
611

    
612

    
613
def DeactivateDisks(opts, args):
614
  """Deactivate an instance's disks.
615

    
616
  This function takes the instance name, looks for its primary node
617
  and the tries to shutdown its block devices on that node.
618

    
619
  @param opts: the command line options selected by the user
620
  @type args: list
621
  @param args: should contain only one element, the instance name
622
  @rtype: int
623
  @return: the desired exit code
624

    
625
  """
626
  instance_name = args[0]
627
  op = opcodes.OpDeactivateInstanceDisks(instance_name=instance_name)
628
  SubmitOrSend(op, opts)
629
  return 0
630

    
631

    
632
def RecreateDisks(opts, args):
633
  """Recreate an instance's disks.
634

    
635
  @param opts: the command line options selected by the user
636
  @type args: list
637
  @param args: should contain only one element, the instance name
638
  @rtype: int
639
  @return: the desired exit code
640

    
641
  """
642
  instance_name = args[0]
643
  if opts.disks:
644
    try:
645
      opts.disks = [int(v) for v in opts.disks.split(",")]
646
    except (ValueError, TypeError), err:
647
      ToStderr("Invalid disks value: %s" % str(err))
648
      return 1
649
  else:
650
    opts.disks = []
651

    
652
  op = opcodes.OpRecreateInstanceDisks(instance_name=instance_name,
653
                                       disks=opts.disks)
654
  SubmitOrSend(op, opts)
655
  return 0
656

    
657

    
658
def GrowDisk(opts, args):
659
  """Grow an instance's disks.
660

    
661
  @param opts: the command line options selected by the user
662
  @type args: list
663
  @param args: should contain two elements, the instance name
664
      whose disks we grow and the disk name, e.g. I{sda}
665
  @rtype: int
666
  @return: the desired exit code
667

    
668
  """
669
  instance = args[0]
670
  disk = args[1]
671
  try:
672
    disk = int(disk)
673
  except ValueError, err:
674
    raise errors.OpPrereqError("Invalid disk index: %s" % str(err))
675
  amount = utils.ParseUnit(args[2])
676
  op = opcodes.OpGrowDisk(instance_name=instance, disk=disk, amount=amount,
677
                          wait_for_sync=opts.wait_for_sync)
678
  SubmitOrSend(op, opts)
679
  return 0
680

    
681

    
682
def _StartupInstance(name, opts):
683
  """Startup instances.
684

    
685
  This returns the opcode to start an instance, and its decorator will
686
  wrap this into a loop starting all desired instances.
687

    
688
  @param name: the name of the instance to act on
689
  @param opts: the command line options selected by the user
690
  @return: the opcode needed for the operation
691

    
692
  """
693
  op = opcodes.OpStartupInstance(instance_name=name,
694
                                 force=opts.force)
695
  # do not add these parameters to the opcode unless they're defined
696
  if opts.hvparams:
697
    op.hvparams = opts.hvparams
698
  if opts.beparams:
699
    op.beparams = opts.beparams
700
  return op
701

    
702

    
703
def _RebootInstance(name, opts):
704
  """Reboot instance(s).
705

    
706
  This returns the opcode to reboot an instance, and its decorator
707
  will wrap this into a loop rebooting all desired instances.
708

    
709
  @param name: the name of the instance to act on
710
  @param opts: the command line options selected by the user
711
  @return: the opcode needed for the operation
712

    
713
  """
714
  return opcodes.OpRebootInstance(instance_name=name,
715
                                  reboot_type=opts.reboot_type,
716
                                  ignore_secondaries=opts.ignore_secondaries)
717

    
718

    
719
def _ShutdownInstance(name, opts):
720
  """Shutdown an instance.
721

    
722
  This returns the opcode to shutdown an instance, and its decorator
723
  will wrap this into a loop shutting down all desired instances.
724

    
725
  @param name: the name of the instance to act on
726
  @param opts: the command line options selected by the user
727
  @return: the opcode needed for the operation
728

    
729
  """
730
  return opcodes.OpShutdownInstance(instance_name=name)
731

    
732

    
733
def ReplaceDisks(opts, args):
734
  """Replace the disks of an instance
735

    
736
  @param opts: the command line options selected by the user
737
  @type args: list
738
  @param args: should contain only one element, the instance name
739
  @rtype: int
740
  @return: the desired exit code
741

    
742
  """
743
  instance_name = args[0]
744
  new_2ndary = opts.dst_node
745
  iallocator = opts.iallocator
746
  if opts.disks is None:
747
    disks = []
748
  else:
749
    try:
750
      disks = [int(i) for i in opts.disks.split(",")]
751
    except ValueError, err:
752
      raise errors.OpPrereqError("Invalid disk index passed: %s" % str(err))
753
  cnt = [opts.on_primary, opts.on_secondary, opts.auto,
754
         new_2ndary is not None, iallocator is not None].count(True)
755
  if cnt != 1:
756
    raise errors.OpPrereqError("One and only one of the -p, -s, -a, -n and -i"
757
                               " options must be passed")
758
  elif opts.on_primary:
759
    mode = constants.REPLACE_DISK_PRI
760
  elif opts.on_secondary:
761
    mode = constants.REPLACE_DISK_SEC
762
  elif opts.auto:
763
    mode = constants.REPLACE_DISK_AUTO
764
    if disks:
765
      raise errors.OpPrereqError("Cannot specify disks when using automatic"
766
                                 " mode")
767
  elif new_2ndary is not None or iallocator is not None:
768
    # replace secondary
769
    mode = constants.REPLACE_DISK_CHG
770

    
771
  op = opcodes.OpReplaceDisks(instance_name=args[0], disks=disks,
772
                              remote_node=new_2ndary, mode=mode,
773
                              iallocator=iallocator)
774
  SubmitOrSend(op, opts)
775
  return 0
776

    
777

    
778
def FailoverInstance(opts, args):
779
  """Failover an instance.
780

    
781
  The failover is done by shutting it down on its present node and
782
  starting it on the secondary.
783

    
784
  @param opts: the command line options selected by the user
785
  @type args: list
786
  @param args: should contain only one element, the instance name
787
  @rtype: int
788
  @return: the desired exit code
789

    
790
  """
791
  cl = GetClient()
792
  instance_name = args[0]
793
  force = opts.force
794

    
795
  if not force:
796
    _EnsureInstancesExist(cl, [instance_name])
797

    
798
    usertext = ("Failover will happen to image %s."
799
                " This requires a shutdown of the instance. Continue?" %
800
                (instance_name,))
801
    if not AskUser(usertext):
802
      return 1
803

    
804
  op = opcodes.OpFailoverInstance(instance_name=instance_name,
805
                                  ignore_consistency=opts.ignore_consistency)
806
  SubmitOrSend(op, opts, cl=cl)
807
  return 0
808

    
809

    
810
def MigrateInstance(opts, args):
811
  """Migrate an instance.
812

    
813
  The migrate is done without shutdown.
814

    
815
  @param opts: the command line options selected by the user
816
  @type args: list
817
  @param args: should contain only one element, the instance name
818
  @rtype: int
819
  @return: the desired exit code
820

    
821
  """
822
  cl = GetClient()
823
  instance_name = args[0]
824
  force = opts.force
825

    
826
  if not force:
827
    _EnsureInstancesExist(cl, [instance_name])
828

    
829
    if opts.cleanup:
830
      usertext = ("Instance %s will be recovered from a failed migration."
831
                  " Note that the migration procedure (including cleanup)" %
832
                  (instance_name,))
833
    else:
834
      usertext = ("Instance %s will be migrated. Note that migration" %
835
                  (instance_name,))
836
    usertext += (" is **experimental** in this version."
837
                " This might impact the instance if anything goes wrong."
838
                " Continue?")
839
    if not AskUser(usertext):
840
      return 1
841

    
842
  op = opcodes.OpMigrateInstance(instance_name=instance_name, live=opts.live,
843
                                 cleanup=opts.cleanup)
844
  SubmitOpCode(op, cl=cl)
845
  return 0
846

    
847

    
848
def MoveInstance(opts, args):
849
  """Move an instance.
850

    
851
  @param opts: the command line options selected by the user
852
  @type args: list
853
  @param args: should contain only one element, the instance name
854
  @rtype: int
855
  @return: the desired exit code
856

    
857
  """
858
  cl = GetClient()
859
  instance_name = args[0]
860
  force = opts.force
861

    
862
  if not force:
863
    usertext = ("Instance %s will be moved."
864
                " This requires a shutdown of the instance. Continue?" %
865
                (instance_name,))
866
    if not AskUser(usertext):
867
      return 1
868

    
869
  op = opcodes.OpMoveInstance(instance_name=instance_name,
870
                              target_node=opts.node)
871
  SubmitOrSend(op, opts, cl=cl)
872
  return 0
873

    
874

    
875
def ConnectToInstanceConsole(opts, args):
876
  """Connect to the console of an instance.
877

    
878
  @param opts: the command line options selected by the user
879
  @type args: list
880
  @param args: should contain only one element, the instance name
881
  @rtype: int
882
  @return: the desired exit code
883

    
884
  """
885
  instance_name = args[0]
886

    
887
  op = opcodes.OpConnectConsole(instance_name=instance_name)
888
  cmd = SubmitOpCode(op)
889

    
890
  if opts.show_command:
891
    ToStdout("%s", utils.ShellQuoteArgs(cmd))
892
  else:
893
    try:
894
      os.execvp(cmd[0], cmd)
895
    finally:
896
      ToStderr("Can't run console command %s with arguments:\n'%s'",
897
               cmd[0], " ".join(cmd))
898
      os._exit(1)
899

    
900

    
901
def _FormatLogicalID(dev_type, logical_id):
902
  """Formats the logical_id of a disk.
903

    
904
  """
905
  if dev_type == constants.LD_DRBD8:
906
    node_a, node_b, port, minor_a, minor_b, key = logical_id
907
    data = [
908
      ("nodeA", "%s, minor=%s" % (node_a, minor_a)),
909
      ("nodeB", "%s, minor=%s" % (node_b, minor_b)),
910
      ("port", port),
911
      ("auth key", key),
912
      ]
913
  elif dev_type == constants.LD_LV:
914
    vg_name, lv_name = logical_id
915
    data = ["%s/%s" % (vg_name, lv_name)]
916
  else:
917
    data = [str(logical_id)]
918

    
919
  return data
920

    
921

    
922
def _FormatBlockDevInfo(idx, top_level, dev, static):
923
  """Show block device information.
924

    
925
  This is only used by L{ShowInstanceConfig}, but it's too big to be
926
  left for an inline definition.
927

    
928
  @type idx: int
929
  @param idx: the index of the current disk
930
  @type top_level: boolean
931
  @param top_level: if this a top-level disk?
932
  @type dev: dict
933
  @param dev: dictionary with disk information
934
  @type static: boolean
935
  @param static: wheter the device information doesn't contain
936
      runtime information but only static data
937
  @return: a list of either strings, tuples or lists
938
      (which should be formatted at a higher indent level)
939

    
940
  """
941
  def helper(dtype, status):
942
    """Format one line for physical device status.
943

    
944
    @type dtype: str
945
    @param dtype: a constant from the L{constants.LDS_BLOCK} set
946
    @type status: tuple
947
    @param status: a tuple as returned from L{backend.FindBlockDevice}
948
    @return: the string representing the status
949

    
950
    """
951
    if not status:
952
      return "not active"
953
    txt = ""
954
    (path, major, minor, syncp, estt, degr, ldisk_status) = status
955
    if major is None:
956
      major_string = "N/A"
957
    else:
958
      major_string = str(major)
959

    
960
    if minor is None:
961
      minor_string = "N/A"
962
    else:
963
      minor_string = str(minor)
964

    
965
    txt += ("%s (%s:%s)" % (path, major_string, minor_string))
966
    if dtype in (constants.LD_DRBD8, ):
967
      if syncp is not None:
968
        sync_text = "*RECOVERING* %5.2f%%," % syncp
969
        if estt:
970
          sync_text += " ETA %ds" % estt
971
        else:
972
          sync_text += " ETA unknown"
973
      else:
974
        sync_text = "in sync"
975
      if degr:
976
        degr_text = "*DEGRADED*"
977
      else:
978
        degr_text = "ok"
979
      if ldisk_status == constants.LDS_FAULTY:
980
        ldisk_text = " *MISSING DISK*"
981
      elif ldisk_status == constants.LDS_UNKNOWN:
982
        ldisk_text = " *UNCERTAIN STATE*"
983
      else:
984
        ldisk_text = ""
985
      txt += (" %s, status %s%s" % (sync_text, degr_text, ldisk_text))
986
    elif dtype == constants.LD_LV:
987
      if ldisk_status == constants.LDS_FAULTY:
988
        ldisk_text = " *FAILED* (failed drive?)"
989
      else:
990
        ldisk_text = ""
991
      txt += ldisk_text
992
    return txt
993

    
994
  # the header
995
  if top_level:
996
    if dev["iv_name"] is not None:
997
      txt = dev["iv_name"]
998
    else:
999
      txt = "disk %d" % idx
1000
  else:
1001
    txt = "child %d" % idx
1002
  if isinstance(dev["size"], int):
1003
    nice_size = utils.FormatUnit(dev["size"], "h")
1004
  else:
1005
    nice_size = dev["size"]
1006
  d1 = ["- %s: %s, size %s" % (txt, dev["dev_type"], nice_size)]
1007
  data = []
1008
  if top_level:
1009
    data.append(("access mode", dev["mode"]))
1010
  if dev["logical_id"] is not None:
1011
    try:
1012
      l_id = _FormatLogicalID(dev["dev_type"], dev["logical_id"])
1013
    except ValueError:
1014
      l_id = [str(dev["logical_id"])]
1015
    if len(l_id) == 1:
1016
      data.append(("logical_id", l_id[0]))
1017
    else:
1018
      data.extend(l_id)
1019
  elif dev["physical_id"] is not None:
1020
    data.append("physical_id:")
1021
    data.append([dev["physical_id"]])
1022
  if not static:
1023
    data.append(("on primary", helper(dev["dev_type"], dev["pstatus"])))
1024
  if dev["sstatus"] and not static:
1025
    data.append(("on secondary", helper(dev["dev_type"], dev["sstatus"])))
1026

    
1027
  if dev["children"]:
1028
    data.append("child devices:")
1029
    for c_idx, child in enumerate(dev["children"]):
1030
      data.append(_FormatBlockDevInfo(c_idx, False, child, static))
1031
  d1.append(data)
1032
  return d1
1033

    
1034

    
1035
def _FormatList(buf, data, indent_level):
1036
  """Formats a list of data at a given indent level.
1037

    
1038
  If the element of the list is:
1039
    - a string, it is simply formatted as is
1040
    - a tuple, it will be split into key, value and the all the
1041
      values in a list will be aligned all at the same start column
1042
    - a list, will be recursively formatted
1043

    
1044
  @type buf: StringIO
1045
  @param buf: the buffer into which we write the output
1046
  @param data: the list to format
1047
  @type indent_level: int
1048
  @param indent_level: the indent level to format at
1049

    
1050
  """
1051
  max_tlen = max([len(elem[0]) for elem in data
1052
                 if isinstance(elem, tuple)] or [0])
1053
  for elem in data:
1054
    if isinstance(elem, basestring):
1055
      buf.write("%*s%s\n" % (2*indent_level, "", elem))
1056
    elif isinstance(elem, tuple):
1057
      key, value = elem
1058
      spacer = "%*s" % (max_tlen - len(key), "")
1059
      buf.write("%*s%s:%s %s\n" % (2*indent_level, "", key, spacer, value))
1060
    elif isinstance(elem, list):
1061
      _FormatList(buf, elem, indent_level+1)
1062

    
1063

    
1064
def ShowInstanceConfig(opts, args):
1065
  """Compute instance run-time status.
1066

    
1067
  @param opts: the command line options selected by the user
1068
  @type args: list
1069
  @param args: either an empty list, and then we query all
1070
      instances, or should contain a list of instance names
1071
  @rtype: int
1072
  @return: the desired exit code
1073

    
1074
  """
1075
  if not args and not opts.show_all:
1076
    ToStderr("No instance selected."
1077
             " Please pass in --all if you want to query all instances.\n"
1078
             "Note that this can take a long time on a big cluster.")
1079
    return 1
1080
  elif args and opts.show_all:
1081
    ToStderr("Cannot use --all if you specify instance names.")
1082
    return 1
1083

    
1084
  retcode = 0
1085
  op = opcodes.OpQueryInstanceData(instances=args, static=opts.static)
1086
  result = SubmitOpCode(op)
1087
  if not result:
1088
    ToStdout("No instances.")
1089
    return 1
1090

    
1091
  buf = StringIO()
1092
  retcode = 0
1093
  for instance_name in result:
1094
    instance = result[instance_name]
1095
    buf.write("Instance name: %s\n" % instance["name"])
1096
    buf.write("UUID: %s\n" % instance["uuid"])
1097
    buf.write("Serial number: %s\n" % instance["serial_no"])
1098
    buf.write("Creation time: %s\n" % utils.FormatTime(instance["ctime"]))
1099
    buf.write("Modification time: %s\n" % utils.FormatTime(instance["mtime"]))
1100
    buf.write("State: configured to be %s" % instance["config_state"])
1101
    if not opts.static:
1102
      buf.write(", actual state is %s" % instance["run_state"])
1103
    buf.write("\n")
1104
    ##buf.write("Considered for memory checks in cluster verify: %s\n" %
1105
    ##          instance["auto_balance"])
1106
    buf.write("  Nodes:\n")
1107
    buf.write("    - primary: %s\n" % instance["pnode"])
1108
    buf.write("    - secondaries: %s\n" % ", ".join(instance["snodes"]))
1109
    buf.write("  Operating system: %s\n" % instance["os"])
1110
    if instance.has_key("network_port"):
1111
      buf.write("  Allocated network port: %s\n" % instance["network_port"])
1112
    buf.write("  Hypervisor: %s\n" % instance["hypervisor"])
1113

    
1114
    # custom VNC console information
1115
    vnc_bind_address = instance["hv_actual"].get(constants.HV_VNC_BIND_ADDRESS,
1116
                                                 None)
1117
    if vnc_bind_address:
1118
      port = instance["network_port"]
1119
      display = int(port) - constants.VNC_BASE_PORT
1120
      if display > 0 and vnc_bind_address == constants.BIND_ADDRESS_GLOBAL:
1121
        vnc_console_port = "%s:%s (display %s)" % (instance["pnode"],
1122
                                                   port,
1123
                                                   display)
1124
      elif display > 0 and utils.IsValidIP(vnc_bind_address):
1125
        vnc_console_port = ("%s:%s (node %s) (display %s)" %
1126
                             (vnc_bind_address, port,
1127
                              instance["pnode"], display))
1128
      else:
1129
        # vnc bind address is a file
1130
        vnc_console_port = "%s:%s" % (instance["pnode"],
1131
                                      vnc_bind_address)
1132
      buf.write("    - console connection: vnc to %s\n" % vnc_console_port)
1133

    
1134
    for key in instance["hv_actual"]:
1135
      if key in instance["hv_instance"]:
1136
        val = instance["hv_instance"][key]
1137
      else:
1138
        val = "default (%s)" % instance["hv_actual"][key]
1139
      buf.write("    - %s: %s\n" % (key, val))
1140
    buf.write("  Hardware:\n")
1141
    buf.write("    - VCPUs: %d\n" %
1142
              instance["be_actual"][constants.BE_VCPUS])
1143
    buf.write("    - memory: %dMiB\n" %
1144
              instance["be_actual"][constants.BE_MEMORY])
1145
    buf.write("    - NICs:\n")
1146
    for idx, (ip, mac, mode, link) in enumerate(instance["nics"]):
1147
      buf.write("      - nic/%d: MAC: %s, IP: %s, mode: %s, link: %s\n" %
1148
                (idx, mac, ip, mode, link))
1149
    buf.write("  Disks:\n")
1150

    
1151
    for idx, device in enumerate(instance["disks"]):
1152
      _FormatList(buf, _FormatBlockDevInfo(idx, True, device, opts.static), 2)
1153

    
1154
  ToStdout(buf.getvalue().rstrip('\n'))
1155
  return retcode
1156

    
1157

    
1158
def SetInstanceParams(opts, args):
1159
  """Modifies an instance.
1160

    
1161
  All parameters take effect only at the next restart of the instance.
1162

    
1163
  @param opts: the command line options selected by the user
1164
  @type args: list
1165
  @param args: should contain only one element, the instance name
1166
  @rtype: int
1167
  @return: the desired exit code
1168

    
1169
  """
1170
  if not (opts.nics or opts.disks or
1171
          opts.hvparams or opts.beparams):
1172
    ToStderr("Please give at least one of the parameters.")
1173
    return 1
1174

    
1175
  for param in opts.beparams:
1176
    if isinstance(opts.beparams[param], basestring):
1177
      if opts.beparams[param].lower() == "default":
1178
        opts.beparams[param] = constants.VALUE_DEFAULT
1179

    
1180
  utils.ForceDictType(opts.beparams, constants.BES_PARAMETER_TYPES,
1181
                      allowed_values=[constants.VALUE_DEFAULT])
1182

    
1183
  for param in opts.hvparams:
1184
    if isinstance(opts.hvparams[param], basestring):
1185
      if opts.hvparams[param].lower() == "default":
1186
        opts.hvparams[param] = constants.VALUE_DEFAULT
1187

    
1188
  utils.ForceDictType(opts.hvparams, constants.HVS_PARAMETER_TYPES,
1189
                      allowed_values=[constants.VALUE_DEFAULT])
1190

    
1191
  for idx, (nic_op, nic_dict) in enumerate(opts.nics):
1192
    try:
1193
      nic_op = int(nic_op)
1194
      opts.nics[idx] = (nic_op, nic_dict)
1195
    except ValueError:
1196
      pass
1197

    
1198
  for idx, (disk_op, disk_dict) in enumerate(opts.disks):
1199
    try:
1200
      disk_op = int(disk_op)
1201
      opts.disks[idx] = (disk_op, disk_dict)
1202
    except ValueError:
1203
      pass
1204
    if disk_op == constants.DDM_ADD:
1205
      if 'size' not in disk_dict:
1206
        raise errors.OpPrereqError("Missing required parameter 'size'")
1207
      disk_dict['size'] = utils.ParseUnit(disk_dict['size'])
1208

    
1209
  op = opcodes.OpSetInstanceParams(instance_name=args[0],
1210
                                   nics=opts.nics,
1211
                                   disks=opts.disks,
1212
                                   hvparams=opts.hvparams,
1213
                                   beparams=opts.beparams,
1214
                                   force=opts.force)
1215

    
1216
  # even if here we process the result, we allow submit only
1217
  result = SubmitOrSend(op, opts)
1218

    
1219
  if result:
1220
    ToStdout("Modified instance %s", args[0])
1221
    for param, data in result:
1222
      ToStdout(" - %-5s -> %s", param, data)
1223
    ToStdout("Please don't forget that these parameters take effect"
1224
             " only at the next start of the instance.")
1225
  return 0
1226

    
1227

    
1228
# multi-instance selection options
1229
m_force_multi = cli_option("--force-multiple", dest="force_multi",
1230
                           help="Do not ask for confirmation when more than"
1231
                           " one instance is affected",
1232
                           action="store_true", default=False)
1233

    
1234
m_pri_node_opt = cli_option("--primary", dest="multi_mode",
1235
                            help="Filter by nodes (primary only)",
1236
                            const=_SHUTDOWN_NODES_PRI, action="store_const")
1237

    
1238
m_sec_node_opt = cli_option("--secondary", dest="multi_mode",
1239
                            help="Filter by nodes (secondary only)",
1240
                            const=_SHUTDOWN_NODES_SEC, action="store_const")
1241

    
1242
m_node_opt = cli_option("--node", dest="multi_mode",
1243
                        help="Filter by nodes (primary and secondary)",
1244
                        const=_SHUTDOWN_NODES_BOTH, action="store_const")
1245

    
1246
m_clust_opt = cli_option("--all", dest="multi_mode",
1247
                         help="Select all instances in the cluster",
1248
                         const=_SHUTDOWN_CLUSTER, action="store_const")
1249

    
1250
m_inst_opt = cli_option("--instance", dest="multi_mode",
1251
                        help="Filter by instance name [default]",
1252
                        const=_SHUTDOWN_INSTANCES, action="store_const")
1253

    
1254

    
1255
# this is defined separately due to readability only
1256
add_opts = [
1257
  BACKEND_OPT,
1258
  DISK_OPT,
1259
  DISK_TEMPLATE_OPT,
1260
  FILESTORE_DIR_OPT,
1261
  FILESTORE_DRIVER_OPT,
1262
  HYPERVISOR_OPT,
1263
  IALLOCATOR_OPT,
1264
  NET_OPT,
1265
  NODE_PLACEMENT_OPT,
1266
  NOIPCHECK_OPT,
1267
  NONICS_OPT,
1268
  NOSTART_OPT,
1269
  NWSYNC_OPT,
1270
  OS_OPT,
1271
  FORCE_VARIANT_OPT,
1272
  OS_SIZE_OPT,
1273
  SUBMIT_OPT,
1274
  ]
1275

    
1276
commands = {
1277
  'add': (
1278
    AddInstance, [ArgHost(min=1, max=1)], add_opts,
1279
    "[...] -t disk-type -n node[:secondary-node] -o os-type <name>",
1280
    "Creates and adds a new instance to the cluster"),
1281
  'batch-create': (
1282
    BatchCreate, [ArgFile(min=1, max=1)], [],
1283
    "<instances.json>",
1284
    "Create a bunch of instances based on specs in the file."),
1285
  'console': (
1286
    ConnectToInstanceConsole, ARGS_ONE_INSTANCE,
1287
    [SHOWCMD_OPT],
1288
    "[--show-cmd] <instance>", "Opens a console on the specified instance"),
1289
  'failover': (
1290
    FailoverInstance, ARGS_ONE_INSTANCE,
1291
    [FORCE_OPT, IGNORE_CONSIST_OPT, SUBMIT_OPT],
1292
    "[-f] <instance>", "Stops the instance and starts it on the backup node,"
1293
    " using the remote mirror (only for instances of type drbd)"),
1294
  'migrate': (
1295
    MigrateInstance, ARGS_ONE_INSTANCE,
1296
    [FORCE_OPT, NONLIVE_OPT, CLEANUP_OPT],
1297
    "[-f] <instance>", "Migrate instance to its secondary node"
1298
    " (only for instances of type drbd)"),
1299
  'move': (
1300
    MoveInstance, ARGS_ONE_INSTANCE,
1301
    [FORCE_OPT, SUBMIT_OPT, SINGLE_NODE_OPT],
1302
    "[-f] <instance>", "Move instance to an arbitrary node"
1303
    " (only for instances of type file and lv)"),
1304
  'info': (
1305
    ShowInstanceConfig, ARGS_MANY_INSTANCES,
1306
    [STATIC_OPT, ALL_OPT],
1307
    "[-s] {--all | <instance>...}",
1308
    "Show information on the specified instance(s)"),
1309
  'list': (
1310
    ListInstances, ARGS_MANY_INSTANCES,
1311
    [NOHDR_OPT, SEP_OPT, USEUNITS_OPT, FIELDS_OPT, SYNC_OPT],
1312
    "[<instance>...]",
1313
    "Lists the instances and their status. The available fields are"
1314
    " (see the man page for details): status, oper_state, oper_ram,"
1315
    " name, os, pnode, snodes, admin_state, admin_ram, disk_template,"
1316
    " ip, mac, mode, link, sda_size, sdb_size, vcpus, serial_no,"
1317
    " hypervisor."
1318
    " The default field"
1319
    " list is (in order): %s." % ", ".join(_LIST_DEF_FIELDS),
1320
    ),
1321
  'reinstall': (
1322
    ReinstallInstance, [ArgInstance()],
1323
    [FORCE_OPT, OS_OPT, FORCE_VARIANT_OPT, m_force_multi, m_node_opt,
1324
     m_pri_node_opt, m_sec_node_opt, m_clust_opt, m_inst_opt, SELECT_OS_OPT,
1325
     SUBMIT_OPT],
1326
    "[-f] <instance>", "Reinstall a stopped instance"),
1327
  'remove': (
1328
    RemoveInstance, ARGS_ONE_INSTANCE,
1329
    [FORCE_OPT, IGNORE_FAILURES_OPT, SUBMIT_OPT],
1330
    "[-f] <instance>", "Shuts down the instance and removes it"),
1331
  'rename': (
1332
    RenameInstance,
1333
    [ArgInstance(min=1, max=1), ArgHost(min=1, max=1)],
1334
    [NOIPCHECK_OPT, SUBMIT_OPT],
1335
    "<instance> <new_name>", "Rename the instance"),
1336
  'replace-disks': (
1337
    ReplaceDisks, ARGS_ONE_INSTANCE,
1338
    [AUTO_REPLACE_OPT, DISKIDX_OPT, IALLOCATOR_OPT,
1339
     NEW_SECONDARY_OPT, ON_PRIMARY_OPT, ON_SECONDARY_OPT, SUBMIT_OPT],
1340
    "[-s|-p|-n NODE|-I NAME] <instance>",
1341
    "Replaces all disks for the instance"),
1342
  'modify': (
1343
    SetInstanceParams, ARGS_ONE_INSTANCE,
1344
    [BACKEND_OPT, DISK_OPT, FORCE_OPT, HVOPTS_OPT, NET_OPT, SUBMIT_OPT],
1345
    "<instance>", "Alters the parameters of an instance"),
1346
  'shutdown': (
1347
    GenericManyOps("shutdown", _ShutdownInstance), [ArgInstance()],
1348
    [m_node_opt, m_pri_node_opt, m_sec_node_opt, m_clust_opt,
1349
     m_inst_opt, m_force_multi, SUBMIT_OPT],
1350
    "<instance>", "Stops an instance"),
1351
  'startup': (
1352
    GenericManyOps("startup", _StartupInstance), [ArgInstance()],
1353
    [FORCE_OPT, m_force_multi, m_node_opt, m_pri_node_opt,
1354
     m_sec_node_opt, m_clust_opt, m_inst_opt, SUBMIT_OPT, HVOPTS_OPT,
1355
     BACKEND_OPT],
1356
    "<instance>", "Starts an instance"),
1357
  'reboot': (
1358
    GenericManyOps("reboot", _RebootInstance), [ArgInstance()],
1359
    [m_force_multi, REBOOT_TYPE_OPT, IGNORE_SECONDARIES_OPT, m_node_opt,
1360
     m_pri_node_opt, m_sec_node_opt, m_clust_opt, m_inst_opt, SUBMIT_OPT],
1361
    "<instance>", "Reboots an instance"),
1362
  'activate-disks': (
1363
    ActivateDisks, ARGS_ONE_INSTANCE, [SUBMIT_OPT, IGNORE_SIZE_OPT],
1364
    "<instance>", "Activate an instance's disks"),
1365
  'deactivate-disks': (
1366
    DeactivateDisks, ARGS_ONE_INSTANCE, [SUBMIT_OPT],
1367
    "<instance>", "Deactivate an instance's disks"),
1368
  'recreate-disks': (
1369
    RecreateDisks, ARGS_ONE_INSTANCE, [SUBMIT_OPT, DISKIDX_OPT],
1370
    "<instance>", "Recreate an instance's disks"),
1371
  'grow-disk': (
1372
    GrowDisk,
1373
    [ArgInstance(min=1, max=1), ArgUnknown(min=1, max=1),
1374
     ArgUnknown(min=1, max=1)],
1375
    [SUBMIT_OPT, NWSYNC_OPT],
1376
    "<instance> <disk> <size>", "Grow an instance's disk"),
1377
  'list-tags': (
1378
    ListTags, ARGS_ONE_INSTANCE, [],
1379
    "<instance_name>", "List the tags of the given instance"),
1380
  'add-tags': (
1381
    AddTags, [ArgInstance(min=1, max=1), ArgUnknown()],
1382
    [TAG_SRC_OPT],
1383
    "<instance_name> tag...", "Add tags to the given instance"),
1384
  'remove-tags': (
1385
    RemoveTags, [ArgInstance(min=1, max=1), ArgUnknown()],
1386
    [TAG_SRC_OPT],
1387
    "<instance_name> tag...", "Remove tags from given instance"),
1388
  }
1389

    
1390
#: dictionary with aliases for commands
1391
aliases = {
1392
  'activate_block_devs': 'activate-disks',
1393
  'replace_disks': 'replace-disks',
1394
  'start': 'startup',
1395
  'stop': 'shutdown',
1396
  }
1397

    
1398

    
1399
if __name__ == '__main__':
1400
  sys.exit(GenericMain(commands, aliases=aliases,
1401
                       override={"tag_type": constants.TAG_INSTANCE}))