Statistics
| Branch: | Tag: | Revision:

root / lib / client / gnt_instance.py @ 653bc0f1

History | View | Annotate | Download (57.1 kB)

1 e792102d Michael Hanselmann
#
2 a8083063 Iustin Pop
#
3 a8083063 Iustin Pop
4 ef8270dc Iustin Pop
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Google Inc.
5 a8083063 Iustin Pop
#
6 a8083063 Iustin Pop
# This program is free software; you can redistribute it and/or modify
7 a8083063 Iustin Pop
# it under the terms of the GNU General Public License as published by
8 a8083063 Iustin Pop
# the Free Software Foundation; either version 2 of the License, or
9 a8083063 Iustin Pop
# (at your option) any later version.
10 a8083063 Iustin Pop
#
11 a8083063 Iustin Pop
# This program is distributed in the hope that it will be useful, but
12 a8083063 Iustin Pop
# WITHOUT ANY WARRANTY; without even the implied warranty of
13 a8083063 Iustin Pop
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 a8083063 Iustin Pop
# General Public License for more details.
15 a8083063 Iustin Pop
#
16 a8083063 Iustin Pop
# You should have received a copy of the GNU General Public License
17 a8083063 Iustin Pop
# along with this program; if not, write to the Free Software
18 a8083063 Iustin Pop
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 a8083063 Iustin Pop
# 02110-1301, USA.
20 a8083063 Iustin Pop
21 7260cfbe Iustin Pop
"""Instance related commands"""
22 a8083063 Iustin Pop
23 b459a848 Andrea Spadaccini
# pylint: disable=W0401,W0614,C0103
24 2f79bd34 Iustin Pop
# W0401: Wildcard import ganeti.cli
25 2f79bd34 Iustin Pop
# W0614: Unused import %s from wildcard import (since we need cli)
26 7260cfbe Iustin Pop
# C0103: Invalid name gnt-instance
27 2f79bd34 Iustin Pop
28 83d4ba5e René Nussbaumer
import copy
29 312ac745 Iustin Pop
import itertools
30 0d0e9090 René Nussbaumer
import simplejson
31 25ce3ec4 Michael Hanselmann
import logging
32 a8083063 Iustin Pop
33 a8083063 Iustin Pop
from ganeti.cli import *
34 a8083063 Iustin Pop
from ganeti import opcodes
35 a8083063 Iustin Pop
from ganeti import constants
36 e2736e40 Guido Trotter
from ganeti import compat
37 a8083063 Iustin Pop
from ganeti import utils
38 312ac745 Iustin Pop
from ganeti import errors
39 a744b676 Manuel Franceschini
from ganeti import netutils
40 25ce3ec4 Michael Hanselmann
from ganeti import ssh
41 25ce3ec4 Michael Hanselmann
from ganeti import objects
42 735e1318 Michael Hanselmann
from ganeti import ht
43 312ac745 Iustin Pop
44 312ac745 Iustin Pop
45 c20efaa8 Michael Hanselmann
_EXPAND_CLUSTER = "cluster"
46 c20efaa8 Michael Hanselmann
_EXPAND_NODES_BOTH = "nodes"
47 c20efaa8 Michael Hanselmann
_EXPAND_NODES_PRI = "nodes-pri"
48 c20efaa8 Michael Hanselmann
_EXPAND_NODES_SEC = "nodes-sec"
49 c20efaa8 Michael Hanselmann
_EXPAND_NODES_BOTH_BY_TAGS = "nodes-by-tags"
50 c20efaa8 Michael Hanselmann
_EXPAND_NODES_PRI_BY_TAGS = "nodes-pri-by-tags"
51 c20efaa8 Michael Hanselmann
_EXPAND_NODES_SEC_BY_TAGS = "nodes-sec-by-tags"
52 c20efaa8 Michael Hanselmann
_EXPAND_INSTANCES = "instances"
53 c20efaa8 Michael Hanselmann
_EXPAND_INSTANCES_BY_TAGS = "instances-by-tags"
54 c20efaa8 Michael Hanselmann
55 b8028dcf Michael Hanselmann
_EXPAND_NODES_TAGS_MODES = compat.UniqueFrozenset([
56 c20efaa8 Michael Hanselmann
  _EXPAND_NODES_BOTH_BY_TAGS,
57 c20efaa8 Michael Hanselmann
  _EXPAND_NODES_PRI_BY_TAGS,
58 c20efaa8 Michael Hanselmann
  _EXPAND_NODES_SEC_BY_TAGS,
59 c20efaa8 Michael Hanselmann
  ])
60 312ac745 Iustin Pop
61 7232c04c Iustin Pop
#: default list of options for L{ListInstances}
62 48c4dfa8 Iustin Pop
_LIST_DEF_FIELDS = [
63 e69d05fd Iustin Pop
  "name", "hypervisor", "os", "pnode", "status", "oper_ram",
64 48c4dfa8 Iustin Pop
  ]
65 48c4dfa8 Iustin Pop
66 a71f835e Michael Hanselmann
_MISSING = object()
67 b8028dcf Michael Hanselmann
_ENV_OVERRIDE = compat.UniqueFrozenset(["list"])
68 ef9fa5b9 René Nussbaumer
69 b0a8e8c2 René Nussbaumer
_INST_DATA_VAL = ht.TListOf(ht.TDict)
70 b0a8e8c2 René Nussbaumer
71 ef9fa5b9 René Nussbaumer
72 479636a3 Iustin Pop
def _ExpandMultiNames(mode, names, client=None):
73 312ac745 Iustin Pop
  """Expand the given names using the passed mode.
74 312ac745 Iustin Pop

75 c20efaa8 Michael Hanselmann
  For _EXPAND_CLUSTER, all instances will be returned. For
76 c20efaa8 Michael Hanselmann
  _EXPAND_NODES_PRI/SEC, all instances having those nodes as
77 c20efaa8 Michael Hanselmann
  primary/secondary will be returned. For _EXPAND_NODES_BOTH, all
78 312ac745 Iustin Pop
  instances having those nodes as either primary or secondary will be
79 c20efaa8 Michael Hanselmann
  returned. For _EXPAND_INSTANCES, the given instances will be
80 312ac745 Iustin Pop
  returned.
81 312ac745 Iustin Pop

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

94 312ac745 Iustin Pop
  """
95 b459a848 Andrea Spadaccini
  # pylint: disable=W0142
96 39dfd93e René Nussbaumer
97 479636a3 Iustin Pop
  if client is None:
98 981224e9 Helga Velroyen
    client = GetClient(query=True)
99 c20efaa8 Michael Hanselmann
  if mode == _EXPAND_CLUSTER:
100 312ac745 Iustin Pop
    if names:
101 debac808 Iustin Pop
      raise errors.OpPrereqError("Cluster filter mode takes no arguments",
102 debac808 Iustin Pop
                                 errors.ECODE_INVAL)
103 ec79568d Iustin Pop
    idata = client.QueryInstances([], ["name"], False)
104 312ac745 Iustin Pop
    inames = [row[0] for row in idata]
105 312ac745 Iustin Pop
106 c20efaa8 Michael Hanselmann
  elif (mode in _EXPAND_NODES_TAGS_MODES or
107 c20efaa8 Michael Hanselmann
        mode in (_EXPAND_NODES_BOTH, _EXPAND_NODES_PRI, _EXPAND_NODES_SEC)):
108 c20efaa8 Michael Hanselmann
    if mode in _EXPAND_NODES_TAGS_MODES:
109 39dfd93e René Nussbaumer
      if not names:
110 39dfd93e René Nussbaumer
        raise errors.OpPrereqError("No node tags passed", errors.ECODE_INVAL)
111 39dfd93e René Nussbaumer
      ndata = client.QueryNodes([], ["name", "pinst_list",
112 39dfd93e René Nussbaumer
                                     "sinst_list", "tags"], False)
113 39dfd93e René Nussbaumer
      ndata = [row for row in ndata if set(row[3]).intersection(names)]
114 39dfd93e René Nussbaumer
    else:
115 39dfd93e René Nussbaumer
      if not names:
116 39dfd93e René Nussbaumer
        raise errors.OpPrereqError("No node names passed", errors.ECODE_INVAL)
117 39dfd93e René Nussbaumer
      ndata = client.QueryNodes(names, ["name", "pinst_list", "sinst_list"],
118 5ae4945a Iustin Pop
                                False)
119 39dfd93e René Nussbaumer
120 312ac745 Iustin Pop
    ipri = [row[1] for row in ndata]
121 312ac745 Iustin Pop
    pri_names = list(itertools.chain(*ipri))
122 312ac745 Iustin Pop
    isec = [row[2] for row in ndata]
123 312ac745 Iustin Pop
    sec_names = list(itertools.chain(*isec))
124 c20efaa8 Michael Hanselmann
    if mode in (_EXPAND_NODES_BOTH, _EXPAND_NODES_BOTH_BY_TAGS):
125 312ac745 Iustin Pop
      inames = pri_names + sec_names
126 c20efaa8 Michael Hanselmann
    elif mode in (_EXPAND_NODES_PRI, _EXPAND_NODES_PRI_BY_TAGS):
127 312ac745 Iustin Pop
      inames = pri_names
128 c20efaa8 Michael Hanselmann
    elif mode in (_EXPAND_NODES_SEC, _EXPAND_NODES_SEC_BY_TAGS):
129 312ac745 Iustin Pop
      inames = sec_names
130 312ac745 Iustin Pop
    else:
131 312ac745 Iustin Pop
      raise errors.ProgrammerError("Unhandled shutdown type")
132 c20efaa8 Michael Hanselmann
  elif mode == _EXPAND_INSTANCES:
133 312ac745 Iustin Pop
    if not names:
134 debac808 Iustin Pop
      raise errors.OpPrereqError("No instance names passed",
135 debac808 Iustin Pop
                                 errors.ECODE_INVAL)
136 ec79568d Iustin Pop
    idata = client.QueryInstances(names, ["name"], False)
137 312ac745 Iustin Pop
    inames = [row[0] for row in idata]
138 c20efaa8 Michael Hanselmann
  elif mode == _EXPAND_INSTANCES_BY_TAGS:
139 39dfd93e René Nussbaumer
    if not names:
140 39dfd93e René Nussbaumer
      raise errors.OpPrereqError("No instance tags passed",
141 39dfd93e René Nussbaumer
                                 errors.ECODE_INVAL)
142 39dfd93e René Nussbaumer
    idata = client.QueryInstances([], ["name", "tags"], False)
143 39dfd93e René Nussbaumer
    inames = [row[0] for row in idata if set(row[1]).intersection(names)]
144 312ac745 Iustin Pop
  else:
145 debac808 Iustin Pop
    raise errors.OpPrereqError("Unknown mode '%s'" % mode, errors.ECODE_INVAL)
146 312ac745 Iustin Pop
147 312ac745 Iustin Pop
  return inames
148 a8083063 Iustin Pop
149 a8083063 Iustin Pop
150 a76f0c4a Iustin Pop
def _EnsureInstancesExist(client, names):
151 a76f0c4a Iustin Pop
  """Check for and ensure the given instance names exist.
152 a76f0c4a Iustin Pop

153 a76f0c4a Iustin Pop
  This function will raise an OpPrereqError in case they don't
154 a76f0c4a Iustin Pop
  exist. Otherwise it will exit cleanly.
155 a76f0c4a Iustin Pop

156 f2fd87d7 Iustin Pop
  @type client: L{ganeti.luxi.Client}
157 a76f0c4a Iustin Pop
  @param client: the client to use for the query
158 a76f0c4a Iustin Pop
  @type names: list
159 a76f0c4a Iustin Pop
  @param names: the list of instance names to query
160 a76f0c4a Iustin Pop
  @raise errors.OpPrereqError: in case any instance is missing
161 a76f0c4a Iustin Pop

162 a76f0c4a Iustin Pop
  """
163 f2af0bec Iustin Pop
  # TODO: change LUInstanceQuery to that it actually returns None
164 a76f0c4a Iustin Pop
  # instead of raising an exception, or devise a better mechanism
165 ec79568d Iustin Pop
  result = client.QueryInstances(names, ["name"], False)
166 a76f0c4a Iustin Pop
  for orig_name, row in zip(names, result):
167 a76f0c4a Iustin Pop
    if row[0] is None:
168 debac808 Iustin Pop
      raise errors.OpPrereqError("Instance '%s' does not exist" % orig_name,
169 debac808 Iustin Pop
                                 errors.ECODE_NOENT)
170 a76f0c4a Iustin Pop
171 a76f0c4a Iustin Pop
172 1c5945b6 Iustin Pop
def GenericManyOps(operation, fn):
173 1c5945b6 Iustin Pop
  """Generic multi-instance operations.
174 1c5945b6 Iustin Pop

175 1c5945b6 Iustin Pop
  The will return a wrapper that processes the options and arguments
176 1c5945b6 Iustin Pop
  given, and uses the passed function to build the opcode needed for
177 1c5945b6 Iustin Pop
  the specific operation. Thus all the generic loop/confirmation code
178 1c5945b6 Iustin Pop
  is abstracted into this function.
179 1c5945b6 Iustin Pop

180 1c5945b6 Iustin Pop
  """
181 1c5945b6 Iustin Pop
  def realfn(opts, args):
182 1c5945b6 Iustin Pop
    if opts.multi_mode is None:
183 c20efaa8 Michael Hanselmann
      opts.multi_mode = _EXPAND_INSTANCES
184 1c5945b6 Iustin Pop
    cl = GetClient()
185 981224e9 Helga Velroyen
    qcl = GetClient(query=True)
186 981224e9 Helga Velroyen
    inames = _ExpandMultiNames(opts.multi_mode, args, client=qcl)
187 1c5945b6 Iustin Pop
    if not inames:
188 c20efaa8 Michael Hanselmann
      if opts.multi_mode == _EXPAND_CLUSTER:
189 c37bb2c6 Stephen Shirley
        ToStdout("Cluster is empty, no instances to shutdown")
190 c37bb2c6 Stephen Shirley
        return 0
191 1c5945b6 Iustin Pop
      raise errors.OpPrereqError("Selection filter does not match"
192 debac808 Iustin Pop
                                 " any instances", errors.ECODE_INVAL)
193 c20efaa8 Michael Hanselmann
    multi_on = opts.multi_mode != _EXPAND_INSTANCES or len(inames) > 1
194 1c5945b6 Iustin Pop
    if not (opts.force_multi or not multi_on
195 25bd815c René Nussbaumer
            or ConfirmOperation(inames, "instances", operation)):
196 1c5945b6 Iustin Pop
      return 1
197 cb573a31 Iustin Pop
    jex = JobExecutor(verbose=multi_on, cl=cl, opts=opts)
198 1c5945b6 Iustin Pop
    for name in inames:
199 1c5945b6 Iustin Pop
      op = fn(name, opts)
200 1c5945b6 Iustin Pop
      jex.QueueJob(name, op)
201 b4e68848 Iustin Pop
    results = jex.WaitOrShow(not opts.submit_only)
202 b4e68848 Iustin Pop
    rcode = compat.all(row[0] for row in results)
203 b4e68848 Iustin Pop
    return int(not rcode)
204 1c5945b6 Iustin Pop
  return realfn
205 1c5945b6 Iustin Pop
206 1c5945b6 Iustin Pop
207 a8083063 Iustin Pop
def ListInstances(opts, args):
208 f5abe9bd Oleksiy Mishchenko
  """List instances and their properties.
209 a8083063 Iustin Pop

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

216 a8083063 Iustin Pop
  """
217 a4ebd726 Michael Hanselmann
  selected_fields = ParseFields(opts.output, _LIST_DEF_FIELDS)
