Statistics
| Branch: | Tag: | Revision:

root / lib / client / gnt_instance.py @ 0d57ce24

History | View | Annotate | Download (56.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
"""Instance related commands"""
22

    
23
# pylint: disable=W0401,W0614,C0103
24
# W0401: Wildcard import ganeti.cli
25
# W0614: Unused import %s from wildcard import (since we need cli)
26
# C0103: Invalid name gnt-instance
27

    
28
import copy
29
import itertools
30
import simplejson
31
import logging
32
from cStringIO import StringIO
33

    
34
from ganeti.cli import *
35
from ganeti import opcodes
36
from ganeti import constants
37
from ganeti import compat
38
from ganeti import utils
39
from ganeti import errors
40
from ganeti import netutils
41
from ganeti import ssh
42
from ganeti import objects
43
from ganeti import ht
44

    
45

    
46
_EXPAND_CLUSTER = "cluster"
47
_EXPAND_NODES_BOTH = "nodes"
48
_EXPAND_NODES_PRI = "nodes-pri"
49
_EXPAND_NODES_SEC = "nodes-sec"
50
_EXPAND_NODES_BOTH_BY_TAGS = "nodes-by-tags"
51
_EXPAND_NODES_PRI_BY_TAGS = "nodes-pri-by-tags"
52
_EXPAND_NODES_SEC_BY_TAGS = "nodes-sec-by-tags"
53
_EXPAND_INSTANCES = "instances"
54
_EXPAND_INSTANCES_BY_TAGS = "instances-by-tags"
55

    
56
_EXPAND_NODES_TAGS_MODES = frozenset([
57
  _EXPAND_NODES_BOTH_BY_TAGS,
58
  _EXPAND_NODES_PRI_BY_TAGS,
59
  _EXPAND_NODES_SEC_BY_TAGS,
60
  ])
61

    
62

    
63
#: default list of options for L{ListInstances}
64
_LIST_DEF_FIELDS = [
65
  "name", "hypervisor", "os", "pnode", "status", "oper_ram",
66
  ]
67

    
68

    
69
_MISSING = object()
70
_ENV_OVERRIDE = frozenset(["list"])
71

    
72
_INST_DATA_VAL = ht.TListOf(ht.TDict)
73

    
74

    
75
def _ExpandMultiNames(mode, names, client=None):
76
  """Expand the given names using the passed mode.
77

78
  For _EXPAND_CLUSTER, all instances will be returned. For
79
  _EXPAND_NODES_PRI/SEC, all instances having those nodes as
80
  primary/secondary will be returned. For _EXPAND_NODES_BOTH, all
81
  instances having those nodes as either primary or secondary will be
82
  returned. For _EXPAND_INSTANCES, the given instances will be
83
  returned.
84

85
  @param mode: one of L{_EXPAND_CLUSTER}, L{_EXPAND_NODES_BOTH},
86
      L{_EXPAND_NODES_PRI}, L{_EXPAND_NODES_SEC} or
87
      L{_EXPAND_INSTANCES}
88
  @param names: a list of names; for cluster, it must be empty,
89
      and for node and instance it must be a list of valid item
90
      names (short names are valid as usual, e.g. node1 instead of
91
      node1.example.com)
92
  @rtype: list
93
  @return: the list of names after the expansion
94
  @raise errors.ProgrammerError: for unknown selection type
95
  @raise errors.OpPrereqError: for invalid input parameters
96

97
  """
98
  # pylint: disable=W0142
99

    
100
  if client is None:
101
    client = GetClient()
102
  if mode == _EXPAND_CLUSTER:
103
    if names:
104
      raise errors.OpPrereqError("Cluster filter mode takes no arguments",
105
                                 errors.ECODE_INVAL)
106
    idata = client.QueryInstances([], ["name"], False)
107
    inames = [row[0] for row in idata]
108

    
109
  elif (mode in _EXPAND_NODES_TAGS_MODES or
110
        mode in (_EXPAND_NODES_BOTH, _EXPAND_NODES_PRI, _EXPAND_NODES_SEC)):
111
    if mode in _EXPAND_NODES_TAGS_MODES:
112
      if not names:
113
        raise errors.OpPrereqError("No node tags passed", errors.ECODE_INVAL)
114
      ndata = client.QueryNodes([], ["name", "pinst_list",
115
                                     "sinst_list", "tags"], False)
116
      ndata = [row for row in ndata if set(row[3]).intersection(names)]
117
    else:
118
      if not names:
119
        raise errors.OpPrereqError("No node names passed", errors.ECODE_INVAL)
120
      ndata = client.QueryNodes(names, ["name", "pinst_list", "sinst_list"],
121
                                False)
122

    
123
    ipri = [row[1] for row in ndata]
124
    pri_names = list(itertools.chain(*ipri))
125
    isec = [row[2] for row in ndata]
126
    sec_names = list(itertools.chain(*isec))
127
    if mode in (_EXPAND_NODES_BOTH, _EXPAND_NODES_BOTH_BY_TAGS):
128
      inames = pri_names + sec_names
129
    elif mode in (_EXPAND_NODES_PRI, _EXPAND_NODES_PRI_BY_TAGS):
130
      inames = pri_names
131
    elif mode in (_EXPAND_NODES_SEC, _EXPAND_NODES_SEC_BY_TAGS):
132
      inames = sec_names
133
    else:
134
      raise errors.ProgrammerError("Unhandled shutdown type")
135
  elif mode == _EXPAND_INSTANCES:
136
    if not names:
137
      raise errors.OpPrereqError("No instance names passed",
138
                                 errors.ECODE_INVAL)
139
    idata = client.QueryInstances(names, ["name"], False)
140
    inames = [row[0] for row in idata]
141
  elif mode == _EXPAND_INSTANCES_BY_TAGS:
142
    if not names:
143
      raise errors.OpPrereqError("No instance tags passed",
144
                                 errors.ECODE_INVAL)
145
    idata = client.QueryInstances([], ["name", "tags"], False)
146
    inames = [row[0] for row in idata if set(row[1]).intersection(names)]
147
  else:
148
    raise errors.OpPrereqError("Unknown mode '%s'" % mode, errors.ECODE_INVAL)
149

    
150
  return inames
151

    
152

    
153
def _EnsureInstancesExist(client, names):
154
  """Check for and ensure the given instance names exist.
155

156
  This function will raise an OpPrereqError in case they don't
157
  exist. Otherwise it will exit cleanly.
158

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

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

    
174

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

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

183
  """
184
  def realfn(opts, args):
185
    if opts.multi_mode is None:
186
      opts.multi_mode = _EXPAND_INSTANCES
187
    cl = GetClient()
188
    inames = _ExpandMultiNames(opts.multi_mode, args, client=cl)
189
    if not inames:
190
      if opts.multi_mode == _EXPAND_CLUSTER:
191
        ToStdout("Cluster is empty, no instances to shutdown")
192
        return 0
193
      raise errors.OpPrereqError("Selection filter does not match"
194
                                 " any instances", errors.ECODE_INVAL)
195
    multi_on = opts.multi_mode != _EXPAND_INSTANCES or len(inames) > 1
196
    if not (opts.force_multi or not multi_on
197
            or ConfirmOperation(inames, "instances", operation)):
198
      return 1
199
    jex = JobExecutor(verbose=multi_on, cl=cl, opts=opts)
200
    for name in inames:
201
      op = fn(name, opts)
202
      jex.QueueJob(name, op)
203
    results = jex.WaitOrShow(not opts.submit_only)
204
    rcode = compat.all(row[0] for row in results)
205
    return int(not rcode)
206
  return realfn
207

    
208

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

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

218
  """
219
  selected_fields = ParseFields(opts.output, _LIST_DEF_FIELDS)
220

    
221
  fmtoverride = dict.fromkeys(["tags", "disk.sizes", "nic.macs", "nic.ips",
222
                               "nic.modes", "nic.links", "nic.bridges",
223
                               "nic.networks",
224
                               "snodes", "snodes.group", "snodes.group.uuid"],
225
                              (lambda value: ",".join(str(item)
226
                                                      for item in value),
227
                               False))
228

    
229
  return GenericList(constants.QR_INSTANCE, selected_fields, args, opts.units,
230
                     opts.separator, not opts.no_headers,
231
                     format_override=fmtoverride, verbose=opts.verbose,
232
                     force_filter=opts.force_filter)
233

    
234

    
235
def ListInstanceFields(opts, args):
236
  """List instance fields.
237

238
  @param opts: the command line options selected by the user
239
  @type args: list
240
  @param args: fields to list, or empty for all
241
  @rtype: int
242
  @return: the desired exit code
243

244
  """
245
  return GenericListFields(constants.QR_INSTANCE, args, opts.separator,
246
                           not opts.no_headers)
247

    
248

    
249
def AddInstance(opts, args):
250
  """Add an instance to the cluster.
251

252
  This is just a wrapper over GenericInstanceCreate.
253

254
  """
255
  return GenericInstanceCreate(constants.INSTANCE_CREATE, opts, args)
256

    
257

    
258
def BatchCreate(opts, args):
259
  """Create instances using a definition file.
260

261
  This function reads a json file with L{opcodes.OpInstanceCreate}
262
  serialisations.
263

264
  @param opts: the command line options selected by the user
265
  @type args: list
266
  @param args: should contain one element, the json filename
267
  @rtype: int
268
  @return: the desired exit code
269

270
  """
271
  (json_filename,) = args
272
  cl = GetClient()
273

    
274
  try:
275
    instance_data = simplejson.loads(utils.ReadFile(json_filename))
276
  except Exception, err: # pylint: disable=W0703
277
    ToStderr("Can't parse the instance definition file: %s" % str(err))
278
    return 1
279

    
280
  if not _INST_DATA_VAL(instance_data):
281
    ToStderr("The instance definition file is not %s" % _INST_DATA_VAL)
282
    return 1
283

    
284
  instances = []
285
  possible_params = set(opcodes.OpInstanceCreate.GetAllSlots())
286
  for (idx, inst) in enumerate(instance_data):
287
    unknown = set(inst.keys()) - possible_params
288

    
289
    if unknown:
290
      # TODO: Suggest closest match for more user friendly experience
291
      raise errors.OpPrereqError("Unknown fields in definition %s: %s" %
292
                                 (idx, utils.CommaJoin(unknown)),
293
                                 errors.ECODE_INVAL)
294

    
295
    op = opcodes.OpInstanceCreate(**inst) # pylint: disable=W0142
296
    op.Validate(False)
297
    instances.append(op)
298

    
299
  op = opcodes.OpInstanceMultiAlloc(iallocator=opts.iallocator,
300
                                    instances=instances)
301
  result = SubmitOrSend(op, opts, cl=cl)
302

    
303
  # Keep track of submitted jobs
304
  jex = JobExecutor(cl=cl, opts=opts)
305

    
306
  for (status, job_id) in result[constants.JOB_IDS_KEY]:
307
    jex.AddJobId(None, status, job_id)
308

    
309
  results = jex.GetResults()
310
  bad_cnt = len([row for row in results if not row[0]])
311
  if bad_cnt == 0:
312
    ToStdout("All instances created successfully.")
313
    rcode = constants.EXIT_SUCCESS
314
  else:
315
    ToStdout("There were %s errors during the creation.", bad_cnt)
316
    rcode = constants.EXIT_FAILURE
317

    
318
  return rcode
319

    
320

    
321
def ReinstallInstance(opts, args):
322
  """Reinstall an instance.
323

324
  @param opts: the command line options selected by the user
325
  @type args: list
326
  @param args: should contain only one element, the name of the
327
      instance to be reinstalled
328
  @rtype: int
329
  @return: the desired exit code
330

331
  """
332
  # first, compute the desired name list
333
  if opts.multi_mode is None:
334
    opts.multi_mode = _EXPAND_INSTANCES
335

    
336
  inames = _ExpandMultiNames(opts.multi_mode, args)
337
  if not inames:
338
    raise errors.OpPrereqError("Selection filter does not match any instances",
339
                               errors.ECODE_INVAL)
340

    
341
  # second, if requested, ask for an OS
342
  if opts.select_os is True:
343
    op = opcodes.OpOsDiagnose(output_fields=["name", "variants"], names=[])
344
    result = SubmitOpCode(op, opts=opts)
345

    
346
    if not result:
347
      ToStdout("Can't get the OS list")
348
      return 1
349

    
350
    ToStdout("Available OS templates:")
351
    number = 0
352
    choices = []
353
    for (name, variants) in result:
354
      for entry in CalculateOSNames(name, variants):
355
        ToStdout("%3s: %s", number, entry)
356
        choices.append(("%s" % number, entry, entry))
357
        number += 1
358

    
359
    choices.append(("x", "exit", "Exit gnt-instance reinstall"))
360
    selected = AskUser("Enter OS template number (or x to abort):",
361
                       choices)
362

    
363
    if selected == "exit":
364
      ToStderr("User aborted reinstall, exiting")
365
      return 1
366

    
367
    os_name = selected
368
    os_msg = "change the OS to '%s'" % selected
369
  else:
370
    os_name = opts.os
371
    if opts.os is not None:
372
      os_msg = "change the OS to '%s'" % os_name
373
    else:
374
      os_msg = "keep the same OS"
375

    
376
  # third, get confirmation: multi-reinstall requires --force-multi,
377
  # single-reinstall either --force or --force-multi (--force-multi is
378
  # a stronger --force)
379
  multi_on = opts.multi_mode != _EXPAND_INSTANCES or len(inames) > 1
380
  if multi_on:
381
    warn_msg = ("Note: this will remove *all* data for the"
382
                " below instances! It will %s.\n" % os_msg)
383
    if not (opts.force_multi or
384
            ConfirmOperation(inames, "instances", "reinstall", extra=warn_msg)):
385
      return 1
386
  else:
387
    if not (opts.force or opts.force_multi):
388
      usertext = ("This will reinstall the instance '%s' (and %s) which"
389
                  " removes all data. Continue?") % (inames[0], os_msg)
390
      if not AskUser(usertext):
391
        return 1
392

    
393
  jex = JobExecutor(verbose=multi_on, opts=opts)
394
  for instance_name in inames:
395
    op = opcodes.OpInstanceReinstall(instance_name=instance_name,
396
                                     os_type=os_name,
397
                                     force_variant=opts.force_variant,
398
                                     osparams=opts.osparams)
399
    jex.QueueJob(instance_name, op)
400

    
401
  results = jex.WaitOrShow(not opts.submit_only)
402

    
403
  if compat.all(map(compat.fst, results)):
404
    return constants.EXIT_SUCCESS
405
  else:
406
    return constants.EXIT_FAILURE
407

    
408

    
409
def RemoveInstance(opts, args):
410
  """Remove an instance.
411

412
  @param opts: the command line options selected by the user
413
  @type args: list
414
  @param args: should contain only one element, the name of
415
      the instance to be removed
416
  @rtype: int
417
  @return: the desired exit code
418

419
  """
420
  instance_name = args[0]
421
  force = opts.force
422
  cl = GetClient()
423

    
424
  if not force:
425
    _EnsureInstancesExist(cl, [instance_name])
426

    
427
    usertext = ("This will remove the volumes of the instance %s"
428
                " (including mirrors), thus removing all the data"
429
                " of the instance. Continue?") % instance_name
430
    if not AskUser(usertext):
431
      return 1
432

    
433
  op = opcodes.OpInstanceRemove(instance_name=instance_name,
434
                                ignore_failures=opts.ignore_failures,
435
                                shutdown_timeout=opts.shutdown_timeout)
436
  SubmitOrSend(op, opts, cl=cl)
437
  return 0
438

    
439

    
440
def RenameInstance(opts, args):
441
  """Rename an instance.
442

443
  @param opts: the command line options selected by the user
444
  @type args: list
445
  @param args: should contain two elements, the old and the
446
      new instance names
447
  @rtype: int
448
  @return: the desired exit code
449

450
  """
451
  if not opts.name_check:
452
    if not AskUser("As you disabled the check of the DNS entry, please verify"
453
                   " that '%s' is a FQDN. Continue?" % args[1]):
454
      return 1
455

    
456
  op = opcodes.OpInstanceRename(instance_name=args[0],
457
                                new_name=args[1],
458
                                ip_check=opts.ip_check,
459
                                name_check=opts.name_check)
460
  result = SubmitOrSend(op, opts)
461

    
462
  if result:
463
    ToStdout("Instance '%s' renamed to '%s'", args[0], result)
464

    
465
  return 0
466

    
467

    
468
def ActivateDisks(opts, args):
469
  """Activate an instance's disks.
470

471
  This serves two purposes:
472
    - it allows (as long as the instance is not running)
473
      mounting the disks and modifying them from the node
474
    - it repairs inactive secondary drbds
475

476
  @param opts: the command line options selected by the user
477
  @type args: list
478
  @param args: should contain only one element, the instance name
479
  @rtype: int
480
  @return: the desired exit code
481

482
  """
483
  instance_name = args[0]
484
  op = opcodes.OpInstanceActivateDisks(instance_name=instance_name,
485
                                       ignore_size=opts.ignore_size,
486
                                       wait_for_sync=opts.wait_for_sync)
487
  disks_info = SubmitOrSend(op, opts)
488
  for host, iname, nname in disks_info:
489
    ToStdout("%s:%s:%s", host, iname, nname)
490
  return 0
491

    
492

    
493
def DeactivateDisks(opts, args):
494
  """Deactivate an instance's disks.
495

496
  This function takes the instance name, looks for its primary node
497
  and the tries to shutdown its block devices on that node.
498

499
  @param opts: the command line options selected by the user
500
  @type args: list
501
  @param args: should contain only one element, the instance name
502
  @rtype: int
503
  @return: the desired exit code
504

505
  """
506
  instance_name = args[0]
507
  op = opcodes.OpInstanceDeactivateDisks(instance_name=instance_name,
508
                                         force=opts.force)
509
  SubmitOrSend(op, opts)
510
  return 0
511

    
512

    
513
def RecreateDisks(opts, args):
514
  """Recreate an instance's disks.
515

516
  @param opts: the command line options selected by the user
517
  @type args: list
518
  @param args: should contain only one element, the instance name
519
  @rtype: int
520
  @return: the desired exit code
521

522
  """
523
  instance_name = args[0]
524

    
525
  disks = []
526

    
527
  if opts.disks:
528
    for didx, ddict in opts.disks:
529
      didx = int(didx)
530

    
531
      if not ht.TDict(ddict):
532
        msg = "Invalid disk/%d value: expected dict, got %s" % (didx, ddict)
533
        raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
534

    
535
      if constants.IDISK_SIZE in ddict:
536
        try:
537
          ddict[constants.IDISK_SIZE] = \
538
            utils.ParseUnit(ddict[constants.IDISK_SIZE])
539
        except ValueError, err:
540
          raise errors.OpPrereqError("Invalid disk size for disk %d: %s" %
541
                                     (didx, err), errors.ECODE_INVAL)
542

    
543
      disks.append((didx, ddict))
544

    
545
    # TODO: Verify modifyable parameters (already done in
546
    # LUInstanceRecreateDisks, but it'd be nice to have in the client)
547

    
548
  if opts.node:
549
    if opts.iallocator:
550
      msg = "At most one of either --nodes or --iallocator can be passed"
551
      raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
552
    pnode, snode = SplitNodeOption(opts.node)
553
    nodes = [pnode]
554
    if snode is not None:
555
      nodes.append(snode)
556
  else:
557
    nodes = []
558

    
559
  op = opcodes.OpInstanceRecreateDisks(instance_name=instance_name,
560
                                       disks=disks, nodes=nodes,
561
                                       iallocator=opts.iallocator)
562
  SubmitOrSend(op, opts)
563

    
564
  return 0
565

    
566

    
567
def GrowDisk(opts, args):
568
  """Grow an instance's disks.
569

570
  @param opts: the command line options selected by the user
571
  @type args: list
572
  @param args: should contain three elements, the target instance name,
573
      the target disk id, and the target growth
574
  @rtype: int
575
  @return: the desired exit code
576

577
  """
578
  instance = args[0]
579
  disk = args[1]
580
  try:
581
    disk = int(disk)
582
  except (TypeError, ValueError), err:
583
    raise errors.OpPrereqError("Invalid disk index: %s" % str(err),
584
                               errors.ECODE_INVAL)
585
  try:
586
    amount = utils.ParseUnit(args[2])
587
  except errors.UnitParseError:
588
    raise errors.OpPrereqError("Can't parse the given amount '%s'" % args[2],
589
                               errors.ECODE_INVAL)
590
  op = opcodes.OpInstanceGrowDisk(instance_name=instance,
591
                                  disk=disk, amount=amount,
592
                                  wait_for_sync=opts.wait_for_sync,
593
                                  absolute=opts.absolute)
594
  SubmitOrSend(op, opts)
595
  return 0
596

    
597

    
598
def _StartupInstance(name, opts):
599
  """Startup instances.
600

601
  This returns the opcode to start an instance, and its decorator will
602
  wrap this into a loop starting all desired instances.
603

604
  @param name: the name of the instance to act on
605
  @param opts: the command line options selected by the user
606
  @return: the opcode needed for the operation
607

608
  """
609
  op = opcodes.OpInstanceStartup(instance_name=name,
610
                                 force=opts.force,
611
                                 ignore_offline_nodes=opts.ignore_offline,
612
                                 no_remember=opts.no_remember,
613
                                 startup_paused=opts.startup_paused)
614
  # do not add these parameters to the opcode unless they're defined
615
  if opts.hvparams:
616
    op.hvparams = opts.hvparams
617
  if opts.beparams:
618
    op.beparams = opts.beparams
619
  return op
620

    
621

    
622
def _RebootInstance(name, opts):
623
  """Reboot instance(s).
624

625
  This returns the opcode to reboot an instance, and its decorator
626
  will wrap this into a loop rebooting all desired instances.
627

628
  @param name: the name of the instance to act on
629
  @param opts: the command line options selected by the user
630
  @return: the opcode needed for the operation
631

632
  """
633
  return opcodes.OpInstanceReboot(instance_name=name,
634
                                  reboot_type=opts.reboot_type,
635
                                  ignore_secondaries=opts.ignore_secondaries,
636
                                  shutdown_timeout=opts.shutdown_timeout)
637

    
638

    
639
def _ShutdownInstance(name, opts):
640
  """Shutdown an instance.
641

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

645
  @param name: the name of the instance to act on
646
  @param opts: the command line options selected by the user
647
  @return: the opcode needed for the operation
648

649
  """
650
  return opcodes.OpInstanceShutdown(instance_name=name,
651
                                    force=opts.force,
652
                                    timeout=opts.timeout,
653
                                    ignore_offline_nodes=opts.ignore_offline,
654
                                    no_remember=opts.no_remember)
655

    
656

    
657
def ReplaceDisks(opts, args):
658
  """Replace the disks of an instance
659

660
  @param opts: the command line options selected by the user
661
  @type args: list
662
  @param args: should contain only one element, the instance name
663
  @rtype: int
664
  @return: the desired exit code
665

666
  """
667
  new_2ndary = opts.dst_node
668
  iallocator = opts.iallocator
669
  if opts.disks is None:
670
    disks = []
671
  else:
672
    try:
673
      disks = [int(i) for i in opts.disks.split(",")]
674
    except (TypeError, ValueError), err:
675
      raise errors.OpPrereqError("Invalid disk index passed: %s" % str(err),
676
                                 errors.ECODE_INVAL)
677
  cnt = [opts.on_primary, opts.on_secondary, opts.auto,
678
         new_2ndary is not None, iallocator is not None].count(True)
679
  if cnt != 1:
680
    raise errors.OpPrereqError("One and only one of the -p, -s, -a, -n and -I"
681
                               " options must be passed", errors.ECODE_INVAL)
682
  elif opts.on_primary:
683
    mode = constants.REPLACE_DISK_PRI
684
  elif opts.on_secondary:
685
    mode = constants.REPLACE_DISK_SEC
686
  elif opts.auto:
687
    mode = constants.REPLACE_DISK_AUTO
688
    if disks:
689
      raise errors.OpPrereqError("Cannot specify disks when using automatic"
690
                                 " mode", errors.ECODE_INVAL)
691
  elif new_2ndary is not None or iallocator is not None:
692
    # replace secondary
693
    mode = constants.REPLACE_DISK_CHG
694

    
695
  op = opcodes.OpInstanceReplaceDisks(instance_name=args[0], disks=disks,
696
                                      remote_node=new_2ndary, mode=mode,
697
                                      iallocator=iallocator,
698
                                      early_release=opts.early_release,
699
                                      ignore_ipolicy=opts.ignore_ipolicy)
700
  SubmitOrSend(op, opts)
701
  return 0
702

    
703

    
704
def FailoverInstance(opts, args):
705
  """Failover an instance.
706

707
  The failover is done by shutting it down on its present node and
708
  starting it on the secondary.
709

710
  @param opts: the command line options selected by the user
711
  @type args: list
712
  @param args: should contain only one element, the instance name
713
  @rtype: int
714
  @return: the desired exit code
715

716
  """
717
  cl = GetClient()
718
  instance_name = args[0]
719
  force = opts.force
720
  iallocator = opts.iallocator
721
  target_node = opts.dst_node
722

    
723
  if iallocator and target_node:
724
    raise errors.OpPrereqError("Specify either an iallocator (-I), or a target"
725
                               " node (-n) but not both", errors.ECODE_INVAL)
726

    
727
  if not force:
728
    _EnsureInstancesExist(cl, [instance_name])
729

    
730
    usertext = ("Failover will happen to image %s."
731
                " This requires a shutdown of the instance. Continue?" %
732
                (instance_name,))
733
    if not AskUser(usertext):
734
      return 1
735

    
736
  op = opcodes.OpInstanceFailover(instance_name=instance_name,
737
                                  ignore_consistency=opts.ignore_consistency,
738
                                  shutdown_timeout=opts.shutdown_timeout,
739
                                  iallocator=iallocator,
740
                                  target_node=target_node,
741
                                  ignore_ipolicy=opts.ignore_ipolicy)
742
  SubmitOrSend(op, opts, cl=cl)
743
  return 0
744

    
745

    
746
def MigrateInstance(opts, args):
747
  """Migrate an instance.
748

749
  The migrate is done without shutdown.
750

751
  @param opts: the command line options selected by the user
752
  @type args: list
753
  @param args: should contain only one element, the instance name
754
  @rtype: int
755
  @return: the desired exit code
756

757
  """
758
  cl = GetClient()
759
  instance_name = args[0]
760
  force = opts.force
761
  iallocator = opts.iallocator
762
  target_node = opts.dst_node
763

    
764
  if iallocator and target_node:
765
    raise errors.OpPrereqError("Specify either an iallocator (-I), or a target"
766
                               " node (-n) but not both", errors.ECODE_INVAL)
767

    
768
  if not force:
769
    _EnsureInstancesExist(cl, [instance_name])
770

    
771
    if opts.cleanup:
772
      usertext = ("Instance %s will be recovered from a failed migration."
773
                  " Note that the migration procedure (including cleanup)" %
774
                  (instance_name,))
775
    else:
776
      usertext = ("Instance %s will be migrated. Note that migration" %
777
                  (instance_name,))
778
    usertext += (" might impact the instance if anything goes wrong"
779
                 " (e.g. due to bugs in the hypervisor). Continue?")
780
    if not AskUser(usertext):
781
      return 1
782

    
783
  # this should be removed once --non-live is deprecated
784
  if not opts.live and opts.migration_mode is not None:
785
    raise errors.OpPrereqError("Only one of the --non-live and "
786
                               "--migration-mode options can be passed",
787
                               errors.ECODE_INVAL)
788
  if not opts.live: # --non-live passed
789
    mode = constants.HT_MIGRATION_NONLIVE
790
  else:
791
    mode = opts.migration_mode
792

    
793
  op = opcodes.OpInstanceMigrate(instance_name=instance_name, mode=mode,
794
                                 cleanup=opts.cleanup, iallocator=iallocator,
795
                                 target_node=target_node,
796
                                 allow_failover=opts.allow_failover,
797
                                 allow_runtime_changes=opts.allow_runtime_chgs,
798
                                 ignore_ipolicy=opts.ignore_ipolicy)
799
  SubmitOrSend(op, cl=cl, opts=opts)
800
  return 0
801

    
802

    
803
def MoveInstance(opts, args):
804
  """Move an instance.
805

806
  @param opts: the command line options selected by the user
807
  @type args: list
808
  @param args: should contain only one element, the instance name
809
  @rtype: int
810
  @return: the desired exit code
811

812
  """
813
  cl = GetClient()
814
  instance_name = args[0]
815
  force = opts.force
816

    
817
  if not force:
818
    usertext = ("Instance %s will be moved."
819
                " This requires a shutdown of the instance. Continue?" %
820
                (instance_name,))
821
    if not AskUser(usertext):
822
      return 1
823

    
824
  op = opcodes.OpInstanceMove(instance_name=instance_name,
825
                              target_node=opts.node,
826
                              shutdown_timeout=opts.shutdown_timeout,
827
                              ignore_consistency=opts.ignore_consistency,
828
                              ignore_ipolicy=opts.ignore_ipolicy)
829
  SubmitOrSend(op, opts, cl=cl)
830
  return 0
831

    
832

    
833
def ConnectToInstanceConsole(opts, args):
834
  """Connect to the console of an instance.
835

836
  @param opts: the command line options selected by the user
837
  @type args: list
838
  @param args: should contain only one element, the instance name
839
  @rtype: int
840
  @return: the desired exit code
841

842
  """
843
  instance_name = args[0]
844

    
845
  cl = GetClient()
846
  try:
847
    cluster_name = cl.QueryConfigValues(["cluster_name"])[0]
848
    ((console_data, oper_state), ) = \
849
      cl.QueryInstances([instance_name], ["console", "oper_state"], False)
850
  finally:
851
    # Ensure client connection is closed while external commands are run
852
    cl.Close()
853

    
854
  del cl
855

    
856
  if not console_data:
857
    if oper_state:
858
      # Instance is running
859
      raise errors.OpExecError("Console information for instance %s is"
860
                               " unavailable" % instance_name)
861
    else:
862
      raise errors.OpExecError("Instance %s is not running, can't get console" %
863
                               instance_name)
864

    
865
  return _DoConsole(objects.InstanceConsole.FromDict(console_data),
866
                    opts.show_command, cluster_name)
867

    
868

    
869
def _DoConsole(console, show_command, cluster_name, feedback_fn=ToStdout,
870
               _runcmd_fn=utils.RunCmd):
871
  """Acts based on the result of L{opcodes.OpInstanceConsole}.
872

873
  @type console: L{objects.InstanceConsole}
874
  @param console: Console object
875
  @type show_command: bool
876
  @param show_command: Whether to just display commands
877
  @type cluster_name: string
878
  @param cluster_name: Cluster name as retrieved from master daemon
879

880
  """
881
  assert console.Validate()
882

    
883
  if console.kind == constants.CONS_MESSAGE:
884
    feedback_fn(console.message)
885
  elif console.kind == constants.CONS_VNC:
886
    feedback_fn("Instance %s has VNC listening on %s:%s (display %s),"
887
                " URL <vnc://%s:%s/>",
888
                console.instance, console.host, console.port,
889
                console.display, console.host, console.port)
890
  elif console.kind == constants.CONS_SPICE:
891
    feedback_fn("Instance %s has SPICE listening on %s:%s", console.instance,
892
                console.host, console.port)
893
  elif console.kind == constants.CONS_SSH:
894
    # Convert to string if not already one
895
    if isinstance(console.command, basestring):
896
      cmd = console.command
897
    else:
898
      cmd = utils.ShellQuoteArgs(console.command)
899

    
900
    srun = ssh.SshRunner(cluster_name=cluster_name)
901
    ssh_cmd = srun.BuildCmd(console.host, console.user, cmd,
902
                            batch=True, quiet=False, tty=True)
903

    
904
    if show_command:
905
      feedback_fn(utils.ShellQuoteArgs(ssh_cmd))
906
    else:
907
      result = _runcmd_fn(ssh_cmd, interactive=True)
908
      if result.failed:
909
        logging.error("Console command \"%s\" failed with reason '%s' and"
910
                      " output %r", result.cmd, result.fail_reason,
911
                      result.output)
912
        raise errors.OpExecError("Connection to console of instance %s failed,"
913
                                 " please check cluster configuration" %
914
                                 console.instance)
915
  else:
916
    raise errors.GenericError("Unknown console type '%s'" % console.kind)
917

    
918
  return constants.EXIT_SUCCESS
919

    
920

    
921
def _FormatLogicalID(dev_type, logical_id, roman):
922
  """Formats the logical_id of a disk.
923

924
  """
925
  if dev_type == constants.LD_DRBD8:
926
    node_a, node_b, port, minor_a, minor_b, key = logical_id
927
    data = [
928
      ("nodeA", "%s, minor=%s" % (node_a, compat.TryToRoman(minor_a,
929
                                                            convert=roman))),
930
      ("nodeB", "%s, minor=%s" % (node_b, compat.TryToRoman(minor_b,
931
                                                            convert=roman))),
932
      ("port", compat.TryToRoman(port, convert=roman)),
933
      ("auth key", key),
934
      ]
935
  elif dev_type == constants.LD_LV:
936
    vg_name, lv_name = logical_id
937
    data = ["%s/%s" % (vg_name, lv_name)]
938
  else:
939
    data = [str(logical_id)]
940

    
941
  return data
942

    
943

    
944
def _FormatBlockDevInfo(idx, top_level, dev, roman):
945
  """Show block device information.
946

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

950
  @type idx: int
951
  @param idx: the index of the current disk
952
  @type top_level: boolean
953
  @param top_level: if this a top-level disk?
954
  @type dev: dict
955
  @param dev: dictionary with disk information
956
  @type roman: boolean
957
  @param roman: whether to try to use roman integers
958
  @return: a list of either strings, tuples or lists
959
      (which should be formatted at a higher indent level)
960

961
  """
962
  def helper(dtype, status):
963
    """Format one line for physical device status.
964

965
    @type dtype: str
966
    @param dtype: a constant from the L{constants.LDS_BLOCK} set
967
    @type status: tuple
968
    @param status: a tuple as returned from L{backend.FindBlockDevice}
969
    @return: the string representing the status
970

971
    """
972
    if not status:
973
      return "not active"
974
    txt = ""
975
    (path, major, minor, syncp, estt, degr, ldisk_status) = status
976
    if major is None:
977
      major_string = "N/A"
978
    else:
979
      major_string = str(compat.TryToRoman(major, convert=roman))
980

    
981
    if minor is None:
982
      minor_string = "N/A"
983
    else:
984
      minor_string = str(compat.TryToRoman(minor, convert=roman))
985

    
986
    txt += ("%s (%s:%s)" % (path, major_string, minor_string))
987
    if dtype in (constants.LD_DRBD8, ):
988
      if syncp is not None:
989
        sync_text = "*RECOVERING* %5.2f%%," % syncp
990
        if estt:
991
          sync_text += " ETA %ss" % compat.TryToRoman(estt, convert=roman)
992
        else:
993
          sync_text += " ETA unknown"
994
      else:
995
        sync_text = "in sync"
996
      if degr:
997
        degr_text = "*DEGRADED*"
998
      else:
999
        degr_text = "ok"
1000
      if ldisk_status == constants.LDS_FAULTY:
1001
        ldisk_text = " *MISSING DISK*"
1002
      elif ldisk_status == constants.LDS_UNKNOWN:
1003
        ldisk_text = " *UNCERTAIN STATE*"
1004
      else:
1005
        ldisk_text = ""
1006
      txt += (" %s, status %s%s" % (sync_text, degr_text, ldisk_text))
1007
    elif dtype == constants.LD_LV:
1008
      if ldisk_status == constants.LDS_FAULTY:
1009
        ldisk_text = " *FAILED* (failed drive?)"
1010
      else:
1011
        ldisk_text = ""
1012
      txt += ldisk_text
1013
    return txt
1014

    
1015
  # the header
1016
  if top_level:
1017
    if dev["iv_name"] is not None:
1018
      txt = dev["iv_name"]
1019
    else:
1020
      txt = "disk %s" % compat.TryToRoman(idx, convert=roman)
1021
  else:
1022
    txt = "child %s" % compat.TryToRoman(idx, convert=roman)
1023
  if isinstance(dev["size"], int):
1024
    nice_size = utils.FormatUnit(dev["size"], "h")
1025
  else:
1026
    nice_size = dev["size"]
1027
  d1 = ["- %s: %s, size %s" % (txt, dev["dev_type"], nice_size)]
1028
  data = []
1029
  if top_level:
1030
    data.append(("access mode", dev["mode"]))
1031
  if dev["logical_id"] is not None:
1032
    try:
1033
      l_id = _FormatLogicalID(dev["dev_type"], dev["logical_id"], roman)
1034
    except ValueError:
1035
      l_id = [str(dev["logical_id"])]
1036
    if len(l_id) == 1:
1037
      data.append(("logical_id", l_id[0]))
1038
    else:
1039
      data.extend(l_id)
1040
  elif dev["physical_id"] is not None:
1041
    data.append("physical_id:")
1042
    data.append([dev["physical_id"]])
1043

    
1044
  if dev["pstatus"]:
1045
    data.append(("on primary", helper(dev["dev_type"], dev["pstatus"])))
1046

    
1047
  if dev["sstatus"]:
1048
    data.append(("on secondary", helper(dev["dev_type"], dev["sstatus"])))
1049

    
1050
  if dev["children"]:
1051
    data.append("child devices:")
1052
    for c_idx, child in enumerate(dev["children"]):
1053
      data.append(_FormatBlockDevInfo(c_idx, False, child, roman))
1054
  d1.append(data)
1055
  return d1
1056

    
1057

    
1058
def _FormatList(buf, data, indent_level):
1059
  """Formats a list of data at a given indent level.
1060

1061
  If the element of the list is:
1062
    - a string, it is simply formatted as is
1063
    - a tuple, it will be split into key, value and the all the
1064
      values in a list will be aligned all at the same start column
1065
    - a list, will be recursively formatted
1066

1067
  @type buf: StringIO
1068
  @param buf: the buffer into which we write the output
1069
  @param data: the list to format
1070
  @type indent_level: int
1071
  @param indent_level: the indent level to format at
1072

1073
  """
1074
  max_tlen = max([len(elem[0]) for elem in data
1075
                 if isinstance(elem, tuple)] or [0])
1076
  for elem in data:
1077
    if isinstance(elem, basestring):
1078
      buf.write("%*s%s\n" % (2 * indent_level, "", elem))
1079
    elif isinstance(elem, tuple):
1080
      key, value = elem
1081
      spacer = "%*s" % (max_tlen - len(key), "")
1082
      buf.write("%*s%s:%s %s\n" % (2 * indent_level, "", key, spacer, value))
1083
    elif isinstance(elem, list):
1084
      _FormatList(buf, elem, indent_level + 1)
1085

    
1086

    
1087
def ShowInstanceConfig(opts, args):
1088
  """Compute instance run-time status.
1089

1090
  @param opts: the command line options selected by the user
1091
  @type args: list
1092
  @param args: either an empty list, and then we query all
1093
      instances, or should contain a list of instance names
1094
  @rtype: int
1095
  @return: the desired exit code
1096

1097
  """
1098
  if not args and not opts.show_all:
1099
    ToStderr("No instance selected."
1100
             " Please pass in --all if you want to query all instances.\n"
1101
             "Note that this can take a long time on a big cluster.")
1102
    return 1
1103
  elif args and opts.show_all:
1104
    ToStderr("Cannot use --all if you specify instance names.")
1105
    return 1
1106

    
1107
  retcode = 0
1108
  op = opcodes.OpInstanceQueryData(instances=args, static=opts.static,
1109
                                   use_locking=not opts.static)
1110
  result = SubmitOpCode(op, opts=opts)
1111
  if not result:
1112
    ToStdout("No instances.")
1113
    return 1
1114

    
1115
  buf = StringIO()
1116
  retcode = 0
1117
  for instance_name in result:
1118
    instance = result[instance_name]
1119
    buf.write("Instance name: %s\n" % instance["name"])
1120
    buf.write("UUID: %s\n" % instance["uuid"])
1121
    buf.write("Serial number: %s\n" %
1122
              compat.TryToRoman(instance["serial_no"],
1123
                                convert=opts.roman_integers))
1124
    buf.write("Creation time: %s\n" % utils.FormatTime(instance["ctime"]))
1125
    buf.write("Modification time: %s\n" % utils.FormatTime(instance["mtime"]))
1126
    buf.write("State: configured to be %s" % instance["config_state"])
1127
    if instance["run_state"]:
1128
      buf.write(", actual state is %s" % instance["run_state"])
1129
    buf.write("\n")
1130
    ##buf.write("Considered for memory checks in cluster verify: %s\n" %
1131
    ##          instance["auto_balance"])
1132
    buf.write("  Nodes:\n")
1133
    buf.write("    - primary: %s\n" % instance["pnode"])
1134
    buf.write("      group: %s (UUID %s)\n" %
1135
              (instance["pnode_group_name"], instance["pnode_group_uuid"]))
1136
    buf.write("    - secondaries: %s\n" %
1137
              utils.CommaJoin("%s (group %s, group UUID %s)" %
1138
                                (name, group_name, group_uuid)
1139
                              for (name, group_name, group_uuid) in
1140
                                zip(instance["snodes"],
1141
                                    instance["snodes_group_names"],
1142
                                    instance["snodes_group_uuids"])))
1143
    buf.write("  Operating system: %s\n" % instance["os"])
1144
    FormatParameterDict(buf, instance["os_instance"], instance["os_actual"],
1145
                        level=2)
1146
    if "network_port" in instance:
1147
      buf.write("  Allocated network port: %s\n" %
1148
                compat.TryToRoman(instance["network_port"],
1149
                                  convert=opts.roman_integers))
1150
    buf.write("  Hypervisor: %s\n" % instance["hypervisor"])
1151

    
1152
    # custom VNC console information
1153
    vnc_bind_address = instance["hv_actual"].get(constants.HV_VNC_BIND_ADDRESS,
1154
                                                 None)
1155
    if vnc_bind_address:
1156
      port = instance["network_port"]
1157
      display = int(port) - constants.VNC_BASE_PORT
1158
      if display > 0 and vnc_bind_address == constants.IP4_ADDRESS_ANY:
1159
        vnc_console_port = "%s:%s (display %s)" % (instance["pnode"],
1160
                                                   port,
1161
                                                   display)
1162
      elif display > 0 and netutils.IP4Address.IsValid(vnc_bind_address):
1163
        vnc_console_port = ("%s:%s (node %s) (display %s)" %
1164
                             (vnc_bind_address, port,
1165
                              instance["pnode"], display))
1166
      else:
1167
        # vnc bind address is a file
1168
        vnc_console_port = "%s:%s" % (instance["pnode"],
1169
                                      vnc_bind_address)
1170
      buf.write("    - console connection: vnc to %s\n" % vnc_console_port)
1171

    
1172
    FormatParameterDict(buf, instance["hv_instance"], instance["hv_actual"],
1173
                        level=2)
1174
    buf.write("  Hardware:\n")
1175
    # deprecated "memory" value, kept for one version for compatibility
1176
    # TODO(ganeti 2.7) remove.
1177
    be_actual = copy.deepcopy(instance["be_actual"])
1178
    be_actual["memory"] = be_actual[constants.BE_MAXMEM]
1179
    FormatParameterDict(buf, instance["be_instance"], be_actual, level=2)
1180
    # TODO(ganeti 2.7) rework the NICs as well
1181
    buf.write("    - NICs:\n")
1182
    for idx, (ip, mac, mode, link, network, _) in enumerate(instance["nics"]):
1183
      buf.write("      - nic/%d: MAC: %s, IP: %s,"
1184
                " mode: %s, link: %s, network: %s\n" %
1185
                (idx, mac, ip, mode, link, network))
1186
    buf.write("  Disk template: %s\n" % instance["disk_template"])
1187
    buf.write("  Disks:\n")
1188

    
1189
    for idx, device in enumerate(instance["disks"]):
1190
      _FormatList(buf, _FormatBlockDevInfo(idx, True, device,
1191
                  opts.roman_integers), 2)
1192

    
1193
  ToStdout(buf.getvalue().rstrip("\n"))
1194
  return retcode
1195

    
1196

    
1197
def _ConvertNicDiskModifications(mods):
1198
  """Converts NIC/disk modifications from CLI to opcode.
1199

1200
  When L{opcodes.OpInstanceSetParams} was changed to support adding/removing
1201
  disks at arbitrary indices, its parameter format changed. This function
1202
  converts legacy requests (e.g. "--net add" or "--disk add:size=4G") to the
1203
  newer format and adds support for new-style requests (e.g. "--new 4:add").
1204

1205
  @type mods: list of tuples
1206
  @param mods: Modifications as given by command line parser
1207
  @rtype: list of tuples
1208
  @return: Modifications as understood by L{opcodes.OpInstanceSetParams}
1209

1210
  """
1211
  result = []
1212

    
1213
  for (idx, params) in mods:
1214
    if idx == constants.DDM_ADD:
1215
      # Add item as last item (legacy interface)
1216
      action = constants.DDM_ADD
1217
      idxno = -1
1218
    elif idx == constants.DDM_REMOVE:
1219
      # Remove last item (legacy interface)
1220
      action = constants.DDM_REMOVE
1221
      idxno = -1
1222
    else:
1223
      # Modifications and adding/removing at arbitrary indices
1224
      try:
1225
        idxno = int(idx)
1226
      except (TypeError, ValueError):
1227
        raise errors.OpPrereqError("Non-numeric index '%s'" % idx,
1228
                                   errors.ECODE_INVAL)
1229

    
1230
      add = params.pop(constants.DDM_ADD, _MISSING)
1231
      remove = params.pop(constants.DDM_REMOVE, _MISSING)
1232
      modify = params.pop(constants.DDM_MODIFY, _MISSING)
1233

    
1234
      if modify is _MISSING:
1235
        if not (add is _MISSING or remove is _MISSING):
1236
          raise errors.OpPrereqError("Cannot add and remove at the same time",
1237
                                     errors.ECODE_INVAL)
1238
        elif add is not _MISSING:
1239
          action = constants.DDM_ADD
1240
        elif remove is not _MISSING:
1241
          action = constants.DDM_REMOVE
1242
        else:
1243
          action = constants.DDM_MODIFY
1244

    
1245
      elif add is _MISSING and remove is _MISSING:
1246
        action = constants.DDM_MODIFY
1247
      else:
1248
        raise errors.OpPrereqError("Cannot modify and add/remove at the"
1249
                                   " same time", errors.ECODE_INVAL)
1250

    
1251
      assert not (constants.DDMS_VALUES_WITH_MODIFY & set(params.keys()))
1252

    
1253
    if action == constants.DDM_REMOVE and params:
1254
      raise errors.OpPrereqError("Not accepting parameters on removal",
1255
                                 errors.ECODE_INVAL)
1256

    
1257
    result.append((action, idxno, params))
1258

    
1259
  return result
1260

    
1261

    
1262
def _ParseDiskSizes(mods):
1263
  """Parses disk sizes in parameters.
1264

1265
  """
1266
  for (action, _, params) in mods:
1267
    if params and constants.IDISK_SIZE in params:
1268
      params[constants.IDISK_SIZE] = \
1269
        utils.ParseUnit(params[constants.IDISK_SIZE])
1270
    elif action == constants.DDM_ADD:
1271
      raise errors.OpPrereqError("Missing required parameter 'size'",
1272
                                 errors.ECODE_INVAL)
1273

    
1274
  return mods
1275

    
1276

    
1277
def SetInstanceParams(opts, args):
1278
  """Modifies an instance.
1279

1280
  All parameters take effect only at the next restart of the instance.
1281

1282
  @param opts: the command line options selected by the user
1283
  @type args: list
1284
  @param args: should contain only one element, the instance name
1285
  @rtype: int
1286
  @return: the desired exit code
1287

1288
  """
1289
  if not (opts.nics or opts.disks or opts.disk_template or
1290
          opts.hvparams or opts.beparams or opts.os or opts.osparams or
1291
          opts.offline_inst or opts.online_inst or opts.runtime_mem):
1292
    ToStderr("Please give at least one of the parameters.")
1293
    return 1
1294

    
1295
  for param in opts.beparams:
1296
    if isinstance(opts.beparams[param], basestring):
1297
      if opts.beparams[param].lower() == "default":
1298
        opts.beparams[param] = constants.VALUE_DEFAULT
1299

    
1300
  utils.ForceDictType(opts.beparams, constants.BES_PARAMETER_COMPAT,
1301
                      allowed_values=[constants.VALUE_DEFAULT])
1302

    
1303
  for param in opts.hvparams:
1304
    if isinstance(opts.hvparams[param], basestring):
1305
      if opts.hvparams[param].lower() == "default":
1306
        opts.hvparams[param] = constants.VALUE_DEFAULT
1307

    
1308
  utils.ForceDictType(opts.hvparams, constants.HVS_PARAMETER_TYPES,
1309
                      allowed_values=[constants.VALUE_DEFAULT])
1310

    
1311
  nics = _ConvertNicDiskModifications(opts.nics)
1312
  disks = _ParseDiskSizes(_ConvertNicDiskModifications(opts.disks))
1313

    
1314
  if (opts.disk_template and
1315
      opts.disk_template in constants.DTS_INT_MIRROR and
1316
      not opts.node):
1317
    ToStderr("Changing the disk template to a mirrored one requires"
1318
             " specifying a secondary node")
1319
    return 1
1320

    
1321
  if opts.offline_inst:
1322
    offline = True
1323
  elif opts.online_inst:
1324
    offline = False
1325
  else:
1326
    offline = None
1327

    
1328
  op = opcodes.OpInstanceSetParams(instance_name=args[0],
1329
                                   nics=nics,
1330
                                   disks=disks,
1331
                                   disk_template=opts.disk_template,
1332
                                   remote_node=opts.node,
1333
                                   hvparams=opts.hvparams,
1334
                                   beparams=opts.beparams,
1335
                                   runtime_mem=opts.runtime_mem,
1336
                                   os_name=opts.os,
1337
                                   osparams=opts.osparams,
1338
                                   force_variant=opts.force_variant,
1339
                                   force=opts.force,
1340
                                   wait_for_sync=opts.wait_for_sync,
1341
                                   offline=offline,
1342
                                   conflicts_check=opts.conflicts_check,
1343
                                   ignore_ipolicy=opts.ignore_ipolicy)
1344

    
1345
  # even if here we process the result, we allow submit only
1346
  result = SubmitOrSend(op, opts)
1347

    
1348
  if result:
1349
    ToStdout("Modified instance %s", args[0])
1350
    for param, data in result:
1351
      ToStdout(" - %-5s -> %s", param, data)
1352
    ToStdout("Please don't forget that most parameters take effect"
1353
             " only at the next (re)start of the instance initiated by"
1354
             " ganeti; restarting from within the instance will"
1355
             " not be enough.")
1356
  return 0
1357

    
1358

    
1359
def ChangeGroup(opts, args):
1360
  """Moves an instance to another group.
1361

1362
  """
1363
  (instance_name, ) = args
1364

    
1365
  cl = GetClient()
1366

    
1367
  op = opcodes.OpInstanceChangeGroup(instance_name=instance_name,
1368
                                     iallocator=opts.iallocator,
1369
                                     target_groups=opts.to,
1370
                                     early_release=opts.early_release)
1371
  result = SubmitOrSend(op, opts, cl=cl)
1372

    
1373
  # Keep track of submitted jobs
1374
  jex = JobExecutor(cl=cl, opts=opts)
1375

    
1376
  for (status, job_id) in result[constants.JOB_IDS_KEY]:
1377
    jex.AddJobId(None, status, job_id)
1378

    
1379
  results = jex.GetResults()
1380
  bad_cnt = len([row for row in results if not row[0]])
1381
  if bad_cnt == 0:
1382
    ToStdout("Instance '%s' changed group successfully.", instance_name)
1383
    rcode = constants.EXIT_SUCCESS
1384
  else:
1385
    ToStdout("There were %s errors while changing group of instance '%s'.",
1386
             bad_cnt, instance_name)
1387
    rcode = constants.EXIT_FAILURE
1388

    
1389
  return rcode
1390

    
1391

    
1392
# multi-instance selection options
1393
m_force_multi = cli_option("--force-multiple", dest="force_multi",
1394
                           help="Do not ask for confirmation when more than"
1395
                           " one instance is affected",
1396
                           action="store_true", default=False)
1397

    
1398
m_pri_node_opt = cli_option("--primary", dest="multi_mode",
1399
                            help="Filter by nodes (primary only)",
1400
                            const=_EXPAND_NODES_PRI, action="store_const")
1401

    
1402
m_sec_node_opt = cli_option("--secondary", dest="multi_mode",
1403
                            help="Filter by nodes (secondary only)",
1404
                            const=_EXPAND_NODES_SEC, action="store_const")
1405

    
1406
m_node_opt = cli_option("--node", dest="multi_mode",
1407
                        help="Filter by nodes (primary and secondary)",
1408
                        const=_EXPAND_NODES_BOTH, action="store_const")
1409

    
1410
m_clust_opt = cli_option("--all", dest="multi_mode",
1411
                         help="Select all instances in the cluster",
1412
                         const=_EXPAND_CLUSTER, action="store_const")
1413

    
1414
m_inst_opt = cli_option("--instance", dest="multi_mode",
1415
                        help="Filter by instance name [default]",
1416
                        const=_EXPAND_INSTANCES, action="store_const")
1417

    
1418
m_node_tags_opt = cli_option("--node-tags", dest="multi_mode",
1419
                             help="Filter by node tag",
1420
                             const=_EXPAND_NODES_BOTH_BY_TAGS,
1421
                             action="store_const")
1422

    
1423
m_pri_node_tags_opt = cli_option("--pri-node-tags", dest="multi_mode",
1424
                                 help="Filter by primary node tag",
1425
                                 const=_EXPAND_NODES_PRI_BY_TAGS,
1426
                                 action="store_const")
1427

    
1428
m_sec_node_tags_opt = cli_option("--sec-node-tags", dest="multi_mode",
1429
                                 help="Filter by secondary node tag",
1430
                                 const=_EXPAND_NODES_SEC_BY_TAGS,
1431
                                 action="store_const")
1432

    
1433
m_inst_tags_opt = cli_option("--tags", dest="multi_mode",
1434
                             help="Filter by instance tag",
1435
                             const=_EXPAND_INSTANCES_BY_TAGS,
1436
                             action="store_const")
1437

    
1438
# this is defined separately due to readability only
1439
add_opts = [
1440
  NOSTART_OPT,
1441
  OS_OPT,
1442
  FORCE_VARIANT_OPT,
1443
  NO_INSTALL_OPT,
1444
  IGNORE_IPOLICY_OPT,
1445
  ]
1446

    
1447
commands = {
1448
  "add": (
1449
    AddInstance, [ArgHost(min=1, max=1)], COMMON_CREATE_OPTS + add_opts,
1450
    "[...] -t disk-type -n node[:secondary-node] -o os-type <name>",
1451
    "Creates and adds a new instance to the cluster"),
1452
  "batch-create": (
1453
    BatchCreate, [ArgFile(min=1, max=1)],
1454
    [DRY_RUN_OPT, PRIORITY_OPT, IALLOCATOR_OPT, SUBMIT_OPT],
1455
    "<instances.json>",
1456
    "Create a bunch of instances based on specs in the file."),
1457
  "console": (
1458
    ConnectToInstanceConsole, ARGS_ONE_INSTANCE,
1459
    [SHOWCMD_OPT, PRIORITY_OPT],
1460
    "[--show-cmd] <instance>", "Opens a console on the specified instance"),
1461
  "failover": (
1462
    FailoverInstance, ARGS_ONE_INSTANCE,
1463
    [FORCE_OPT, IGNORE_CONSIST_OPT, SUBMIT_OPT, SHUTDOWN_TIMEOUT_OPT,
1464
     DRY_RUN_OPT, PRIORITY_OPT, DST_NODE_OPT, IALLOCATOR_OPT,
1465
     IGNORE_IPOLICY_OPT],
1466
    "[-f] <instance>", "Stops the instance, changes its primary node and"
1467
    " (if it was originally running) starts it on the new node"
1468
    " (the secondary for mirrored instances or any node"
1469
    " for shared storage)."),
1470
  "migrate": (
1471
    MigrateInstance, ARGS_ONE_INSTANCE,
1472
    [FORCE_OPT, NONLIVE_OPT, MIGRATION_MODE_OPT, CLEANUP_OPT, DRY_RUN_OPT,
1473
     PRIORITY_OPT, DST_NODE_OPT, IALLOCATOR_OPT, ALLOW_FAILOVER_OPT,
1474
     IGNORE_IPOLICY_OPT, NORUNTIME_CHGS_OPT, SUBMIT_OPT],
1475
    "[-f] <instance>", "Migrate instance to its secondary node"
1476
    " (only for mirrored instances)"),
1477
  "move": (
1478
    MoveInstance, ARGS_ONE_INSTANCE,
1479
    [FORCE_OPT, SUBMIT_OPT, SINGLE_NODE_OPT, SHUTDOWN_TIMEOUT_OPT,
1480
     DRY_RUN_OPT, PRIORITY_OPT, IGNORE_CONSIST_OPT, IGNORE_IPOLICY_OPT],
1481
    "[-f] <instance>", "Move instance to an arbitrary node"
1482
    " (only for instances of type file and lv)"),
1483
  "info": (
1484
    ShowInstanceConfig, ARGS_MANY_INSTANCES,
1485
    [STATIC_OPT, ALL_OPT, ROMAN_OPT, PRIORITY_OPT],
1486
    "[-s] {--all | <instance>...}",
1487
    "Show information on the specified instance(s)"),
1488
  "list": (
1489
    ListInstances, ARGS_MANY_INSTANCES,
1490
    [NOHDR_OPT, SEP_OPT, USEUNITS_OPT, FIELDS_OPT, VERBOSE_OPT,
1491
     FORCE_FILTER_OPT],
1492
    "[<instance>...]",
1493
    "Lists the instances and their status. The available fields can be shown"
1494
    " using the \"list-fields\" command (see the man page for details)."
1495
    " The default field list is (in order): %s." %
1496
    utils.CommaJoin(_LIST_DEF_FIELDS),
1497
    ),
1498
  "list-fields": (
1499
    ListInstanceFields, [ArgUnknown()],
1500
    [NOHDR_OPT, SEP_OPT],
1501
    "[fields...]",
1502
    "Lists all available fields for instances"),
1503
  "reinstall": (
1504
    ReinstallInstance, [ArgInstance()],
1505
    [FORCE_OPT, OS_OPT, FORCE_VARIANT_OPT, m_force_multi, m_node_opt,
1506
     m_pri_node_opt, m_sec_node_opt, m_clust_opt, m_inst_opt, m_node_tags_opt,
1507
     m_pri_node_tags_opt, m_sec_node_tags_opt, m_inst_tags_opt, SELECT_OS_OPT,
1508
     SUBMIT_OPT, DRY_RUN_OPT, PRIORITY_OPT, OSPARAMS_OPT],
1509
    "[-f] <instance>", "Reinstall a stopped instance"),
1510
  "remove": (
1511
    RemoveInstance, ARGS_ONE_INSTANCE,
1512
    [FORCE_OPT, SHUTDOWN_TIMEOUT_OPT, IGNORE_FAILURES_OPT, SUBMIT_OPT,
1513
     DRY_RUN_OPT, PRIORITY_OPT],
1514
    "[-f] <instance>", "Shuts down the instance and removes it"),
1515
  "rename": (
1516
    RenameInstance,
1517
    [ArgInstance(min=1, max=1), ArgHost(min=1, max=1)],
1518
    [NOIPCHECK_OPT, NONAMECHECK_OPT, SUBMIT_OPT, DRY_RUN_OPT, PRIORITY_OPT],
1519
    "<instance> <new_name>", "Rename the instance"),
1520
  "replace-disks": (
1521
    ReplaceDisks, ARGS_ONE_INSTANCE,
1522
    [AUTO_REPLACE_OPT, DISKIDX_OPT, IALLOCATOR_OPT, EARLY_RELEASE_OPT,
1523
     NEW_SECONDARY_OPT, ON_PRIMARY_OPT, ON_SECONDARY_OPT, SUBMIT_OPT,
1524
     DRY_RUN_OPT, PRIORITY_OPT, IGNORE_IPOLICY_OPT],
1525
    "[-s|-p|-a|-n NODE|-I NAME] <instance>",
1526
    "Replaces disks for the instance"),
1527
  "modify": (
1528
    SetInstanceParams, ARGS_ONE_INSTANCE,
1529
    [BACKEND_OPT, DISK_OPT, FORCE_OPT, HVOPTS_OPT, NET_OPT, SUBMIT_OPT,
1530
     DISK_TEMPLATE_OPT, SINGLE_NODE_OPT, OS_OPT, FORCE_VARIANT_OPT,
1531
     OSPARAMS_OPT, DRY_RUN_OPT, PRIORITY_OPT, NWSYNC_OPT, OFFLINE_INST_OPT,
1532
     ONLINE_INST_OPT, IGNORE_IPOLICY_OPT, RUNTIME_MEM_OPT,
1533
     NOCONFLICTSCHECK_OPT],
1534
    "<instance>", "Alters the parameters of an instance"),
1535
  "shutdown": (
1536
    GenericManyOps("shutdown", _ShutdownInstance), [ArgInstance()],
1537
    [FORCE_OPT, m_node_opt, m_pri_node_opt, m_sec_node_opt, m_clust_opt,
1538
     m_node_tags_opt, m_pri_node_tags_opt, m_sec_node_tags_opt,
1539
     m_inst_tags_opt, m_inst_opt, m_force_multi, TIMEOUT_OPT, SUBMIT_OPT,
1540
     DRY_RUN_OPT, PRIORITY_OPT, IGNORE_OFFLINE_OPT, NO_REMEMBER_OPT],
1541
    "<instance>", "Stops an instance"),
1542
  "startup": (
1543
    GenericManyOps("startup", _StartupInstance), [ArgInstance()],
1544
    [FORCE_OPT, m_force_multi, m_node_opt, m_pri_node_opt, m_sec_node_opt,
1545
     m_node_tags_opt, m_pri_node_tags_opt, m_sec_node_tags_opt,
1546
     m_inst_tags_opt, m_clust_opt, m_inst_opt, SUBMIT_OPT, HVOPTS_OPT,
1547
     BACKEND_OPT, DRY_RUN_OPT, PRIORITY_OPT, IGNORE_OFFLINE_OPT,
1548
     NO_REMEMBER_OPT, STARTUP_PAUSED_OPT],
1549
    "<instance>", "Starts an instance"),
1550
  "reboot": (
1551
    GenericManyOps("reboot", _RebootInstance), [ArgInstance()],
1552
    [m_force_multi, REBOOT_TYPE_OPT, IGNORE_SECONDARIES_OPT, m_node_opt,
1553
     m_pri_node_opt, m_sec_node_opt, m_clust_opt, m_inst_opt, SUBMIT_OPT,
1554
     m_node_tags_opt, m_pri_node_tags_opt, m_sec_node_tags_opt,
1555
     m_inst_tags_opt, SHUTDOWN_TIMEOUT_OPT, DRY_RUN_OPT, PRIORITY_OPT],
1556
    "<instance>", "Reboots an instance"),
1557
  "activate-disks": (
1558
    ActivateDisks, ARGS_ONE_INSTANCE,
1559
    [SUBMIT_OPT, IGNORE_SIZE_OPT, PRIORITY_OPT, WFSYNC_OPT],
1560
    "<instance>", "Activate an instance's disks"),
1561
  "deactivate-disks": (
1562
    DeactivateDisks, ARGS_ONE_INSTANCE,
1563
    [FORCE_OPT, SUBMIT_OPT, DRY_RUN_OPT, PRIORITY_OPT],
1564
    "[-f] <instance>", "Deactivate an instance's disks"),
1565
  "recreate-disks": (
1566
    RecreateDisks, ARGS_ONE_INSTANCE,
1567
    [SUBMIT_OPT, DISK_OPT, NODE_PLACEMENT_OPT, DRY_RUN_OPT, PRIORITY_OPT,
1568
     IALLOCATOR_OPT],
1569
    "<instance>", "Recreate an instance's disks"),
1570
  "grow-disk": (
1571
    GrowDisk,
1572
    [ArgInstance(min=1, max=1), ArgUnknown(min=1, max=1),
1573
     ArgUnknown(min=1, max=1)],
1574
    [SUBMIT_OPT, NWSYNC_OPT, DRY_RUN_OPT, PRIORITY_OPT, ABSOLUTE_OPT],
1575
    "<instance> <disk> <size>", "Grow an instance's disk"),
1576
  "change-group": (
1577
    ChangeGroup, ARGS_ONE_INSTANCE,
1578
    [TO_GROUP_OPT, IALLOCATOR_OPT, EARLY_RELEASE_OPT, PRIORITY_OPT, SUBMIT_OPT],
1579
    "[-I <iallocator>] [--to <group>]", "Change group of instance"),
1580
  "list-tags": (
1581
    ListTags, ARGS_ONE_INSTANCE, [],
1582
    "<instance_name>", "List the tags of the given instance"),
1583
  "add-tags": (
1584
    AddTags, [ArgInstance(min=1, max=1), ArgUnknown()],
1585
    [TAG_SRC_OPT, PRIORITY_OPT, SUBMIT_OPT],
1586
    "<instance_name> tag...", "Add tags to the given instance"),
1587
  "remove-tags": (
1588
    RemoveTags, [ArgInstance(min=1, max=1), ArgUnknown()],
1589
    [TAG_SRC_OPT, PRIORITY_OPT, SUBMIT_OPT],
1590
    "<instance_name> tag...", "Remove tags from given instance"),
1591
  }
1592

    
1593
#: dictionary with aliases for commands
1594
aliases = {
1595
  "start": "startup",
1596
  "stop": "shutdown",
1597
  "show": "info",
1598
  }
1599

    
1600

    
1601
def Main():
1602
  return GenericMain(commands, aliases=aliases,
1603
                     override={"tag_type": constants.TAG_INSTANCE},
1604
                     env_override=_ENV_OVERRIDE)