218 a8083063 Iustin Pop
219 b82c5ff5 Michael Hanselmann
  fmtoverride = dict.fromkeys(["tags", "disk.sizes", "nic.macs", "nic.ips",
220 b82c5ff5 Michael Hanselmann
                               "nic.modes", "nic.links", "nic.bridges",
221 d4117a72 Apollon Oikonomopoulos
                               "nic.networks",
222 fab9573b Michael Hanselmann
                               "snodes", "snodes.group", "snodes.group.uuid"],
223 b82c5ff5 Michael Hanselmann
                              (lambda value: ",".join(str(item)
224 b82c5ff5 Michael Hanselmann
                                                      for item in value),
225 b82c5ff5 Michael Hanselmann
                               False))
226 a8083063 Iustin Pop
227 e96c0a5c Hrvoje Ribicic
  cl = GetClient(query=True)
228 e96c0a5c Hrvoje Ribicic
229 b82c5ff5 Michael Hanselmann
  return GenericList(constants.QR_INSTANCE, selected_fields, args, opts.units,
230 b82c5ff5 Michael Hanselmann
                     opts.separator, not opts.no_headers,
231 87e87959 Michael Hanselmann
                     format_override=fmtoverride, verbose=opts.verbose,
232 e96c0a5c Hrvoje Ribicic
                     force_filter=opts.force_filter, cl=cl)
233 b82c5ff5 Michael Hanselmann
234 b82c5ff5 Michael Hanselmann
235 b82c5ff5 Michael Hanselmann
def ListInstanceFields(opts, args):
236 b82c5ff5 Michael Hanselmann
  """List instance fields.
237 b82c5ff5 Michael Hanselmann

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

244 b82c5ff5 Michael Hanselmann
  """
245 b82c5ff5 Michael Hanselmann
  return GenericListFields(constants.QR_INSTANCE, args, opts.separator,
246 b82c5ff5 Michael Hanselmann
                           not opts.no_headers)
247 a8083063 Iustin Pop
248 a8083063 Iustin Pop
249 a8083063 Iustin Pop
def AddInstance(opts, args):
250 a8083063 Iustin Pop
  """Add an instance to the cluster.
251 a8083063 Iustin Pop

252 d77490c5 Iustin Pop
  This is just a wrapper over GenericInstanceCreate.
253 a8083063 Iustin Pop

254 a8083063 Iustin Pop
  """
255 d77490c5 Iustin Pop
  return GenericInstanceCreate(constants.INSTANCE_CREATE, opts, args)
256 a8083063 Iustin Pop
257 a8083063 Iustin Pop
258 0d0e9090 René Nussbaumer
def BatchCreate(opts, args):
259 7232c04c Iustin Pop
  """Create instances using a definition file.
260 7232c04c Iustin Pop

261 b0a8e8c2 René Nussbaumer
  This function reads a json file with L{opcodes.OpInstanceCreate}
262 b0a8e8c2 René Nussbaumer
  serialisations.
263 7232c04c Iustin Pop

264 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
265 7232c04c Iustin Pop
  @type args: list
266 7232c04c Iustin Pop
  @param args: should contain one element, the json filename
267 7232c04c Iustin Pop
  @rtype: int
268 7232c04c Iustin Pop
  @return: the desired exit code
269 0d0e9090 René Nussbaumer

270 0d0e9090 René Nussbaumer
  """
271 b0a8e8c2 René Nussbaumer
  (json_filename,) = args
272 b0a8e8c2 René Nussbaumer
  cl = GetClient()
273 0d0e9090 René Nussbaumer
274 0d0e9090 René Nussbaumer
  try:
275 13998ef2 Michael Hanselmann
    instance_data = simplejson.loads(utils.ReadFile(json_filename))
276 b459a848 Andrea Spadaccini
  except Exception, err: # pylint: disable=W0703
277 4082e6f9 Iustin Pop
    ToStderr("Can't parse the instance definition file: %s" % str(err))
278 4082e6f9 Iustin Pop
    return 1
279 0d0e9090 René Nussbaumer
280 b0a8e8c2 René Nussbaumer
  if not _INST_DATA_VAL(instance_data):
281 b0a8e8c2 René Nussbaumer
    ToStderr("The instance definition file is not %s" % _INST_DATA_VAL)
282 fe7c59d5 Guido Trotter
    return 1
283 fe7c59d5 Guido Trotter
284 b0a8e8c2 René Nussbaumer
  instances = []
285 b0a8e8c2 René Nussbaumer
  possible_params = set(opcodes.OpInstanceCreate.GetAllSlots())
286 b0a8e8c2 René Nussbaumer
  for (idx, inst) in enumerate(instance_data):
287 b0a8e8c2 René Nussbaumer
    unknown = set(inst.keys()) - possible_params
288 d4dd4b74 Iustin Pop
289 b0a8e8c2 René Nussbaumer
    if unknown:
290 b0a8e8c2 René Nussbaumer
      # TODO: Suggest closest match for more user friendly experience
291 3779121c René Nussbaumer
      raise errors.OpPrereqError("Unknown fields in definition %s: %s" %
292 3779121c René Nussbaumer
                                 (idx, utils.CommaJoin(unknown)),
293 3779121c René Nussbaumer
                                 errors.ECODE_INVAL)
294 0d0e9090 René Nussbaumer
295 3779121c René Nussbaumer
    op = opcodes.OpInstanceCreate(**inst) # pylint: disable=W0142
296 b0a8e8c2 René Nussbaumer
    op.Validate(False)
297 b0a8e8c2 René Nussbaumer
    instances.append(op)
298 0d0e9090 René Nussbaumer
299 b0a8e8c2 René Nussbaumer
  op = opcodes.OpInstanceMultiAlloc(iallocator=opts.iallocator,
300 b0a8e8c2 René Nussbaumer
                                    instances=instances)
301 b0a8e8c2 René Nussbaumer
  result = SubmitOrSend(op, opts, cl=cl)
302 0d0e9090 René Nussbaumer
303 b0a8e8c2 René Nussbaumer
  # Keep track of submitted jobs
304 b0a8e8c2 René Nussbaumer
  jex = JobExecutor(cl=cl, opts=opts)
305 b0a8e8c2 René Nussbaumer
306 b0a8e8c2 René Nussbaumer
  for (status, job_id) in result[constants.JOB_IDS_KEY]:
307 b0a8e8c2 René Nussbaumer
    jex.AddJobId(None, status, job_id)
308 b0a8e8c2 René Nussbaumer
309 b0a8e8c2 René Nussbaumer
  results = jex.GetResults()
310 b0a8e8c2 René Nussbaumer
  bad_cnt = len([row for row in results if not row[0]])
311 b0a8e8c2 René Nussbaumer
  if bad_cnt == 0:
312 b0a8e8c2 René Nussbaumer
    ToStdout("All instances created successfully.")
313 b0a8e8c2 René Nussbaumer
    rcode = constants.EXIT_SUCCESS
314 b0a8e8c2 René Nussbaumer
  else:
315 b0a8e8c2 René Nussbaumer
    ToStdout("There were %s errors during the creation.", bad_cnt)
316 b0a8e8c2 René Nussbaumer
    rcode = constants.EXIT_FAILURE
317 b0a8e8c2 René Nussbaumer
318 b0a8e8c2 René Nussbaumer
  return rcode
319 0d0e9090 René Nussbaumer
320 0d0e9090 René Nussbaumer
321 fe7b0351 Michael Hanselmann
def ReinstallInstance(opts, args):
322 fe7b0351 Michael Hanselmann
  """Reinstall an instance.
323 fe7b0351 Michael Hanselmann

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

331 fe7b0351 Michael Hanselmann
  """
332 55efe6da Iustin Pop
  # first, compute the desired name list
333 55efe6da Iustin Pop
  if opts.multi_mode is None:
334 c20efaa8 Michael Hanselmann
    opts.multi_mode = _EXPAND_INSTANCES
335 55efe6da Iustin Pop
336 55efe6da Iustin Pop
  inames = _ExpandMultiNames(opts.multi_mode, args)
337 55efe6da Iustin Pop
  if not inames:
338 debac808 Iustin Pop
    raise errors.OpPrereqError("Selection filter does not match any instances",
339 debac808 Iustin Pop
                               errors.ECODE_INVAL)
340 fe7b0351 Michael Hanselmann
341 55efe6da Iustin Pop
  # second, if requested, ask for an OS
342 20e23543 Alexander Schreiber
  if opts.select_os is True:
343 da2d02e7 Iustin Pop
    op = opcodes.OpOsDiagnose(output_fields=["name", "variants"], names=[])
344 400ca2f7 Iustin Pop
    result = SubmitOpCode(op, opts=opts)
345 20e23543 Alexander Schreiber
346 20e23543 Alexander Schreiber
    if not result:
347 3a24c527 Iustin Pop
      ToStdout("Can't get the OS list")
348 20e23543 Alexander Schreiber
      return 1
349 20e23543 Alexander Schreiber
350 3a24c527 Iustin Pop
    ToStdout("Available OS templates:")
351 20e23543 Alexander Schreiber
    number = 0
352 20e23543 Alexander Schreiber
    choices = []
353 d22dfef7 Iustin Pop
    for (name, variants) in result:
354 d22dfef7 Iustin Pop
      for entry in CalculateOSNames(name, variants):
355 d22dfef7 Iustin Pop
        ToStdout("%3s: %s", number, entry)
356 d22dfef7 Iustin Pop
        choices.append(("%s" % number, entry, entry))
357 d22dfef7 Iustin Pop
        number += 1
358 20e23543 Alexander Schreiber
359 d0c8c01d Iustin Pop
    choices.append(("x", "exit", "Exit gnt-instance reinstall"))
360 949bdabe Iustin Pop
    selected = AskUser("Enter OS template number (or x to abort):",
361 20e23543 Alexander Schreiber
                       choices)
362 20e23543 Alexander Schreiber
363 d0c8c01d Iustin Pop
    if selected == "exit":
364 55efe6da Iustin Pop
      ToStderr("User aborted reinstall, exiting")
365 20e23543 Alexander Schreiber
      return 1
366 20e23543 Alexander Schreiber
367 2f79bd34 Iustin Pop
    os_name = selected
368 f86426f5 Iustin Pop
    os_msg = "change the OS to '%s'" % selected
369 20e23543 Alexander Schreiber
  else:
370 2f79bd34 Iustin Pop
    os_name = opts.os
371 f86426f5 Iustin Pop
    if opts.os is not None:
372 f86426f5 Iustin Pop
      os_msg = "change the OS to '%s'" % os_name
373 f86426f5 Iustin Pop
    else:
374 f86426f5 Iustin Pop
      os_msg = "keep the same OS"
375 20e23543 Alexander Schreiber
376 297ddce9 Iustin Pop
  # third, get confirmation: multi-reinstall requires --force-multi,
377 297ddce9 Iustin Pop
  # single-reinstall either --force or --force-multi (--force-multi is
378 297ddce9 Iustin Pop
  # a stronger --force)
379 c20efaa8 Michael Hanselmann
  multi_on = opts.multi_mode != _EXPAND_INSTANCES or len(inames) > 1
380 55efe6da Iustin Pop
  if multi_on:
381 f86426f5 Iustin Pop
    warn_msg = ("Note: this will remove *all* data for the"
382 f86426f5 Iustin Pop
                " below instances! It will %s.\n" % os_msg)
383 297ddce9 Iustin Pop
    if not (opts.force_multi or
384 25bd815c René Nussbaumer
            ConfirmOperation(inames, "instances", "reinstall", extra=warn_msg)):
385 fe7b0351 Michael Hanselmann
      return 1
386 55efe6da Iustin Pop
  else:
387 297ddce9 Iustin Pop
    if not (opts.force or opts.force_multi):
388 f86426f5 Iustin Pop
      usertext = ("This will reinstall the instance '%s' (and %s) which"
389 f86426f5 Iustin Pop
                  " removes all data. Continue?") % (inames[0], os_msg)
390 55efe6da Iustin Pop
      if not AskUser(usertext):
391 55efe6da Iustin Pop
        return 1
392 55efe6da Iustin Pop
393 cb573a31 Iustin Pop
  jex = JobExecutor(verbose=multi_on, opts=opts)
394 55efe6da Iustin Pop
  for instance_name in inames:
395 5073fd8f Iustin Pop
    op = opcodes.OpInstanceReinstall(instance_name=instance_name,
396 06073e85 Guido Trotter
                                     os_type=os_name,
397 8d8c4eff Michael Hanselmann
                                     force_variant=opts.force_variant,
398 8d8c4eff Michael Hanselmann
                                     osparams=opts.osparams)
399 55efe6da Iustin Pop
    jex.QueueJob(instance_name, op)
400 fe7b0351 Michael Hanselmann
401 64be07b1 Michael Hanselmann
  results = jex.WaitOrShow(not opts.submit_only)
402 64be07b1 Michael Hanselmann
403 64be07b1 Michael Hanselmann
  if compat.all(map(compat.fst, results)):
404 64be07b1 Michael Hanselmann
    return constants.EXIT_SUCCESS
405 64be07b1 Michael Hanselmann
  else:
406 64be07b1 Michael Hanselmann
    return constants.EXIT_FAILURE
407 fe7b0351 Michael Hanselmann
408 fe7b0351 Michael Hanselmann
409 a8083063 Iustin Pop
def RemoveInstance(opts, args):
410 a8083063 Iustin Pop
  """Remove an instance.
411 a8083063 Iustin Pop

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

419 a8083063 Iustin Pop
  """
420 a8083063 Iustin Pop
  instance_name = args[0]
421 a8083063 Iustin Pop
  force = opts.force
422 a76f0c4a Iustin Pop
  cl = GetClient()
423 f228f73c Helga Velroyen
  qcl = GetClient(query=True)
424 a8083063 Iustin Pop
425 a8083063 Iustin Pop
  if not force:
426 f228f73c Helga Velroyen
    _EnsureInstancesExist(qcl, [instance_name])
427 a76f0c4a Iustin Pop
428 a8083063 Iustin Pop
    usertext = ("This will remove the volumes of the instance %s"
429 a8083063 Iustin Pop
                " (including mirrors), thus removing all the data"
430 a8083063 Iustin Pop
                " of the instance. Continue?") % instance_name
431 47988778 Iustin Pop
    if not AskUser(usertext):
432 a8083063 Iustin Pop
      return 1
433 a8083063 Iustin Pop
434 3cd2d4b1 Iustin Pop
  op = opcodes.OpInstanceRemove(instance_name=instance_name,
435 17c3f802 Guido Trotter
                                ignore_failures=opts.ignore_failures,
436 4d98c565 Guido Trotter
                                shutdown_timeout=opts.shutdown_timeout)
437 a76f0c4a Iustin Pop
  SubmitOrSend(op, opts, cl=cl)
438 a8083063 Iustin Pop
  return 0
439 a8083063 Iustin Pop
440 a8083063 Iustin Pop
441 decd5f45 Iustin Pop
def RenameInstance(opts, args):
442 4ab0b9e3 Guido Trotter
  """Rename an instance.
443 decd5f45 Iustin Pop

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

451 decd5f45 Iustin Pop
  """
452 90ed09b0 René Nussbaumer
  if not opts.name_check:
453 1b6dddc8 René Nussbaumer
    if not AskUser("As you disabled the check of the DNS entry, please verify"
454 1b6dddc8 René Nussbaumer
                   " that '%s' is a FQDN. Continue?" % args[1]):
455 1b6dddc8 René Nussbaumer
      return 1
456 1b6dddc8 René Nussbaumer
457 5659e2e2 Iustin Pop
  op = opcodes.OpInstanceRename(instance_name=args[0],
458 decd5f45 Iustin Pop
                                new_name=args[1],
459 3fe11ba3 Manuel Franceschini
                                ip_check=opts.ip_check,
460 3fe11ba3 Manuel Franceschini
                                name_check=opts.name_check)
461 6a016df9 Michael Hanselmann
  result = SubmitOrSend(op, opts)
462 6a016df9 Michael Hanselmann
463 48418fea Iustin Pop
  if result:
464 48418fea Iustin Pop
    ToStdout("Instance '%s' renamed to '%s'", args[0], result)
465 6a016df9 Michael Hanselmann
466 decd5f45 Iustin Pop
  return 0
467 decd5f45 Iustin Pop
468 decd5f45 Iustin Pop
469 a8083063 Iustin Pop
def ActivateDisks(opts, args):
470 a8083063 Iustin Pop
  """Activate an instance's disks.
471 a8083063 Iustin Pop

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

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

483 a8083063 Iustin Pop
  """
484 a8083063 Iustin Pop
  instance_name = args[0]
485 83f5d475 Iustin Pop
  op = opcodes.OpInstanceActivateDisks(instance_name=instance_name,
486 f30d8165 Iustin Pop
                                       ignore_size=opts.ignore_size,
487 f30d8165 Iustin Pop
                                       wait_for_sync=opts.wait_for_sync)
488 6340bb0a Iustin Pop
  disks_info = SubmitOrSend(op, opts)
489 a8083063 Iustin Pop
  for host, iname, nname in disks_info:
490 3a24c527 Iustin Pop
    ToStdout("%s:%s:%s", host, iname, nname)
491 a8083063 Iustin Pop
  return 0
492 a8083063 Iustin Pop
493 a8083063 Iustin Pop
494 a8083063 Iustin Pop
def DeactivateDisks(opts, args):
495 bd315bfa Iustin Pop
  """Deactivate an instance's disks.
496 a8083063 Iustin Pop

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

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

506 a8083063 Iustin Pop
  """
507 a8083063 Iustin Pop
  instance_name = args[0]
508 c9c41373 Iustin Pop
  op = opcodes.OpInstanceDeactivateDisks(instance_name=instance_name,
509 c9c41373 Iustin Pop
                                         force=opts.force)
510 6340bb0a Iustin Pop
  SubmitOrSend(op, opts)
511 a8083063 Iustin Pop
  return 0
512 a8083063 Iustin Pop
513 a8083063 Iustin Pop
514 bd315bfa Iustin Pop
def RecreateDisks(opts, args):
515 bd315bfa Iustin Pop
  """Recreate an instance's disks.
516 bd315bfa Iustin Pop

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

523 bd315bfa Iustin Pop
  """
524 bd315bfa Iustin Pop
  instance_name = args[0]
525 735e1318 Michael Hanselmann
526 735e1318 Michael Hanselmann
  disks = []
527 735e1318 Michael Hanselmann
528 bd315bfa Iustin Pop
  if opts.disks:
529 735e1318 Michael Hanselmann
    for didx, ddict in opts.disks:
530 735e1318 Michael Hanselmann
      didx = int(didx)
531 735e1318 Michael Hanselmann
532 735e1318 Michael Hanselmann
      if not ht.TDict(ddict):
533 735e1318 Michael Hanselmann
        msg = "Invalid disk/%d value: expected dict, got %s" % (didx, ddict)
534 2cfbc784 Iustin Pop
        raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
535 735e1318 Michael Hanselmann
536 735e1318 Michael Hanselmann
      if constants.IDISK_SIZE in ddict:
537 735e1318 Michael Hanselmann
        try:
538 735e1318 Michael Hanselmann
          ddict[constants.IDISK_SIZE] = \
539 735e1318 Michael Hanselmann
            utils.ParseUnit(ddict[constants.IDISK_SIZE])
540 735e1318 Michael Hanselmann
        except ValueError, err:
541 735e1318 Michael Hanselmann
          raise errors.OpPrereqError("Invalid disk size for disk %d: %s" %
542 2cfbc784 Iustin Pop
                                     (didx, err), errors.ECODE_INVAL)
543 9e448d7f Klaus Aehlig
544 9e448d7f Klaus Aehlig
      if constants.IDISK_SPINDLES in ddict:
545 9e448d7f Klaus Aehlig
        try:
546 9e448d7f Klaus Aehlig
          ddict[constants.IDISK_SPINDLES] = \
547 9e448d7f Klaus Aehlig
              int(ddict[constants.IDISK_SPINDLES])
548 9e448d7f Klaus Aehlig
        except ValueError, err:
549 9e448d7f Klaus Aehlig
          raise errors.OpPrereqError("Invalid spindles for disk %d: %s" %
550 9e448d7f Klaus Aehlig
                                     (didx, err), errors.ECODE_INVAL)
551 735e1318 Michael Hanselmann
552 735e1318 Michael Hanselmann
      disks.append((didx, ddict))
553 735e1318 Michael Hanselmann
554 735e1318 Michael Hanselmann
    # TODO: Verify modifyable parameters (already done in
555 735e1318 Michael Hanselmann
    # LUInstanceRecreateDisks, but it'd be nice to have in the client)
556 bd315bfa Iustin Pop
557 c8a96ae7 Iustin Pop
  if opts.node:
558 38db4e7c Adam Ingrassia
    if opts.iallocator:
559 38db4e7c Adam Ingrassia
      msg = "At most one of either --nodes or --iallocator can be passed"
560 38db4e7c Adam Ingrassia
      raise errors.OpPrereqError(msg, errors.ECODE_INVAL)
561 c8a96ae7 Iustin Pop
    pnode, snode = SplitNodeOption(opts.node)
562 c8a96ae7 Iustin Pop
    nodes = [pnode]
563 c8a96ae7 Iustin Pop
    if snode is not None:
564 c8a96ae7 Iustin Pop
      nodes.append(snode)
565 c8a96ae7 Iustin Pop
  else:
566 c8a96ae7 Iustin Pop
    nodes = []
567 c8a96ae7 Iustin Pop
568 6b273e78 Iustin Pop
  op = opcodes.OpInstanceRecreateDisks(instance_name=instance_name,
569 38db4e7c Adam Ingrassia
                                       disks=disks, nodes=nodes,
570 38db4e7c Adam Ingrassia
                                       iallocator=opts.iallocator)
571 bd315bfa Iustin Pop
  SubmitOrSend(op, opts)
572 735e1318 Michael Hanselmann
573 bd315bfa Iustin Pop
  return 0
574 bd315bfa Iustin Pop
575 bd315bfa Iustin Pop
576 c6e911bc Iustin Pop
def GrowDisk(opts, args):
577 7232c04c Iustin Pop
  """Grow an instance's disks.
578 c6e911bc Iustin Pop

579 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
580 7232c04c Iustin Pop
  @type args: list
581 30a83755 Guido Trotter
  @param args: should contain three elements, the target instance name,
582 30a83755 Guido Trotter
      the target disk id, and the target growth
583 7232c04c Iustin Pop
  @rtype: int
584 7232c04c Iustin Pop
  @return: the desired exit code
585 c6e911bc Iustin Pop

586 c6e911bc Iustin Pop
  """
587 c6e911bc Iustin Pop
  instance = args[0]
588 c6e911bc Iustin Pop
  disk = args[1]
589 ad24e046 Iustin Pop
  try:
590 ad24e046 Iustin Pop
    disk = int(disk)
591 691744c4 Iustin Pop
  except (TypeError, ValueError), err:
592 debac808 Iustin Pop
    raise errors.OpPrereqError("Invalid disk index: %s" % str(err),
593 debac808 Iustin Pop
                               errors.ECODE_INVAL)
594 c8bde61e Iustin Pop
  try:
595 c8bde61e Iustin Pop
    amount = utils.ParseUnit(args[2])
596 c8bde61e Iustin Pop
  except errors.UnitParseError:
597 c8bde61e Iustin Pop
    raise errors.OpPrereqError("Can't parse the given amount '%s'" % args[2],
598 c8bde61e Iustin Pop
                               errors.ECODE_INVAL)
599 60472d29 Iustin Pop
  op = opcodes.OpInstanceGrowDisk(instance_name=instance,
600 60472d29 Iustin Pop
                                  disk=disk, amount=amount,
601 ef8270dc Iustin Pop
                                  wait_for_sync=opts.wait_for_sync,
602 ef8270dc Iustin Pop
                                  absolute=opts.absolute)
603 6340bb0a Iustin Pop
  SubmitOrSend(op, opts)
604 c6e911bc Iustin Pop
  return 0
605 c6e911bc Iustin Pop
606 c6e911bc Iustin Pop
607 1c5945b6 Iustin Pop
def _StartupInstance(name, opts):
608 7232c04c Iustin Pop
  """Startup instances.
609 a8083063 Iustin Pop

610 1c5945b6 Iustin Pop
  This returns the opcode to start an instance, and its decorator will
611 1c5945b6 Iustin Pop
  wrap this into a loop starting all desired instances.
612 7232c04c Iustin Pop

613 1c5945b6 Iustin Pop
  @param name: the name of the instance to act on
614 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
615 1c5945b6 Iustin Pop
  @return: the opcode needed for the operation
616 a8083063 Iustin Pop

617 a8083063 Iustin Pop
  """
618 c873d91c Iustin Pop
  op = opcodes.OpInstanceStartup(instance_name=name,
619 b44bd844 Michael Hanselmann
                                 force=opts.force,
620 885a0fc4 Iustin Pop
                                 ignore_offline_nodes=opts.ignore_offline,
621 323f9095 Stephen Shirley
                                 no_remember=opts.no_remember,
622 323f9095 Stephen Shirley
                                 startup_paused=opts.startup_paused)
623 1c5945b6 Iustin Pop
  # do not add these parameters to the opcode unless they're defined
624 1c5945b6 Iustin Pop
  if opts.hvparams:
625 1c5945b6 Iustin Pop
    op.hvparams = opts.hvparams
626 1c5945b6 Iustin Pop
  if opts.beparams:
627 1c5945b6 Iustin Pop
    op.beparams = opts.beparams
628 1c5945b6 Iustin Pop
  return op
629 a8083063 Iustin Pop
630 7c0d6283 Michael Hanselmann
631 1c5945b6 Iustin Pop
def _RebootInstance(name, opts):
632 7232c04c Iustin Pop
  """Reboot instance(s).
633 7232c04c Iustin Pop

634 1c5945b6 Iustin Pop
  This returns the opcode to reboot an instance, and its decorator
635 1c5945b6 Iustin Pop
  will wrap this into a loop rebooting all desired instances.
636 579d4337 Alexander Schreiber

637 1c5945b6 Iustin Pop
  @param name: the name of the instance to act on
638 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
639 1c5945b6 Iustin Pop
  @return: the opcode needed for the operation
640 579d4337 Alexander Schreiber

641 579d4337 Alexander Schreiber
  """
642 90ab1a95 Iustin Pop
  return opcodes.OpInstanceReboot(instance_name=name,
643 579d4337 Alexander Schreiber
                                  reboot_type=opts.reboot_type,
644 17c3f802 Guido Trotter
                                  ignore_secondaries=opts.ignore_secondaries,
645 aa922d64 Michele Tartara
                                  shutdown_timeout=opts.shutdown_timeout)
646 a8083063 Iustin Pop
647 7c0d6283 Michael Hanselmann
648 1c5945b6 Iustin Pop
def _ShutdownInstance(name, opts):
649 a8083063 Iustin Pop
  """Shutdown an instance.
650 a8083063 Iustin Pop

651 1c5945b6 Iustin Pop
  This returns the opcode to shutdown an instance, and its decorator
652 1c5945b6 Iustin Pop
  will wrap this into a loop shutting down all desired instances.
653 1c5945b6 Iustin Pop

654 1c5945b6 Iustin Pop
  @param name: the name of the instance to act on
655 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
656 1c5945b6 Iustin Pop
  @return: the opcode needed for the operation
657 a8083063 Iustin Pop

658 a8083063 Iustin Pop
  """
659 ee3e37a7 Iustin Pop
  return opcodes.OpInstanceShutdown(instance_name=name,
660 0d57ce24 Guido Trotter
                                    force=opts.force,
661 b44bd844 Michael Hanselmann
                                    timeout=opts.timeout,
662 885a0fc4 Iustin Pop
                                    ignore_offline_nodes=opts.ignore_offline,
663 885a0fc4 Iustin Pop
                                    no_remember=opts.no_remember)
664 a8083063 Iustin Pop
665 a8083063 Iustin Pop
666 a8083063 Iustin Pop
def ReplaceDisks(opts, args):
667 a8083063 Iustin Pop
  """Replace the disks of an instance
668 a8083063 Iustin Pop

669 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
670 7232c04c Iustin Pop
  @type args: list
671 7232c04c Iustin Pop
  @param args: should contain only one element, the instance name
672 7232c04c Iustin Pop
  @rtype: int
673 7232c04c Iustin Pop
  @return: the desired exit code
674 a8083063 Iustin Pop

675 a8083063 Iustin Pop
  """
676 a14db5ff Iustin Pop
  new_2ndary = opts.dst_node
677 b6e82a65 Iustin Pop
  iallocator = opts.iallocator
678 a9e0c397 Iustin Pop
  if opts.disks is None:
679 54155f52 Iustin Pop
    disks = []
680 a9e0c397 Iustin Pop
  else:
681 54155f52 Iustin Pop
    try:
682 54155f52 Iustin Pop
      disks = [int(i) for i in opts.disks.split(",")]
683 691744c4 Iustin Pop
    except (TypeError, ValueError), err:
684 debac808 Iustin Pop
      raise errors.OpPrereqError("Invalid disk index passed: %s" % str(err),
685 debac808 Iustin Pop
                                 errors.ECODE_INVAL)
686 05d47e33 Michael Hanselmann
  cnt = [opts.on_primary, opts.on_secondary, opts.auto,
687 7e9366f7 Iustin Pop
         new_2ndary is not None, iallocator is not None].count(True)
688 7e9366f7 Iustin Pop
  if cnt != 1:
689 d8d838cb Michael Hanselmann
    raise errors.OpPrereqError("One and only one of the -p, -s, -a, -n and -I"
690 debac808 Iustin Pop
                               " options must be passed", errors.ECODE_INVAL)
691 7e9366f7 Iustin Pop
  elif opts.on_primary:
692 a9e0c397 Iustin Pop
    mode = constants.REPLACE_DISK_PRI
693 7e9366f7 Iustin Pop
  elif opts.on_secondary:
694 a9e0c397 Iustin Pop
    mode = constants.REPLACE_DISK_SEC
695 05d47e33 Michael Hanselmann
  elif opts.auto:
696 05d47e33 Michael Hanselmann
    mode = constants.REPLACE_DISK_AUTO
697 05d47e33 Michael Hanselmann
    if disks:
698 05d47e33 Michael Hanselmann
      raise errors.OpPrereqError("Cannot specify disks when using automatic"
699 debac808 Iustin Pop
                                 " mode", errors.ECODE_INVAL)
700 7e9366f7 Iustin Pop
  elif new_2ndary is not None or iallocator is not None:
701 7e9366f7 Iustin Pop
    # replace secondary
702 7e9366f7 Iustin Pop
    mode = constants.REPLACE_DISK_CHG
703 a9e0c397 Iustin Pop
704 668f755d Iustin Pop
  op = opcodes.OpInstanceReplaceDisks(instance_name=args[0], disks=disks,
705 668f755d Iustin Pop
                                      remote_node=new_2ndary, mode=mode,
706 668f755d Iustin Pop
                                      iallocator=iallocator,
707 893e8f49 René Nussbaumer
                                      early_release=opts.early_release,
708 893e8f49 René Nussbaumer
                                      ignore_ipolicy=opts.ignore_ipolicy)
709 6340bb0a Iustin Pop
  SubmitOrSend(op, opts)
710 a8083063 Iustin Pop
  return 0
711 a8083063 Iustin Pop
712 a8083063 Iustin Pop
713 a8083063 Iustin Pop
def FailoverInstance(opts, args):
714 a8083063 Iustin Pop
  """Failover an instance.
715 a8083063 Iustin Pop

716 a8083063 Iustin Pop
  The failover is done by shutting it down on its present node and
717 a8083063 Iustin Pop
  starting it on the secondary.
718 a8083063 Iustin Pop

719 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
720 7232c04c Iustin Pop
  @type args: list
721 7232c04c Iustin Pop
  @param args: should contain only one element, the instance name
722 7232c04c Iustin Pop
  @rtype: int
723 7232c04c Iustin Pop
  @return: the desired exit code
724 a8083063 Iustin Pop

725 a8083063 Iustin Pop
  """
726 a76f0c4a Iustin Pop
  cl = GetClient()
727 80de0e3f Iustin Pop
  instance_name = args[0]
728 80de0e3f Iustin Pop
  force = opts.force
729 1b7761fd Apollon Oikonomopoulos
  iallocator = opts.iallocator
730 1b7761fd Apollon Oikonomopoulos
  target_node = opts.dst_node
731 1b7761fd Apollon Oikonomopoulos
732 1b7761fd Apollon Oikonomopoulos
  if iallocator and target_node:
733 1b7761fd Apollon Oikonomopoulos
    raise errors.OpPrereqError("Specify either an iallocator (-I), or a target"
734 1b7761fd Apollon Oikonomopoulos
                               " node (-n) but not both", errors.ECODE_INVAL)
735 a8083063 Iustin Pop
736 80de0e3f Iustin Pop
  if not force:
737 a76f0c4a Iustin Pop
    _EnsureInstancesExist(cl, [instance_name])
738 a76f0c4a Iustin Pop
739 80de0e3f Iustin Pop
    usertext = ("Failover will happen to image %s."
740 80de0e3f Iustin Pop
                " This requires a shutdown of the instance. Continue?" %
741 80de0e3f Iustin Pop
                (instance_name,))
742 80de0e3f Iustin Pop
    if not AskUser(usertext):
743 80de0e3f Iustin Pop
      return 1
744 a8083063 Iustin Pop
745 019dbee1 Iustin Pop
  op = opcodes.OpInstanceFailover(instance_name=instance_name,
746 17c3f802 Guido Trotter
                                  ignore_consistency=opts.ignore_consistency,
747 1b7761fd Apollon Oikonomopoulos
                                  shutdown_timeout=opts.shutdown_timeout,
748 1b7761fd Apollon Oikonomopoulos
                                  iallocator=iallocator,
749 b6aaf437 René Nussbaumer
                                  target_node=target_node,
750 b6aaf437 René Nussbaumer
                                  ignore_ipolicy=opts.ignore_ipolicy)
751 a76f0c4a Iustin Pop
  SubmitOrSend(op, opts, cl=cl)
752 80de0e3f Iustin Pop
  return 0
753 a8083063 Iustin Pop
754 a8083063 Iustin Pop
755 53c776b5 Iustin Pop
def MigrateInstance(opts, args):
756 53c776b5 Iustin Pop
  """Migrate an instance.
757 53c776b5 Iustin Pop

758 53c776b5 Iustin Pop
  The migrate is done without shutdown.
759 53c776b5 Iustin Pop

760 2f907a8c Iustin Pop
  @param opts: the command line options selected by the user
761 2f907a8c Iustin Pop
  @type args: list
762 2f907a8c Iustin Pop
  @param args: should contain only one element, the instance name
763 2f907a8c Iustin Pop
  @rtype: int
764 2f907a8c Iustin Pop
  @return: the desired exit code
765 53c776b5 Iustin Pop

766 53c776b5 Iustin Pop
  """
767 a76f0c4a Iustin Pop
  cl = GetClient()
768 53c776b5 Iustin Pop
  instance_name = args[0]
769 53c776b5 Iustin Pop
  force = opts.force
770 1b7761fd Apollon Oikonomopoulos
  iallocator = opts.iallocator
771 1b7761fd Apollon Oikonomopoulos
  target_node = opts.dst_node
772 1b7761fd Apollon Oikonomopoulos
773 1b7761fd Apollon Oikonomopoulos
  if iallocator and target_node:
774 1b7761fd Apollon Oikonomopoulos
    raise errors.OpPrereqError("Specify either an iallocator (-I), or a target"
775 1b7761fd Apollon Oikonomopoulos
                               " node (-n) but not both", errors.ECODE_INVAL)
776 53c776b5 Iustin Pop
777 53c776b5 Iustin Pop
  if not force:
778 a76f0c4a Iustin Pop
    _EnsureInstancesExist(cl, [instance_name])
779 a76f0c4a Iustin Pop
780 53c776b5 Iustin Pop
    if opts.cleanup:
781 53c776b5 Iustin Pop
      usertext = ("Instance %s will be recovered from a failed migration."
782 53c776b5 Iustin Pop
                  " Note that the migration procedure (including cleanup)" %
783 53c776b5 Iustin Pop
                  (instance_name,))
784 53c776b5 Iustin Pop
    else:
785 53c776b5 Iustin Pop
      usertext = ("Instance %s will be migrated. Note that migration" %
786 53c776b5 Iustin Pop
                  (instance_name,))
787 cf29cfb6 Iustin Pop
    usertext += (" might impact the instance if anything goes wrong"
788 cf29cfb6 Iustin Pop
                 " (e.g. due to bugs in the hypervisor). Continue?")
789 53c776b5 Iustin Pop
    if not AskUser(usertext):
790 53c776b5 Iustin Pop
      return 1
791 53c776b5 Iustin Pop
792 e71b9ef4 Iustin Pop
  # this should be removed once --non-live is deprecated
793 783a6c0b Iustin Pop
  if not opts.live and opts.migration_mode is not None:
794 e71b9ef4 Iustin Pop
    raise errors.OpPrereqError("Only one of the --non-live and "
795 783a6c0b Iustin Pop
                               "--migration-mode options can be passed",
796 e71b9ef4 Iustin Pop
                               errors.ECODE_INVAL)
797 e71b9ef4 Iustin Pop
  if not opts.live: # --non-live passed
798 8c35561f Iustin Pop
    mode = constants.HT_MIGRATION_NONLIVE
799 e71b9ef4 Iustin Pop
  else:
800 8c35561f Iustin Pop
    mode = opts.migration_mode
801 e71b9ef4 Iustin Pop
802 75c866c2 Iustin Pop
  op = opcodes.OpInstanceMigrate(instance_name=instance_name, mode=mode,
803 1b7761fd Apollon Oikonomopoulos
                                 cleanup=opts.cleanup, iallocator=iallocator,
804 e9c487be René Nussbaumer
                                 target_node=target_node,
805 3ed23330 René Nussbaumer
                                 allow_failover=opts.allow_failover,
806 8c0b16f6 Guido Trotter
                                 allow_runtime_changes=opts.allow_runtime_chgs,
807 3ed23330 René Nussbaumer
                                 ignore_ipolicy=opts.ignore_ipolicy)
808 f70bb622 Michael Hanselmann
  SubmitOrSend(op, cl=cl, opts=opts)
809 53c776b5 Iustin Pop
  return 0
810 53c776b5 Iustin Pop
811 53c776b5 Iustin Pop
812 fbf5a861 Iustin Pop
def MoveInstance(opts, args):
813 fbf5a861 Iustin Pop
  """Move an instance.
814 fbf5a861 Iustin Pop

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

821 fbf5a861 Iustin Pop
  """
822 fbf5a861 Iustin Pop
  cl = GetClient()
823 fbf5a861 Iustin Pop
  instance_name = args[0]
824 fbf5a861 Iustin Pop
  force = opts.force
825 fbf5a861 Iustin Pop
826 fbf5a861 Iustin Pop
  if not force:
827 fbf5a861 Iustin Pop
    usertext = ("Instance %s will be moved."
828 fbf5a861 Iustin Pop
                " This requires a shutdown of the instance. Continue?" %
829 fbf5a861 Iustin Pop
                (instance_name,))
830 fbf5a861 Iustin Pop
    if not AskUser(usertext):
831 fbf5a861 Iustin Pop
      return 1
832 fbf5a861 Iustin Pop
833 0091b480 Iustin Pop
  op = opcodes.OpInstanceMove(instance_name=instance_name,
834 17c3f802 Guido Trotter
                              target_node=opts.node,
835 94ab995a Thomas Thrainer
                              compress=opts.compress,
836 bb851c63 Iustin Pop
                              shutdown_timeout=opts.shutdown_timeout,
837 92cf62e3 René Nussbaumer
                              ignore_consistency=opts.ignore_consistency,
838 92cf62e3 René Nussbaumer
                              ignore_ipolicy=opts.ignore_ipolicy)
839 fbf5a861 Iustin Pop
  SubmitOrSend(op, opts, cl=cl)
840 fbf5a861 Iustin Pop
  return 0
841 fbf5a861 Iustin Pop
842 fbf5a861 Iustin Pop
843 a8083063 Iustin Pop
def ConnectToInstanceConsole(opts, args):
844 a8083063 Iustin Pop
  """Connect to the console of an instance.
845 a8083063 Iustin Pop

846 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
847 7232c04c Iustin Pop
  @type args: list
848 7232c04c Iustin Pop
  @param args: should contain only one element, the instance name
849 7232c04c Iustin Pop
  @rtype: int
850 7232c04c Iustin Pop
  @return: the desired exit code
851 a8083063 Iustin Pop

852 a8083063 Iustin Pop
  """
853 a8083063 Iustin Pop
  instance_name = args[0]
854 a8083063 Iustin Pop
855 25ce3ec4 Michael Hanselmann
  cl = GetClient()
856 981224e9 Helga Velroyen
  qcl = GetClient(query=True)
857 25ce3ec4 Michael Hanselmann
  try:
858 25ce3ec4 Michael Hanselmann
    cluster_name = cl.QueryConfigValues(["cluster_name"])[0]
859 d6f46b6a Michael Hanselmann
    ((console_data, oper_state), ) = \
860 981224e9 Helga Velroyen
      qcl.QueryInstances([instance_name], ["console", "oper_state"], False)
861 25ce3ec4 Michael Hanselmann
  finally:
862 25ce3ec4 Michael Hanselmann
    # Ensure client connection is closed while external commands are run
863 25ce3ec4 Michael Hanselmann
    cl.Close()
864 981224e9 Helga Velroyen
    qcl.Close()
865 25ce3ec4 Michael Hanselmann
866 25ce3ec4 Michael Hanselmann
  del cl
867 981224e9 Helga Velroyen
  del qcl
868 25ce3ec4 Michael Hanselmann
869 d6f46b6a Michael Hanselmann
  if not console_data:
870 d6f46b6a Michael Hanselmann
    if oper_state:
871 d6f46b6a Michael Hanselmann
      # Instance is running
872 d6f46b6a Michael Hanselmann
      raise errors.OpExecError("Console information for instance %s is"
873 d6f46b6a Michael Hanselmann
                               " unavailable" % instance_name)
874 d6f46b6a Michael Hanselmann
    else:
875 d6f46b6a Michael Hanselmann
      raise errors.OpExecError("Instance %s is not running, can't get console" %
876 d6f46b6a Michael Hanselmann
                               instance_name)
877 d6f46b6a Michael Hanselmann
878 25ce3ec4 Michael Hanselmann
  return _DoConsole(objects.InstanceConsole.FromDict(console_data),
879 25ce3ec4 Michael Hanselmann
                    opts.show_command, cluster_name)
880 25ce3ec4 Michael Hanselmann
881 25ce3ec4 Michael Hanselmann
882 25ce3ec4 Michael Hanselmann
def _DoConsole(console, show_command, cluster_name, feedback_fn=ToStdout,
883 25ce3ec4 Michael Hanselmann
               _runcmd_fn=utils.RunCmd):
884 cc0dec7b Iustin Pop
  """Acts based on the result of L{opcodes.OpInstanceConsole}.
885 25ce3ec4 Michael Hanselmann

886 25ce3ec4 Michael Hanselmann
  @type console: L{objects.InstanceConsole}
887 25ce3ec4 Michael Hanselmann
  @param console: Console object
888 25ce3ec4 Michael Hanselmann
  @type show_command: bool
889 25ce3ec4 Michael Hanselmann
  @param show_command: Whether to just display commands
890 25ce3ec4 Michael Hanselmann
  @type cluster_name: string
891 25ce3ec4 Michael Hanselmann
  @param cluster_name: Cluster name as retrieved from master daemon
892 25ce3ec4 Michael Hanselmann

893 25ce3ec4 Michael Hanselmann
  """
894 25ce3ec4 Michael Hanselmann
  assert console.Validate()
895 25ce3ec4 Michael Hanselmann
896 25ce3ec4 Michael Hanselmann
  if console.kind == constants.CONS_MESSAGE:
897 25ce3ec4 Michael Hanselmann
    feedback_fn(console.message)
898 25ce3ec4 Michael Hanselmann
  elif console.kind == constants.CONS_VNC:
899 25ce3ec4 Michael Hanselmann
    feedback_fn("Instance %s has VNC listening on %s:%s (display %s),"
900 25ce3ec4 Michael Hanselmann
                " URL <vnc://%s:%s/>",
901 25ce3ec4 Michael Hanselmann
                console.instance, console.host, console.port,
902 25ce3ec4 Michael Hanselmann
                console.display, console.host, console.port)
903 4d2cdb5a Andrea Spadaccini
  elif console.kind == constants.CONS_SPICE:
904 4d2cdb5a Andrea Spadaccini
    feedback_fn("Instance %s has SPICE listening on %s:%s", console.instance,
905 4d2cdb5a Andrea Spadaccini
                console.host, console.port)
906 25ce3ec4 Michael Hanselmann
  elif console.kind == constants.CONS_SSH:
907 25ce3ec4 Michael Hanselmann
    # Convert to string if not already one
908 25ce3ec4 Michael Hanselmann
    if isinstance(console.command, basestring):
909 25ce3ec4 Michael Hanselmann
      cmd = console.command
910 25ce3ec4 Michael Hanselmann
    else:
911 25ce3ec4 Michael Hanselmann
      cmd = utils.ShellQuoteArgs(console.command)
912 25ce3ec4 Michael Hanselmann
913 25ce3ec4 Michael Hanselmann
    srun = ssh.SshRunner(cluster_name=cluster_name)
914 25ce3ec4 Michael Hanselmann
    ssh_cmd = srun.BuildCmd(console.host, console.user, cmd,
915 a9f33339 Petr Pudlak
                            port=console.port,
916 25ce3ec4 Michael Hanselmann
                            batch=True, quiet=False, tty=True)
917 25ce3ec4 Michael Hanselmann
918 25ce3ec4 Michael Hanselmann
    if show_command:
919 25ce3ec4 Michael Hanselmann
      feedback_fn(utils.ShellQuoteArgs(ssh_cmd))
920 25ce3ec4 Michael Hanselmann
    else:
921 25ce3ec4 Michael Hanselmann
      result = _runcmd_fn(ssh_cmd, interactive=True)
922 25ce3ec4 Michael Hanselmann
      if result.failed:
923 25ce3ec4 Michael Hanselmann
        logging.error("Console command \"%s\" failed with reason '%s' and"
924 25ce3ec4 Michael Hanselmann
                      " output %r", result.cmd, result.fail_reason,
925 25ce3ec4 Michael Hanselmann
                      result.output)
926 25ce3ec4 Michael Hanselmann
        raise errors.OpExecError("Connection to console of instance %s failed,"
927 25ce3ec4 Michael Hanselmann
                                 " please check cluster configuration" %
928 25ce3ec4 Michael Hanselmann
                                 console.instance)
929 51c6e7b5 Michael Hanselmann
  else:
930 25ce3ec4 Michael Hanselmann
    raise errors.GenericError("Unknown console type '%s'" % console.kind)
931 678aa6d3 Michael Hanselmann
932 678aa6d3 Michael Hanselmann
  return constants.EXIT_SUCCESS
933 a8083063 Iustin Pop
934 a8083063 Iustin Pop
935 1c3231aa Thomas Thrainer
def _FormatDiskDetails(dev_type, dev, roman):
936 19708787 Iustin Pop
  """Formats the logical_id of a disk.
937 19708787 Iustin Pop

938 19708787 Iustin Pop
  """
939 cd3b4ff4 Helga Velroyen
  if dev_type == constants.DT_DRBD8:
940 1c3231aa Thomas Thrainer
    drbd_info = dev["drbd_info"]
941 19708787 Iustin Pop
    data = [
942 1c3231aa Thomas Thrainer
      ("nodeA", "%s, minor=%s" %
943 1c3231aa Thomas Thrainer
                (drbd_info["primary_node"],
944 1c3231aa Thomas Thrainer
                 compat.TryToRoman(drbd_info["primary_minor"],
945 1c3231aa Thomas Thrainer
                                   convert=roman))),
946 1c3231aa Thomas Thrainer
      ("nodeB", "%s, minor=%s" %
947 1c3231aa Thomas Thrainer
                (drbd_info["secondary_node"],
948 1c3231aa Thomas Thrainer
                 compat.TryToRoman(drbd_info["secondary_minor"],
949 1c3231aa Thomas Thrainer
                                   convert=roman))),
950 1c3231aa Thomas Thrainer
      ("port", str(compat.TryToRoman(drbd_info["port"], convert=roman))),
951 1c3231aa Thomas Thrainer
      ("auth key", str(drbd_info["secret"])),
952 19708787 Iustin Pop
      ]
953 cd3b4ff4 Helga Velroyen
  elif dev_type == constants.DT_PLAIN:
954 1c3231aa Thomas Thrainer
    vg_name, lv_name = dev["logical_id"]
955 19708787 Iustin Pop
    data = ["%s/%s" % (vg_name, lv_name)]
956 19708787 Iustin Pop
  else:
957 1c3231aa Thomas Thrainer
    data = [str(dev["logical_id"])]
958 19708787 Iustin Pop
959 19708787 Iustin Pop
  return data
960 19708787 Iustin Pop
961 19708787 Iustin Pop
962 f965260c Michael Hanselmann
def _FormatBlockDevInfo(idx, top_level, dev, roman):
963 a8083063 Iustin Pop
  """Show block device information.
964 a8083063 Iustin Pop

965 7232c04c Iustin Pop
  This is only used by L{ShowInstanceConfig}, but it's too big to be
966 a8083063 Iustin Pop
  left for an inline definition.
967 a8083063 Iustin Pop

968 19708787 Iustin Pop
  @type idx: int
969 19708787 Iustin Pop
  @param idx: the index of the current disk
970 19708787 Iustin Pop
  @type top_level: boolean
971 19708787 Iustin Pop
  @param top_level: if this a top-level disk?
972 7232c04c Iustin Pop
  @type dev: dict
973 7232c04c Iustin Pop
  @param dev: dictionary with disk information
974 e2736e40 Guido Trotter
  @type roman: boolean
975 e2736e40 Guido Trotter
  @param roman: whether to try to use roman integers
976 19708787 Iustin Pop
  @return: a list of either strings, tuples or lists
977 19708787 Iustin Pop
      (which should be formatted at a higher indent level)
978 7232c04c Iustin Pop

979 a8083063 Iustin Pop
  """
980 19708787 Iustin Pop
  def helper(dtype, status):
981 7232c04c Iustin Pop
    """Format one line for physical device status.
982 7232c04c Iustin Pop

983 7232c04c Iustin Pop
    @type dtype: str
984 cd3b4ff4 Helga Velroyen
    @param dtype: a constant from the L{constants.DTS_BLOCK} set
985 7232c04c Iustin Pop
    @type status: tuple
986 7232c04c Iustin Pop
    @param status: a tuple as returned from L{backend.FindBlockDevice}
987 19708787 Iustin Pop
    @return: the string representing the status
988 7232c04c Iustin Pop

989 7232c04c Iustin Pop
    """
990 a8083063 Iustin Pop
    if not status:
991 19708787 Iustin Pop
      return "not active"
992 19708787 Iustin Pop
    txt = ""
993 f208978a Michael Hanselmann
    (path, major, minor, syncp, estt, degr, ldisk_status) = status
994 19708787 Iustin Pop
    if major is None:
995 19708787 Iustin Pop
      major_string = "N/A"
996 a8083063 Iustin Pop
    else:
997 e2736e40 Guido Trotter
      major_string = str(compat.TryToRoman(major, convert=roman))
998 fd38ef95 Manuel Franceschini
999 19708787 Iustin Pop
    if minor is None:
1000 19708787 Iustin Pop
      minor_string = "N/A"
1001 19708787 Iustin Pop
    else:
1002 e2736e40 Guido Trotter
      minor_string = str(compat.TryToRoman(minor, convert=roman))
1003 19708787 Iustin Pop
1004 19708787 Iustin Pop
    txt += ("%s (%s:%s)" % (path, major_string, minor_string))
1005 cd3b4ff4 Helga Velroyen
    if dtype in (constants.DT_DRBD8, ):
1006 19708787 Iustin Pop
      if syncp is not None:
1007 19708787 Iustin Pop
        sync_text = "*RECOVERING* %5.2f%%," % syncp
1008 19708787 Iustin Pop
        if estt:
1009 e2736e40 Guido Trotter
          sync_text += " ETA %ss" % compat.TryToRoman(estt, convert=roman)
1010 9db6dbce Iustin Pop
        else:
1011 19708787 Iustin Pop
          sync_text += " ETA unknown"
1012 19708787 Iustin Pop
      else:
1013 19708787 Iustin Pop
        sync_text = "in sync"
1014 19708787 Iustin Pop
      if degr:
1015 19708787 Iustin Pop
        degr_text = "*DEGRADED*"
1016 19708787 Iustin Pop
      else:
1017 19708787 Iustin Pop
        degr_text = "ok"
1018 f208978a Michael Hanselmann
      if ldisk_status == constants.LDS_FAULTY:
1019 19708787 Iustin Pop
        ldisk_text = " *MISSING DISK*"
1020 f208978a Michael Hanselmann
      elif ldisk_status == constants.LDS_UNKNOWN:
1021 f208978a Michael Hanselmann
        ldisk_text = " *UNCERTAIN STATE*"
1022 19708787 Iustin Pop
      else:
1023 19708787 Iustin Pop
        ldisk_text = ""
1024 19708787 Iustin Pop
      txt += (" %s, status %s%s" % (sync_text, degr_text, ldisk_text))
1025 cd3b4ff4 Helga Velroyen
    elif dtype == constants.DT_PLAIN:
1026 f208978a Michael Hanselmann
      if ldisk_status == constants.LDS_FAULTY:
1027 19708787 Iustin Pop
        ldisk_text = " *FAILED* (failed drive?)"
1028 19708787 Iustin Pop
      else:
1029 19708787 Iustin Pop
        ldisk_text = ""
1030 19708787 Iustin Pop
      txt += ldisk_text
1031 19708787 Iustin Pop
    return txt
1032 19708787 Iustin Pop
1033 19708787 Iustin Pop
  # the header
1034 19708787 Iustin Pop
  if top_level:
1035 19708787 Iustin Pop
    if dev["iv_name"] is not None:
1036 19708787 Iustin Pop
      txt = dev["iv_name"]
1037 19708787 Iustin Pop
    else:
1038 e2736e40 Guido Trotter
      txt = "disk %s" % compat.TryToRoman(idx, convert=roman)
1039 a8083063 Iustin Pop
  else:
1040 e2736e40 Guido Trotter
    txt = "child %s" % compat.TryToRoman(idx, convert=roman)
1041 c98162a7 Iustin Pop
  if isinstance(dev["size"], int):
1042 c98162a7 Iustin Pop
    nice_size = utils.FormatUnit(dev["size"], "h")
1043 c98162a7 Iustin Pop
  else:
1044 2cbcf95d Bernardo Dal Seno
    nice_size = str(dev["size"])
1045 2cbcf95d Bernardo Dal Seno
  data = [(txt, "%s, size %s" % (dev["dev_type"], nice_size))]
1046 19708787 Iustin Pop
  if top_level:
1047 75a6c8be Bernardo Dal Seno
    if dev["spindles"] is not None:
1048 75a6c8be Bernardo Dal Seno
      data.append(("spindles", dev["spindles"]))
1049 19708787 Iustin Pop
    data.append(("access mode", dev["mode"]))
1050 a8083063 Iustin Pop
  if dev["logical_id"] is not None:
1051 19708787 Iustin Pop
    try:
1052 1c3231aa Thomas Thrainer
      l_id = _FormatDiskDetails(dev["dev_type"], dev, roman)
1053 19708787 Iustin Pop
    except ValueError:
1054 19708787 Iustin Pop
      l_id = [str(dev["logical_id"])]
1055 19708787 Iustin Pop
    if len(l_id) == 1:
1056 19708787 Iustin Pop
      data.append(("logical_id", l_id[0]))
1057 19708787 Iustin Pop
    else:
1058 19708787 Iustin Pop
      data.extend(l_id)
1059 f965260c Michael Hanselmann
1060 f965260c Michael Hanselmann
  if dev["pstatus"]:
1061 19708787 Iustin Pop
    data.append(("on primary", helper(dev["dev_type"], dev["pstatus"])))
1062 f965260c Michael Hanselmann
1063 f965260c Michael Hanselmann
  if dev["sstatus"]:
1064 19708787 Iustin Pop
    data.append(("on secondary", helper(dev["dev_type"], dev["sstatus"])))
1065 a8083063 Iustin Pop
1066 fcbd025c Christos Stavrakakis
  data.append(("name", dev["name"]))
1067 fcbd025c Christos Stavrakakis
  data.append(("UUID", dev["uuid"]))
1068 fcbd025c Christos Stavrakakis
1069 a8083063 Iustin Pop
  if dev["children"]:
1070 2cbcf95d Bernardo Dal Seno
    data.append(("child devices", [
1071 2cbcf95d Bernardo Dal Seno
      _FormatBlockDevInfo(c_idx, False, child, roman)
1072 2cbcf95d Bernardo Dal Seno
      for c_idx, child in enumerate(dev["children"])
1073 2cbcf95d Bernardo Dal Seno
      ]))
1074 2cbcf95d Bernardo Dal Seno
  return data
1075 19708787 Iustin Pop
1076 19708787 Iustin Pop
1077 2cbcf95d Bernardo Dal Seno
def _FormatInstanceNicInfo(idx, nic):
1078 2cbcf95d Bernardo Dal Seno
  """Helper function for L{_FormatInstanceInfo()}"""
1079 d676dbea Sebastian Gebhard
  (name, uuid, ip, mac, mode, link, vlan, _, netinfo) = nic
1080 2cbcf95d Bernardo Dal Seno
  network_name = None
1081 2cbcf95d Bernardo Dal Seno
  if netinfo:
1082 2cbcf95d Bernardo Dal Seno
    network_name = netinfo["name"]
1083 2cbcf95d Bernardo Dal Seno
  return [
1084 2cbcf95d Bernardo Dal Seno
    ("nic/%d" % idx, ""),
1085 2cbcf95d Bernardo Dal Seno
    ("MAC", str(mac)),
1086 2cbcf95d Bernardo Dal Seno
    ("IP", str(ip)),
1087 2cbcf95d Bernardo Dal Seno
    ("mode", str(mode)),
1088 2cbcf95d Bernardo Dal Seno
    ("link", str(link)),
1089 d676dbea Sebastian Gebhard
    ("vlan", str(vlan)),
1090 2cbcf95d Bernardo Dal Seno
    ("network", str(network_name)),
1091 fcbd025c Christos Stavrakakis
    ("UUID", str(uuid)),
1092 fcbd025c Christos Stavrakakis
    ("name", str(name)),
1093 2cbcf95d Bernardo Dal Seno
    ]
1094 2cbcf95d Bernardo Dal Seno
1095 2cbcf95d Bernardo Dal Seno
1096 2cbcf95d Bernardo Dal Seno
def _FormatInstanceNodesInfo(instance):
1097 2cbcf95d Bernardo Dal Seno
  """Helper function for L{_FormatInstanceInfo()}"""
1098 2cbcf95d Bernardo Dal Seno
  pgroup = ("%s (UUID %s)" %
1099 2cbcf95d Bernardo Dal Seno
            (instance["pnode_group_name"], instance["pnode_group_uuid"]))
1100 2cbcf95d Bernardo Dal Seno
  secs = utils.CommaJoin(("%s (group %s, group UUID %s)" %
1101 2cbcf95d Bernardo Dal Seno
                          (name, group_name, group_uuid))
1102 2cbcf95d Bernardo Dal Seno
                         for (name, group_name, group_uuid) in
1103 2cbcf95d Bernardo Dal Seno
                           zip(instance["snodes"],
1104 2cbcf95d Bernardo Dal Seno
                               instance["snodes_group_names"],
1105 2cbcf95d Bernardo Dal Seno
                               instance["snodes_group_uuids"]))
1106 2cbcf95d Bernardo Dal Seno
  return [
1107 2cbcf95d Bernardo Dal Seno
    [
1108 2cbcf95d Bernardo Dal Seno
      ("primary", instance["pnode"]),
1109 2cbcf95d Bernardo Dal Seno
      ("group", pgroup),
1110 2cbcf95d Bernardo Dal Seno
      ],
1111 2cbcf95d Bernardo Dal Seno
    [("secondaries", secs)],
1112 2cbcf95d Bernardo Dal Seno
    ]
1113 2cbcf95d Bernardo Dal Seno
1114 2cbcf95d Bernardo Dal Seno
1115 2cbcf95d Bernardo Dal Seno
def _GetVncConsoleInfo(instance):
1116 2cbcf95d Bernardo Dal Seno
  """Helper function for L{_FormatInstanceInfo()}"""
1117 2cbcf95d Bernardo Dal Seno
  vnc_bind_address = instance["hv_actual"].get(constants.HV_VNC_BIND_ADDRESS,
1118 2cbcf95d Bernardo Dal Seno
                                               None)
1119 2cbcf95d Bernardo Dal Seno
  if vnc_bind_address:
1120 2cbcf95d Bernardo Dal Seno
    port = instance["network_port"]
1121 2cbcf95d Bernardo Dal Seno
    display = int(port) - constants.VNC_BASE_PORT
1122 2cbcf95d Bernardo Dal Seno
    if display > 0 and vnc_bind_address == constants.IP4_ADDRESS_ANY:
1123 2cbcf95d Bernardo Dal Seno
      vnc_console_port = "%s:%s (display %s)" % (instance["pnode"],
1124 2cbcf95d Bernardo Dal Seno
                                                 port,
1125 2cbcf95d Bernardo Dal Seno
                                                 display)
1126 2cbcf95d Bernardo Dal Seno
    elif display > 0 and netutils.IP4Address.IsValid(vnc_bind_address):
1127 2cbcf95d Bernardo Dal Seno
      vnc_console_port = ("%s:%s (node %s) (display %s)" %
1128 2cbcf95d Bernardo Dal Seno
                           (vnc_bind_address, port,
1129 2cbcf95d Bernardo Dal Seno
                            instance["pnode"], display))
1130 2cbcf95d Bernardo Dal Seno
    else:
1131 2cbcf95d Bernardo Dal Seno
      # vnc bind address is a file
1132 2cbcf95d Bernardo Dal Seno
      vnc_console_port = "%s:%s" % (instance["pnode"],
1133 2cbcf95d Bernardo Dal Seno
                                    vnc_bind_address)
1134 2cbcf95d Bernardo Dal Seno
    ret = "vnc to %s" % vnc_console_port
1135 2cbcf95d Bernardo Dal Seno
  else:
1136 2cbcf95d Bernardo Dal Seno
    ret = None
1137 2cbcf95d Bernardo Dal Seno
  return ret
1138 2cbcf95d Bernardo Dal Seno
1139 2cbcf95d Bernardo Dal Seno
1140 2cbcf95d Bernardo Dal Seno
def _FormatInstanceInfo(instance, roman_integers):
1141 2cbcf95d Bernardo Dal Seno
  """Format instance information for L{cli.PrintGenericInfo()}"""
1142 2cbcf95d Bernardo Dal Seno
  istate = "configured to be %s" % instance["config_state"]
1143 2cbcf95d Bernardo Dal Seno
  if instance["run_state"]:
1144 2cbcf95d Bernardo Dal Seno
    istate += ", actual state is %s" % instance["run_state"]
1145 2cbcf95d Bernardo Dal Seno
  info = [
1146 2cbcf95d Bernardo Dal Seno
    ("Instance name", instance["name"]),
1147 2cbcf95d Bernardo Dal Seno
    ("UUID", instance["uuid"]),
1148 2cbcf95d Bernardo Dal Seno
    ("Serial number",
1149 2cbcf95d Bernardo Dal Seno
     str(compat.TryToRoman(instance["serial_no"], convert=roman_integers))),
1150 2cbcf95d Bernardo Dal Seno
    ("Creation time", utils.FormatTime(instance["ctime"])),
1151 2cbcf95d Bernardo Dal Seno
    ("Modification time", utils.FormatTime(instance["mtime"])),
1152 2cbcf95d Bernardo Dal Seno
    ("State", istate),
1153 2cbcf95d Bernardo Dal Seno
    ("Nodes", _FormatInstanceNodesInfo(instance)),
1154 2cbcf95d Bernardo Dal Seno
    ("Operating system", instance["os"]),
1155 2cbcf95d Bernardo Dal Seno
    ("Operating system parameters",
1156 2cbcf95d Bernardo Dal Seno
     FormatParamsDictInfo(instance["os_instance"], instance["os_actual"])),
1157 2cbcf95d Bernardo Dal Seno
    ]
1158 2cbcf95d Bernardo Dal Seno
1159 2cbcf95d Bernardo Dal Seno
  if "network_port" in instance:
1160 2cbcf95d Bernardo Dal Seno
    info.append(("Allocated network port",
1161 2cbcf95d Bernardo Dal Seno
                 str(compat.TryToRoman(instance["network_port"],
1162 2cbcf95d Bernardo Dal Seno
                                       convert=roman_integers))))
1163 2cbcf95d Bernardo Dal Seno
  info.append(("Hypervisor", instance["hypervisor"]))
1164 2cbcf95d Bernardo Dal Seno
  console = _GetVncConsoleInfo(instance)
1165 2cbcf95d Bernardo Dal Seno
  if console:
1166 2cbcf95d Bernardo Dal Seno
    info.append(("console connection", console))
1167 2cbcf95d Bernardo Dal Seno
  # deprecated "memory" value, kept for one version for compatibility
1168 2cbcf95d Bernardo Dal Seno
  # TODO(ganeti 2.7) remove.
1169 2cbcf95d Bernardo Dal Seno
  be_actual = copy.deepcopy(instance["be_actual"])
1170 2cbcf95d Bernardo Dal Seno
  be_actual["memory"] = be_actual[constants.BE_MAXMEM]
1171 2cbcf95d Bernardo Dal Seno
  info.extend([
1172 2cbcf95d Bernardo Dal Seno
    ("Hypervisor parameters",
1173 2cbcf95d Bernardo Dal Seno
     FormatParamsDictInfo(instance["hv_instance"], instance["hv_actual"])),
1174 2cbcf95d Bernardo Dal Seno
    ("Back-end parameters",
1175 2cbcf95d Bernardo Dal Seno
     FormatParamsDictInfo(instance["be_instance"], be_actual)),
1176 2cbcf95d Bernardo Dal Seno
    ("NICs", [
1177 2cbcf95d Bernardo Dal Seno
      _FormatInstanceNicInfo(idx, nic)
1178 2cbcf95d Bernardo Dal Seno
      for (idx, nic) in enumerate(instance["nics"])
1179 2cbcf95d Bernardo Dal Seno
      ]),
1180 2cbcf95d Bernardo Dal Seno
    ("Disk template", instance["disk_template"]),
1181 2cbcf95d Bernardo Dal Seno
    ("Disks", [
1182 2cbcf95d Bernardo Dal Seno
      _FormatBlockDevInfo(idx, True, device, roman_integers)
1183 2cbcf95d Bernardo Dal Seno
      for (idx, device) in enumerate(instance["disks"])
1184 2cbcf95d Bernardo Dal Seno
      ]),
1185 2cbcf95d Bernardo Dal Seno
    ])
1186 2cbcf95d Bernardo Dal Seno
  return info
1187 19708787 Iustin Pop
1188 98825740 Michael Hanselmann
1189 a8083063 Iustin Pop
def ShowInstanceConfig(opts, args):
1190 a8083063 Iustin Pop
  """Compute instance run-time status.
1191 a8083063 Iustin Pop

1192 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
1193 7232c04c Iustin Pop
  @type args: list
1194 7232c04c Iustin Pop
  @param args: either an empty list, and then we query all
1195 7232c04c Iustin Pop
      instances, or should contain a list of instance names
1196 7232c04c Iustin Pop
  @rtype: int
1197 7232c04c Iustin Pop
  @return: the desired exit code
1198 7232c04c Iustin Pop

1199 a8083063 Iustin Pop
  """
1200 220cde0b Guido Trotter
  if not args and not opts.show_all:
1201 220cde0b Guido Trotter
    ToStderr("No instance selected."
1202 220cde0b Guido Trotter
             " Please pass in --all if you want to query all instances.\n"
1203 220cde0b Guido Trotter
             "Note that this can take a long time on a big cluster.")
1204 220cde0b Guido Trotter
    return 1
1205 220cde0b Guido Trotter
  elif args and opts.show_all:
1206 220cde0b Guido Trotter
    ToStderr("Cannot use --all if you specify instance names.")
1207 220cde0b Guido Trotter
    return 1
1208 220cde0b Guido Trotter
1209 a8083063 Iustin Pop
  retcode = 0
1210 5c097318 Iustin Pop
  op = opcodes.OpInstanceQueryData(instances=args, static=opts.static,
1211 5c097318 Iustin Pop
                                   use_locking=not opts.static)
1212 400ca2f7 Iustin Pop
  result = SubmitOpCode(op, opts=opts)
1213 a8083063 Iustin Pop
  if not result:
1214 3a24c527 Iustin Pop
    ToStdout("No instances.")
1215 a8083063 Iustin Pop
    return 1
1216 a8083063 Iustin Pop
1217 2cbcf95d Bernardo Dal Seno
  PrintGenericInfo([
1218 2cbcf95d Bernardo Dal Seno
    _FormatInstanceInfo(instance, opts.roman_integers)
1219 2cbcf95d Bernardo Dal Seno
    for instance in result.values()
1220 2cbcf95d Bernardo Dal Seno
    ])
1221 a8083063 Iustin Pop
  return retcode
1222 a8083063 Iustin Pop
1223 a8083063 Iustin Pop
1224 a71f835e Michael Hanselmann
def _ConvertNicDiskModifications(mods):
1225 a71f835e Michael Hanselmann
  """Converts NIC/disk modifications from CLI to opcode.
1226 a71f835e Michael Hanselmann

1227 a71f835e Michael Hanselmann
  When L{opcodes.OpInstanceSetParams} was changed to support adding/removing
1228 a71f835e Michael Hanselmann
  disks at arbitrary indices, its parameter format changed. This function
1229 a71f835e Michael Hanselmann
  converts legacy requests (e.g. "--net add" or "--disk add:size=4G") to the
1230 a71f835e Michael Hanselmann
  newer format and adds support for new-style requests (e.g. "--new 4:add").
1231 a71f835e Michael Hanselmann

1232 a71f835e Michael Hanselmann
  @type mods: list of tuples
1233 a71f835e Michael Hanselmann
  @param mods: Modifications as given by command line parser
1234 a71f835e Michael Hanselmann
  @rtype: list of tuples
1235 a71f835e Michael Hanselmann
  @return: Modifications as understood by L{opcodes.OpInstanceSetParams}
1236 a71f835e Michael Hanselmann

1237 a71f835e Michael Hanselmann
  """
1238 a71f835e Michael Hanselmann
  result = []
1239 a71f835e Michael Hanselmann
1240 b21d488b Christos Stavrakakis
  for (identifier, params) in mods:
1241 b21d488b Christos Stavrakakis
    if identifier == constants.DDM_ADD:
1242 a71f835e Michael Hanselmann
      # Add item as last item (legacy interface)
1243 a71f835e Michael Hanselmann
      action = constants.DDM_ADD
1244 b21d488b Christos Stavrakakis
      identifier = -1
1245 b21d488b Christos Stavrakakis
    elif identifier == constants.DDM_REMOVE:
1246 a71f835e Michael Hanselmann
      # Remove last item (legacy interface)
1247 a71f835e Michael Hanselmann
      action = constants.DDM_REMOVE
1248 b21d488b Christos Stavrakakis
      identifier = -1
1249 a71f835e Michael Hanselmann
    else:
1250 a71f835e Michael Hanselmann
      # Modifications and adding/removing at arbitrary indices
1251 a71f835e Michael Hanselmann
      add = params.pop(constants.DDM_ADD, _MISSING)
1252 a71f835e Michael Hanselmann
      remove = params.pop(constants.DDM_REMOVE, _MISSING)
1253 f0d22861 Constantinos Venetsanopoulos
      modify = params.pop(constants.DDM_MODIFY, _MISSING)
1254 f0d22861 Constantinos Venetsanopoulos
1255 f0d22861 Constantinos Venetsanopoulos
      if modify is _MISSING:
1256 f0d22861 Constantinos Venetsanopoulos
        if not (add is _MISSING or remove is _MISSING):
1257 f0d22861 Constantinos Venetsanopoulos
          raise errors.OpPrereqError("Cannot add and remove at the same time",
1258 f0d22861 Constantinos Venetsanopoulos
                                     errors.ECODE_INVAL)
1259 f0d22861 Constantinos Venetsanopoulos
        elif add is not _MISSING:
1260 f0d22861 Constantinos Venetsanopoulos
          action = constants.DDM_ADD
1261 f0d22861 Constantinos Venetsanopoulos
        elif remove is not _MISSING:
1262 f0d22861 Constantinos Venetsanopoulos
          action = constants.DDM_REMOVE
1263 f0d22861 Constantinos Venetsanopoulos
        else:
1264 f0d22861 Constantinos Venetsanopoulos
          action = constants.DDM_MODIFY
1265 a71f835e Michael Hanselmann
1266 7a70541e Michael Hanselmann
      elif add is _MISSING and remove is _MISSING:
1267 7a70541e Michael Hanselmann
        action = constants.DDM_MODIFY
1268 a71f835e Michael Hanselmann
      else:
1269 7a70541e Michael Hanselmann
        raise errors.OpPrereqError("Cannot modify and add/remove at the"
1270 7a70541e Michael Hanselmann
                                   " same time", errors.ECODE_INVAL)
1271 a71f835e Michael Hanselmann
1272 a71f835e Michael Hanselmann
      assert not (constants.DDMS_VALUES_WITH_MODIFY & set(params.keys()))
1273 a71f835e Michael Hanselmann
1274 a71f835e Michael Hanselmann
    if action == constants.DDM_REMOVE and params:
1275 a71f835e Michael Hanselmann
      raise errors.OpPrereqError("Not accepting parameters on removal",
1276 a71f835e Michael Hanselmann
                                 errors.ECODE_INVAL)
1277 a71f835e Michael Hanselmann
1278 b21d488b Christos Stavrakakis
    result.append((action, identifier, params))
1279 a71f835e Michael Hanselmann
1280 a71f835e Michael Hanselmann
  return result
1281 a71f835e Michael Hanselmann
1282 a71f835e Michael Hanselmann
1283 a71f835e Michael Hanselmann
def _ParseDiskSizes(mods):
1284 a71f835e Michael Hanselmann
  """Parses disk sizes in parameters.
1285 a71f835e Michael Hanselmann

1286 a71f835e Michael Hanselmann
  """
1287 a71f835e Michael Hanselmann
  for (action, _, params) in mods:
1288 1c785e0b Klaus Aehlig
    if params and constants.IDISK_SPINDLES in params:
1289 1c785e0b Klaus Aehlig
      params[constants.IDISK_SPINDLES] = \
1290 1c785e0b Klaus Aehlig
          int(params[constants.IDISK_SPINDLES])
1291 a71f835e Michael Hanselmann
    if params and constants.IDISK_SIZE in params:
1292 a71f835e Michael Hanselmann
      params[constants.IDISK_SIZE] = \
1293 a71f835e Michael Hanselmann
        utils.ParseUnit(params[constants.IDISK_SIZE])
1294 a71f835e Michael Hanselmann
    elif action == constants.DDM_ADD:
1295 a71f835e Michael Hanselmann
      raise errors.OpPrereqError("Missing required parameter 'size'",
1296 a71f835e Michael Hanselmann
                                 errors.ECODE_INVAL)
1297 a71f835e Michael Hanselmann
1298 a71f835e Michael Hanselmann
  return mods
1299 a71f835e Michael Hanselmann
1300 a71f835e Michael Hanselmann
1301 7767bbf5 Manuel Franceschini
def SetInstanceParams(opts, args):
1302 a8083063 Iustin Pop
  """Modifies an instance.
1303 a8083063 Iustin Pop

1304 a8083063 Iustin Pop
  All parameters take effect only at the next restart of the instance.
1305 a8083063 Iustin Pop

1306 7232c04c Iustin Pop
  @param opts: the command line options selected by the user
1307 7232c04c Iustin Pop
  @type args: list
1308 7232c04c Iustin Pop
  @param args: should contain only one element, the instance name
1309 7232c04c Iustin Pop
  @rtype: int
1310 7232c04c Iustin Pop
  @return: the desired exit code
1311 a8083063 Iustin Pop

1312 a8083063 Iustin Pop
  """
1313 e29e9550 Iustin Pop
  if not (opts.nics or opts.disks or opts.disk_template or
1314 57de31c0 Agata Murawska
          opts.hvparams or opts.beparams or opts.os or opts.osparams or
1315 3438e1f8 Klaus Aehlig
          opts.offline_inst or opts.online_inst or opts.runtime_mem or
1316 3438e1f8 Klaus Aehlig
          opts.new_primary_node):
1317 3a24c527 Iustin Pop
    ToStderr("Please give at least one of the parameters.")
1318 a8083063 Iustin Pop
    return 1
1319 a8083063 Iustin Pop
1320 467ae11e Guido Trotter
  for param in opts.beparams:
1321 e9d622bc Guido Trotter
    if isinstance(opts.beparams[param], basestring):
1322 e9d622bc Guido Trotter
      if opts.beparams[param].lower() == "default":
1323 e9d622bc Guido Trotter
        opts.beparams[param] = constants.VALUE_DEFAULT
1324 a5728081 Guido Trotter
1325 b2e233a5 Guido Trotter
  utils.ForceDictType(opts.beparams, constants.BES_PARAMETER_COMPAT,
1326 a5728081 Guido Trotter
                      allowed_values=[constants.VALUE_DEFAULT])
1327 467ae11e Guido Trotter
1328 48f212d7 Iustin Pop
  for param in opts.hvparams:
1329 48f212d7 Iustin Pop
    if isinstance(opts.hvparams[param], basestring):
1330 48f212d7 Iustin Pop
      if opts.hvparams[param].lower() == "default":
1331 48f212d7 Iustin Pop
        opts.hvparams[param] = constants.VALUE_DEFAULT
1332 a5728081 Guido Trotter
1333 48f212d7 Iustin Pop
  utils.ForceDictType(opts.hvparams, constants.HVS_PARAMETER_TYPES,
1334 a5728081 Guido Trotter
                      allowed_values=[constants.VALUE_DEFAULT])
1335 02a6b50a Michele Tartara
  FixHvParams(opts.hvparams)
1336 61be6ba4 Iustin Pop
1337 a71f835e Michael Hanselmann
  nics = _ConvertNicDiskModifications(opts.nics)
1338 df58ca1c Dimitris Aragiorgis
  for action, _, __ in nics:
1339 e15a00dc Dimitris Aragiorgis
    if action == constants.DDM_MODIFY and opts.hotplug and not opts.force:
1340 df58ca1c Dimitris Aragiorgis
      usertext = ("You are about to hot-modify a NIC. This will be done"
1341 df58ca1c Dimitris Aragiorgis
                  " by removing the exisiting and then adding a new one."
1342 df58ca1c Dimitris Aragiorgis
                  " Network connection might be lost. Continue?")
1343 df58ca1c Dimitris Aragiorgis
      if not AskUser(usertext):
1344 df58ca1c Dimitris Aragiorgis
        return 1
1345 df58ca1c Dimitris Aragiorgis
1346 a71f835e Michael Hanselmann
  disks = _ParseDiskSizes(_ConvertNicDiskModifications(opts.disks))
1347 24991749 Iustin Pop
1348 e29e9550 Iustin Pop
  if (opts.disk_template and
1349 3429a076 Apollon Oikonomopoulos
      opts.disk_template in constants.DTS_INT_MIRROR and
1350 e29e9550 Iustin Pop
      not opts.node):
1351 e29e9550 Iustin Pop
    ToStderr("Changing the disk template to a mirrored one requires"
1352 e29e9550 Iustin Pop
             " specifying a secondary node")
1353 e29e9550 Iustin Pop
    return 1
1354 e29e9550 Iustin Pop
1355 3016bc1f Michael Hanselmann
  if opts.offline_inst:
1356 3016bc1f Michael Hanselmann
    offline = True
1357 3016bc1f Michael Hanselmann
  elif opts.online_inst:
1358 3016bc1f Michael Hanselmann
    offline = False
1359 3016bc1f Michael Hanselmann
  else:
1360 3016bc1f Michael Hanselmann
    offline = None
1361 3016bc1f Michael Hanselmann
1362 9a3cc7ae Iustin Pop
  op = opcodes.OpInstanceSetParams(instance_name=args[0],
1363 a71f835e Michael Hanselmann
                                   nics=nics,
1364 a71f835e Michael Hanselmann
                                   disks=disks,
1365 df58ca1c Dimitris Aragiorgis
                                   hotplug=opts.hotplug,
1366 96ed3a3e Dimitris Aragiorgis
                                   hotplug_if_possible=opts.hotplug_if_possible,
1367 e29e9550 Iustin Pop
                                   disk_template=opts.disk_template,
1368 e29e9550 Iustin Pop
                                   remote_node=opts.node,
1369 3438e1f8 Klaus Aehlig
                                   pnode=opts.new_primary_node,
1370 48f212d7 Iustin Pop
                                   hvparams=opts.hvparams,
1371 338e51e8 Iustin Pop
                                   beparams=opts.beparams,
1372 2c0af7da Guido Trotter
                                   runtime_mem=opts.runtime_mem,
1373 96b39bcc Iustin Pop
                                   os_name=opts.os,
1374 1052d622 Iustin Pop
                                   osparams=opts.osparams,
1375 96b39bcc Iustin Pop
                                   force_variant=opts.force_variant,
1376 456798ab Iustin Pop
                                   force=opts.force,
1377 57de31c0 Agata Murawska
                                   wait_for_sync=opts.wait_for_sync,
1378 3016bc1f Michael Hanselmann
                                   offline=offline,
1379 9c784fb3 Dimitris Aragiorgis
                                   conflicts_check=opts.conflicts_check,
1380 1559e1e7 René Nussbaumer
                                   ignore_ipolicy=opts.ignore_ipolicy)
1381 31a853d2 Iustin Pop
1382 6340bb0a Iustin Pop
  # even if here we process the result, we allow submit only
1383 6340bb0a Iustin Pop
  result = SubmitOrSend(op, opts)
1384 a8083063 Iustin Pop
1385 a8083063 Iustin Pop
  if result:
1386 3a24c527 Iustin Pop
    ToStdout("Modified instance %s", args[0])
1387 a8083063 Iustin Pop
    for param, data in result:
1388 3a24c527 Iustin Pop
      ToStdout(" - %-5s -> %s", param, data)
1389 e29e9550 Iustin Pop
    ToStdout("Please don't forget that most parameters take effect"
1390 d976957d Iustin Pop
             " only at the next (re)start of the instance initiated by"
1391 d976957d Iustin Pop
             " ganeti; restarting from within the instance will"
1392 d976957d Iustin Pop
             " not be enough.")
1393 a8083063 Iustin Pop
  return 0
1394 a8083063 Iustin Pop
1395 a8083063 Iustin Pop
1396 bd2a5569 Michael Hanselmann
def ChangeGroup(opts, args):
1397 bd2a5569 Michael Hanselmann
  """Moves an instance to another group.
1398 bd2a5569 Michael Hanselmann

1399 bd2a5569 Michael Hanselmann
  """
1400 bd2a5569 Michael Hanselmann
  (instance_name, ) = args
1401 bd2a5569 Michael Hanselmann
1402 bd2a5569 Michael Hanselmann
  cl = GetClient()
1403 bd2a5569 Michael Hanselmann
1404 bd2a5569 Michael Hanselmann
  op = opcodes.OpInstanceChangeGroup(instance_name=instance_name,
1405 bd2a5569 Michael Hanselmann
                                     iallocator=opts.iallocator,
1406 bd2a5569 Michael Hanselmann
                                     target_groups=opts.to,
1407 bd2a5569 Michael Hanselmann
                                     early_release=opts.early_release)
1408 f70bb622 Michael Hanselmann
  result = SubmitOrSend(op, opts, cl=cl)
1409 bd2a5569 Michael Hanselmann
1410 bd2a5569 Michael Hanselmann
  # Keep track of submitted jobs
1411 bd2a5569 Michael Hanselmann
  jex = JobExecutor(cl=cl, opts=opts)
1412 bd2a5569 Michael Hanselmann
1413 bd2a5569 Michael Hanselmann
  for (status, job_id) in result[constants.JOB_IDS_KEY]:
1414 bd2a5569 Michael Hanselmann
    jex.AddJobId(None, status, job_id)
1415 bd2a5569 Michael Hanselmann
1416 bd2a5569 Michael Hanselmann
  results = jex.GetResults()
1417 bd2a5569 Michael Hanselmann
  bad_cnt = len([row for row in results if not row[0]])
1418 bd2a5569 Michael Hanselmann
  if bad_cnt == 0:
1419 bd2a5569 Michael Hanselmann
    ToStdout("Instance '%s' changed group successfully.", instance_name)
1420 bd2a5569 Michael Hanselmann
    rcode = constants.EXIT_SUCCESS
1421 bd2a5569 Michael Hanselmann
  else:
1422 bd2a5569 Michael Hanselmann
    ToStdout("There were %s errors while changing group of instance '%s'.",
1423 bd2a5569 Michael Hanselmann
             bad_cnt, instance_name)
1424 bd2a5569 Michael Hanselmann
    rcode = constants.EXIT_FAILURE
1425 bd2a5569 Michael Hanselmann
1426 bd2a5569 Michael Hanselmann
  return rcode
1427 bd2a5569 Michael Hanselmann
1428 bd2a5569 Michael Hanselmann
1429 312ac745 Iustin Pop
# multi-instance selection options
1430 c38c44ad Michael Hanselmann
m_force_multi = cli_option("--force-multiple", dest="force_multi",
1431 c38c44ad Michael Hanselmann
                           help="Do not ask for confirmation when more than"
1432 c38c44ad Michael Hanselmann
                           " one instance is affected",
1433 c38c44ad Michael Hanselmann
                           action="store_true", default=False)
1434 804a1e8e Iustin Pop
1435 c38c44ad Michael Hanselmann
m_pri_node_opt = cli_option("--primary", dest="multi_mode",
1436 c38c44ad Michael Hanselmann
                            help="Filter by nodes (primary only)",
1437 c20efaa8 Michael Hanselmann
                            const=_EXPAND_NODES_PRI, action="store_const")
1438 312ac745 Iustin Pop
1439 c38c44ad Michael Hanselmann
m_sec_node_opt = cli_option("--secondary", dest="multi_mode",
1440 c38c44ad Michael Hanselmann
                            help="Filter by nodes (secondary only)",
1441 c20efaa8 Michael Hanselmann
                            const=_EXPAND_NODES_SEC, action="store_const")
1442 312ac745 Iustin Pop
1443 c38c44ad Michael Hanselmann
m_node_opt = cli_option("--node", dest="multi_mode",
1444 c38c44ad Michael Hanselmann
                        help="Filter by nodes (primary and secondary)",
1445 c20efaa8 Michael Hanselmann
                        const=_EXPAND_NODES_BOTH, action="store_const")
1446 312ac745 Iustin Pop
1447 c38c44ad Michael Hanselmann
m_clust_opt = cli_option("--all", dest="multi_mode",
1448 c38c44ad Michael Hanselmann
                         help="Select all instances in the cluster",
1449 c20efaa8 Michael Hanselmann
                         const=_EXPAND_CLUSTER, action="store_const")
1450 312ac745 Iustin Pop
1451 c38c44ad Michael Hanselmann
m_inst_opt = cli_option("--instance", dest="multi_mode",
1452 c38c44ad Michael Hanselmann
                        help="Filter by instance name [default]",
1453 c20efaa8 Michael Hanselmann
                        const=_EXPAND_INSTANCES, action="store_const")
1454 312ac745 Iustin Pop
1455 39dfd93e René Nussbaumer
m_node_tags_opt = cli_option("--node-tags", dest="multi_mode",
1456 39dfd93e René Nussbaumer
                             help="Filter by node tag",
1457 c20efaa8 Michael Hanselmann
                             const=_EXPAND_NODES_BOTH_BY_TAGS,
1458 39dfd93e René Nussbaumer
                             action="store_const")
1459 39dfd93e René Nussbaumer
1460 39dfd93e René Nussbaumer
m_pri_node_tags_opt = cli_option("--pri-node-tags", dest="multi_mode",
1461 39dfd93e René Nussbaumer
                                 help="Filter by primary node tag",
1462 c20efaa8 Michael Hanselmann
                                 const=_EXPAND_NODES_PRI_BY_TAGS,
1463 39dfd93e René Nussbaumer
                                 action="store_const")
1464 39dfd93e René Nussbaumer
1465 39dfd93e René Nussbaumer
m_sec_node_tags_opt = cli_option("--sec-node-tags", dest="multi_mode",
1466 39dfd93e René Nussbaumer
                                 help="Filter by secondary node tag",
1467 c20efaa8 Michael Hanselmann
                                 const=_EXPAND_NODES_SEC_BY_TAGS,
1468 39dfd93e René Nussbaumer
                                 action="store_const")
1469 39dfd93e René Nussbaumer
1470 39dfd93e René Nussbaumer
m_inst_tags_opt = cli_option("--tags", dest="multi_mode",
1471 39dfd93e René Nussbaumer
                             help="Filter by instance tag",
1472 c20efaa8 Michael Hanselmann
                             const=_EXPAND_INSTANCES_BY_TAGS,
1473 39dfd93e René Nussbaumer
                             action="store_const")
1474 312ac745 Iustin Pop
1475 a8083063 Iustin Pop
# this is defined separately due to readability only
1476 a8083063 Iustin Pop
add_opts = [
1477 064c21f8 Iustin Pop
  NOSTART_OPT,
1478 064c21f8 Iustin Pop
  OS_OPT,
1479 06073e85 Guido Trotter
  FORCE_VARIANT_OPT,
1480 25a8792c Iustin Pop
  NO_INSTALL_OPT,
1481 10889e0c René Nussbaumer
  IGNORE_IPOLICY_OPT,
1482 a8083063 Iustin Pop
  ]
1483 a8083063 Iustin Pop
1484 a8083063 Iustin Pop
commands = {
1485 d0c8c01d Iustin Pop
  "add": (
1486 eb28ecf6 Guido Trotter
    AddInstance, [ArgHost(min=1, max=1)], COMMON_CREATE_OPTS + add_opts,
1487 6ea815cf Iustin Pop
    "[...] -t disk-type -n node[:secondary-node] -o os-type <name>",
1488 6ea815cf Iustin Pop
    "Creates and adds a new instance to the cluster"),
1489 d0c8c01d Iustin Pop
  "batch-create": (
1490 b0a8e8c2 René Nussbaumer
    BatchCreate, [ArgFile(min=1, max=1)],
1491 d6cd74dd Klaus Aehlig
    [DRY_RUN_OPT, PRIORITY_OPT, IALLOCATOR_OPT] + SUBMIT_OPTS,
1492 6ea815cf Iustin Pop
    "<instances.json>",
1493 6ea815cf Iustin Pop
    "Create a bunch of instances based on specs in the file."),
1494 d0c8c01d Iustin Pop
  "console": (
1495 6ea815cf Iustin Pop
    ConnectToInstanceConsole, ARGS_ONE_INSTANCE,
1496 aa06f8c6 Michael Hanselmann
    [SHOWCMD_OPT, PRIORITY_OPT],
1497 6ea815cf Iustin Pop
    "[--show-cmd] <instance>", "Opens a console on the specified instance"),
1498 d0c8c01d Iustin Pop
  "failover": (
1499 6ea815cf Iustin Pop
    FailoverInstance, ARGS_ONE_INSTANCE,
1500 d6cd74dd Klaus Aehlig
    [FORCE_OPT, IGNORE_CONSIST_OPT] + SUBMIT_OPTS +
1501 d6cd74dd Klaus Aehlig
    [SHUTDOWN_TIMEOUT_OPT,
1502 b6aaf437 René Nussbaumer
     DRY_RUN_OPT, PRIORITY_OPT, DST_NODE_OPT, IALLOCATOR_OPT,
1503 aa7a5c90 Michele Tartara
     IGNORE_IPOLICY_OPT, CLEANUP_OPT],
1504 a6a3efe4 Iustin Pop
    "[-f] <instance>", "Stops the instance, changes its primary node and"
1505 a6a3efe4 Iustin Pop
    " (if it was originally running) starts it on the new node"
1506 a6a3efe4 Iustin Pop
    " (the secondary for mirrored instances or any node"
1507 a6a3efe4 Iustin Pop
    " for shared storage)."),
1508 d0c8c01d Iustin Pop
  "migrate": (
1509 6ea815cf Iustin Pop
    MigrateInstance, ARGS_ONE_INSTANCE,
1510 aa06f8c6 Michael Hanselmann
    [FORCE_OPT, NONLIVE_OPT, MIGRATION_MODE_OPT, CLEANUP_OPT, DRY_RUN_OPT,
1511 3ed23330 René Nussbaumer
     PRIORITY_OPT, DST_NODE_OPT, IALLOCATOR_OPT, ALLOW_FAILOVER_OPT,
1512 d6cd74dd Klaus Aehlig
     IGNORE_IPOLICY_OPT, NORUNTIME_CHGS_OPT] + SUBMIT_OPTS,
1513 6ea815cf Iustin Pop
    "[-f] <instance>", "Migrate instance to its secondary node"
1514 1b7761fd Apollon Oikonomopoulos
    " (only for mirrored instances)"),
1515 d0c8c01d Iustin Pop
  "move": (
1516 6ea815cf Iustin Pop
    MoveInstance, ARGS_ONE_INSTANCE,
1517 d6cd74dd Klaus Aehlig
    [FORCE_OPT] + SUBMIT_OPTS +
1518 94ab995a Thomas Thrainer
    [SINGLE_NODE_OPT, COMPRESS_OPT,
1519 d6cd74dd Klaus Aehlig
     SHUTDOWN_TIMEOUT_OPT, DRY_RUN_OPT, PRIORITY_OPT, IGNORE_CONSIST_OPT,
1520 d6cd74dd Klaus Aehlig
     IGNORE_IPOLICY_OPT],
1521 6ea815cf Iustin Pop
    "[-f] <instance>", "Move instance to an arbitrary node"
1522 6ea815cf Iustin Pop
    " (only for instances of type file and lv)"),
1523 d0c8c01d Iustin Pop
  "info": (
1524 6ea815cf Iustin Pop
    ShowInstanceConfig, ARGS_MANY_INSTANCES,
1525 aa06f8c6 Michael Hanselmann
    [STATIC_OPT, ALL_OPT, ROMAN_OPT, PRIORITY_OPT],
1526 6ea815cf Iustin Pop
    "[-s] {--all | <instance>...}",
1527 6ea815cf Iustin Pop
    "Show information on the specified instance(s)"),
1528 d0c8c01d Iustin Pop
  "list": (
1529 6ea815cf Iustin Pop
    ListInstances, ARGS_MANY_INSTANCES,
1530 87e87959 Michael Hanselmann
    [NOHDR_OPT, SEP_OPT, USEUNITS_OPT, FIELDS_OPT, VERBOSE_OPT,
1531 87e87959 Michael Hanselmann
     FORCE_FILTER_OPT],
1532 6ea815cf Iustin Pop
    "[<instance>...]",
1533 b82c5ff5 Michael Hanselmann
    "Lists the instances and their status. The available fields can be shown"
1534 b82c5ff5 Michael Hanselmann
    " using the \"list-fields\" command (see the man page for details)."
1535 b82c5ff5 Michael Hanselmann
    " The default field list is (in order): %s." %
1536 b82c5ff5 Michael Hanselmann
    utils.CommaJoin(_LIST_DEF_FIELDS),
1537 6ea815cf Iustin Pop
    ),
1538 b82c5ff5 Michael Hanselmann
  "list-fields": (
1539 b82c5ff5 Michael Hanselmann
    ListInstanceFields, [ArgUnknown()],
1540 b82c5ff5 Michael Hanselmann
    [NOHDR_OPT, SEP_OPT],
1541 b82c5ff5 Michael Hanselmann
    "[fields...]",
1542 b82c5ff5 Michael Hanselmann
    "Lists all available fields for instances"),
1543 d0c8c01d Iustin Pop
  "reinstall": (
1544 3e54ace7 Iustin Pop
    ReinstallInstance, [ArgInstance()],
1545 06073e85 Guido Trotter
    [FORCE_OPT, OS_OPT, FORCE_VARIANT_OPT, m_force_multi, m_node_opt,
1546 39dfd93e René Nussbaumer
     m_pri_node_opt, m_sec_node_opt, m_clust_opt, m_inst_opt, m_node_tags_opt,
1547 d6cd74dd Klaus Aehlig
     m_pri_node_tags_opt, m_sec_node_tags_opt, m_inst_tags_opt, SELECT_OS_OPT]
1548 d6cd74dd Klaus Aehlig
    + SUBMIT_OPTS + [DRY_RUN_OPT, PRIORITY_OPT, OSPARAMS_OPT],
1549 6ea815cf Iustin Pop
    "[-f] <instance>", "Reinstall a stopped instance"),
1550 d0c8c01d Iustin Pop
  "remove": (
1551 6ea815cf Iustin Pop
    RemoveInstance, ARGS_ONE_INSTANCE,
1552 d6cd74dd Klaus Aehlig
    [FORCE_OPT, SHUTDOWN_TIMEOUT_OPT, IGNORE_FAILURES_OPT] + SUBMIT_OPTS
1553 d6cd74dd Klaus Aehlig
    + [DRY_RUN_OPT, PRIORITY_OPT],
1554 6ea815cf Iustin Pop
    "[-f] <instance>", "Shuts down the instance and removes it"),
1555 d0c8c01d Iustin Pop
  "rename": (
1556 6ea815cf Iustin Pop
    RenameInstance,
1557 6ea815cf Iustin Pop
    [ArgInstance(min=1, max=1), ArgHost(min=1, max=1)],
1558 d6cd74dd Klaus Aehlig
    [NOIPCHECK_OPT, NONAMECHECK_OPT] + SUBMIT_OPTS
1559 d6cd74dd Klaus Aehlig
    + [DRY_RUN_OPT, PRIORITY_OPT],
1560 6ea815cf Iustin Pop
    "<instance> <new_name>", "Rename the instance"),
1561 d0c8c01d Iustin Pop
  "replace-disks": (
1562 6ea815cf Iustin Pop
    ReplaceDisks, ARGS_ONE_INSTANCE,
1563 7ea7bcf6 Iustin Pop
    [AUTO_REPLACE_OPT, DISKIDX_OPT, IALLOCATOR_OPT, EARLY_RELEASE_OPT,
1564 d6cd74dd Klaus Aehlig
     NEW_SECONDARY_OPT, ON_PRIMARY_OPT, ON_SECONDARY_OPT] + SUBMIT_OPTS
1565 d6cd74dd Klaus Aehlig
    + [DRY_RUN_OPT, PRIORITY_OPT, IGNORE_IPOLICY_OPT],
1566 50c1e351 Bernardo Dal Seno
    "[-s|-p|-a|-n NODE|-I NAME] <instance>",
1567 50c1e351 Bernardo Dal Seno
    "Replaces disks for the instance"),
1568 d0c8c01d Iustin Pop
  "modify": (
1569 6ea815cf Iustin Pop
    SetInstanceParams, ARGS_ONE_INSTANCE,
1570 d6cd74dd Klaus Aehlig
    [BACKEND_OPT, DISK_OPT, FORCE_OPT, HVOPTS_OPT, NET_OPT] + SUBMIT_OPTS +
1571 d6cd74dd Klaus Aehlig
    [DISK_TEMPLATE_OPT, SINGLE_NODE_OPT, OS_OPT, FORCE_VARIANT_OPT,
1572 57de31c0 Agata Murawska
     OSPARAMS_OPT, DRY_RUN_OPT, PRIORITY_OPT, NWSYNC_OPT, OFFLINE_INST_OPT,
1573 9c784fb3 Dimitris Aragiorgis
     ONLINE_INST_OPT, IGNORE_IPOLICY_OPT, RUNTIME_MEM_OPT,
1574 96ed3a3e Dimitris Aragiorgis
     NOCONFLICTSCHECK_OPT, NEW_PRIMARY_OPT, HOTPLUG_OPT,
1575 96ed3a3e Dimitris Aragiorgis
     HOTPLUG_IF_POSSIBLE_OPT],
1576 6ea815cf Iustin Pop
    "<instance>", "Alters the parameters of an instance"),
1577 d0c8c01d Iustin Pop
  "shutdown": (
1578 1c5945b6 Iustin Pop
    GenericManyOps("shutdown", _ShutdownInstance), [ArgInstance()],
1579 0d57ce24 Guido Trotter
    [FORCE_OPT, m_node_opt, m_pri_node_opt, m_sec_node_opt, m_clust_opt,
1580 39dfd93e René Nussbaumer
     m_node_tags_opt, m_pri_node_tags_opt, m_sec_node_tags_opt,
1581 d6cd74dd Klaus Aehlig
     m_inst_tags_opt, m_inst_opt, m_force_multi, TIMEOUT_OPT] + SUBMIT_OPTS
1582 d6cd74dd Klaus Aehlig
    + [DRY_RUN_OPT, PRIORITY_OPT, IGNORE_OFFLINE_OPT, NO_REMEMBER_OPT],
1583 6ea815cf Iustin Pop
    "<instance>", "Stops an instance"),
1584 d0c8c01d Iustin Pop
  "startup": (
1585 1c5945b6 Iustin Pop
    GenericManyOps("startup", _StartupInstance), [ArgInstance()],
1586 39dfd93e René Nussbaumer
    [FORCE_OPT, m_force_multi, m_node_opt, m_pri_node_opt, m_sec_node_opt,
1587 39dfd93e René Nussbaumer
     m_node_tags_opt, m_pri_node_tags_opt, m_sec_node_tags_opt,
1588 d6cd74dd Klaus Aehlig
     m_inst_tags_opt, m_clust_opt, m_inst_opt] + SUBMIT_OPTS +
1589 d6cd74dd Klaus Aehlig
    [HVOPTS_OPT,
1590 885a0fc4 Iustin Pop
     BACKEND_OPT, DRY_RUN_OPT, PRIORITY_OPT, IGNORE_OFFLINE_OPT,
1591 323f9095 Stephen Shirley
     NO_REMEMBER_OPT, STARTUP_PAUSED_OPT],
1592 6ea815cf Iustin Pop
    "<instance>", "Starts an instance"),
1593 d0c8c01d Iustin Pop
  "reboot": (
1594 1c5945b6 Iustin Pop
    GenericManyOps("reboot", _RebootInstance), [ArgInstance()],
1595 064c21f8 Iustin Pop
    [m_force_multi, REBOOT_TYPE_OPT, IGNORE_SECONDARIES_OPT, m_node_opt,
1596 d6cd74dd Klaus Aehlig
     m_pri_node_opt, m_sec_node_opt, m_clust_opt, m_inst_opt] + SUBMIT_OPTS +
1597 d6cd74dd Klaus Aehlig
    [m_node_tags_opt, m_pri_node_tags_opt, m_sec_node_tags_opt,
1598 aa922d64 Michele Tartara
     m_inst_tags_opt, SHUTDOWN_TIMEOUT_OPT, DRY_RUN_OPT, PRIORITY_OPT],
1599 6ea815cf Iustin Pop
    "<instance>", "Reboots an instance"),
1600 d0c8c01d Iustin Pop
  "activate-disks": (
1601 db5a8a2d Iustin Pop
    ActivateDisks, ARGS_ONE_INSTANCE,
1602 d6cd74dd Klaus Aehlig
    SUBMIT_OPTS + [IGNORE_SIZE_OPT, PRIORITY_OPT, WFSYNC_OPT],
1603 6ea815cf Iustin Pop
    "<instance>", "Activate an instance's disks"),
1604 d0c8c01d Iustin Pop
  "deactivate-disks": (
1605 aa06f8c6 Michael Hanselmann
    DeactivateDisks, ARGS_ONE_INSTANCE,
1606 d6cd74dd Klaus Aehlig
    [FORCE_OPT] + SUBMIT_OPTS + [DRY_RUN_OPT, PRIORITY_OPT],
1607 c9c41373 Iustin Pop
    "[-f] <instance>", "Deactivate an instance's disks"),
1608 d0c8c01d Iustin Pop
  "recreate-disks": (
1609 aa06f8c6 Michael Hanselmann
    RecreateDisks, ARGS_ONE_INSTANCE,
1610 d6cd74dd Klaus Aehlig
    SUBMIT_OPTS +
1611 d6cd74dd Klaus Aehlig
    [DISK_OPT, NODE_PLACEMENT_OPT, DRY_RUN_OPT, PRIORITY_OPT,
1612 38db4e7c Adam Ingrassia
     IALLOCATOR_OPT],
1613 6ea815cf Iustin Pop
    "<instance>", "Recreate an instance's disks"),
1614 d0c8c01d Iustin Pop
  "grow-disk": (
1615 6ea815cf Iustin Pop
    GrowDisk,
1616 6ea815cf Iustin Pop
    [ArgInstance(min=1, max=1), ArgUnknown(min=1, max=1),
1617 6ea815cf Iustin Pop
     ArgUnknown(min=1, max=1)],
1618 d6cd74dd Klaus Aehlig
    SUBMIT_OPTS + [NWSYNC_OPT, DRY_RUN_OPT, PRIORITY_OPT, ABSOLUTE_OPT],
1619 6ea815cf Iustin Pop
    "<instance> <disk> <size>", "Grow an instance's disk"),
1620 bd2a5569 Michael Hanselmann
  "change-group": (
1621 bd2a5569 Michael Hanselmann
    ChangeGroup, ARGS_ONE_INSTANCE,
1622 d6cd74dd Klaus Aehlig
    [TO_GROUP_OPT, IALLOCATOR_OPT, EARLY_RELEASE_OPT, PRIORITY_OPT]
1623 d6cd74dd Klaus Aehlig
    + SUBMIT_OPTS,
1624 bd2a5569 Michael Hanselmann
    "[-I <iallocator>] [--to <group>]", "Change group of instance"),
1625 d0c8c01d Iustin Pop
  "list-tags": (
1626 6bc3ed14 Michael Hanselmann
    ListTags, ARGS_ONE_INSTANCE, [],
1627 6ea815cf Iustin Pop
    "<instance_name>", "List the tags of the given instance"),
1628 d0c8c01d Iustin Pop
  "add-tags": (
1629 6ea815cf Iustin Pop
    AddTags, [ArgInstance(min=1, max=1), ArgUnknown()],
1630 d6cd74dd Klaus Aehlig
    [TAG_SRC_OPT, PRIORITY_OPT] + SUBMIT_OPTS,
1631 6ea815cf Iustin Pop
    "<instance_name> tag...", "Add tags to the given instance"),
1632 d0c8c01d Iustin Pop
  "remove-tags": (
1633 6ea815cf Iustin Pop
    RemoveTags, [ArgInstance(min=1, max=1), ArgUnknown()],
1634 d6cd74dd Klaus Aehlig
    [TAG_SRC_OPT, PRIORITY_OPT] + SUBMIT_OPTS,
1635 6ea815cf Iustin Pop
    "<instance_name> tag...", "Remove tags from given instance"),
1636 a8083063 Iustin Pop
  }
1637 a8083063 Iustin Pop
1638 7232c04c Iustin Pop
#: dictionary with aliases for commands
1639 dbfd89dd Guido Trotter
aliases = {
1640 d0c8c01d Iustin Pop
  "start": "startup",
1641 d0c8c01d Iustin Pop
  "stop": "shutdown",
1642 96897af7 Alexander Schreiber
  "show": "info",
1643 dbfd89dd Guido Trotter
  }
1644 dbfd89dd Guido Trotter
1645 a8005e17 Michael Hanselmann
1646 e792102d Michael Hanselmann
def Main():
1647 e792102d Michael Hanselmann
  return GenericMain(commands, aliases=aliases,
1648 ef9fa5b9 René Nussbaumer
                     override={"tag_type": constants.TAG_INSTANCE},
1649 ef9fa5b9 René Nussbaumer
                     env_override=_ENV_OVERRIDE)