Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ b54ecf12

History | View | Annotate | Download (127.5 kB)

1 2f31098c Iustin Pop
#
2 a8083063 Iustin Pop
#
3 a8083063 Iustin Pop
4 45bc4635 Iustin Pop
# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 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 a8083063 Iustin Pop
22 360b0dc2 Iustin Pop
"""Functions used by the node daemon
23 360b0dc2 Iustin Pop

24 360b0dc2 Iustin Pop
@var _ALLOWED_UPLOAD_FILES: denotes which files are accepted in
25 360b0dc2 Iustin Pop
     the L{UploadFile} function
26 714ea7ca Iustin Pop
@var _ALLOWED_CLEAN_DIRS: denotes which directories are accepted
27 714ea7ca Iustin Pop
     in the L{_CleanDirectory} function
28 360b0dc2 Iustin Pop

29 360b0dc2 Iustin Pop
"""
30 a8083063 Iustin Pop
31 b459a848 Andrea Spadaccini
# pylint: disable=E1103
32 6c881c52 Iustin Pop
33 6c881c52 Iustin Pop
# E1103: %s %r has no %r member (but some types could not be
34 6c881c52 Iustin Pop
# inferred), because the _TryOSFromDisk returns either (True, os_obj)
35 6c881c52 Iustin Pop
# or (False, "string") which confuses pylint
36 6c881c52 Iustin Pop
37 a8083063 Iustin Pop
38 a8083063 Iustin Pop
import os
39 a8083063 Iustin Pop
import os.path
40 a8083063 Iustin Pop
import shutil
41 a8083063 Iustin Pop
import time
42 a8083063 Iustin Pop
import stat
43 a8083063 Iustin Pop
import errno
44 a8083063 Iustin Pop
import re
45 b544cfe0 Iustin Pop
import random
46 18682bca Iustin Pop
import logging
47 3b9e6a30 Iustin Pop
import tempfile
48 12bce260 Michael Hanselmann
import zlib
49 12bce260 Michael Hanselmann
import base64
50 f81c4737 Michael Hanselmann
import signal
51 a8083063 Iustin Pop
52 a8083063 Iustin Pop
from ganeti import errors
53 a8083063 Iustin Pop
from ganeti import utils
54 a8083063 Iustin Pop
from ganeti import ssh
55 a8083063 Iustin Pop
from ganeti import hypervisor
56 a8083063 Iustin Pop
from ganeti import constants
57 cde49218 Helga Velroyen
from ganeti.storage import bdev
58 cde49218 Helga Velroyen
from ganeti.storage import drbd
59 a8083063 Iustin Pop
from ganeti import objects
60 880478f8 Iustin Pop
from ganeti import ssconf
61 1651d116 Michael Hanselmann
from ganeti import serializer
62 a744b676 Manuel Franceschini
from ganeti import netutils
63 82b22e19 René Nussbaumer
from ganeti import runtime
64 3ccd3243 Andrea Spadaccini
from ganeti import compat
65 710f30ec Michael Hanselmann
from ganeti import pathutils
66 cffbbae7 Michael Hanselmann
from ganeti import vcluster
67 99e222b1 Michael Hanselmann
from ganeti import ht
68 cde49218 Helga Velroyen
from ganeti.storage.base import BlockDev
69 cde49218 Helga Velroyen
from ganeti.storage.drbd import DRBD8
70 68d95757 Guido Trotter
from ganeti import hooksmaster
71 a8083063 Iustin Pop
72 a8083063 Iustin Pop
73 13998ef2 Michael Hanselmann
_BOOT_ID_PATH = "/proc/sys/kernel/random/boot_id"
74 b8028dcf Michael Hanselmann
_ALLOWED_CLEAN_DIRS = compat.UniqueFrozenset([
75 710f30ec Michael Hanselmann
  pathutils.DATA_DIR,
76 710f30ec Michael Hanselmann
  pathutils.JOB_QUEUE_ARCHIVE_DIR,
77 710f30ec Michael Hanselmann
  pathutils.QUEUE_DIR,
78 710f30ec Michael Hanselmann
  pathutils.CRYPTO_KEYS_DIR,
79 714ea7ca Iustin Pop
  ])
80 f942a838 Michael Hanselmann
_MAX_SSL_CERT_VALIDITY = 7 * 24 * 60 * 60
81 f942a838 Michael Hanselmann
_X509_KEY_FILE = "key"
82 f942a838 Michael Hanselmann
_X509_CERT_FILE = "cert"
83 1651d116 Michael Hanselmann
_IES_STATUS_FILE = "status"
84 1651d116 Michael Hanselmann
_IES_PID_FILE = "pid"
85 1651d116 Michael Hanselmann
_IES_CA_FILE = "ca"
86 13998ef2 Michael Hanselmann
87 0b5303da Iustin Pop
#: Valid LVS output line regex
88 a1f38213 Iustin Pop
_LVSLINE_REGEX = re.compile("^ *([^|]+)\|([^|]+)\|([0-9.]+)\|([^|]{6,})\|?$")
89 0b5303da Iustin Pop
90 702eff21 Andrea Spadaccini
# Actions for the master setup script
91 702eff21 Andrea Spadaccini
_MASTER_START = "start"
92 702eff21 Andrea Spadaccini
_MASTER_STOP = "stop"
93 702eff21 Andrea Spadaccini
94 45bc4635 Iustin Pop
#: Maximum file permissions for restricted command directory and executables
95 1a2eb2dc Michael Hanselmann
_RCMD_MAX_MODE = (stat.S_IRWXU |
96 1a2eb2dc Michael Hanselmann
                  stat.S_IRGRP | stat.S_IXGRP |
97 1a2eb2dc Michael Hanselmann
                  stat.S_IROTH | stat.S_IXOTH)
98 1a2eb2dc Michael Hanselmann
99 45bc4635 Iustin Pop
#: Delay before returning an error for restricted commands
100 1a2eb2dc Michael Hanselmann
_RCMD_INVALID_DELAY = 10
101 1a2eb2dc Michael Hanselmann
102 45bc4635 Iustin Pop
#: How long to wait to acquire lock for restricted commands (shorter than
103 1a2eb2dc Michael Hanselmann
#: L{_RCMD_INVALID_DELAY}) to reduce blockage of noded forks when many
104 1a2eb2dc Michael Hanselmann
#: command requests arrive
105 1a2eb2dc Michael Hanselmann
_RCMD_LOCK_TIMEOUT = _RCMD_INVALID_DELAY * 0.8
106 1a2eb2dc Michael Hanselmann
107 13998ef2 Michael Hanselmann
108 2cc6781a Iustin Pop
class RPCFail(Exception):
109 2cc6781a Iustin Pop
  """Class denoting RPC failure.
110 2cc6781a Iustin Pop

111 2cc6781a Iustin Pop
  Its argument is the error message.
112 2cc6781a Iustin Pop

113 2cc6781a Iustin Pop
  """
114 2cc6781a Iustin Pop
115 13998ef2 Michael Hanselmann
116 584ea340 Michele Tartara
def _GetInstReasonFilename(instance_name):
117 a59d5fa1 Michele Tartara
  """Path of the file containing the reason of the instance status change.
118 a59d5fa1 Michele Tartara

119 a59d5fa1 Michele Tartara
  @type instance_name: string
120 a59d5fa1 Michele Tartara
  @param instance_name: The name of the instance
121 a59d5fa1 Michele Tartara
  @rtype: string
122 a59d5fa1 Michele Tartara
  @return: The path of the file
123 a59d5fa1 Michele Tartara

124 a59d5fa1 Michele Tartara
  """
125 a59d5fa1 Michele Tartara
  return utils.PathJoin(pathutils.INSTANCE_REASON_DIR, instance_name)
126 a59d5fa1 Michele Tartara
127 a59d5fa1 Michele Tartara
128 584ea340 Michele Tartara
def _StoreInstReasonTrail(instance_name, trail):
129 584ea340 Michele Tartara
  """Serialize a reason trail related to an instance change of state to file.
130 584ea340 Michele Tartara

131 584ea340 Michele Tartara
  The exact location of the file depends on the name of the instance and on
132 584ea340 Michele Tartara
  the configuration of the Ganeti cluster defined at deploy time.
133 584ea340 Michele Tartara

134 584ea340 Michele Tartara
  @type instance_name: string
135 584ea340 Michele Tartara
  @param instance_name: The name of the instance
136 584ea340 Michele Tartara
  @rtype: None
137 584ea340 Michele Tartara

138 584ea340 Michele Tartara
  """
139 584ea340 Michele Tartara
  json = serializer.DumpJson(trail)
140 584ea340 Michele Tartara
  filename = _GetInstReasonFilename(instance_name)
141 584ea340 Michele Tartara
  utils.WriteFile(filename, data=json)
142 584ea340 Michele Tartara
143 584ea340 Michele Tartara
144 2cc6781a Iustin Pop
def _Fail(msg, *args, **kwargs):
145 2cc6781a Iustin Pop
  """Log an error and the raise an RPCFail exception.
146 2cc6781a Iustin Pop

147 2cc6781a Iustin Pop
  This exception is then handled specially in the ganeti daemon and
148 2cc6781a Iustin Pop
  turned into a 'failed' return type. As such, this function is a
149 2cc6781a Iustin Pop
  useful shortcut for logging the error and returning it to the master
150 2cc6781a Iustin Pop
  daemon.
151 2cc6781a Iustin Pop

152 2cc6781a Iustin Pop
  @type msg: string
153 2cc6781a Iustin Pop
  @param msg: the text of the exception
154 2cc6781a Iustin Pop
  @raise RPCFail
155 2cc6781a Iustin Pop

156 2cc6781a Iustin Pop
  """
157 2cc6781a Iustin Pop
  if args:
158 2cc6781a Iustin Pop
    msg = msg % args
159 afdc3985 Iustin Pop
  if "log" not in kwargs or kwargs["log"]: # if we should log this error
160 afdc3985 Iustin Pop
    if "exc" in kwargs and kwargs["exc"]:
161 afdc3985 Iustin Pop
      logging.exception(msg)
162 afdc3985 Iustin Pop
    else:
163 afdc3985 Iustin Pop
      logging.error(msg)
164 2cc6781a Iustin Pop
  raise RPCFail(msg)
165 2cc6781a Iustin Pop
166 2cc6781a Iustin Pop
167 c657dcc9 Michael Hanselmann
def _GetConfig():
168 93384844 Iustin Pop
  """Simple wrapper to return a SimpleStore.
169 10c2650b Iustin Pop

170 93384844 Iustin Pop
  @rtype: L{ssconf.SimpleStore}
171 93384844 Iustin Pop
  @return: a SimpleStore instance
172 10c2650b Iustin Pop

173 10c2650b Iustin Pop
  """
174 93384844 Iustin Pop
  return ssconf.SimpleStore()
175 c657dcc9 Michael Hanselmann
176 c657dcc9 Michael Hanselmann
177 62c9ec92 Iustin Pop
def _GetSshRunner(cluster_name):
178 10c2650b Iustin Pop
  """Simple wrapper to return an SshRunner.
179 10c2650b Iustin Pop

180 10c2650b Iustin Pop
  @type cluster_name: str
181 10c2650b Iustin Pop
  @param cluster_name: the cluster name, which is needed
182 10c2650b Iustin Pop
      by the SshRunner constructor
183 10c2650b Iustin Pop
  @rtype: L{ssh.SshRunner}
184 10c2650b Iustin Pop
  @return: an SshRunner instance
185 10c2650b Iustin Pop

186 10c2650b Iustin Pop
  """
187 62c9ec92 Iustin Pop
  return ssh.SshRunner(cluster_name)
188 c92b310a Michael Hanselmann
189 c92b310a Michael Hanselmann
190 12bce260 Michael Hanselmann
def _Decompress(data):
191 12bce260 Michael Hanselmann
  """Unpacks data compressed by the RPC client.
192 12bce260 Michael Hanselmann

193 12bce260 Michael Hanselmann
  @type data: list or tuple
194 12bce260 Michael Hanselmann
  @param data: Data sent by RPC client
195 12bce260 Michael Hanselmann
  @rtype: str
196 12bce260 Michael Hanselmann
  @return: Decompressed data
197 12bce260 Michael Hanselmann

198 12bce260 Michael Hanselmann
  """
199 52e2f66e Michael Hanselmann
  assert isinstance(data, (list, tuple))
200 12bce260 Michael Hanselmann
  assert len(data) == 2
201 12bce260 Michael Hanselmann
  (encoding, content) = data
202 12bce260 Michael Hanselmann
  if encoding == constants.RPC_ENCODING_NONE:
203 12bce260 Michael Hanselmann
    return content
204 12bce260 Michael Hanselmann
  elif encoding == constants.RPC_ENCODING_ZLIB_BASE64:
205 12bce260 Michael Hanselmann
    return zlib.decompress(base64.b64decode(content))
206 12bce260 Michael Hanselmann
  else:
207 12bce260 Michael Hanselmann
    raise AssertionError("Unknown data encoding")
208 12bce260 Michael Hanselmann
209 12bce260 Michael Hanselmann
210 3bc6be5c Iustin Pop
def _CleanDirectory(path, exclude=None):
211 76ab5558 Michael Hanselmann
  """Removes all regular files in a directory.
212 76ab5558 Michael Hanselmann

213 10c2650b Iustin Pop
  @type path: str
214 10c2650b Iustin Pop
  @param path: the directory to clean
215 76ab5558 Michael Hanselmann
  @type exclude: list
216 10c2650b Iustin Pop
  @param exclude: list of files to be excluded, defaults
217 10c2650b Iustin Pop
      to the empty list
218 76ab5558 Michael Hanselmann

219 76ab5558 Michael Hanselmann
  """
220 714ea7ca Iustin Pop
  if path not in _ALLOWED_CLEAN_DIRS:
221 714ea7ca Iustin Pop
    _Fail("Path passed to _CleanDirectory not in allowed clean targets: '%s'",
222 714ea7ca Iustin Pop
          path)
223 714ea7ca Iustin Pop
224 3956cee1 Michael Hanselmann
  if not os.path.isdir(path):
225 3956cee1 Michael Hanselmann
    return
226 3bc6be5c Iustin Pop
  if exclude is None:
227 3bc6be5c Iustin Pop
    exclude = []
228 3bc6be5c Iustin Pop
  else:
229 3bc6be5c Iustin Pop
    # Normalize excluded paths
230 3bc6be5c Iustin Pop
    exclude = [os.path.normpath(i) for i in exclude]
231 76ab5558 Michael Hanselmann
232 3956cee1 Michael Hanselmann
  for rel_name in utils.ListVisibleFiles(path):
233 c4feafe8 Iustin Pop
    full_name = utils.PathJoin(path, rel_name)
234 76ab5558 Michael Hanselmann
    if full_name in exclude:
235 76ab5558 Michael Hanselmann
      continue
236 3956cee1 Michael Hanselmann
    if os.path.isfile(full_name) and not os.path.islink(full_name):
237 3956cee1 Michael Hanselmann
      utils.RemoveFile(full_name)
238 3956cee1 Michael Hanselmann
239 3956cee1 Michael Hanselmann
240 360b0dc2 Iustin Pop
def _BuildUploadFileList():
241 360b0dc2 Iustin Pop
  """Build the list of allowed upload files.
242 360b0dc2 Iustin Pop

243 360b0dc2 Iustin Pop
  This is abstracted so that it's built only once at module import time.
244 360b0dc2 Iustin Pop

245 360b0dc2 Iustin Pop
  """
246 b397a7d2 Iustin Pop
  allowed_files = set([
247 710f30ec Michael Hanselmann
    pathutils.CLUSTER_CONF_FILE,
248 ee045466 Michael Hanselmann
    pathutils.ETC_HOSTS,
249 710f30ec Michael Hanselmann
    pathutils.SSH_KNOWN_HOSTS_FILE,
250 710f30ec Michael Hanselmann
    pathutils.VNC_PASSWORD_FILE,
251 710f30ec Michael Hanselmann
    pathutils.RAPI_CERT_FILE,
252 710f30ec Michael Hanselmann
    pathutils.SPICE_CERT_FILE,
253 710f30ec Michael Hanselmann
    pathutils.SPICE_CACERT_FILE,
254 710f30ec Michael Hanselmann
    pathutils.RAPI_USERS_FILE,
255 710f30ec Michael Hanselmann
    pathutils.CONFD_HMAC_KEY,
256 710f30ec Michael Hanselmann
    pathutils.CLUSTER_DOMAIN_SECRET_FILE,
257 b397a7d2 Iustin Pop
    ])
258 b397a7d2 Iustin Pop
259 b397a7d2 Iustin Pop
  for hv_name in constants.HYPER_TYPES:
260 e5a45a16 Iustin Pop
    hv_class = hypervisor.GetHypervisorClass(hv_name)
261 69ab2e12 Guido Trotter
    allowed_files.update(hv_class.GetAncillaryFiles()[0])
262 b397a7d2 Iustin Pop
263 3439fd6b Michael Hanselmann
  assert pathutils.FILE_STORAGE_PATHS_FILE not in allowed_files, \
264 3439fd6b Michael Hanselmann
    "Allowed file storage paths should never be uploaded via RPC"
265 3439fd6b Michael Hanselmann
266 b397a7d2 Iustin Pop
  return frozenset(allowed_files)
267 360b0dc2 Iustin Pop
268 360b0dc2 Iustin Pop
269 360b0dc2 Iustin Pop
_ALLOWED_UPLOAD_FILES = _BuildUploadFileList()
270 360b0dc2 Iustin Pop
271 360b0dc2 Iustin Pop
272 1bc59f76 Michael Hanselmann
def JobQueuePurge():
273 10c2650b Iustin Pop
  """Removes job queue files and archived jobs.
274 10c2650b Iustin Pop

275 c8457ce7 Iustin Pop
  @rtype: tuple
276 c8457ce7 Iustin Pop
  @return: True, None
277 24fc781f Michael Hanselmann

278 24fc781f Michael Hanselmann
  """
279 710f30ec Michael Hanselmann
  _CleanDirectory(pathutils.QUEUE_DIR, exclude=[pathutils.JOB_QUEUE_LOCK_FILE])
280 710f30ec Michael Hanselmann
  _CleanDirectory(pathutils.JOB_QUEUE_ARCHIVE_DIR)
281 24fc781f Michael Hanselmann
282 24fc781f Michael Hanselmann
283 bd1e4562 Iustin Pop
def GetMasterInfo():
284 bd1e4562 Iustin Pop
  """Returns master information.
285 bd1e4562 Iustin Pop

286 bd1e4562 Iustin Pop
  This is an utility function to compute master information, either
287 bd1e4562 Iustin Pop
  for consumption here or from the node daemon.
288 bd1e4562 Iustin Pop

289 bd1e4562 Iustin Pop
  @rtype: tuple
290 909b3a0e Andrea Spadaccini
  @return: master_netdev, master_ip, master_name, primary_ip_family,
291 909b3a0e Andrea Spadaccini
    master_netmask
292 2a52a064 Iustin Pop
  @raise RPCFail: in case of errors
293 b1b6ea87 Iustin Pop

294 b1b6ea87 Iustin Pop
  """
295 b1b6ea87 Iustin Pop
  try:
296 c657dcc9 Michael Hanselmann
    cfg = _GetConfig()
297 c657dcc9 Michael Hanselmann
    master_netdev = cfg.GetMasterNetdev()
298 c657dcc9 Michael Hanselmann
    master_ip = cfg.GetMasterIP()
299 5a8648eb Andrea Spadaccini
    master_netmask = cfg.GetMasterNetmask()
300 c657dcc9 Michael Hanselmann
    master_node = cfg.GetMasterNode()
301 d8e0caa6 Manuel Franceschini
    primary_ip_family = cfg.GetPrimaryIPFamily()
302 b1b6ea87 Iustin Pop
  except errors.ConfigurationError, err:
303 29921401 Iustin Pop
    _Fail("Cluster configuration incomplete: %s", err, exc=True)
304 909b3a0e Andrea Spadaccini
  return (master_netdev, master_ip, master_node, primary_ip_family,
305 5ae4945a Iustin Pop
          master_netmask)
306 b1b6ea87 Iustin Pop
307 b1b6ea87 Iustin Pop
308 0fa481f5 Andrea Spadaccini
def RunLocalHooks(hook_opcode, hooks_path, env_builder_fn):
309 0fa481f5 Andrea Spadaccini
  """Decorator that runs hooks before and after the decorated function.
310 0fa481f5 Andrea Spadaccini

311 0fa481f5 Andrea Spadaccini
  @type hook_opcode: string
312 0fa481f5 Andrea Spadaccini
  @param hook_opcode: opcode of the hook
313 0fa481f5 Andrea Spadaccini
  @type hooks_path: string
314 0fa481f5 Andrea Spadaccini
  @param hooks_path: path of the hooks
315 0fa481f5 Andrea Spadaccini
  @type env_builder_fn: function
316 0fa481f5 Andrea Spadaccini
  @param env_builder_fn: function that returns a dictionary containing the
317 3ccd3243 Andrea Spadaccini
    environment variables for the hooks. Will get all the parameters of the
318 3ccd3243 Andrea Spadaccini
    decorated function.
319 0fa481f5 Andrea Spadaccini
  @raise RPCFail: in case of pre-hook failure
320 0fa481f5 Andrea Spadaccini

321 0fa481f5 Andrea Spadaccini
  """
322 0fa481f5 Andrea Spadaccini
  def decorator(fn):
323 0fa481f5 Andrea Spadaccini
    def wrapper(*args, **kwargs):
324 0fa481f5 Andrea Spadaccini
      _, myself = ssconf.GetMasterAndMyself()
325 0fa481f5 Andrea Spadaccini
      nodes = ([myself], [myself])  # these hooks run locally
326 0fa481f5 Andrea Spadaccini
327 3ccd3243 Andrea Spadaccini
      env_fn = compat.partial(env_builder_fn, *args, **kwargs)
328 3ccd3243 Andrea Spadaccini
329 0fa481f5 Andrea Spadaccini
      cfg = _GetConfig()
330 0fa481f5 Andrea Spadaccini
      hr = HooksRunner()
331 68d95757 Guido Trotter
      hm = hooksmaster.HooksMaster(hook_opcode, hooks_path, nodes,
332 68d95757 Guido Trotter
                                   hr.RunLocalHooks, None, env_fn,
333 68d95757 Guido Trotter
                                   logging.warning, cfg.GetClusterName(),
334 68d95757 Guido Trotter
                                   cfg.GetMasterNode())
335 0fa481f5 Andrea Spadaccini
      hm.RunPhase(constants.HOOKS_PHASE_PRE)
336 0fa481f5 Andrea Spadaccini
      result = fn(*args, **kwargs)
337 0fa481f5 Andrea Spadaccini
      hm.RunPhase(constants.HOOKS_PHASE_POST)
338 0fa481f5 Andrea Spadaccini
339 0fa481f5 Andrea Spadaccini
      return result
340 0fa481f5 Andrea Spadaccini
    return wrapper
341 0fa481f5 Andrea Spadaccini
  return decorator
342 0fa481f5 Andrea Spadaccini
343 0fa481f5 Andrea Spadaccini
344 57c7bc57 Andrea Spadaccini
def _BuildMasterIpEnv(master_params, use_external_mip_script=None):
345 2d88fdd3 Andrea Spadaccini
  """Builds environment variables for master IP hooks.
346 2d88fdd3 Andrea Spadaccini

347 3ccd3243 Andrea Spadaccini
  @type master_params: L{objects.MasterNetworkParameters}
348 3ccd3243 Andrea Spadaccini
  @param master_params: network parameters of the master
349 57c7bc57 Andrea Spadaccini
  @type use_external_mip_script: boolean
350 57c7bc57 Andrea Spadaccini
  @param use_external_mip_script: whether to use an external master IP
351 57c7bc57 Andrea Spadaccini
    address setup script (unused, but necessary per the implementation of the
352 57c7bc57 Andrea Spadaccini
    _RunLocalHooks decorator)
353 3ccd3243 Andrea Spadaccini

354 2d88fdd3 Andrea Spadaccini
  """
355 57c7bc57 Andrea Spadaccini
  # pylint: disable=W0613
356 3ccd3243 Andrea Spadaccini
  ver = netutils.IPAddress.GetVersionFromAddressFamily(master_params.ip_family)
357 2d88fdd3 Andrea Spadaccini
  env = {
358 3ccd3243 Andrea Spadaccini
    "MASTER_NETDEV": master_params.netdev,
359 3ccd3243 Andrea Spadaccini
    "MASTER_IP": master_params.ip,
360 702eff21 Andrea Spadaccini
    "MASTER_NETMASK": str(master_params.netmask),
361 3ccd3243 Andrea Spadaccini
    "CLUSTER_IP_VERSION": str(ver),
362 2d88fdd3 Andrea Spadaccini
  }
363 2d88fdd3 Andrea Spadaccini
364 2d88fdd3 Andrea Spadaccini
  return env
365 2d88fdd3 Andrea Spadaccini
366 2d88fdd3 Andrea Spadaccini
367 702eff21 Andrea Spadaccini
def _RunMasterSetupScript(master_params, action, use_external_mip_script):
368 702eff21 Andrea Spadaccini
  """Execute the master IP address setup script.
369 702eff21 Andrea Spadaccini

370 702eff21 Andrea Spadaccini
  @type master_params: L{objects.MasterNetworkParameters}
371 702eff21 Andrea Spadaccini
  @param master_params: network parameters of the master
372 702eff21 Andrea Spadaccini
  @type action: string
373 702eff21 Andrea Spadaccini
  @param action: action to pass to the script. Must be one of
374 702eff21 Andrea Spadaccini
    L{backend._MASTER_START} or L{backend._MASTER_STOP}
375 702eff21 Andrea Spadaccini
  @type use_external_mip_script: boolean
376 702eff21 Andrea Spadaccini
  @param use_external_mip_script: whether to use an external master IP
377 702eff21 Andrea Spadaccini
    address setup script
378 702eff21 Andrea Spadaccini
  @raise backend.RPCFail: if there are errors during the execution of the
379 702eff21 Andrea Spadaccini
    script
380 702eff21 Andrea Spadaccini

381 702eff21 Andrea Spadaccini
  """
382 702eff21 Andrea Spadaccini
  env = _BuildMasterIpEnv(master_params)
383 702eff21 Andrea Spadaccini
384 702eff21 Andrea Spadaccini
  if use_external_mip_script:
385 710f30ec Michael Hanselmann
    setup_script = pathutils.EXTERNAL_MASTER_SETUP_SCRIPT
386 702eff21 Andrea Spadaccini
  else:
387 710f30ec Michael Hanselmann
    setup_script = pathutils.DEFAULT_MASTER_SETUP_SCRIPT
388 702eff21 Andrea Spadaccini
389 702eff21 Andrea Spadaccini
  result = utils.RunCmd([setup_script, action], env=env, reset_env=True)
390 702eff21 Andrea Spadaccini
391 702eff21 Andrea Spadaccini
  if result.failed:
392 19e1b715 Iustin Pop
    _Fail("Failed to %s the master IP. Script return value: %s, output: '%s'" %
393 19e1b715 Iustin Pop
          (action, result.exit_code, result.output), log=True)
394 702eff21 Andrea Spadaccini
395 702eff21 Andrea Spadaccini
396 2d88fdd3 Andrea Spadaccini
@RunLocalHooks(constants.FAKE_OP_MASTER_TURNUP, "master-ip-turnup",
397 3a3e4f1e Andrea Spadaccini
               _BuildMasterIpEnv)
398 57c7bc57 Andrea Spadaccini
def ActivateMasterIp(master_params, use_external_mip_script):
399 fb460cf7 Andrea Spadaccini
  """Activate the IP address of the master daemon.
400 fb460cf7 Andrea Spadaccini

401 c79198a0 Andrea Spadaccini
  @type master_params: L{objects.MasterNetworkParameters}
402 c79198a0 Andrea Spadaccini
  @param master_params: network parameters of the master
403 57c7bc57 Andrea Spadaccini
  @type use_external_mip_script: boolean
404 57c7bc57 Andrea Spadaccini
  @param use_external_mip_script: whether to use an external master IP
405 57c7bc57 Andrea Spadaccini
    address setup script
406 702eff21 Andrea Spadaccini
  @raise RPCFail: in case of errors during the IP startup
407 8da2bd43 Andrea Spadaccini

408 fb460cf7 Andrea Spadaccini
  """
409 702eff21 Andrea Spadaccini
  _RunMasterSetupScript(master_params, _MASTER_START,
410 702eff21 Andrea Spadaccini
                        use_external_mip_script)
411 fb460cf7 Andrea Spadaccini
412 fb460cf7 Andrea Spadaccini
413 fb460cf7 Andrea Spadaccini
def StartMasterDaemons(no_voting):
414 a8083063 Iustin Pop
  """Activate local node as master node.
415 a8083063 Iustin Pop

416 fb460cf7 Andrea Spadaccini
  The function will start the master daemons (ganeti-masterd and ganeti-rapi).
417 10c2650b Iustin Pop

418 3583908a Guido Trotter
  @type no_voting: boolean
419 3583908a Guido Trotter
  @param no_voting: whether to start ganeti-masterd without a node vote
420 fb460cf7 Andrea Spadaccini
      but still non-interactively
421 10c2650b Iustin Pop
  @rtype: None
422 a8083063 Iustin Pop

423 a8083063 Iustin Pop
  """
424 a8083063 Iustin Pop
425 fb460cf7 Andrea Spadaccini
  if no_voting:
426 fb460cf7 Andrea Spadaccini
    masterd_args = "--no-voting --yes-do-it"
427 fb460cf7 Andrea Spadaccini
  else:
428 fb460cf7 Andrea Spadaccini
    masterd_args = ""
429 f154a7a3 Michael Hanselmann
430 fb460cf7 Andrea Spadaccini
  env = {
431 fb460cf7 Andrea Spadaccini
    "EXTRA_MASTERD_ARGS": masterd_args,
432 fb460cf7 Andrea Spadaccini
    }
433 fb460cf7 Andrea Spadaccini
434 710f30ec Michael Hanselmann
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "start-master"], env=env)
435 fb460cf7 Andrea Spadaccini
  if result.failed:
436 fb460cf7 Andrea Spadaccini
    msg = "Can't start Ganeti master: %s" % result.output
437 fb460cf7 Andrea Spadaccini
    logging.error(msg)
438 fb460cf7 Andrea Spadaccini
    _Fail(msg)
439 f154a7a3 Michael Hanselmann
440 fb460cf7 Andrea Spadaccini
441 2d88fdd3 Andrea Spadaccini
@RunLocalHooks(constants.FAKE_OP_MASTER_TURNDOWN, "master-ip-turndown",
442 3a3e4f1e Andrea Spadaccini
               _BuildMasterIpEnv)
443 57c7bc57 Andrea Spadaccini
def DeactivateMasterIp(master_params, use_external_mip_script):
444 fb460cf7 Andrea Spadaccini
  """Deactivate the master IP on this node.
445 a8083063 Iustin Pop

446 c79198a0 Andrea Spadaccini
  @type master_params: L{objects.MasterNetworkParameters}
447 c79198a0 Andrea Spadaccini
  @param master_params: network parameters of the master
448 57c7bc57 Andrea Spadaccini
  @type use_external_mip_script: boolean
449 57c7bc57 Andrea Spadaccini
  @param use_external_mip_script: whether to use an external master IP
450 57c7bc57 Andrea Spadaccini
    address setup script
451 702eff21 Andrea Spadaccini
  @raise RPCFail: in case of errors during the IP turndown
452 96e0d5cc Andrea Spadaccini

453 a8083063 Iustin Pop
  """
454 702eff21 Andrea Spadaccini
  _RunMasterSetupScript(master_params, _MASTER_STOP,
455 702eff21 Andrea Spadaccini
                        use_external_mip_script)
456 b1b6ea87 Iustin Pop
457 fb460cf7 Andrea Spadaccini
458 fb460cf7 Andrea Spadaccini
def StopMasterDaemons():
459 fb460cf7 Andrea Spadaccini
  """Stop the master daemons on this node.
460 fb460cf7 Andrea Spadaccini

461 fb460cf7 Andrea Spadaccini
  Stop the master daemons (ganeti-masterd and ganeti-rapi) on this node.
462 fb460cf7 Andrea Spadaccini

463 fb460cf7 Andrea Spadaccini
  @rtype: None
464 fb460cf7 Andrea Spadaccini

465 fb460cf7 Andrea Spadaccini
  """
466 fb460cf7 Andrea Spadaccini
  # TODO: log and report back to the caller the error failures; we
467 fb460cf7 Andrea Spadaccini
  # need to decide in which case we fail the RPC for this
468 fb460cf7 Andrea Spadaccini
469 710f30ec Michael Hanselmann
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "stop-master"])
470 fb460cf7 Andrea Spadaccini
  if result.failed:
471 fb460cf7 Andrea Spadaccini
    logging.error("Could not stop Ganeti master, command %s had exitcode %s"
472 fb460cf7 Andrea Spadaccini
                  " and error %s",
473 fb460cf7 Andrea Spadaccini
                  result.cmd, result.exit_code, result.output)
474 a8083063 Iustin Pop
475 a8083063 Iustin Pop
476 41e079ce Andrea Spadaccini
def ChangeMasterNetmask(old_netmask, netmask, master_ip, master_netdev):
477 5a8648eb Andrea Spadaccini
  """Change the netmask of the master IP.
478 5a8648eb Andrea Spadaccini

479 41e079ce Andrea Spadaccini
  @param old_netmask: the old value of the netmask
480 41e079ce Andrea Spadaccini
  @param netmask: the new value of the netmask
481 41e079ce Andrea Spadaccini
  @param master_ip: the master IP
482 41e079ce Andrea Spadaccini
  @param master_netdev: the master network device
483 41e079ce Andrea Spadaccini

484 5a8648eb Andrea Spadaccini
  """
485 5a8648eb Andrea Spadaccini
  if old_netmask == netmask:
486 5a8648eb Andrea Spadaccini
    return
487 5a8648eb Andrea Spadaccini
488 9e6014b9 Andrea Spadaccini
  if not netutils.IPAddress.Own(master_ip):
489 9e6014b9 Andrea Spadaccini
    _Fail("The master IP address is not up, not attempting to change its"
490 9e6014b9 Andrea Spadaccini
          " netmask")
491 9e6014b9 Andrea Spadaccini
492 5a8648eb Andrea Spadaccini
  result = utils.RunCmd([constants.IP_COMMAND_PATH, "address", "add",
493 5a8648eb Andrea Spadaccini
                         "%s/%s" % (master_ip, netmask),
494 5a8648eb Andrea Spadaccini
                         "dev", master_netdev, "label",
495 5a8648eb Andrea Spadaccini
                         "%s:0" % master_netdev])
496 5a8648eb Andrea Spadaccini
  if result.failed:
497 9e6014b9 Andrea Spadaccini
    _Fail("Could not set the new netmask on the master IP address")
498 5a8648eb Andrea Spadaccini
499 5a8648eb Andrea Spadaccini
  result = utils.RunCmd([constants.IP_COMMAND_PATH, "address", "del",
500 5a8648eb Andrea Spadaccini
                         "%s/%s" % (master_ip, old_netmask),
501 5a8648eb Andrea Spadaccini
                         "dev", master_netdev, "label",
502 5a8648eb Andrea Spadaccini
                         "%s:0" % master_netdev])
503 5a8648eb Andrea Spadaccini
  if result.failed:
504 9e6014b9 Andrea Spadaccini
    _Fail("Could not bring down the master IP address with the old netmask")
505 5a8648eb Andrea Spadaccini
506 5a8648eb Andrea Spadaccini
507 19ddc57a René Nussbaumer
def EtcHostsModify(mode, host, ip):
508 19ddc57a René Nussbaumer
  """Modify a host entry in /etc/hosts.
509 19ddc57a René Nussbaumer

510 19ddc57a René Nussbaumer
  @param mode: The mode to operate. Either add or remove entry
511 19ddc57a René Nussbaumer
  @param host: The host to operate on
512 19ddc57a René Nussbaumer
  @param ip: The ip associated with the entry
513 19ddc57a René Nussbaumer

514 19ddc57a René Nussbaumer
  """
515 19ddc57a René Nussbaumer
  if mode == constants.ETC_HOSTS_ADD:
516 19ddc57a René Nussbaumer
    if not ip:
517 19ddc57a René Nussbaumer
      RPCFail("Mode 'add' needs 'ip' parameter, but parameter not"
518 19ddc57a René Nussbaumer
              " present")
519 19ddc57a René Nussbaumer
    utils.AddHostToEtcHosts(host, ip)
520 19ddc57a René Nussbaumer
  elif mode == constants.ETC_HOSTS_REMOVE:
521 19ddc57a René Nussbaumer
    if ip:
522 19ddc57a René Nussbaumer
      RPCFail("Mode 'remove' does not allow 'ip' parameter, but"
523 19ddc57a René Nussbaumer
              " parameter is present")
524 19ddc57a René Nussbaumer
    utils.RemoveHostFromEtcHosts(host)
525 19ddc57a René Nussbaumer
  else:
526 19ddc57a René Nussbaumer
    RPCFail("Mode not supported")
527 19ddc57a René Nussbaumer
528 19ddc57a René Nussbaumer
529 b989b9d9 Ken Wehr
def LeaveCluster(modify_ssh_setup):
530 10c2650b Iustin Pop
  """Cleans up and remove the current node.
531 10c2650b Iustin Pop

532 10c2650b Iustin Pop
  This function cleans up and prepares the current node to be removed
533 10c2650b Iustin Pop
  from the cluster.
534 10c2650b Iustin Pop

535 10c2650b Iustin Pop
  If processing is successful, then it raises an
536 c41eea6e Iustin Pop
  L{errors.QuitGanetiException} which is used as a special case to
537 10c2650b Iustin Pop
  shutdown the node daemon.
538 a8083063 Iustin Pop

539 b989b9d9 Ken Wehr
  @param modify_ssh_setup: boolean
540 b989b9d9 Ken Wehr

541 a8083063 Iustin Pop
  """
542 710f30ec Michael Hanselmann
  _CleanDirectory(pathutils.DATA_DIR)
543 710f30ec Michael Hanselmann
  _CleanDirectory(pathutils.CRYPTO_KEYS_DIR)
544 1bc59f76 Michael Hanselmann
  JobQueuePurge()
545 f78346f5 Michael Hanselmann
546 b989b9d9 Ken Wehr
  if modify_ssh_setup:
547 b989b9d9 Ken Wehr
    try:
548 052783ff Michael Hanselmann
      priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.SSH_LOGIN_USER)
549 7900ed01 Iustin Pop
550 b989b9d9 Ken Wehr
      utils.RemoveAuthorizedKey(auth_keys, utils.ReadFile(pub_key))
551 a8083063 Iustin Pop
552 b989b9d9 Ken Wehr
      utils.RemoveFile(priv_key)
553 b989b9d9 Ken Wehr
      utils.RemoveFile(pub_key)
554 b989b9d9 Ken Wehr
    except errors.OpExecError:
555 b989b9d9 Ken Wehr
      logging.exception("Error while processing ssh files")
556 a8083063 Iustin Pop
557 ed008420 Guido Trotter
  try:
558 710f30ec Michael Hanselmann
    utils.RemoveFile(pathutils.CONFD_HMAC_KEY)
559 710f30ec Michael Hanselmann
    utils.RemoveFile(pathutils.RAPI_CERT_FILE)
560 710f30ec Michael Hanselmann
    utils.RemoveFile(pathutils.SPICE_CERT_FILE)
561 710f30ec Michael Hanselmann
    utils.RemoveFile(pathutils.SPICE_CACERT_FILE)
562 710f30ec Michael Hanselmann
    utils.RemoveFile(pathutils.NODED_CERT_FILE)
563 b459a848 Andrea Spadaccini
  except: # pylint: disable=W0702
564 ed008420 Guido Trotter
    logging.exception("Error while removing cluster secrets")
565 ed008420 Guido Trotter
566 710f30ec Michael Hanselmann
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "stop", constants.CONFD])
567 f154a7a3 Michael Hanselmann
  if result.failed:
568 f154a7a3 Michael Hanselmann
    logging.error("Command %s failed with exitcode %s and error %s",
569 f154a7a3 Michael Hanselmann
                  result.cmd, result.exit_code, result.output)
570 ed008420 Guido Trotter
571 0623d351 Iustin Pop
  # Raise a custom exception (handled in ganeti-noded)
572 d0c8c01d Iustin Pop
  raise errors.QuitGanetiException(True, "Shutdown scheduled")
573 6d8b6238 Guido Trotter
574 a8083063 Iustin Pop
575 1a3c5d4e Bernardo Dal Seno
def _GetVgInfo(name, excl_stor):
576 78519c10 Michael Hanselmann
  """Retrieves information about a LVM volume group.
577 78519c10 Michael Hanselmann

578 78519c10 Michael Hanselmann
  """
579 78519c10 Michael Hanselmann
  # TODO: GetVGInfo supports returning information for multiple VGs at once
580 1a3c5d4e Bernardo Dal Seno
  vginfo = bdev.LogicalVolume.GetVGInfo([name], excl_stor)
581 78519c10 Michael Hanselmann
  if vginfo:
582 78519c10 Michael Hanselmann
    vg_free = int(round(vginfo[0][0], 0))
583 78519c10 Michael Hanselmann
    vg_size = int(round(vginfo[0][1], 0))
584 78519c10 Michael Hanselmann
  else:
585 78519c10 Michael Hanselmann
    vg_free = None
586 78519c10 Michael Hanselmann
    vg_size = None
587 78519c10 Michael Hanselmann
588 78519c10 Michael Hanselmann
  return {
589 78519c10 Michael Hanselmann
    "name": name,
590 1e89a135 Michael Hanselmann
    "vg_free": vg_free,
591 1e89a135 Michael Hanselmann
    "vg_size": vg_size,
592 78519c10 Michael Hanselmann
    }
593 78519c10 Michael Hanselmann
594 78519c10 Michael Hanselmann
595 78519c10 Michael Hanselmann
def _GetHvInfo(name):
596 78519c10 Michael Hanselmann
  """Retrieves node information from a hypervisor.
597 78519c10 Michael Hanselmann

598 78519c10 Michael Hanselmann
  The information returned depends on the hypervisor. Common items:
599 78519c10 Michael Hanselmann

600 78519c10 Michael Hanselmann
    - vg_size is the size of the configured volume group in MiB
601 78519c10 Michael Hanselmann
    - vg_free is the free size of the volume group in MiB
602 78519c10 Michael Hanselmann
    - memory_dom0 is the memory allocated for domain0 in MiB
603 78519c10 Michael Hanselmann
    - memory_free is the currently available (free) ram in MiB
604 78519c10 Michael Hanselmann
    - memory_total is the total number of ram in MiB
605 78519c10 Michael Hanselmann
    - hv_version: the hypervisor version, if available
606 78519c10 Michael Hanselmann

607 78519c10 Michael Hanselmann
  """
608 78519c10 Michael Hanselmann
  return hypervisor.GetHypervisor(name).GetNodeInfo()
609 78519c10 Michael Hanselmann
610 78519c10 Michael Hanselmann
611 78519c10 Michael Hanselmann
def _GetNamedNodeInfo(names, fn):
612 78519c10 Michael Hanselmann
  """Calls C{fn} for all names in C{names} and returns a dictionary.
613 78519c10 Michael Hanselmann

614 78519c10 Michael Hanselmann
  @rtype: None or dict
615 78519c10 Michael Hanselmann

616 78519c10 Michael Hanselmann
  """
617 78519c10 Michael Hanselmann
  if names is None:
618 78519c10 Michael Hanselmann
    return None
619 78519c10 Michael Hanselmann
  else:
620 ff3be305 Michael Hanselmann
    return map(fn, names)
621 78519c10 Michael Hanselmann
622 78519c10 Michael Hanselmann
623 4b92e992 Helga Velroyen
def GetNodeInfo(storage_units, hv_names, excl_stor):
624 5bbd3f7f Michael Hanselmann
  """Gives back a hash with different information about the node.
625 a8083063 Iustin Pop

626 4b92e992 Helga Velroyen
  @type storage_units: list of pairs (string, string)
627 4b92e992 Helga Velroyen
  @param storage_units: List of pairs (storage unit, identifier) to ask for disk
628 4b92e992 Helga Velroyen
                        space information. In case of lvm-vg, the identifier is
629 4b92e992 Helga Velroyen
                        the VG name.
630 78519c10 Michael Hanselmann
  @type hv_names: list of string
631 78519c10 Michael Hanselmann
  @param hv_names: Names of the hypervisors to ask for node information
632 1a3c5d4e Bernardo Dal Seno
  @type excl_stor: boolean
633 1a3c5d4e Bernardo Dal Seno
  @param excl_stor: Whether exclusive_storage is active
634 78519c10 Michael Hanselmann
  @rtype: tuple; (string, None/dict, None/dict)
635 78519c10 Michael Hanselmann
  @return: Tuple containing boot ID, volume group information and hypervisor
636 78519c10 Michael Hanselmann
    information
637 a8083063 Iustin Pop

638 098c0958 Michael Hanselmann
  """
639 78519c10 Michael Hanselmann
  bootid = utils.ReadFile(_BOOT_ID_PATH, size=128).rstrip("\n")
640 4b92e992 Helga Velroyen
  storage_info = _GetNamedNodeInfo(
641 4b92e992 Helga Velroyen
    storage_units,
642 4b92e992 Helga Velroyen
    (lambda storage_unit: _ApplyStorageInfoFunction(storage_unit[0],
643 4b92e992 Helga Velroyen
                                                    storage_unit[1],
644 4b92e992 Helga Velroyen
                                                    excl_stor)))
645 78519c10 Michael Hanselmann
  hv_info = _GetNamedNodeInfo(hv_names, _GetHvInfo)
646 78519c10 Michael Hanselmann
647 4b92e992 Helga Velroyen
  return (bootid, storage_info, hv_info)
648 4b92e992 Helga Velroyen
649 4b92e992 Helga Velroyen
650 4b92e992 Helga Velroyen
# FIXME: implement storage reporting for all missing storage types.
651 4b92e992 Helga Velroyen
_STORAGE_TYPE_INFO_FN = {
652 4b92e992 Helga Velroyen
  constants.ST_BLOCK: None,
653 4b92e992 Helga Velroyen
  constants.ST_DISKLESS: None,
654 4b92e992 Helga Velroyen
  constants.ST_EXT: None,
655 4b92e992 Helga Velroyen
  constants.ST_FILE: None,
656 4b92e992 Helga Velroyen
  constants.ST_LVM_VG: _GetVgInfo,
657 4b92e992 Helga Velroyen
  constants.ST_RADOS: None,
658 4b92e992 Helga Velroyen
}
659 4b92e992 Helga Velroyen
660 4b92e992 Helga Velroyen
661 4b92e992 Helga Velroyen
def _ApplyStorageInfoFunction(storage_type, storage_key, *args):
662 4b92e992 Helga Velroyen
  """Looks up and applies the correct function to calculate free and total
663 4b92e992 Helga Velroyen
  storage for the given storage type.
664 4b92e992 Helga Velroyen

665 4b92e992 Helga Velroyen
  @type storage_type: string
666 4b92e992 Helga Velroyen
  @param storage_type: the storage type for which the storage shall be reported.
667 4b92e992 Helga Velroyen
  @type storage_key: string
668 4b92e992 Helga Velroyen
  @param storage_key: identifier of a storage unit, e.g. the volume group name
669 4b92e992 Helga Velroyen
    of an LVM storage unit
670 4b92e992 Helga Velroyen
  @type args: any
671 4b92e992 Helga Velroyen
  @param args: various parameters that can be used for storage reporting. These
672 4b92e992 Helga Velroyen
    parameters and their semantics vary from storage type to storage type and
673 4b92e992 Helga Velroyen
    are just propagated in this function.
674 4b92e992 Helga Velroyen
  @return: the results of the application of the storage space function (see
675 4b92e992 Helga Velroyen
    _STORAGE_TYPE_INFO_FN) if storage space reporting is implemented for that
676 4b92e992 Helga Velroyen
    storage type
677 4b92e992 Helga Velroyen
  @raises NotImplementedError: for storage types who don't support space
678 4b92e992 Helga Velroyen
    reporting yet
679 4b92e992 Helga Velroyen
  """
680 4b92e992 Helga Velroyen
  fn = _STORAGE_TYPE_INFO_FN[storage_type]
681 4b92e992 Helga Velroyen
  if fn is not None:
682 4b92e992 Helga Velroyen
    return fn(storage_key, *args)
683 4b92e992 Helga Velroyen
  else:
684 4b92e992 Helga Velroyen
    raise NotImplementedError
685 a8083063 Iustin Pop
686 a8083063 Iustin Pop
687 d5a690cb Bernardo Dal Seno
def _CheckExclusivePvs(pvi_list):
688 d5a690cb Bernardo Dal Seno
  """Check that PVs are not shared among LVs
689 d5a690cb Bernardo Dal Seno

690 d5a690cb Bernardo Dal Seno
  @type pvi_list: list of L{objects.LvmPvInfo} objects
691 d5a690cb Bernardo Dal Seno
  @param pvi_list: information about the PVs
692 d5a690cb Bernardo Dal Seno

693 d5a690cb Bernardo Dal Seno
  @rtype: list of tuples (string, list of strings)
694 d5a690cb Bernardo Dal Seno
  @return: offending volumes, as tuples: (pv_name, [lv1_name, lv2_name...])
695 d5a690cb Bernardo Dal Seno

696 d5a690cb Bernardo Dal Seno
  """
697 d5a690cb Bernardo Dal Seno
  res = []
698 d5a690cb Bernardo Dal Seno
  for pvi in pvi_list:
699 d5a690cb Bernardo Dal Seno
    if len(pvi.lv_list) > 1:
700 d5a690cb Bernardo Dal Seno
      res.append((pvi.name, pvi.lv_list))
701 d5a690cb Bernardo Dal Seno
  return res
702 d5a690cb Bernardo Dal Seno
703 d5a690cb Bernardo Dal Seno
704 62c9ec92 Iustin Pop
def VerifyNode(what, cluster_name):
705 a8083063 Iustin Pop
  """Verify the status of the local node.
706 a8083063 Iustin Pop

707 e69d05fd Iustin Pop
  Based on the input L{what} parameter, various checks are done on the
708 e69d05fd Iustin Pop
  local node.
709 e69d05fd Iustin Pop

710 e69d05fd Iustin Pop
  If the I{filelist} key is present, this list of
711 e69d05fd Iustin Pop
  files is checksummed and the file/checksum pairs are returned.
712 e69d05fd Iustin Pop

713 e69d05fd Iustin Pop
  If the I{nodelist} key is present, we check that we have
714 e69d05fd Iustin Pop
  connectivity via ssh with the target nodes (and check the hostname
715 e69d05fd Iustin Pop
  report).
716 a8083063 Iustin Pop

717 e69d05fd Iustin Pop
  If the I{node-net-test} key is present, we check that we have
718 e69d05fd Iustin Pop
  connectivity to the given nodes via both primary IP and, if
719 e69d05fd Iustin Pop
  applicable, secondary IPs.
720 e69d05fd Iustin Pop

721 e69d05fd Iustin Pop
  @type what: C{dict}
722 e69d05fd Iustin Pop
  @param what: a dictionary of things to check:
723 e69d05fd Iustin Pop
      - filelist: list of files for which to compute checksums
724 e69d05fd Iustin Pop
      - nodelist: list of nodes we should check ssh communication with
725 e69d05fd Iustin Pop
      - node-net-test: list of nodes we should check node daemon port
726 e69d05fd Iustin Pop
        connectivity with
727 e69d05fd Iustin Pop
      - hypervisor: list with hypervisors to run the verify for
728 10c2650b Iustin Pop
  @rtype: dict
729 10c2650b Iustin Pop
  @return: a dictionary with the same keys as the input dict, and
730 10c2650b Iustin Pop
      values representing the result of the checks
731 a8083063 Iustin Pop

732 a8083063 Iustin Pop
  """
733 a8083063 Iustin Pop
  result = {}
734 b705c7a6 Manuel Franceschini
  my_name = netutils.Hostname.GetSysName()
735 a744b676 Manuel Franceschini
  port = netutils.GetDaemonPort(constants.NODED)
736 8964ee14 Iustin Pop
  vm_capable = my_name not in what.get(constants.NV_VMNODES, [])
737 a8083063 Iustin Pop
738 8964ee14 Iustin Pop
  if constants.NV_HYPERVISOR in what and vm_capable:
739 25361b9a Iustin Pop
    result[constants.NV_HYPERVISOR] = tmp = {}
740 25361b9a Iustin Pop
    for hv_name in what[constants.NV_HYPERVISOR]:
741 0cf5e7f5 Iustin Pop
      try:
742 0cf5e7f5 Iustin Pop
        val = hypervisor.GetHypervisor(hv_name).Verify()
743 0cf5e7f5 Iustin Pop
      except errors.HypervisorError, err:
744 0cf5e7f5 Iustin Pop
        val = "Error while checking hypervisor: %s" % str(err)
745 0cf5e7f5 Iustin Pop
      tmp[hv_name] = val
746 25361b9a Iustin Pop
747 58a59652 Iustin Pop
  if constants.NV_HVPARAMS in what and vm_capable:
748 58a59652 Iustin Pop
    result[constants.NV_HVPARAMS] = tmp = []
749 58a59652 Iustin Pop
    for source, hv_name, hvparms in what[constants.NV_HVPARAMS]:
750 58a59652 Iustin Pop
      try:
751 58a59652 Iustin Pop
        logging.info("Validating hv %s, %s", hv_name, hvparms)
752 58a59652 Iustin Pop
        hypervisor.GetHypervisor(hv_name).ValidateParameters(hvparms)
753 58a59652 Iustin Pop
      except errors.HypervisorError, err:
754 58a59652 Iustin Pop
        tmp.append((source, hv_name, str(err)))
755 58a59652 Iustin Pop
756 25361b9a Iustin Pop
  if constants.NV_FILELIST in what:
757 47130d50 Michael Hanselmann
    fingerprints = utils.FingerprintFiles(map(vcluster.LocalizeVirtualPath,
758 47130d50 Michael Hanselmann
                                              what[constants.NV_FILELIST]))
759 47130d50 Michael Hanselmann
    result[constants.NV_FILELIST] = \
760 47130d50 Michael Hanselmann
      dict((vcluster.MakeVirtualPath(key), value)
761 47130d50 Michael Hanselmann
           for (key, value) in fingerprints.items())
762 25361b9a Iustin Pop
763 25361b9a Iustin Pop
  if constants.NV_NODELIST in what:
764 64c7b383 Michael Hanselmann
    (nodes, bynode) = what[constants.NV_NODELIST]
765 64c7b383 Michael Hanselmann
766 64c7b383 Michael Hanselmann
    # Add nodes from other groups (different for each node)
767 64c7b383 Michael Hanselmann
    try:
768 64c7b383 Michael Hanselmann
      nodes.extend(bynode[my_name])
769 64c7b383 Michael Hanselmann
    except KeyError:
770 64c7b383 Michael Hanselmann
      pass
771 64c7b383 Michael Hanselmann
772 64c7b383 Michael Hanselmann
    # Use a random order
773 64c7b383 Michael Hanselmann
    random.shuffle(nodes)
774 64c7b383 Michael Hanselmann
775 64c7b383 Michael Hanselmann
    # Try to contact all nodes
776 64c7b383 Michael Hanselmann
    val = {}
777 64c7b383 Michael Hanselmann
    for node in nodes:
778 62c9ec92 Iustin Pop
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
779 a8083063 Iustin Pop
      if not success:
780 64c7b383 Michael Hanselmann
        val[node] = message
781 64c7b383 Michael Hanselmann
782 64c7b383 Michael Hanselmann
    result[constants.NV_NODELIST] = val
783 25361b9a Iustin Pop
784 25361b9a Iustin Pop
  if constants.NV_NODENETTEST in what:
785 25361b9a Iustin Pop
    result[constants.NV_NODENETTEST] = tmp = {}
786 9d4bfc96 Iustin Pop
    my_pip = my_sip = None
787 25361b9a Iustin Pop
    for name, pip, sip in what[constants.NV_NODENETTEST]:
788 9d4bfc96 Iustin Pop
      if name == my_name:
789 9d4bfc96 Iustin Pop
        my_pip = pip
790 9d4bfc96 Iustin Pop
        my_sip = sip
791 9d4bfc96 Iustin Pop
        break
792 9d4bfc96 Iustin Pop
    if not my_pip:
793 25361b9a Iustin Pop
      tmp[my_name] = ("Can't find my own primary/secondary IP"
794 25361b9a Iustin Pop
                      " in the node list")
795 9d4bfc96 Iustin Pop
    else:
796 25361b9a Iustin Pop
      for name, pip, sip in what[constants.NV_NODENETTEST]:
797 9d4bfc96 Iustin Pop
        fail = []
798 a744b676 Manuel Franceschini
        if not netutils.TcpPing(pip, port, source=my_pip):
799 9d4bfc96 Iustin Pop
          fail.append("primary")
800 9d4bfc96 Iustin Pop
        if sip != pip:
801 a744b676 Manuel Franceschini
          if not netutils.TcpPing(sip, port, source=my_sip):
802 9d4bfc96 Iustin Pop
            fail.append("secondary")
803 9d4bfc96 Iustin Pop
        if fail:
804 25361b9a Iustin Pop
          tmp[name] = ("failure using the %s interface(s)" %
805 25361b9a Iustin Pop
                       " and ".join(fail))
806 25361b9a Iustin Pop
807 a3a5f850 Iustin Pop
  if constants.NV_MASTERIP in what:
808 a3a5f850 Iustin Pop
    # FIXME: add checks on incoming data structures (here and in the
809 a3a5f850 Iustin Pop
    # rest of the function)
810 a3a5f850 Iustin Pop
    master_name, master_ip = what[constants.NV_MASTERIP]
811 a3a5f850 Iustin Pop
    if master_name == my_name:
812 9769bb78 Manuel Franceschini
      source = constants.IP4_ADDRESS_LOCALHOST
813 a3a5f850 Iustin Pop
    else:
814 a3a5f850 Iustin Pop
      source = None
815 a744b676 Manuel Franceschini
    result[constants.NV_MASTERIP] = netutils.TcpPing(master_ip, port,
816 5ae4945a Iustin Pop
                                                     source=source)
817 a3a5f850 Iustin Pop
818 17b0b812 Andrea Spadaccini
  if constants.NV_USERSCRIPTS in what:
819 17b0b812 Andrea Spadaccini
    result[constants.NV_USERSCRIPTS] = \
820 17b0b812 Andrea Spadaccini
      [script for script in what[constants.NV_USERSCRIPTS]
821 10b86782 Michael Hanselmann
       if not utils.IsExecutable(script)]
822 17b0b812 Andrea Spadaccini
823 16f41f24 René Nussbaumer
  if constants.NV_OOB_PATHS in what:
824 16f41f24 René Nussbaumer
    result[constants.NV_OOB_PATHS] = tmp = []
825 16f41f24 René Nussbaumer
    for path in what[constants.NV_OOB_PATHS]:
826 16f41f24 René Nussbaumer
      try:
827 16f41f24 René Nussbaumer
        st = os.stat(path)
828 16f41f24 René Nussbaumer
      except OSError, err:
829 16f41f24 René Nussbaumer
        tmp.append("error stating out of band helper: %s" % err)
830 16f41f24 René Nussbaumer
      else:
831 16f41f24 René Nussbaumer
        if stat.S_ISREG(st.st_mode):
832 16f41f24 René Nussbaumer
          if stat.S_IMODE(st.st_mode) & stat.S_IXUSR:
833 16f41f24 René Nussbaumer
            tmp.append(None)
834 16f41f24 René Nussbaumer
          else:
835 16f41f24 René Nussbaumer
            tmp.append("out of band helper %s is not executable" % path)
836 16f41f24 René Nussbaumer
        else:
837 16f41f24 René Nussbaumer
          tmp.append("out of band helper %s is not a file" % path)
838 16f41f24 René Nussbaumer
839 8964ee14 Iustin Pop
  if constants.NV_LVLIST in what and vm_capable:
840 ed904904 Iustin Pop
    try:
841 84d7e26b Dmitry Chernyak
      val = GetVolumeList(utils.ListVolumeGroups().keys())
842 ed904904 Iustin Pop
    except RPCFail, err:
843 ed904904 Iustin Pop
      val = str(err)
844 ed904904 Iustin Pop
    result[constants.NV_LVLIST] = val
845 25361b9a Iustin Pop
846 8964ee14 Iustin Pop
  if constants.NV_INSTANCELIST in what and vm_capable:
847 0cf5e7f5 Iustin Pop
    # GetInstanceList can fail
848 0cf5e7f5 Iustin Pop
    try:
849 0cf5e7f5 Iustin Pop
      val = GetInstanceList(what[constants.NV_INSTANCELIST])
850 0cf5e7f5 Iustin Pop
    except RPCFail, err:
851 0cf5e7f5 Iustin Pop
      val = str(err)
852 0cf5e7f5 Iustin Pop
    result[constants.NV_INSTANCELIST] = val
853 25361b9a Iustin Pop
854 8964ee14 Iustin Pop
  if constants.NV_VGLIST in what and vm_capable:
855 e480923b Iustin Pop
    result[constants.NV_VGLIST] = utils.ListVolumeGroups()
856 25361b9a Iustin Pop
857 8964ee14 Iustin Pop
  if constants.NV_PVLIST in what and vm_capable:
858 d5a690cb Bernardo Dal Seno
    check_exclusive_pvs = constants.NV_EXCLUSIVEPVS in what
859 59726e15 Bernardo Dal Seno
    val = bdev.LogicalVolume.GetPVInfo(what[constants.NV_PVLIST],
860 d5a690cb Bernardo Dal Seno
                                       filter_allocatable=False,
861 d5a690cb Bernardo Dal Seno
                                       include_lvs=check_exclusive_pvs)
862 d5a690cb Bernardo Dal Seno
    if check_exclusive_pvs:
863 d5a690cb Bernardo Dal Seno
      result[constants.NV_EXCLUSIVEPVS] = _CheckExclusivePvs(val)
864 d5a690cb Bernardo Dal Seno
      for pvi in val:
865 d5a690cb Bernardo Dal Seno
        # Avoid sending useless data on the wire
866 d5a690cb Bernardo Dal Seno
        pvi.lv_list = []
867 59726e15 Bernardo Dal Seno
    result[constants.NV_PVLIST] = map(objects.LvmPvInfo.ToDict, val)
868 d091393e Iustin Pop
869 25361b9a Iustin Pop
  if constants.NV_VERSION in what:
870 e9ce0a64 Iustin Pop
    result[constants.NV_VERSION] = (constants.PROTOCOL_VERSION,
871 e9ce0a64 Iustin Pop
                                    constants.RELEASE_VERSION)
872 25361b9a Iustin Pop
873 8964ee14 Iustin Pop
  if constants.NV_HVINFO in what and vm_capable:
874 25361b9a Iustin Pop
    hyper = hypervisor.GetHypervisor(what[constants.NV_HVINFO])
875 25361b9a Iustin Pop
    result[constants.NV_HVINFO] = hyper.GetNodeInfo()
876 9d4bfc96 Iustin Pop
877 5bb0a1cb Thomas Thrainer
  if constants.NV_DRBDVERSION in what and vm_capable:
878 5bb0a1cb Thomas Thrainer
    try:
879 47e0abee Thomas Thrainer
      drbd_version = DRBD8.GetProcInfo().GetVersionString()
880 5bb0a1cb Thomas Thrainer
    except errors.BlockDeviceError, err:
881 5bb0a1cb Thomas Thrainer
      logging.warning("Can't get DRBD version", exc_info=True)
882 5bb0a1cb Thomas Thrainer
      drbd_version = str(err)
883 5bb0a1cb Thomas Thrainer
    result[constants.NV_DRBDVERSION] = drbd_version
884 5bb0a1cb Thomas Thrainer
885 8964ee14 Iustin Pop
  if constants.NV_DRBDLIST in what and vm_capable:
886 6d2e83d5 Iustin Pop
    try:
887 47e0abee Thomas Thrainer
      used_minors = drbd.DRBD8.GetUsedDevs()
888 f6eaed12 Iustin Pop
    except errors.BlockDeviceError, err:
889 6d2e83d5 Iustin Pop
      logging.warning("Can't get used minors list", exc_info=True)
890 f6eaed12 Iustin Pop
      used_minors = str(err)
891 6d2e83d5 Iustin Pop
    result[constants.NV_DRBDLIST] = used_minors
892 6d2e83d5 Iustin Pop
893 8964ee14 Iustin Pop
  if constants.NV_DRBDHELPER in what and vm_capable:
894 7ef40fbe Luca Bigliardi
    status = True
895 7ef40fbe Luca Bigliardi
    try:
896 47e0abee Thomas Thrainer
      payload = drbd.DRBD8.GetUsermodeHelper()
897 7ef40fbe Luca Bigliardi
    except errors.BlockDeviceError, err:
898 7ef40fbe Luca Bigliardi
      logging.error("Can't get DRBD usermode helper: %s", str(err))
899 7ef40fbe Luca Bigliardi
      status = False
900 7ef40fbe Luca Bigliardi
      payload = str(err)
901 7ef40fbe Luca Bigliardi
    result[constants.NV_DRBDHELPER] = (status, payload)
902 7ef40fbe Luca Bigliardi
903 7c0aa8e9 Iustin Pop
  if constants.NV_NODESETUP in what:
904 7c0aa8e9 Iustin Pop
    result[constants.NV_NODESETUP] = tmpr = []
905 7c0aa8e9 Iustin Pop
    if not os.path.isdir("/sys/block") or not os.path.isdir("/sys/class/net"):
906 7c0aa8e9 Iustin Pop
      tmpr.append("The sysfs filesytem doesn't seem to be mounted"
907 7c0aa8e9 Iustin Pop
                  " under /sys, missing required directories /sys/block"
908 7c0aa8e9 Iustin Pop
                  " and /sys/class/net")
909 7c0aa8e9 Iustin Pop
    if (not os.path.isdir("/proc/sys") or
910 7c0aa8e9 Iustin Pop
        not os.path.isfile("/proc/sysrq-trigger")):
911 7c0aa8e9 Iustin Pop
      tmpr.append("The procfs filesystem doesn't seem to be mounted"
912 7c0aa8e9 Iustin Pop
                  " under /proc, missing required directory /proc/sys and"
913 7c0aa8e9 Iustin Pop
                  " the file /proc/sysrq-trigger")
914 313b2dd4 Michael Hanselmann
915 313b2dd4 Michael Hanselmann
  if constants.NV_TIME in what:
916 313b2dd4 Michael Hanselmann
    result[constants.NV_TIME] = utils.SplitTime(time.time())
917 313b2dd4 Michael Hanselmann
918 8964ee14 Iustin Pop
  if constants.NV_OSLIST in what and vm_capable:
919 b0d85178 Iustin Pop
    result[constants.NV_OSLIST] = DiagnoseOS()
920 b0d85178 Iustin Pop
921 20d317d4 Iustin Pop
  if constants.NV_BRIDGES in what and vm_capable:
922 20d317d4 Iustin Pop
    result[constants.NV_BRIDGES] = [bridge
923 20d317d4 Iustin Pop
                                    for bridge in what[constants.NV_BRIDGES]
924 20d317d4 Iustin Pop
                                    if not utils.BridgeExists(bridge)]
925 23e3c9b7 Michael Hanselmann
926 72b35807 Michael Hanselmann
  if what.get(constants.NV_FILE_STORAGE_PATHS) == my_name:
927 72b35807 Michael Hanselmann
    result[constants.NV_FILE_STORAGE_PATHS] = \
928 72b35807 Michael Hanselmann
      bdev.ComputeWrongFileStoragePaths()
929 72b35807 Michael Hanselmann
930 c26a6bd2 Iustin Pop
  return result
931 a8083063 Iustin Pop
932 a8083063 Iustin Pop
933 2be7273c Apollon Oikonomopoulos
def GetBlockDevSizes(devices):
934 2be7273c Apollon Oikonomopoulos
  """Return the size of the given block devices
935 2be7273c Apollon Oikonomopoulos

936 2be7273c Apollon Oikonomopoulos
  @type devices: list
937 2be7273c Apollon Oikonomopoulos
  @param devices: list of block device nodes to query
938 2be7273c Apollon Oikonomopoulos
  @rtype: dict
939 2be7273c Apollon Oikonomopoulos
  @return:
940 2be7273c Apollon Oikonomopoulos
    dictionary of all block devices under /dev (key). The value is their
941 2be7273c Apollon Oikonomopoulos
    size in MiB.
942 2be7273c Apollon Oikonomopoulos

943 2be7273c Apollon Oikonomopoulos
    {'/dev/disk/by-uuid/123456-12321231-312312-312': 124}
944 2be7273c Apollon Oikonomopoulos

945 2be7273c Apollon Oikonomopoulos
  """
946 2be7273c Apollon Oikonomopoulos
  DEV_PREFIX = "/dev/"
947 2be7273c Apollon Oikonomopoulos
  blockdevs = {}
948 2be7273c Apollon Oikonomopoulos
949 2be7273c Apollon Oikonomopoulos
  for devpath in devices:
950 cf00dba0 René Nussbaumer
    if not utils.IsBelowDir(DEV_PREFIX, devpath):
951 2be7273c Apollon Oikonomopoulos
      continue
952 2be7273c Apollon Oikonomopoulos
953 2be7273c Apollon Oikonomopoulos
    try:
954 2be7273c Apollon Oikonomopoulos
      st = os.stat(devpath)
955 2be7273c Apollon Oikonomopoulos
    except EnvironmentError, err:
956 2be7273c Apollon Oikonomopoulos
      logging.warning("Error stat()'ing device %s: %s", devpath, str(err))
957 2be7273c Apollon Oikonomopoulos
      continue
958 2be7273c Apollon Oikonomopoulos
959 2be7273c Apollon Oikonomopoulos
    if stat.S_ISBLK(st.st_mode):
960 2be7273c Apollon Oikonomopoulos
      result = utils.RunCmd(["blockdev", "--getsize64", devpath])
961 2be7273c Apollon Oikonomopoulos
      if result.failed:
962 2be7273c Apollon Oikonomopoulos
        # We don't want to fail, just do not list this device as available
963 2be7273c Apollon Oikonomopoulos
        logging.warning("Cannot get size for block device %s", devpath)
964 2be7273c Apollon Oikonomopoulos
        continue
965 2be7273c Apollon Oikonomopoulos
966 2be7273c Apollon Oikonomopoulos
      size = int(result.stdout) / (1024 * 1024)
967 2be7273c Apollon Oikonomopoulos
      blockdevs[devpath] = size
968 2be7273c Apollon Oikonomopoulos
  return blockdevs
969 2be7273c Apollon Oikonomopoulos
970 2be7273c Apollon Oikonomopoulos
971 84d7e26b Dmitry Chernyak
def GetVolumeList(vg_names):
972 a8083063 Iustin Pop
  """Compute list of logical volumes and their size.
973 a8083063 Iustin Pop

974 84d7e26b Dmitry Chernyak
  @type vg_names: list
975 397693d3 Iustin Pop
  @param vg_names: the volume groups whose LVs we should list, or
976 397693d3 Iustin Pop
      empty for all volume groups
977 10c2650b Iustin Pop
  @rtype: dict
978 10c2650b Iustin Pop
  @return:
979 10c2650b Iustin Pop
      dictionary of all partions (key) with value being a tuple of
980 10c2650b Iustin Pop
      their size (in MiB), inactive and online status::
981 10c2650b Iustin Pop

982 84d7e26b Dmitry Chernyak
        {'xenvg/test1': ('20.06', True, True)}
983 10c2650b Iustin Pop

984 10c2650b Iustin Pop
      in case of errors, a string is returned with the error
985 10c2650b Iustin Pop
      details.
986 a8083063 Iustin Pop

987 a8083063 Iustin Pop
  """
988 cb2037a2 Iustin Pop
  lvs = {}
989 d0c8c01d Iustin Pop
  sep = "|"
990 397693d3 Iustin Pop
  if not vg_names:
991 397693d3 Iustin Pop
    vg_names = []
992 cb2037a2 Iustin Pop
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
993 cb2037a2 Iustin Pop
                         "--separator=%s" % sep,
994 84d7e26b Dmitry Chernyak
                         "-ovg_name,lv_name,lv_size,lv_attr"] + vg_names)
995 a8083063 Iustin Pop
  if result.failed:
996 29d376ec Iustin Pop
    _Fail("Failed to list logical volumes, lvs output: %s", result.output)
997 cb2037a2 Iustin Pop
998 cb2037a2 Iustin Pop
  for line in result.stdout.splitlines():
999 df4c2628 Iustin Pop
    line = line.strip()
1000 0b5303da Iustin Pop
    match = _LVSLINE_REGEX.match(line)
1001 df4c2628 Iustin Pop
    if not match:
1002 18682bca Iustin Pop
      logging.error("Invalid line returned from lvs output: '%s'", line)
1003 df4c2628 Iustin Pop
      continue
1004 84d7e26b Dmitry Chernyak
    vg_name, name, size, attr = match.groups()
1005 d0c8c01d Iustin Pop
    inactive = attr[4] == "-"
1006 d0c8c01d Iustin Pop
    online = attr[5] == "o"
1007 d0c8c01d Iustin Pop
    virtual = attr[0] == "v"
1008 33f2a81a Iustin Pop
    if virtual:
1009 33f2a81a Iustin Pop
      # we don't want to report such volumes as existing, since they
1010 33f2a81a Iustin Pop
      # don't really hold data
1011 33f2a81a Iustin Pop
      continue
1012 e687ec01 Michael Hanselmann
    lvs[vg_name + "/" + name] = (size, inactive, online)
1013 cb2037a2 Iustin Pop
1014 cb2037a2 Iustin Pop
  return lvs
1015 a8083063 Iustin Pop
1016 a8083063 Iustin Pop
1017 a8083063 Iustin Pop
def ListVolumeGroups():
1018 2f8598a5 Alexander Schreiber
  """List the volume groups and their size.
1019 a8083063 Iustin Pop

1020 10c2650b Iustin Pop
  @rtype: dict
1021 10c2650b Iustin Pop
  @return: dictionary with keys volume name and values the
1022 10c2650b Iustin Pop
      size of the volume
1023 a8083063 Iustin Pop

1024 a8083063 Iustin Pop
  """
1025 c26a6bd2 Iustin Pop
  return utils.ListVolumeGroups()
1026 a8083063 Iustin Pop
1027 a8083063 Iustin Pop
1028 dcb93971 Michael Hanselmann
def NodeVolumes():
1029 dcb93971 Michael Hanselmann
  """List all volumes on this node.
1030 dcb93971 Michael Hanselmann

1031 10c2650b Iustin Pop
  @rtype: list
1032 10c2650b Iustin Pop
  @return:
1033 10c2650b Iustin Pop
    A list of dictionaries, each having four keys:
1034 10c2650b Iustin Pop
      - name: the logical volume name,
1035 10c2650b Iustin Pop
      - size: the size of the logical volume
1036 10c2650b Iustin Pop
      - dev: the physical device on which the LV lives
1037 10c2650b Iustin Pop
      - vg: the volume group to which it belongs
1038 10c2650b Iustin Pop

1039 10c2650b Iustin Pop
    In case of errors, we return an empty list and log the
1040 10c2650b Iustin Pop
    error.
1041 10c2650b Iustin Pop

1042 10c2650b Iustin Pop
    Note that since a logical volume can live on multiple physical
1043 10c2650b Iustin Pop
    volumes, the resulting list might include a logical volume
1044 10c2650b Iustin Pop
    multiple times.
1045 10c2650b Iustin Pop

1046 dcb93971 Michael Hanselmann
  """
1047 dcb93971 Michael Hanselmann
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
1048 dcb93971 Michael Hanselmann
                         "--separator=|",
1049 dcb93971 Michael Hanselmann
                         "--options=lv_name,lv_size,devices,vg_name"])
1050 dcb93971 Michael Hanselmann
  if result.failed:
1051 10bfe6cb Iustin Pop
    _Fail("Failed to list logical volumes, lvs output: %s",
1052 10bfe6cb Iustin Pop
          result.output)
1053 dcb93971 Michael Hanselmann
1054 dcb93971 Michael Hanselmann
  def parse_dev(dev):
1055 d0c8c01d Iustin Pop
    return dev.split("(")[0]
1056 89e5ab02 Iustin Pop
1057 89e5ab02 Iustin Pop
  def handle_dev(dev):
1058 89e5ab02 Iustin Pop
    return [parse_dev(x) for x in dev.split(",")]
1059 dcb93971 Michael Hanselmann
1060 dcb93971 Michael Hanselmann
  def map_line(line):
1061 89e5ab02 Iustin Pop
    line = [v.strip() for v in line]
1062 d0c8c01d Iustin Pop
    return [{"name": line[0], "size": line[1],
1063 d0c8c01d Iustin Pop
             "dev": dev, "vg": line[3]} for dev in handle_dev(line[2])]
1064 89e5ab02 Iustin Pop
1065 89e5ab02 Iustin Pop
  all_devs = []
1066 89e5ab02 Iustin Pop
  for line in result.stdout.splitlines():
1067 d0c8c01d Iustin Pop
    if line.count("|") >= 3:
1068 d0c8c01d Iustin Pop
      all_devs.extend(map_line(line.split("|")))
1069 89e5ab02 Iustin Pop
    else:
1070 89e5ab02 Iustin Pop
      logging.warning("Strange line in the output from lvs: '%s'", line)
1071 89e5ab02 Iustin Pop
  return all_devs
1072 dcb93971 Michael Hanselmann
1073 dcb93971 Michael Hanselmann
1074 a8083063 Iustin Pop
def BridgesExist(bridges_list):
1075 2f8598a5 Alexander Schreiber
  """Check if a list of bridges exist on the current node.
1076 a8083063 Iustin Pop

1077 b1206984 Iustin Pop
  @rtype: boolean
1078 b1206984 Iustin Pop
  @return: C{True} if all of them exist, C{False} otherwise
1079 a8083063 Iustin Pop

1080 a8083063 Iustin Pop
  """
1081 35c0c8da Iustin Pop
  missing = []
1082 a8083063 Iustin Pop
  for bridge in bridges_list:
1083 a8083063 Iustin Pop
    if not utils.BridgeExists(bridge):
1084 35c0c8da Iustin Pop
      missing.append(bridge)
1085 a8083063 Iustin Pop
1086 35c0c8da Iustin Pop
  if missing:
1087 1f864b60 Iustin Pop
    _Fail("Missing bridges %s", utils.CommaJoin(missing))
1088 35c0c8da Iustin Pop
1089 a8083063 Iustin Pop
1090 e69d05fd Iustin Pop
def GetInstanceList(hypervisor_list):
1091 2f8598a5 Alexander Schreiber
  """Provides a list of instances.
1092 a8083063 Iustin Pop

1093 e69d05fd Iustin Pop
  @type hypervisor_list: list
1094 e69d05fd Iustin Pop
  @param hypervisor_list: the list of hypervisors to query information
1095 e69d05fd Iustin Pop

1096 e69d05fd Iustin Pop
  @rtype: list
1097 e69d05fd Iustin Pop
  @return: a list of all running instances on the current node
1098 10c2650b Iustin Pop
    - instance1.example.com
1099 10c2650b Iustin Pop
    - instance2.example.com
1100 a8083063 Iustin Pop

1101 098c0958 Michael Hanselmann
  """
1102 e69d05fd Iustin Pop
  results = []
1103 e69d05fd Iustin Pop
  for hname in hypervisor_list:
1104 e69d05fd Iustin Pop
    try:
1105 e69d05fd Iustin Pop
      names = hypervisor.GetHypervisor(hname).ListInstances()
1106 e69d05fd Iustin Pop
      results.extend(names)
1107 e69d05fd Iustin Pop
    except errors.HypervisorError, err:
1108 aca13712 Iustin Pop
      _Fail("Error enumerating instances (hypervisor %s): %s",
1109 aca13712 Iustin Pop
            hname, err, exc=True)
1110 a8083063 Iustin Pop
1111 e69d05fd Iustin Pop
  return results
1112 a8083063 Iustin Pop
1113 a8083063 Iustin Pop
1114 e69d05fd Iustin Pop
def GetInstanceInfo(instance, hname):
1115 5bbd3f7f Michael Hanselmann
  """Gives back the information about an instance as a dictionary.
1116 a8083063 Iustin Pop

1117 e69d05fd Iustin Pop
  @type instance: string
1118 e69d05fd Iustin Pop
  @param instance: the instance name
1119 e69d05fd Iustin Pop
  @type hname: string
1120 e69d05fd Iustin Pop
  @param hname: the hypervisor type of the instance
1121 a8083063 Iustin Pop

1122 e69d05fd Iustin Pop
  @rtype: dict
1123 e69d05fd Iustin Pop
  @return: dictionary with the following keys:
1124 e69d05fd Iustin Pop
      - memory: memory size of instance (int)
1125 e69d05fd Iustin Pop
      - state: xen state of instance (string)
1126 e69d05fd Iustin Pop
      - time: cpu time of instance (float)
1127 1cb97324 Agata Murawska
      - vcpus: the number of vcpus (int)
1128 a8083063 Iustin Pop

1129 098c0958 Michael Hanselmann
  """
1130 a8083063 Iustin Pop
  output = {}
1131 a8083063 Iustin Pop
1132 e69d05fd Iustin Pop
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
1133 a8083063 Iustin Pop
  if iinfo is not None:
1134 d0c8c01d Iustin Pop
    output["memory"] = iinfo[2]
1135 1cb97324 Agata Murawska
    output["vcpus"] = iinfo[3]
1136 d0c8c01d Iustin Pop
    output["state"] = iinfo[4]
1137 d0c8c01d Iustin Pop
    output["time"] = iinfo[5]
1138 a8083063 Iustin Pop
1139 c26a6bd2 Iustin Pop
  return output
1140 a8083063 Iustin Pop
1141 a8083063 Iustin Pop
1142 56e7640c Iustin Pop
def GetInstanceMigratable(instance):
1143 56e7640c Iustin Pop
  """Gives whether an instance can be migrated.
1144 56e7640c Iustin Pop

1145 56e7640c Iustin Pop
  @type instance: L{objects.Instance}
1146 56e7640c Iustin Pop
  @param instance: object representing the instance to be checked.
1147 56e7640c Iustin Pop

1148 56e7640c Iustin Pop
  @rtype: tuple
1149 56e7640c Iustin Pop
  @return: tuple of (result, description) where:
1150 56e7640c Iustin Pop
      - result: whether the instance can be migrated or not
1151 56e7640c Iustin Pop
      - description: a description of the issue, if relevant
1152 56e7640c Iustin Pop

1153 56e7640c Iustin Pop
  """
1154 56e7640c Iustin Pop
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1155 afdc3985 Iustin Pop
  iname = instance.name
1156 afdc3985 Iustin Pop
  if iname not in hyper.ListInstances():
1157 afdc3985 Iustin Pop
    _Fail("Instance %s is not running", iname)
1158 56e7640c Iustin Pop
1159 56e7640c Iustin Pop
  for idx in range(len(instance.disks)):
1160 afdc3985 Iustin Pop
    link_name = _GetBlockDevSymlinkPath(iname, idx)
1161 56e7640c Iustin Pop
    if not os.path.islink(link_name):
1162 b8ebd37b Iustin Pop
      logging.warning("Instance %s is missing symlink %s for disk %d",
1163 b8ebd37b Iustin Pop
                      iname, link_name, idx)
1164 56e7640c Iustin Pop
1165 56e7640c Iustin Pop
1166 e69d05fd Iustin Pop
def GetAllInstancesInfo(hypervisor_list):
1167 a8083063 Iustin Pop
  """Gather data about all instances.
1168 a8083063 Iustin Pop

1169 10c2650b Iustin Pop
  This is the equivalent of L{GetInstanceInfo}, except that it
1170 a8083063 Iustin Pop
  computes data for all instances at once, thus being faster if one
1171 a8083063 Iustin Pop
  needs data about more than one instance.
1172 a8083063 Iustin Pop

1173 e69d05fd Iustin Pop
  @type hypervisor_list: list
1174 e69d05fd Iustin Pop
  @param hypervisor_list: list of hypervisors to query for instance data
1175 e69d05fd Iustin Pop

1176 955db481 Guido Trotter
  @rtype: dict
1177 e69d05fd Iustin Pop
  @return: dictionary of instance: data, with data having the following keys:
1178 e69d05fd Iustin Pop
      - memory: memory size of instance (int)
1179 e69d05fd Iustin Pop
      - state: xen state of instance (string)
1180 e69d05fd Iustin Pop
      - time: cpu time of instance (float)
1181 10c2650b Iustin Pop
      - vcpus: the number of vcpus
1182 a8083063 Iustin Pop

1183 098c0958 Michael Hanselmann
  """
1184 a8083063 Iustin Pop
  output = {}
1185 a8083063 Iustin Pop
1186 e69d05fd Iustin Pop
  for hname in hypervisor_list:
1187 e69d05fd Iustin Pop
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
1188 e69d05fd Iustin Pop
    if iinfo:
1189 29921401 Iustin Pop
      for name, _, memory, vcpus, state, times in iinfo:
1190 f23b5ae8 Iustin Pop
        value = {
1191 d0c8c01d Iustin Pop
          "memory": memory,
1192 d0c8c01d Iustin Pop
          "vcpus": vcpus,
1193 d0c8c01d Iustin Pop
          "state": state,
1194 d0c8c01d Iustin Pop
          "time": times,
1195 e69d05fd Iustin Pop
          }
1196 b33b6f55 Iustin Pop
        if name in output:
1197 b33b6f55 Iustin Pop
          # we only check static parameters, like memory and vcpus,
1198 b33b6f55 Iustin Pop
          # and not state and time which can change between the
1199 b33b6f55 Iustin Pop
          # invocations of the different hypervisors
1200 d0c8c01d Iustin Pop
          for key in "memory", "vcpus":
1201 b33b6f55 Iustin Pop
            if value[key] != output[name][key]:
1202 2fa74ef4 Iustin Pop
              _Fail("Instance %s is running twice"
1203 2fa74ef4 Iustin Pop
                    " with different parameters", name)
1204 f23b5ae8 Iustin Pop
        output[name] = value
1205 a8083063 Iustin Pop
1206 c26a6bd2 Iustin Pop
  return output
1207 a8083063 Iustin Pop
1208 a8083063 Iustin Pop
1209 6aa7a354 Iustin Pop
def _InstanceLogName(kind, os_name, instance, component):
1210 81a3406c Iustin Pop
  """Compute the OS log filename for a given instance and operation.
1211 81a3406c Iustin Pop

1212 81a3406c Iustin Pop
  The instance name and os name are passed in as strings since not all
1213 81a3406c Iustin Pop
  operations have these as part of an instance object.
1214 81a3406c Iustin Pop

1215 81a3406c Iustin Pop
  @type kind: string
1216 81a3406c Iustin Pop
  @param kind: the operation type (e.g. add, import, etc.)
1217 81a3406c Iustin Pop
  @type os_name: string
1218 81a3406c Iustin Pop
  @param os_name: the os name
1219 81a3406c Iustin Pop
  @type instance: string
1220 81a3406c Iustin Pop
  @param instance: the name of the instance being imported/added/etc.
1221 6aa7a354 Iustin Pop
  @type component: string or None
1222 6aa7a354 Iustin Pop
  @param component: the name of the component of the instance being
1223 6aa7a354 Iustin Pop
      transferred
1224 81a3406c Iustin Pop

1225 81a3406c Iustin Pop
  """
1226 1651d116 Michael Hanselmann
  # TODO: Use tempfile.mkstemp to create unique filename
1227 6aa7a354 Iustin Pop
  if component:
1228 6aa7a354 Iustin Pop
    assert "/" not in component
1229 6aa7a354 Iustin Pop
    c_msg = "-%s" % component
1230 6aa7a354 Iustin Pop
  else:
1231 6aa7a354 Iustin Pop
    c_msg = ""
1232 6aa7a354 Iustin Pop
  base = ("%s-%s-%s%s-%s.log" %
1233 6aa7a354 Iustin Pop
          (kind, os_name, instance, c_msg, utils.TimestampForFilename()))
1234 710f30ec Michael Hanselmann
  return utils.PathJoin(pathutils.LOG_OS_DIR, base)
1235 81a3406c Iustin Pop
1236 81a3406c Iustin Pop
1237 4a0e011f Iustin Pop
def InstanceOsAdd(instance, reinstall, debug):
1238 2f8598a5 Alexander Schreiber
  """Add an OS to an instance.
1239 a8083063 Iustin Pop

1240 d15a9ad3 Guido Trotter
  @type instance: L{objects.Instance}
1241 d15a9ad3 Guido Trotter
  @param instance: Instance whose OS is to be installed
1242 e557bae9 Guido Trotter
  @type reinstall: boolean
1243 e557bae9 Guido Trotter
  @param reinstall: whether this is an instance reinstall
1244 4a0e011f Iustin Pop
  @type debug: integer
1245 4a0e011f Iustin Pop
  @param debug: debug level, passed to the OS scripts
1246 c26a6bd2 Iustin Pop
  @rtype: None
1247 a8083063 Iustin Pop

1248 a8083063 Iustin Pop
  """
1249 255dcebd Iustin Pop
  inst_os = OSFromDisk(instance.os)
1250 255dcebd Iustin Pop
1251 4a0e011f Iustin Pop
  create_env = OSEnvironment(instance, inst_os, debug)
1252 e557bae9 Guido Trotter
  if reinstall:
1253 d0c8c01d Iustin Pop
    create_env["INSTANCE_REINSTALL"] = "1"
1254 a8083063 Iustin Pop
1255 6aa7a354 Iustin Pop
  logfile = _InstanceLogName("add", instance.os, instance.name, None)
1256 decd5f45 Iustin Pop
1257 d868edb4 Iustin Pop
  result = utils.RunCmd([inst_os.create_script], env=create_env,
1258 896a03f6 Iustin Pop
                        cwd=inst_os.path, output=logfile, reset_env=True)
1259 decd5f45 Iustin Pop
  if result.failed:
1260 18682bca Iustin Pop
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
1261 d868edb4 Iustin Pop
                  " output: %s", result.cmd, result.fail_reason, logfile,
1262 18682bca Iustin Pop
                  result.output)
1263 26f15862 Iustin Pop
    lines = [utils.SafeEncode(val)
1264 20e01edd Iustin Pop
             for val in utils.TailFile(logfile, lines=20)]
1265 afdc3985 Iustin Pop
    _Fail("OS create script failed (%s), last lines in the"
1266 afdc3985 Iustin Pop
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
1267 decd5f45 Iustin Pop
1268 decd5f45 Iustin Pop
1269 4a0e011f Iustin Pop
def RunRenameInstance(instance, old_name, debug):
1270 decd5f45 Iustin Pop
  """Run the OS rename script for an instance.
1271 decd5f45 Iustin Pop

1272 b1206984 Iustin Pop
  @type instance: L{objects.Instance}
1273 d15a9ad3 Guido Trotter
  @param instance: Instance whose OS is to be installed
1274 d15a9ad3 Guido Trotter
  @type old_name: string
1275 d15a9ad3 Guido Trotter
  @param old_name: previous instance name
1276 4a0e011f Iustin Pop
  @type debug: integer
1277 4a0e011f Iustin Pop
  @param debug: debug level, passed to the OS scripts
1278 10c2650b Iustin Pop
  @rtype: boolean
1279 10c2650b Iustin Pop
  @return: the success of the operation
1280 decd5f45 Iustin Pop

1281 decd5f45 Iustin Pop
  """
1282 decd5f45 Iustin Pop
  inst_os = OSFromDisk(instance.os)
1283 decd5f45 Iustin Pop
1284 4a0e011f Iustin Pop
  rename_env = OSEnvironment(instance, inst_os, debug)
1285 d0c8c01d Iustin Pop
  rename_env["OLD_INSTANCE_NAME"] = old_name
1286 decd5f45 Iustin Pop
1287 81a3406c Iustin Pop
  logfile = _InstanceLogName("rename", instance.os,
1288 6aa7a354 Iustin Pop
                             "%s-%s" % (old_name, instance.name), None)
1289 a8083063 Iustin Pop
1290 d868edb4 Iustin Pop
  result = utils.RunCmd([inst_os.rename_script], env=rename_env,
1291 896a03f6 Iustin Pop
                        cwd=inst_os.path, output=logfile, reset_env=True)
1292 a8083063 Iustin Pop
1293 a8083063 Iustin Pop
  if result.failed:
1294 18682bca Iustin Pop
    logging.error("os create command '%s' returned error: %s output: %s",
1295 d868edb4 Iustin Pop
                  result.cmd, result.fail_reason, result.output)
1296 26f15862 Iustin Pop
    lines = [utils.SafeEncode(val)
1297 96841384 Iustin Pop
             for val in utils.TailFile(logfile, lines=20)]
1298 afdc3985 Iustin Pop
    _Fail("OS rename script failed (%s), last lines in the"
1299 afdc3985 Iustin Pop
          " log file:\n%s", result.fail_reason, "\n".join(lines), log=False)
1300 a8083063 Iustin Pop
1301 a8083063 Iustin Pop
1302 3b721842 Michael Hanselmann
def _GetBlockDevSymlinkPath(instance_name, idx, _dir=None):
1303 3b721842 Michael Hanselmann
  """Returns symlink path for block device.
1304 3b721842 Michael Hanselmann

1305 3b721842 Michael Hanselmann
  """
1306 3b721842 Michael Hanselmann
  if _dir is None:
1307 3b721842 Michael Hanselmann
    _dir = pathutils.DISK_LINKS_DIR
1308 3b721842 Michael Hanselmann
1309 3b721842 Michael Hanselmann
  return utils.PathJoin(_dir,
1310 3b721842 Michael Hanselmann
                        ("%s%s%s" %
1311 3b721842 Michael Hanselmann
                         (instance_name, constants.DISK_SEPARATOR, idx)))
1312 5282084b Iustin Pop
1313 5282084b Iustin Pop
1314 5282084b Iustin Pop
def _SymlinkBlockDev(instance_name, device_path, idx):
1315 9332fd8a Iustin Pop
  """Set up symlinks to a instance's block device.
1316 9332fd8a Iustin Pop

1317 9332fd8a Iustin Pop
  This is an auxiliary function run when an instance is start (on the primary
1318 9332fd8a Iustin Pop
  node) or when an instance is migrated (on the target node).
1319 9332fd8a Iustin Pop

1320 9332fd8a Iustin Pop

1321 5282084b Iustin Pop
  @param instance_name: the name of the target instance
1322 5282084b Iustin Pop
  @param device_path: path of the physical block device, on the node
1323 5282084b Iustin Pop
  @param idx: the disk index
1324 5282084b Iustin Pop
  @return: absolute path to the disk's symlink
1325 9332fd8a Iustin Pop

1326 9332fd8a Iustin Pop
  """
1327 5282084b Iustin Pop
  link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1328 9332fd8a Iustin Pop
  try:
1329 9332fd8a Iustin Pop
    os.symlink(device_path, link_name)
1330 5282084b Iustin Pop
  except OSError, err:
1331 5282084b Iustin Pop
    if err.errno == errno.EEXIST:
1332 9332fd8a Iustin Pop
      if (not os.path.islink(link_name) or
1333 9332fd8a Iustin Pop
          os.readlink(link_name) != device_path):
1334 9332fd8a Iustin Pop
        os.remove(link_name)
1335 9332fd8a Iustin Pop
        os.symlink(device_path, link_name)
1336 9332fd8a Iustin Pop
    else:
1337 9332fd8a Iustin Pop
      raise
1338 9332fd8a Iustin Pop
1339 9332fd8a Iustin Pop
  return link_name
1340 9332fd8a Iustin Pop
1341 9332fd8a Iustin Pop
1342 5282084b Iustin Pop
def _RemoveBlockDevLinks(instance_name, disks):
1343 3c9c571d Iustin Pop
  """Remove the block device symlinks belonging to the given instance.
1344 3c9c571d Iustin Pop

1345 3c9c571d Iustin Pop
  """
1346 29921401 Iustin Pop
  for idx, _ in enumerate(disks):
1347 5282084b Iustin Pop
    link_name = _GetBlockDevSymlinkPath(instance_name, idx)
1348 5282084b Iustin Pop
    if os.path.islink(link_name):
1349 3c9c571d Iustin Pop
      try:
1350 03dfa658 Iustin Pop
        os.remove(link_name)
1351 03dfa658 Iustin Pop
      except OSError:
1352 03dfa658 Iustin Pop
        logging.exception("Can't remove symlink '%s'", link_name)
1353 3c9c571d Iustin Pop
1354 3c9c571d Iustin Pop
1355 9332fd8a Iustin Pop
def _GatherAndLinkBlockDevs(instance):
1356 a8083063 Iustin Pop
  """Set up an instance's block device(s).
1357 a8083063 Iustin Pop

1358 a8083063 Iustin Pop
  This is run on the primary node at instance startup. The block
1359 a8083063 Iustin Pop
  devices must be already assembled.
1360 a8083063 Iustin Pop

1361 10c2650b Iustin Pop
  @type instance: L{objects.Instance}
1362 10c2650b Iustin Pop
  @param instance: the instance whose disks we shoul assemble
1363 069cfbf1 Iustin Pop
  @rtype: list
1364 069cfbf1 Iustin Pop
  @return: list of (disk_object, device_path)
1365 10c2650b Iustin Pop

1366 a8083063 Iustin Pop
  """
1367 a8083063 Iustin Pop
  block_devices = []
1368 9332fd8a Iustin Pop
  for idx, disk in enumerate(instance.disks):
1369 a8083063 Iustin Pop
    device = _RecursiveFindBD(disk)
1370 a8083063 Iustin Pop
    if device is None:
1371 a8083063 Iustin Pop
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
1372 a8083063 Iustin Pop
                                    str(disk))
1373 a8083063 Iustin Pop
    device.Open()
1374 9332fd8a Iustin Pop
    try:
1375 5282084b Iustin Pop
      link_name = _SymlinkBlockDev(instance.name, device.dev_path, idx)
1376 9332fd8a Iustin Pop
    except OSError, e:
1377 9332fd8a Iustin Pop
      raise errors.BlockDeviceError("Cannot create block device symlink: %s" %
1378 9332fd8a Iustin Pop
                                    e.strerror)
1379 9332fd8a Iustin Pop
1380 9332fd8a Iustin Pop
    block_devices.append((disk, link_name))
1381 9332fd8a Iustin Pop
1382 a8083063 Iustin Pop
  return block_devices
1383 a8083063 Iustin Pop
1384 a8083063 Iustin Pop
1385 1fa6fcba Michele Tartara
def StartInstance(instance, startup_paused, reason, store_reason=True):
1386 a8083063 Iustin Pop
  """Start an instance.
1387 a8083063 Iustin Pop

1388 10c2650b Iustin Pop
  @type instance: L{objects.Instance}
1389 e69d05fd Iustin Pop
  @param instance: the instance object
1390 323f9095 Stephen Shirley
  @type startup_paused: bool
1391 323f9095 Stephen Shirley
  @param instance: pause instance at startup?
1392 1fa6fcba Michele Tartara
  @type reason: list of reasons
1393 1fa6fcba Michele Tartara
  @param reason: the reason trail for this startup
1394 1fa6fcba Michele Tartara
  @type store_reason: boolean
1395 1fa6fcba Michele Tartara
  @param store_reason: whether to store the shutdown reason trail on file
1396 c26a6bd2 Iustin Pop
  @rtype: None
1397 a8083063 Iustin Pop

1398 098c0958 Michael Hanselmann
  """
1399 e69d05fd Iustin Pop
  running_instances = GetInstanceList([instance.hypervisor])
1400 a8083063 Iustin Pop
1401 a8083063 Iustin Pop
  if instance.name in running_instances:
1402 c26a6bd2 Iustin Pop
    logging.info("Instance %s already running, not starting", instance.name)
1403 c26a6bd2 Iustin Pop
    return
1404 a8083063 Iustin Pop
1405 a8083063 Iustin Pop
  try:
1406 ec596c24 Iustin Pop
    block_devices = _GatherAndLinkBlockDevs(instance)
1407 ec596c24 Iustin Pop
    hyper = hypervisor.GetHypervisor(instance.hypervisor)
1408 323f9095 Stephen Shirley
    hyper.StartInstance(instance, block_devices, startup_paused)
1409 1fa6fcba Michele Tartara
    if store_reason:
1410 1fa6fcba Michele Tartara
      _StoreInstReasonTrail(instance.name, reason)
1411 ec596c24 Iustin Pop
  except errors.BlockDeviceError, err:
1412 2cc6781a Iustin Pop
    _Fail("Block device error: %s", err, exc=True)
1413 a8083063 Iustin Pop
  except errors.HypervisorError, err:
1414 5282084b Iustin Pop
    _RemoveBlockDevLinks(instance.name, instance.disks)
1415 2cc6781a Iustin Pop
    _Fail("Hypervisor error: %s", err, exc=True)
1416 a8083063 Iustin Pop
1417 a8083063 Iustin Pop
1418 1f350e0f Michele Tartara
def InstanceShutdown(instance, timeout, reason, store_reason=True):
1419 a8083063 Iustin Pop
  """Shut an instance down.
1420 a8083063 Iustin Pop

1421 10c2650b Iustin Pop
  @note: this functions uses polling with a hardcoded timeout.
1422 10c2650b Iustin Pop

1423 10c2650b Iustin Pop
  @type instance: L{objects.Instance}
1424 e69d05fd Iustin Pop
  @param instance: the instance object
1425 6263189c Guido Trotter
  @type timeout: integer
1426 6263189c Guido Trotter
  @param timeout: maximum timeout for soft shutdown
1427 1f350e0f Michele Tartara
  @type reason: list of reasons
1428 1f350e0f Michele Tartara
  @param reason: the reason trail for this shutdown
1429 1f350e0f Michele Tartara
  @type store_reason: boolean
1430 1f350e0f Michele Tartara
  @param store_reason: whether to store the shutdown reason trail on file
1431 c26a6bd2 Iustin Pop
  @rtype: None
1432 a8083063 Iustin Pop

1433 098c0958 Michael Hanselmann
  """
1434 e69d05fd Iustin Pop
  hv_name = instance.hypervisor
1435 e4e9b806 Guido Trotter
  hyper = hypervisor.GetHypervisor(hv_name)
1436 c26a6bd2 Iustin Pop
  iname = instance.name
1437 a8083063 Iustin Pop
1438 3c0cdc83 Michael Hanselmann
  if instance.name not in hyper.ListInstances():
1439 c26a6bd2 Iustin Pop
    logging.info("Instance %s not running, doing nothing", iname)
1440 c26a6bd2 Iustin Pop
    return
1441 a8083063 Iustin Pop
1442 3c0cdc83 Michael Hanselmann
  class _TryShutdown:
1443 3c0cdc83 Michael Hanselmann
    def __init__(self):
1444 3c0cdc83 Michael Hanselmann
      self.tried_once = False
1445 a8083063 Iustin Pop
1446 3c0cdc83 Michael Hanselmann
    def __call__(self):
1447 3c0cdc83 Michael Hanselmann
      if iname not in hyper.ListInstances():
1448 3c0cdc83 Michael Hanselmann
        return
1449 3c0cdc83 Michael Hanselmann
1450 3c0cdc83 Michael Hanselmann
      try:
1451 3c0cdc83 Michael Hanselmann
        hyper.StopInstance(instance, retry=self.tried_once)
1452 1f350e0f Michele Tartara
        if store_reason:
1453 1f350e0f Michele Tartara
          _StoreInstReasonTrail(instance.name, reason)
1454 3c0cdc83 Michael Hanselmann
      except errors.HypervisorError, err:
1455 3c0cdc83 Michael Hanselmann
        if iname not in hyper.ListInstances():
1456 3c0cdc83 Michael Hanselmann
          # if the instance is no longer existing, consider this a
1457 3c0cdc83 Michael Hanselmann
          # success and go to cleanup
1458 3c0cdc83 Michael Hanselmann
          return
1459 3c0cdc83 Michael Hanselmann
1460 3c0cdc83 Michael Hanselmann
        _Fail("Failed to stop instance %s: %s", iname, err)
1461 3c0cdc83 Michael Hanselmann
1462 3c0cdc83 Michael Hanselmann
      self.tried_once = True
1463 3c0cdc83 Michael Hanselmann
1464 3c0cdc83 Michael Hanselmann
      raise utils.RetryAgain()
1465 3c0cdc83 Michael Hanselmann
1466 3c0cdc83 Michael Hanselmann
  try:
1467 3c0cdc83 Michael Hanselmann
    utils.Retry(_TryShutdown(), 5, timeout)
1468 3c0cdc83 Michael Hanselmann
  except utils.RetryTimeout:
1469 a8083063 Iustin Pop
    # the shutdown did not succeed
1470 e4e9b806 Guido Trotter
    logging.error("Shutdown of '%s' unsuccessful, forcing", iname)
1471 a8083063 Iustin Pop
1472 a8083063 Iustin Pop
    try:
1473 a8083063 Iustin Pop
      hyper.StopInstance(instance, force=True)
1474 a8083063 Iustin Pop
    except errors.HypervisorError, err:
1475 3c0cdc83 Michael Hanselmann
      if iname in hyper.ListInstances():
1476 3782acd7 Iustin Pop
        # only raise an error if the instance still exists, otherwise
1477 3782acd7 Iustin Pop
        # the error could simply be "instance ... unknown"!
1478 3782acd7 Iustin Pop
        _Fail("Failed to force stop instance %s: %s", iname, err)
1479 a8083063 Iustin Pop
1480 a8083063 Iustin Pop
    time.sleep(1)
1481 3c0cdc83 Michael Hanselmann
1482 3c0cdc83 Michael Hanselmann
    if iname in hyper.ListInstances():
1483 c26a6bd2 Iustin Pop
      _Fail("Could not shutdown instance %s even by destroy", iname)
1484 3c9c571d Iustin Pop
1485 f28ec899 Guido Trotter
  try:
1486 f28ec899 Guido Trotter
    hyper.CleanupInstance(instance.name)
1487 f28ec899 Guido Trotter
  except errors.HypervisorError, err:
1488 f28ec899 Guido Trotter
    logging.warning("Failed to execute post-shutdown cleanup step: %s", err)
1489 f28ec899 Guido Trotter
1490 c26a6bd2 Iustin Pop
  _RemoveBlockDevLinks(iname, instance.disks)
1491 a8083063 Iustin Pop
1492 a8083063 Iustin Pop
1493 55cec070 Michele Tartara
def InstanceReboot(instance, reboot_type, shutdown_timeout, reason):
1494 007a2f3e Alexander Schreiber
  """Reboot an instance.
1495 007a2f3e Alexander Schreiber

1496 10c2650b Iustin Pop
  @type instance: L{objects.Instance}
1497 10c2650b Iustin Pop
  @param instance: the instance object to reboot
1498 10c2650b Iustin Pop
  @type reboot_type: str
1499 10c2650b Iustin Pop
  @param reboot_type: the type of reboot, one the following
1500 10c2650b Iustin Pop
    constants:
1501 10c2650b Iustin Pop
      - L{constants.INSTANCE_REBOOT_SOFT}: only reboot the
1502 10c2650b Iustin Pop
        instance OS, do not recreate the VM
1503 10c2650b Iustin Pop
      - L{constants.INSTANCE_REBOOT_HARD}: tear down and
1504 10c2650b Iustin Pop
        restart the VM (at the hypervisor level)
1505 73e5a4f4 Iustin Pop
      - the other reboot type (L{constants.INSTANCE_REBOOT_FULL}) is
1506 73e5a4f4 Iustin Pop
        not accepted here, since that mode is handled differently, in
1507 73e5a4f4 Iustin Pop
        cmdlib, and translates into full stop and start of the
1508 73e5a4f4 Iustin Pop
        instance (instead of a call_instance_reboot RPC)
1509 23057d29 Michael Hanselmann
  @type shutdown_timeout: integer
1510 23057d29 Michael Hanselmann
  @param shutdown_timeout: maximum timeout for soft shutdown
1511 55cec070 Michele Tartara
  @type reason: list of reasons
1512 55cec070 Michele Tartara
  @param reason: the reason trail for this reboot
1513 c26a6bd2 Iustin Pop
  @rtype: None
1514 007a2f3e Alexander Schreiber

1515 007a2f3e Alexander Schreiber
  """
1516 e69d05fd Iustin Pop
  running_instances = GetInstanceList([instance.hypervisor])
1517 007a2f3e Alexander Schreiber
1518 007a2f3e Alexander Schreiber
  if instance.name not in running_instances:
1519 2cc6781a Iustin Pop
    _Fail("Cannot reboot instance %s that is not running", instance.name)
1520 007a2f3e Alexander Schreiber
1521 e69d05fd Iustin Pop
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1522 007a2f3e Alexander Schreiber
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
1523 007a2f3e Alexander Schreiber
    try:
1524 007a2f3e Alexander Schreiber
      hyper.RebootInstance(instance)
1525 007a2f3e Alexander Schreiber
    except errors.HypervisorError, err:
1526 2cc6781a Iustin Pop
      _Fail("Failed to soft reboot instance %s: %s", instance.name, err)
1527 007a2f3e Alexander Schreiber
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
1528 007a2f3e Alexander Schreiber
    try:
1529 1f350e0f Michele Tartara
      InstanceShutdown(instance, shutdown_timeout, reason, store_reason=False)
1530 1fa6fcba Michele Tartara
      result = StartInstance(instance, False, reason, store_reason=False)
1531 55cec070 Michele Tartara
      _StoreInstReasonTrail(instance.name, reason)
1532 4a90bd4f Michele Tartara
      return result
1533 007a2f3e Alexander Schreiber
    except errors.HypervisorError, err:
1534 2cc6781a Iustin Pop
      _Fail("Failed to hard reboot instance %s: %s", instance.name, err)
1535 007a2f3e Alexander Schreiber
  else:
1536 2cc6781a Iustin Pop
    _Fail("Invalid reboot_type received: %s", reboot_type)
1537 007a2f3e Alexander Schreiber
1538 007a2f3e Alexander Schreiber
1539 ebe466d8 Guido Trotter
def InstanceBalloonMemory(instance, memory):
1540 ebe466d8 Guido Trotter
  """Resize an instance's memory.
1541 ebe466d8 Guido Trotter

1542 ebe466d8 Guido Trotter
  @type instance: L{objects.Instance}
1543 ebe466d8 Guido Trotter
  @param instance: the instance object
1544 ebe466d8 Guido Trotter
  @type memory: int
1545 ebe466d8 Guido Trotter
  @param memory: new memory amount in MB
1546 ebe466d8 Guido Trotter
  @rtype: None
1547 ebe466d8 Guido Trotter

1548 ebe466d8 Guido Trotter
  """
1549 ebe466d8 Guido Trotter
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1550 ebe466d8 Guido Trotter
  running = hyper.ListInstances()
1551 ebe466d8 Guido Trotter
  if instance.name not in running:
1552 ebe466d8 Guido Trotter
    logging.info("Instance %s is not running, cannot balloon", instance.name)
1553 ebe466d8 Guido Trotter
    return
1554 ebe466d8 Guido Trotter
  try:
1555 ebe466d8 Guido Trotter
    hyper.BalloonInstanceMemory(instance, memory)
1556 ebe466d8 Guido Trotter
  except errors.HypervisorError, err:
1557 ebe466d8 Guido Trotter
    _Fail("Failed to balloon instance memory: %s", err, exc=True)
1558 ebe466d8 Guido Trotter
1559 ebe466d8 Guido Trotter
1560 6906a9d8 Guido Trotter
def MigrationInfo(instance):
1561 6906a9d8 Guido Trotter
  """Gather information about an instance to be migrated.
1562 6906a9d8 Guido Trotter

1563 6906a9d8 Guido Trotter
  @type instance: L{objects.Instance}
1564 6906a9d8 Guido Trotter
  @param instance: the instance definition
1565 6906a9d8 Guido Trotter

1566 6906a9d8 Guido Trotter
  """
1567 cd42d0ad Guido Trotter
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1568 cd42d0ad Guido Trotter
  try:
1569 cd42d0ad Guido Trotter
    info = hyper.MigrationInfo(instance)
1570 cd42d0ad Guido Trotter
  except errors.HypervisorError, err:
1571 2cc6781a Iustin Pop
    _Fail("Failed to fetch migration information: %s", err, exc=True)
1572 c26a6bd2 Iustin Pop
  return info
1573 6906a9d8 Guido Trotter
1574 6906a9d8 Guido Trotter
1575 6906a9d8 Guido Trotter
def AcceptInstance(instance, info, target):
1576 6906a9d8 Guido Trotter
  """Prepare the node to accept an instance.
1577 6906a9d8 Guido Trotter

1578 6906a9d8 Guido Trotter
  @type instance: L{objects.Instance}
1579 6906a9d8 Guido Trotter
  @param instance: the instance definition
1580 6906a9d8 Guido Trotter
  @type info: string/data (opaque)
1581 6906a9d8 Guido Trotter
  @param info: migration information, from the source node
1582 6906a9d8 Guido Trotter
  @type target: string
1583 6906a9d8 Guido Trotter
  @param target: target host (usually ip), on this node
1584 6906a9d8 Guido Trotter

1585 6906a9d8 Guido Trotter
  """
1586 77fcff4a Apollon Oikonomopoulos
  # TODO: why is this required only for DTS_EXT_MIRROR?
1587 77fcff4a Apollon Oikonomopoulos
  if instance.disk_template in constants.DTS_EXT_MIRROR:
1588 77fcff4a Apollon Oikonomopoulos
    # Create the symlinks, as the disks are not active
1589 77fcff4a Apollon Oikonomopoulos
    # in any way
1590 77fcff4a Apollon Oikonomopoulos
    try:
1591 77fcff4a Apollon Oikonomopoulos
      _GatherAndLinkBlockDevs(instance)
1592 77fcff4a Apollon Oikonomopoulos
    except errors.BlockDeviceError, err:
1593 77fcff4a Apollon Oikonomopoulos
      _Fail("Block device error: %s", err, exc=True)
1594 77fcff4a Apollon Oikonomopoulos
1595 cd42d0ad Guido Trotter
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1596 cd42d0ad Guido Trotter
  try:
1597 cd42d0ad Guido Trotter
    hyper.AcceptInstance(instance, info, target)
1598 cd42d0ad Guido Trotter
  except errors.HypervisorError, err:
1599 77fcff4a Apollon Oikonomopoulos
    if instance.disk_template in constants.DTS_EXT_MIRROR:
1600 77fcff4a Apollon Oikonomopoulos
      _RemoveBlockDevLinks(instance.name, instance.disks)
1601 2cc6781a Iustin Pop
    _Fail("Failed to accept instance: %s", err, exc=True)
1602 6906a9d8 Guido Trotter
1603 6906a9d8 Guido Trotter
1604 6a1434d7 Andrea Spadaccini
def FinalizeMigrationDst(instance, info, success):
1605 6906a9d8 Guido Trotter
  """Finalize any preparation to accept an instance.
1606 6906a9d8 Guido Trotter

1607 6906a9d8 Guido Trotter
  @type instance: L{objects.Instance}
1608 6906a9d8 Guido Trotter
  @param instance: the instance definition
1609 6906a9d8 Guido Trotter
  @type info: string/data (opaque)
1610 6906a9d8 Guido Trotter
  @param info: migration information, from the source node
1611 6906a9d8 Guido Trotter
  @type success: boolean
1612 6906a9d8 Guido Trotter
  @param success: whether the migration was a success or a failure
1613 6906a9d8 Guido Trotter

1614 6906a9d8 Guido Trotter
  """
1615 cd42d0ad Guido Trotter
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1616 cd42d0ad Guido Trotter
  try:
1617 6a1434d7 Andrea Spadaccini
    hyper.FinalizeMigrationDst(instance, info, success)
1618 cd42d0ad Guido Trotter
  except errors.HypervisorError, err:
1619 6a1434d7 Andrea Spadaccini
    _Fail("Failed to finalize migration on the target node: %s", err, exc=True)
1620 6906a9d8 Guido Trotter
1621 6906a9d8 Guido Trotter
1622 2a10865c Iustin Pop
def MigrateInstance(instance, target, live):
1623 2a10865c Iustin Pop
  """Migrates an instance to another node.
1624 2a10865c Iustin Pop

1625 b1206984 Iustin Pop
  @type instance: L{objects.Instance}
1626 9f0e6b37 Iustin Pop
  @param instance: the instance definition
1627 9f0e6b37 Iustin Pop
  @type target: string
1628 9f0e6b37 Iustin Pop
  @param target: the target node name
1629 9f0e6b37 Iustin Pop
  @type live: boolean
1630 9f0e6b37 Iustin Pop
  @param live: whether the migration should be done live or not (the
1631 9f0e6b37 Iustin Pop
      interpretation of this parameter is left to the hypervisor)
1632 c03fe62b Andrea Spadaccini
  @raise RPCFail: if migration fails for some reason
1633 9f0e6b37 Iustin Pop

1634 2a10865c Iustin Pop
  """
1635 53c776b5 Iustin Pop
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1636 2a10865c Iustin Pop
1637 2a10865c Iustin Pop
  try:
1638 58d38b02 Iustin Pop
    hyper.MigrateInstance(instance, target, live)
1639 2a10865c Iustin Pop
  except errors.HypervisorError, err:
1640 2cc6781a Iustin Pop
    _Fail("Failed to migrate instance: %s", err, exc=True)
1641 2a10865c Iustin Pop
1642 2a10865c Iustin Pop
1643 6a1434d7 Andrea Spadaccini
def FinalizeMigrationSource(instance, success, live):
1644 6a1434d7 Andrea Spadaccini
  """Finalize the instance migration on the source node.
1645 6a1434d7 Andrea Spadaccini

1646 6a1434d7 Andrea Spadaccini
  @type instance: L{objects.Instance}
1647 6a1434d7 Andrea Spadaccini
  @param instance: the instance definition of the migrated instance
1648 6a1434d7 Andrea Spadaccini
  @type success: bool
1649 6a1434d7 Andrea Spadaccini
  @param success: whether the migration succeeded or not
1650 6a1434d7 Andrea Spadaccini
  @type live: bool
1651 6a1434d7 Andrea Spadaccini
  @param live: whether the user requested a live migration or not
1652 6a1434d7 Andrea Spadaccini
  @raise RPCFail: If the execution fails for some reason
1653 6a1434d7 Andrea Spadaccini

1654 6a1434d7 Andrea Spadaccini
  """
1655 6a1434d7 Andrea Spadaccini
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1656 6a1434d7 Andrea Spadaccini
1657 6a1434d7 Andrea Spadaccini
  try:
1658 6a1434d7 Andrea Spadaccini
    hyper.FinalizeMigrationSource(instance, success, live)
1659 6a1434d7 Andrea Spadaccini
  except Exception, err:  # pylint: disable=W0703
1660 6a1434d7 Andrea Spadaccini
    _Fail("Failed to finalize the migration on the source node: %s", err,
1661 6a1434d7 Andrea Spadaccini
          exc=True)
1662 6a1434d7 Andrea Spadaccini
1663 6a1434d7 Andrea Spadaccini
1664 6a1434d7 Andrea Spadaccini
def GetMigrationStatus(instance):
1665 6a1434d7 Andrea Spadaccini
  """Get the migration status
1666 6a1434d7 Andrea Spadaccini

1667 6a1434d7 Andrea Spadaccini
  @type instance: L{objects.Instance}
1668 6a1434d7 Andrea Spadaccini
  @param instance: the instance that is being migrated
1669 6a1434d7 Andrea Spadaccini
  @rtype: L{objects.MigrationStatus}
1670 6a1434d7 Andrea Spadaccini
  @return: the status of the current migration (one of
1671 6a1434d7 Andrea Spadaccini
           L{constants.HV_MIGRATION_VALID_STATUSES}), plus any additional
1672 6a1434d7 Andrea Spadaccini
           progress info that can be retrieved from the hypervisor
1673 6a1434d7 Andrea Spadaccini
  @raise RPCFail: If the migration status cannot be retrieved
1674 6a1434d7 Andrea Spadaccini

1675 6a1434d7 Andrea Spadaccini
  """
1676 6a1434d7 Andrea Spadaccini
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
1677 6a1434d7 Andrea Spadaccini
  try:
1678 6a1434d7 Andrea Spadaccini
    return hyper.GetMigrationStatus(instance)
1679 6a1434d7 Andrea Spadaccini
  except Exception, err:  # pylint: disable=W0703
1680 6a1434d7 Andrea Spadaccini
    _Fail("Failed to get migration status: %s", err, exc=True)
1681 6a1434d7 Andrea Spadaccini
1682 6a1434d7 Andrea Spadaccini
1683 ee1478e5 Bernardo Dal Seno
def BlockdevCreate(disk, size, owner, on_primary, info, excl_stor):
1684 a8083063 Iustin Pop
  """Creates a block device for an instance.
1685 a8083063 Iustin Pop

1686 b1206984 Iustin Pop
  @type disk: L{objects.Disk}
1687 b1206984 Iustin Pop
  @param disk: the object describing the disk we should create
1688 b1206984 Iustin Pop
  @type size: int
1689 b1206984 Iustin Pop
  @param size: the size of the physical underlying device, in MiB
1690 b1206984 Iustin Pop
  @type owner: str
1691 b1206984 Iustin Pop
  @param owner: the name of the instance for which disk is created,
1692 b1206984 Iustin Pop
      used for device cache data
1693 b1206984 Iustin Pop
  @type on_primary: boolean
1694 b1206984 Iustin Pop
  @param on_primary:  indicates if it is the primary node or not
1695 b1206984 Iustin Pop
  @type info: string
1696 b1206984 Iustin Pop
  @param info: string that will be sent to the physical device
1697 b1206984 Iustin Pop
      creation, used for example to set (LVM) tags on LVs
1698 ee1478e5 Bernardo Dal Seno
  @type excl_stor: boolean
1699 ee1478e5 Bernardo Dal Seno
  @param excl_stor: Whether exclusive_storage is active
1700 b1206984 Iustin Pop

1701 b1206984 Iustin Pop
  @return: the new unique_id of the device (this can sometime be
1702 b1206984 Iustin Pop
      computed only after creation), or None. On secondary nodes,
1703 b1206984 Iustin Pop
      it's not required to return anything.
1704 a8083063 Iustin Pop

1705 a8083063 Iustin Pop
  """
1706 d0c8c01d Iustin Pop
  # TODO: remove the obsolete "size" argument
1707 b459a848 Andrea Spadaccini
  # pylint: disable=W0613
1708 a8083063 Iustin Pop
  clist = []
1709 a8083063 Iustin Pop
  if disk.children:
1710 a8083063 Iustin Pop
    for child in disk.children:
1711 1063abd1 Iustin Pop
      try:
1712 1063abd1 Iustin Pop
        crdev = _RecursiveAssembleBD(child, owner, on_primary)
1713 1063abd1 Iustin Pop
      except errors.BlockDeviceError, err:
1714 2cc6781a Iustin Pop
        _Fail("Can't assemble device %s: %s", child, err)
1715 a8083063 Iustin Pop
      if on_primary or disk.AssembleOnSecondary():
1716 a8083063 Iustin Pop
        # we need the children open in case the device itself has to
1717 a8083063 Iustin Pop
        # be assembled
1718 1063abd1 Iustin Pop
        try:
1719 b459a848 Andrea Spadaccini
          # pylint: disable=E1103
1720 1063abd1 Iustin Pop
          crdev.Open()
1721 1063abd1 Iustin Pop
        except errors.BlockDeviceError, err:
1722 2cc6781a Iustin Pop
          _Fail("Can't make child '%s' read-write: %s", child, err)
1723 a8083063 Iustin Pop
      clist.append(crdev)
1724 a8083063 Iustin Pop
1725 dab69e97 Iustin Pop
  try:
1726 ee1478e5 Bernardo Dal Seno
    device = bdev.Create(disk, clist, excl_stor)
1727 1063abd1 Iustin Pop
  except errors.BlockDeviceError, err:
1728 2cc6781a Iustin Pop
    _Fail("Can't create block device: %s", err)
1729 6c626518 Iustin Pop
1730 a8083063 Iustin Pop
  if on_primary or disk.AssembleOnSecondary():
1731 1063abd1 Iustin Pop
    try:
1732 1063abd1 Iustin Pop
      device.Assemble()
1733 1063abd1 Iustin Pop
    except errors.BlockDeviceError, err:
1734 2cc6781a Iustin Pop
      _Fail("Can't assemble device after creation, unusual event: %s", err)
1735 a8083063 Iustin Pop
    if on_primary or disk.OpenOnSecondary():
1736 1063abd1 Iustin Pop
      try:
1737 1063abd1 Iustin Pop
        device.Open(force=True)
1738 1063abd1 Iustin Pop
      except errors.BlockDeviceError, err:
1739 2cc6781a Iustin Pop
        _Fail("Can't make device r/w after creation, unusual event: %s", err)
1740 3f78eef2 Iustin Pop
    DevCacheManager.UpdateCache(device.dev_path, owner,
1741 3f78eef2 Iustin Pop
                                on_primary, disk.iv_name)
1742 a0c3fea1 Michael Hanselmann
1743 a0c3fea1 Michael Hanselmann
  device.SetInfo(info)
1744 a0c3fea1 Michael Hanselmann
1745 c26a6bd2 Iustin Pop
  return device.unique_id
1746 a8083063 Iustin Pop
1747 a8083063 Iustin Pop
1748 da63bb4e René Nussbaumer
def _WipeDevice(path, offset, size):
1749 69dd363f René Nussbaumer
  """This function actually wipes the device.
1750 69dd363f René Nussbaumer

1751 69dd363f René Nussbaumer
  @param path: The path to the device to wipe
1752 da63bb4e René Nussbaumer
  @param offset: The offset in MiB in the file
1753 da63bb4e René Nussbaumer
  @param size: The size in MiB to write
1754 69dd363f René Nussbaumer

1755 69dd363f René Nussbaumer
  """
1756 0188611b Michael Hanselmann
  # Internal sizes are always in Mebibytes; if the following "dd" command
1757 0188611b Michael Hanselmann
  # should use a different block size the offset and size given to this
1758 0188611b Michael Hanselmann
  # function must be adjusted accordingly before being passed to "dd".
1759 0188611b Michael Hanselmann
  block_size = 1024 * 1024
1760 0188611b Michael Hanselmann
1761 da63bb4e René Nussbaumer
  cmd = [constants.DD_CMD, "if=/dev/zero", "seek=%d" % offset,
1762 0188611b Michael Hanselmann
         "bs=%s" % block_size, "oflag=direct", "of=%s" % path,
1763 da63bb4e René Nussbaumer
         "count=%d" % size]
1764 da63bb4e René Nussbaumer
  result = utils.RunCmd(cmd)
1765 69dd363f René Nussbaumer
1766 69dd363f René Nussbaumer
  if result.failed:
1767 69dd363f René Nussbaumer
    _Fail("Wipe command '%s' exited with error: %s; output: %s", result.cmd,
1768 69dd363f René Nussbaumer
          result.fail_reason, result.output)
1769 69dd363f René Nussbaumer
1770 69dd363f René Nussbaumer
1771 da63bb4e René Nussbaumer
def BlockdevWipe(disk, offset, size):
1772 69dd363f René Nussbaumer
  """Wipes a block device.
1773 69dd363f René Nussbaumer

1774 69dd363f René Nussbaumer
  @type disk: L{objects.Disk}
1775 69dd363f René Nussbaumer
  @param disk: the disk object we want to wipe
1776 da63bb4e René Nussbaumer
  @type offset: int
1777 da63bb4e René Nussbaumer
  @param offset: The offset in MiB in the file
1778 da63bb4e René Nussbaumer
  @type size: int
1779 da63bb4e René Nussbaumer
  @param size: The size in MiB to write
1780 69dd363f René Nussbaumer

1781 69dd363f René Nussbaumer
  """
1782 69dd363f René Nussbaumer
  try:
1783 69dd363f René Nussbaumer
    rdev = _RecursiveFindBD(disk)
1784 da63bb4e René Nussbaumer
  except errors.BlockDeviceError:
1785 da63bb4e René Nussbaumer
    rdev = None
1786 da63bb4e René Nussbaumer
1787 da63bb4e René Nussbaumer
  if not rdev:
1788 da63bb4e René Nussbaumer
    _Fail("Cannot execute wipe for device %s: device not found", disk.iv_name)
1789 da63bb4e René Nussbaumer
1790 da63bb4e René Nussbaumer
  # Do cross verify some of the parameters
1791 0188611b Michael Hanselmann
  if offset < 0:
1792 0188611b Michael Hanselmann
    _Fail("Negative offset")
1793 0188611b Michael Hanselmann
  if size < 0:
1794 0188611b Michael Hanselmann
    _Fail("Negative size")
1795 da63bb4e René Nussbaumer
  if offset > rdev.size:
1796 da63bb4e René Nussbaumer
    _Fail("Offset is bigger than device size")
1797 da63bb4e René Nussbaumer
  if (offset + size) > rdev.size:
1798 da63bb4e René Nussbaumer
    _Fail("The provided offset and size to wipe is bigger than device size")
1799 69dd363f René Nussbaumer
1800 da63bb4e René Nussbaumer
  _WipeDevice(rdev.dev_path, offset, size)
1801 69dd363f René Nussbaumer
1802 69dd363f René Nussbaumer
1803 5119c79e René Nussbaumer
def BlockdevPauseResumeSync(disks, pause):
1804 5119c79e René Nussbaumer
  """Pause or resume the sync of the block device.
1805 5119c79e René Nussbaumer

1806 0f39886a René Nussbaumer
  @type disks: list of L{objects.Disk}
1807 0f39886a René Nussbaumer
  @param disks: the disks object we want to pause/resume
1808 5119c79e René Nussbaumer
  @type pause: bool
1809 5119c79e René Nussbaumer
  @param pause: Wheater to pause or resume
1810 5119c79e René Nussbaumer

1811 5119c79e René Nussbaumer
  """
1812 5119c79e René Nussbaumer
  success = []
1813 5119c79e René Nussbaumer
  for disk in disks:
1814 5119c79e René Nussbaumer
    try:
1815 5119c79e René Nussbaumer
      rdev = _RecursiveFindBD(disk)
1816 5119c79e René Nussbaumer
    except errors.BlockDeviceError:
1817 5119c79e René Nussbaumer
      rdev = None
1818 5119c79e René Nussbaumer
1819 5119c79e René Nussbaumer
    if not rdev:
1820 5119c79e René Nussbaumer
      success.append((False, ("Cannot change sync for device %s:"
1821 5119c79e René Nussbaumer
                              " device not found" % disk.iv_name)))
1822 5119c79e René Nussbaumer
      continue
1823 5119c79e René Nussbaumer
1824 5119c79e René Nussbaumer
    result = rdev.PauseResumeSync(pause)
1825 5119c79e René Nussbaumer
1826 5119c79e René Nussbaumer
    if result:
1827 5119c79e René Nussbaumer
      success.append((result, None))
1828 5119c79e René Nussbaumer
    else:
1829 5119c79e René Nussbaumer
      if pause:
1830 5119c79e René Nussbaumer
        msg = "Pause"
1831 5119c79e René Nussbaumer
      else:
1832 5119c79e René Nussbaumer
        msg = "Resume"
1833 5119c79e René Nussbaumer
      success.append((result, "%s for device %s failed" % (msg, disk.iv_name)))
1834 5119c79e René Nussbaumer
1835 5119c79e René Nussbaumer
  return success
1836 5119c79e René Nussbaumer
1837 5119c79e René Nussbaumer
1838 821d1bd1 Iustin Pop
def BlockdevRemove(disk):
1839 a8083063 Iustin Pop
  """Remove a block device.
1840 a8083063 Iustin Pop

1841 10c2650b Iustin Pop
  @note: This is intended to be called recursively.
1842 10c2650b Iustin Pop

1843 c41eea6e Iustin Pop
  @type disk: L{objects.Disk}
1844 10c2650b Iustin Pop
  @param disk: the disk object we should remove
1845 10c2650b Iustin Pop
  @rtype: boolean
1846 10c2650b Iustin Pop
  @return: the success of the operation
1847 a8083063 Iustin Pop

1848 a8083063 Iustin Pop
  """
1849 e1bc0878 Iustin Pop
  msgs = []
1850 a8083063 Iustin Pop
  try:
1851 bca2e7f4 Iustin Pop
    rdev = _RecursiveFindBD(disk)
1852 a8083063 Iustin Pop
  except errors.BlockDeviceError, err:
1853 a8083063 Iustin Pop
    # probably can't attach
1854 18682bca Iustin Pop
    logging.info("Can't attach to device %s in remove", disk)
1855 a8083063 Iustin Pop
    rdev = None
1856 a8083063 Iustin Pop
  if rdev is not None:
1857 3f78eef2 Iustin Pop
    r_path = rdev.dev_path
1858 e1bc0878 Iustin Pop
    try:
1859 0c6c04ec Iustin Pop
      rdev.Remove()
1860 e1bc0878 Iustin Pop
    except errors.BlockDeviceError, err:
1861 e1bc0878 Iustin Pop
      msgs.append(str(err))
1862 c26a6bd2 Iustin Pop
    if not msgs:
1863 3f78eef2 Iustin Pop
      DevCacheManager.RemoveCache(r_path)
1864 e1bc0878 Iustin Pop
1865 a8083063 Iustin Pop
  if disk.children:
1866 a8083063 Iustin Pop
    for child in disk.children:
1867 c26a6bd2 Iustin Pop
      try:
1868 c26a6bd2 Iustin Pop
        BlockdevRemove(child)
1869 c26a6bd2 Iustin Pop
      except RPCFail, err:
1870 c26a6bd2 Iustin Pop
        msgs.append(str(err))
1871 e1bc0878 Iustin Pop
1872 c26a6bd2 Iustin Pop
  if msgs:
1873 afdc3985 Iustin Pop
    _Fail("; ".join(msgs))
1874 afdc3985 Iustin Pop
1875 a8083063 Iustin Pop
1876 3f78eef2 Iustin Pop
def _RecursiveAssembleBD(disk, owner, as_primary):
1877 a8083063 Iustin Pop
  """Activate a block device for an instance.
1878 a8083063 Iustin Pop

1879 a8083063 Iustin Pop
  This is run on the primary and secondary nodes for an instance.
1880 a8083063 Iustin Pop

1881 10c2650b Iustin Pop
  @note: this function is called recursively.
1882 a8083063 Iustin Pop

1883 10c2650b Iustin Pop
  @type disk: L{objects.Disk}
1884 10c2650b Iustin Pop
  @param disk: the disk we try to assemble
1885 10c2650b Iustin Pop
  @type owner: str
1886 10c2650b Iustin Pop
  @param owner: the name of the instance which owns the disk
1887 10c2650b Iustin Pop
  @type as_primary: boolean
1888 10c2650b Iustin Pop
  @param as_primary: if we should make the block device
1889 10c2650b Iustin Pop
      read/write
1890 a8083063 Iustin Pop

1891 10c2650b Iustin Pop
  @return: the assembled device or None (in case no device
1892 10c2650b Iustin Pop
      was assembled)
1893 10c2650b Iustin Pop
  @raise errors.BlockDeviceError: in case there is an error
1894 10c2650b Iustin Pop
      during the activation of the children or the device
1895 10c2650b Iustin Pop
      itself
1896 a8083063 Iustin Pop

1897 a8083063 Iustin Pop
  """
1898 a8083063 Iustin Pop
  children = []
1899 a8083063 Iustin Pop
  if disk.children:
1900 fc1dc9d7 Iustin Pop
    mcn = disk.ChildrenNeeded()
1901 fc1dc9d7 Iustin Pop
    if mcn == -1:
1902 fc1dc9d7 Iustin Pop
      mcn = 0 # max number of Nones allowed
1903 fc1dc9d7 Iustin Pop
    else:
1904 fc1dc9d7 Iustin Pop
      mcn = len(disk.children) - mcn # max number of Nones
1905 a8083063 Iustin Pop
    for chld_disk in disk.children:
1906 fc1dc9d7 Iustin Pop
      try:
1907 fc1dc9d7 Iustin Pop
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
1908 fc1dc9d7 Iustin Pop
      except errors.BlockDeviceError, err:
1909 7803d4d3 Iustin Pop
        if children.count(None) >= mcn:
1910 fc1dc9d7 Iustin Pop
          raise
1911 fc1dc9d7 Iustin Pop
        cdev = None
1912 1063abd1 Iustin Pop
        logging.error("Error in child activation (but continuing): %s",
1913 1063abd1 Iustin Pop
                      str(err))
1914 fc1dc9d7 Iustin Pop
      children.append(cdev)
1915 a8083063 Iustin Pop
1916 a8083063 Iustin Pop
  if as_primary or disk.AssembleOnSecondary():
1917 94dcbdb0 Andrea Spadaccini
    r_dev = bdev.Assemble(disk, children)
1918 a8083063 Iustin Pop
    result = r_dev
1919 a8083063 Iustin Pop
    if as_primary or disk.OpenOnSecondary():
1920 a8083063 Iustin Pop
      r_dev.Open()
1921 3f78eef2 Iustin Pop
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
1922 3f78eef2 Iustin Pop
                                as_primary, disk.iv_name)
1923 3f78eef2 Iustin Pop
1924 a8083063 Iustin Pop
  else:
1925 a8083063 Iustin Pop
    result = True
1926 a8083063 Iustin Pop
  return result
1927 a8083063 Iustin Pop
1928 a8083063 Iustin Pop
1929 c417e115 Iustin Pop
def BlockdevAssemble(disk, owner, as_primary, idx):
1930 a8083063 Iustin Pop
  """Activate a block device for an instance.
1931 a8083063 Iustin Pop

1932 a8083063 Iustin Pop
  This is a wrapper over _RecursiveAssembleBD.
1933 a8083063 Iustin Pop

1934 b1206984 Iustin Pop
  @rtype: str or boolean
1935 b1206984 Iustin Pop
  @return: a C{/dev/...} path for primary nodes, and
1936 b1206984 Iustin Pop
      C{True} for secondary nodes
1937 a8083063 Iustin Pop

1938 a8083063 Iustin Pop
  """
1939 53c14ef1 Iustin Pop
  try:
1940 53c14ef1 Iustin Pop
    result = _RecursiveAssembleBD(disk, owner, as_primary)
1941 89ff748d Thomas Thrainer
    if isinstance(result, BlockDev):
1942 b459a848 Andrea Spadaccini
      # pylint: disable=E1103
1943 53c14ef1 Iustin Pop
      result = result.dev_path
1944 c417e115 Iustin Pop
      if as_primary:
1945 c417e115 Iustin Pop
        _SymlinkBlockDev(owner, result, idx)
1946 53c14ef1 Iustin Pop
  except errors.BlockDeviceError, err:
1947 afdc3985 Iustin Pop
    _Fail("Error while assembling disk: %s", err, exc=True)
1948 c417e115 Iustin Pop
  except OSError, err:
1949 c417e115 Iustin Pop
    _Fail("Error while symlinking disk: %s", err, exc=True)
1950 afdc3985 Iustin Pop
1951 c26a6bd2 Iustin Pop
  return result
1952 a8083063 Iustin Pop
1953 a8083063 Iustin Pop
1954 821d1bd1 Iustin Pop
def BlockdevShutdown(disk):
1955 a8083063 Iustin Pop
  """Shut down a block device.
1956 a8083063 Iustin Pop

1957 5bbd3f7f Michael Hanselmann
  First, if the device is assembled (Attach() is successful), then
1958 c41eea6e Iustin Pop
  the device is shutdown. Then the children of the device are
1959 c41eea6e Iustin Pop
  shutdown.
1960 a8083063 Iustin Pop

1961 a8083063 Iustin Pop
  This function is called recursively. Note that we don't cache the
1962 a8083063 Iustin Pop
  children or such, as oppossed to assemble, shutdown of different
1963 a8083063 Iustin Pop
  devices doesn't require that the upper device was active.
1964 a8083063 Iustin Pop

1965 10c2650b Iustin Pop
  @type disk: L{objects.Disk}
1966 10c2650b Iustin Pop
  @param disk: the description of the disk we should
1967 10c2650b Iustin Pop
      shutdown
1968 c26a6bd2 Iustin Pop
  @rtype: None
1969 10c2650b Iustin Pop

1970 a8083063 Iustin Pop
  """
1971 cacfd1fd Iustin Pop
  msgs = []
1972 a8083063 Iustin Pop
  r_dev = _RecursiveFindBD(disk)
1973 a8083063 Iustin Pop
  if r_dev is not None:
1974 3f78eef2 Iustin Pop
    r_path = r_dev.dev_path
1975 cacfd1fd Iustin Pop
    try:
1976 746f7476 Iustin Pop
      r_dev.Shutdown()
1977 746f7476 Iustin Pop
      DevCacheManager.RemoveCache(r_path)
1978 cacfd1fd Iustin Pop
    except errors.BlockDeviceError, err:
1979 cacfd1fd Iustin Pop
      msgs.append(str(err))
1980 746f7476 Iustin Pop
1981 a8083063 Iustin Pop
  if disk.children:
1982 a8083063 Iustin Pop
    for child in disk.children:
1983 c26a6bd2 Iustin Pop
      try:
1984 c26a6bd2 Iustin Pop
        BlockdevShutdown(child)
1985 c26a6bd2 Iustin Pop
      except RPCFail, err:
1986 c26a6bd2 Iustin Pop
        msgs.append(str(err))
1987 746f7476 Iustin Pop
1988 c26a6bd2 Iustin Pop
  if msgs:
1989 afdc3985 Iustin Pop
    _Fail("; ".join(msgs))
1990 a8083063 Iustin Pop
1991 a8083063 Iustin Pop
1992 821d1bd1 Iustin Pop
def BlockdevAddchildren(parent_cdev, new_cdevs):
1993 153d9724 Iustin Pop
  """Extend a mirrored block device.
1994 a8083063 Iustin Pop

1995 10c2650b Iustin Pop
  @type parent_cdev: L{objects.Disk}
1996 10c2650b Iustin Pop
  @param parent_cdev: the disk to which we should add children
1997 10c2650b Iustin Pop
  @type new_cdevs: list of L{objects.Disk}
1998 10c2650b Iustin Pop
  @param new_cdevs: the list of children which we should add
1999 c26a6bd2 Iustin Pop
  @rtype: None
2000 10c2650b Iustin Pop

2001 a8083063 Iustin Pop
  """
2002 bca2e7f4 Iustin Pop
  parent_bdev = _RecursiveFindBD(parent_cdev)
2003 153d9724 Iustin Pop
  if parent_bdev is None:
2004 2cc6781a Iustin Pop
    _Fail("Can't find parent device '%s' in add children", parent_cdev)
2005 153d9724 Iustin Pop
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
2006 153d9724 Iustin Pop
  if new_bdevs.count(None) > 0:
2007 2cc6781a Iustin Pop
    _Fail("Can't find new device(s) to add: %s:%s", new_bdevs, new_cdevs)
2008 153d9724 Iustin Pop
  parent_bdev.AddChildren(new_bdevs)
2009 a8083063 Iustin Pop
2010 a8083063 Iustin Pop
2011 821d1bd1 Iustin Pop
def BlockdevRemovechildren(parent_cdev, new_cdevs):
2012 153d9724 Iustin Pop
  """Shrink a mirrored block device.
2013 a8083063 Iustin Pop

2014 10c2650b Iustin Pop
  @type parent_cdev: L{objects.Disk}
2015 10c2650b Iustin Pop
  @param parent_cdev: the disk from which we should remove children
2016 10c2650b Iustin Pop
  @type new_cdevs: list of L{objects.Disk}
2017 10c2650b Iustin Pop
  @param new_cdevs: the list of children which we should remove
2018 c26a6bd2 Iustin Pop
  @rtype: None
2019 10c2650b Iustin Pop

2020 a8083063 Iustin Pop
  """
2021 153d9724 Iustin Pop
  parent_bdev = _RecursiveFindBD(parent_cdev)
2022 153d9724 Iustin Pop
  if parent_bdev is None:
2023 2cc6781a Iustin Pop
    _Fail("Can't find parent device '%s' in remove children", parent_cdev)
2024 e739bd57 Iustin Pop
  devs = []
2025 e739bd57 Iustin Pop
  for disk in new_cdevs:
2026 e739bd57 Iustin Pop
    rpath = disk.StaticDevPath()
2027 e739bd57 Iustin Pop
    if rpath is None:
2028 e739bd57 Iustin Pop
      bd = _RecursiveFindBD(disk)
2029 e739bd57 Iustin Pop
      if bd is None:
2030 2cc6781a Iustin Pop
        _Fail("Can't find device %s while removing children", disk)
2031 e739bd57 Iustin Pop
      else:
2032 e739bd57 Iustin Pop
        devs.append(bd.dev_path)
2033 e739bd57 Iustin Pop
    else:
2034 e51db2a6 Iustin Pop
      if not utils.IsNormAbsPath(rpath):
2035 e51db2a6 Iustin Pop
        _Fail("Strange path returned from StaticDevPath: '%s'", rpath)
2036 e739bd57 Iustin Pop
      devs.append(rpath)
2037 e739bd57 Iustin Pop
  parent_bdev.RemoveChildren(devs)
2038 a8083063 Iustin Pop
2039 a8083063 Iustin Pop
2040 821d1bd1 Iustin Pop
def BlockdevGetmirrorstatus(disks):
2041 a8083063 Iustin Pop
  """Get the mirroring status of a list of devices.
2042 a8083063 Iustin Pop

2043 10c2650b Iustin Pop
  @type disks: list of L{objects.Disk}
2044 10c2650b Iustin Pop
  @param disks: the list of disks which we should query
2045 10c2650b Iustin Pop
  @rtype: disk
2046 c6a9dffa Michael Hanselmann
  @return: List of L{objects.BlockDevStatus}, one for each disk
2047 10c2650b Iustin Pop
  @raise errors.BlockDeviceError: if any of the disks cannot be
2048 10c2650b Iustin Pop
      found
2049 a8083063 Iustin Pop

2050 a8083063 Iustin Pop
  """
2051 a8083063 Iustin Pop
  stats = []
2052 a8083063 Iustin Pop
  for dsk in disks:
2053 a8083063 Iustin Pop
    rbd = _RecursiveFindBD(dsk)
2054 a8083063 Iustin Pop
    if rbd is None:
2055 3efa9051 Iustin Pop
      _Fail("Can't find device %s", dsk)
2056 96acbc09 Michael Hanselmann
2057 36145b12 Michael Hanselmann
    stats.append(rbd.CombinedSyncStatus())
2058 96acbc09 Michael Hanselmann
2059 c26a6bd2 Iustin Pop
  return stats
2060 a8083063 Iustin Pop
2061 a8083063 Iustin Pop
2062 c6a9dffa Michael Hanselmann
def BlockdevGetmirrorstatusMulti(disks):
2063 c6a9dffa Michael Hanselmann
  """Get the mirroring status of a list of devices.
2064 c6a9dffa Michael Hanselmann

2065 c6a9dffa Michael Hanselmann
  @type disks: list of L{objects.Disk}
2066 c6a9dffa Michael Hanselmann
  @param disks: the list of disks which we should query
2067 c6a9dffa Michael Hanselmann
  @rtype: disk
2068 c6a9dffa Michael Hanselmann
  @return: List of tuples, (bool, status), one for each disk; bool denotes
2069 c6a9dffa Michael Hanselmann
    success/failure, status is L{objects.BlockDevStatus} on success, string
2070 c6a9dffa Michael Hanselmann
    otherwise
2071 c6a9dffa Michael Hanselmann

2072 c6a9dffa Michael Hanselmann
  """
2073 c6a9dffa Michael Hanselmann
  result = []
2074 c6a9dffa Michael Hanselmann
  for disk in disks:
2075 c6a9dffa Michael Hanselmann
    try:
2076 c6a9dffa Michael Hanselmann
      rbd = _RecursiveFindBD(disk)
2077 c6a9dffa Michael Hanselmann
      if rbd is None:
2078 c6a9dffa Michael Hanselmann
        result.append((False, "Can't find device %s" % disk))
2079 c6a9dffa Michael Hanselmann
        continue
2080 c6a9dffa Michael Hanselmann
2081 c6a9dffa Michael Hanselmann
      status = rbd.CombinedSyncStatus()
2082 c6a9dffa Michael Hanselmann
    except errors.BlockDeviceError, err:
2083 c6a9dffa Michael Hanselmann
      logging.exception("Error while getting disk status")
2084 c6a9dffa Michael Hanselmann
      result.append((False, str(err)))
2085 c6a9dffa Michael Hanselmann
    else:
2086 c6a9dffa Michael Hanselmann
      result.append((True, status))
2087 c6a9dffa Michael Hanselmann
2088 c6a9dffa Michael Hanselmann
  assert len(disks) == len(result)
2089 c6a9dffa Michael Hanselmann
2090 c6a9dffa Michael Hanselmann
  return result
2091 c6a9dffa Michael Hanselmann
2092 c6a9dffa Michael Hanselmann
2093 bca2e7f4 Iustin Pop
def _RecursiveFindBD(disk):
2094 a8083063 Iustin Pop
  """Check if a device is activated.
2095 a8083063 Iustin Pop

2096 5bbd3f7f Michael Hanselmann
  If so, return information about the real device.
2097 a8083063 Iustin Pop

2098 10c2650b Iustin Pop
  @type disk: L{objects.Disk}
2099 10c2650b Iustin Pop
  @param disk: the disk object we need to find
2100 a8083063 Iustin Pop

2101 10c2650b Iustin Pop
  @return: None if the device can't be found,
2102 10c2650b Iustin Pop
      otherwise the device instance
2103 a8083063 Iustin Pop

2104 a8083063 Iustin Pop
  """
2105 a8083063 Iustin Pop
  children = []
2106 a8083063 Iustin Pop
  if disk.children:
2107 a8083063 Iustin Pop
    for chdisk in disk.children:
2108 a8083063 Iustin Pop
      children.append(_RecursiveFindBD(chdisk))
2109 a8083063 Iustin Pop
2110 94dcbdb0 Andrea Spadaccini
  return bdev.FindDevice(disk, children)
2111 a8083063 Iustin Pop
2112 a8083063 Iustin Pop
2113 f2e07bb4 Michael Hanselmann
def _OpenRealBD(disk):
2114 f2e07bb4 Michael Hanselmann
  """Opens the underlying block device of a disk.
2115 f2e07bb4 Michael Hanselmann

2116 f2e07bb4 Michael Hanselmann
  @type disk: L{objects.Disk}
2117 f2e07bb4 Michael Hanselmann
  @param disk: the disk object we want to open
2118 f2e07bb4 Michael Hanselmann

2119 f2e07bb4 Michael Hanselmann
  """
2120 f2e07bb4 Michael Hanselmann
  real_disk = _RecursiveFindBD(disk)
2121 f2e07bb4 Michael Hanselmann
  if real_disk is None:
2122 f2e07bb4 Michael Hanselmann
    _Fail("Block device '%s' is not set up", disk)
2123 f2e07bb4 Michael Hanselmann
2124 f2e07bb4 Michael Hanselmann
  real_disk.Open()
2125 f2e07bb4 Michael Hanselmann
2126 f2e07bb4 Michael Hanselmann
  return real_disk
2127 f2e07bb4 Michael Hanselmann
2128 f2e07bb4 Michael Hanselmann
2129 821d1bd1 Iustin Pop
def BlockdevFind(disk):
2130 a8083063 Iustin Pop
  """Check if a device is activated.
2131 a8083063 Iustin Pop

2132 5bbd3f7f Michael Hanselmann
  If it is, return information about the real device.
2133 a8083063 Iustin Pop

2134 10c2650b Iustin Pop
  @type disk: L{objects.Disk}
2135 10c2650b Iustin Pop
  @param disk: the disk to find
2136 96acbc09 Michael Hanselmann
  @rtype: None or objects.BlockDevStatus
2137 96acbc09 Michael Hanselmann
  @return: None if the disk cannot be found, otherwise a the current
2138 96acbc09 Michael Hanselmann
           information
2139 a8083063 Iustin Pop

2140 a8083063 Iustin Pop
  """
2141 23829f6f Iustin Pop
  try:
2142 23829f6f Iustin Pop
    rbd = _RecursiveFindBD(disk)
2143 23829f6f Iustin Pop
  except errors.BlockDeviceError, err:
2144 2cc6781a Iustin Pop
    _Fail("Failed to find device: %s", err, exc=True)
2145 96acbc09 Michael Hanselmann
2146 a8083063 Iustin Pop
  if rbd is None:
2147 c26a6bd2 Iustin Pop
    return None
2148 96acbc09 Michael Hanselmann
2149 96acbc09 Michael Hanselmann
  return rbd.GetSyncStatus()
2150 a8083063 Iustin Pop
2151 a8083063 Iustin Pop
2152 968a7623 Iustin Pop
def BlockdevGetsize(disks):
2153 968a7623 Iustin Pop
  """Computes the size of the given disks.
2154 968a7623 Iustin Pop

2155 968a7623 Iustin Pop
  If a disk is not found, returns None instead.
2156 968a7623 Iustin Pop

2157 968a7623 Iustin Pop
  @type disks: list of L{objects.Disk}
2158 968a7623 Iustin Pop
  @param disks: the list of disk to compute the size for
2159 968a7623 Iustin Pop
  @rtype: list
2160 968a7623 Iustin Pop
  @return: list with elements None if the disk cannot be found,
2161 968a7623 Iustin Pop
      otherwise the size
2162 968a7623 Iustin Pop

2163 968a7623 Iustin Pop
  """
2164 968a7623 Iustin Pop
  result = []
2165 968a7623 Iustin Pop
  for cf in disks:
2166 968a7623 Iustin Pop
    try:
2167 968a7623 Iustin Pop
      rbd = _RecursiveFindBD(cf)
2168 1122eb25 Iustin Pop
    except errors.BlockDeviceError:
2169 968a7623 Iustin Pop
      result.append(None)
2170 968a7623 Iustin Pop
      continue
2171 968a7623 Iustin Pop
    if rbd is None:
2172 968a7623 Iustin Pop
      result.append(None)
2173 968a7623 Iustin Pop
    else:
2174 968a7623 Iustin Pop
      result.append(rbd.GetActualSize())
2175 968a7623 Iustin Pop
  return result
2176 968a7623 Iustin Pop
2177 968a7623 Iustin Pop
2178 858f3d18 Iustin Pop
def BlockdevExport(disk, dest_node, dest_path, cluster_name):
2179 858f3d18 Iustin Pop
  """Export a block device to a remote node.
2180 858f3d18 Iustin Pop

2181 858f3d18 Iustin Pop
  @type disk: L{objects.Disk}
2182 858f3d18 Iustin Pop
  @param disk: the description of the disk to export
2183 858f3d18 Iustin Pop
  @type dest_node: str
2184 858f3d18 Iustin Pop
  @param dest_node: the destination node to export to
2185 858f3d18 Iustin Pop
  @type dest_path: str
2186 858f3d18 Iustin Pop
  @param dest_path: the destination path on the target node
2187 858f3d18 Iustin Pop
  @type cluster_name: str
2188 858f3d18 Iustin Pop
  @param cluster_name: the cluster name, needed for SSH hostalias
2189 858f3d18 Iustin Pop
  @rtype: None
2190 858f3d18 Iustin Pop

2191 858f3d18 Iustin Pop
  """
2192 f2e07bb4 Michael Hanselmann
  real_disk = _OpenRealBD(disk)
2193 858f3d18 Iustin Pop
2194 858f3d18 Iustin Pop
  # the block size on the read dd is 1MiB to match our units
2195 858f3d18 Iustin Pop
  expcmd = utils.BuildShellCmd("set -e; set -o pipefail; "
2196 858f3d18 Iustin Pop
                               "dd if=%s bs=1048576 count=%s",
2197 858f3d18 Iustin Pop
                               real_disk.dev_path, str(disk.size))
2198 858f3d18 Iustin Pop
2199 858f3d18 Iustin Pop
  # we set here a smaller block size as, due to ssh buffering, more
2200 858f3d18 Iustin Pop
  # than 64-128k will mostly ignored; we use nocreat to fail if the
2201 858f3d18 Iustin Pop
  # device is not already there or we pass a wrong path; we use
2202 858f3d18 Iustin Pop
  # notrunc to no attempt truncate on an LV device; we use oflag=dsync
2203 858f3d18 Iustin Pop
  # to not buffer too much memory; this means that at best, we flush
2204 858f3d18 Iustin Pop
  # every 64k, which will not be very fast
2205 858f3d18 Iustin Pop
  destcmd = utils.BuildShellCmd("dd of=%s conv=nocreat,notrunc bs=65536"
2206 858f3d18 Iustin Pop
                                " oflag=dsync", dest_path)
2207 858f3d18 Iustin Pop
2208 858f3d18 Iustin Pop
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
2209 052783ff Michael Hanselmann
                                                   constants.SSH_LOGIN_USER,
2210 858f3d18 Iustin Pop
                                                   destcmd)
2211 858f3d18 Iustin Pop
2212 858f3d18 Iustin Pop
  # all commands have been checked, so we're safe to combine them
2213 d0c8c01d Iustin Pop
  command = "|".join([expcmd, utils.ShellQuoteArgs(remotecmd)])
2214 858f3d18 Iustin Pop
2215 858f3d18 Iustin Pop
  result = utils.RunCmd(["bash", "-c", command])
2216 858f3d18 Iustin Pop
2217 858f3d18 Iustin Pop
  if result.failed:
2218 858f3d18 Iustin Pop
    _Fail("Disk copy command '%s' returned error: %s"
2219 858f3d18 Iustin Pop
          " output: %s", command, result.fail_reason, result.output)
2220 858f3d18 Iustin Pop
2221 858f3d18 Iustin Pop
2222 a8083063 Iustin Pop
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
2223 a8083063 Iustin Pop
  """Write a file to the filesystem.
2224 a8083063 Iustin Pop

2225 a8083063 Iustin Pop
  This allows the master to overwrite(!) a file. It will only perform
2226 a8083063 Iustin Pop
  the operation if the file belongs to a list of configuration files.
2227 a8083063 Iustin Pop

2228 10c2650b Iustin Pop
  @type file_name: str
2229 10c2650b Iustin Pop
  @param file_name: the target file name
2230 10c2650b Iustin Pop
  @type data: str
2231 10c2650b Iustin Pop
  @param data: the new contents of the file
2232 10c2650b Iustin Pop
  @type mode: int
2233 10c2650b Iustin Pop
  @param mode: the mode to give the file (can be None)
2234 9a914f7a René Nussbaumer
  @type uid: string
2235 9a914f7a René Nussbaumer
  @param uid: the owner of the file
2236 9a914f7a René Nussbaumer
  @type gid: string
2237 9a914f7a René Nussbaumer
  @param gid: the group of the file
2238 10c2650b Iustin Pop
  @type atime: float
2239 10c2650b Iustin Pop
  @param atime: the atime to set on the file (can be None)
2240 10c2650b Iustin Pop
  @type mtime: float
2241 10c2650b Iustin Pop
  @param mtime: the mtime to set on the file (can be None)
2242 c26a6bd2 Iustin Pop
  @rtype: None
2243 10c2650b Iustin Pop

2244 a8083063 Iustin Pop
  """
2245 cffbbae7 Michael Hanselmann
  file_name = vcluster.LocalizeVirtualPath(file_name)
2246 cffbbae7 Michael Hanselmann
2247 a8083063 Iustin Pop
  if not os.path.isabs(file_name):
2248 2cc6781a Iustin Pop
    _Fail("Filename passed to UploadFile is not absolute: '%s'", file_name)
2249 a8083063 Iustin Pop
2250 360b0dc2 Iustin Pop
  if file_name not in _ALLOWED_UPLOAD_FILES:
2251 2cc6781a Iustin Pop
    _Fail("Filename passed to UploadFile not in allowed upload targets: '%s'",
2252 2cc6781a Iustin Pop
          file_name)
2253 a8083063 Iustin Pop
2254 12bce260 Michael Hanselmann
  raw_data = _Decompress(data)
2255 12bce260 Michael Hanselmann
2256 9a914f7a René Nussbaumer
  if not (isinstance(uid, basestring) and isinstance(gid, basestring)):
2257 9a914f7a René Nussbaumer
    _Fail("Invalid username/groupname type")
2258 9a914f7a René Nussbaumer
2259 9a914f7a René Nussbaumer
  getents = runtime.GetEnts()
2260 9a914f7a René Nussbaumer
  uid = getents.LookupUser(uid)
2261 9a914f7a René Nussbaumer
  gid = getents.LookupGroup(gid)
2262 9a914f7a René Nussbaumer
2263 8f065ae2 Iustin Pop
  utils.SafeWriteFile(file_name, None,
2264 8f065ae2 Iustin Pop
                      data=raw_data, mode=mode, uid=uid, gid=gid,
2265 8f065ae2 Iustin Pop
                      atime=atime, mtime=mtime)
2266 a8083063 Iustin Pop
2267 386b57af Iustin Pop
2268 b2f29800 René Nussbaumer
def RunOob(oob_program, command, node, timeout):
2269 b2f29800 René Nussbaumer
  """Executes oob_program with given command on given node.
2270 b2f29800 René Nussbaumer

2271 b2f29800 René Nussbaumer
  @param oob_program: The path to the executable oob_program
2272 b2f29800 René Nussbaumer
  @param command: The command to invoke on oob_program
2273 b2f29800 René Nussbaumer
  @param node: The node given as an argument to the program
2274 b2f29800 René Nussbaumer
  @param timeout: Timeout after which we kill the oob program
2275 b2f29800 René Nussbaumer

2276 b2f29800 René Nussbaumer
  @return: stdout
2277 b2f29800 René Nussbaumer
  @raise RPCFail: If execution fails for some reason
2278 b2f29800 René Nussbaumer

2279 b2f29800 René Nussbaumer
  """
2280 b2f29800 René Nussbaumer
  result = utils.RunCmd([oob_program, command, node], timeout=timeout)
2281 b2f29800 René Nussbaumer
2282 b2f29800 René Nussbaumer
  if result.failed:
2283 b2f29800 René Nussbaumer
    _Fail("'%s' failed with reason '%s'; output: %s", result.cmd,
2284 b2f29800 René Nussbaumer
          result.fail_reason, result.output)
2285 b2f29800 René Nussbaumer
2286 b2f29800 René Nussbaumer
  return result.stdout
2287 b2f29800 René Nussbaumer
2288 b2f29800 René Nussbaumer
2289 c19f9810 Iustin Pop
def _OSOndiskAPIVersion(os_dir):
2290 2f8598a5 Alexander Schreiber
  """Compute and return the API version of a given OS.
2291 a8083063 Iustin Pop

2292 c19f9810 Iustin Pop
  This function will try to read the API version of the OS residing in
2293 c19f9810 Iustin Pop
  the 'os_dir' directory.
2294 7c3d51d4 Guido Trotter

2295 10c2650b Iustin Pop
  @type os_dir: str
2296 c19f9810 Iustin Pop
  @param os_dir: the directory in which we should look for the OS
2297 8e70b181 Iustin Pop
  @rtype: tuple
2298 8e70b181 Iustin Pop
  @return: tuple (status, data) with status denoting the validity and
2299 8e70b181 Iustin Pop
      data holding either the vaid versions or an error message
2300 a8083063 Iustin Pop

2301 a8083063 Iustin Pop
  """
2302 e02b9114 Iustin Pop
  api_file = utils.PathJoin(os_dir, constants.OS_API_FILE)
2303 a8083063 Iustin Pop
2304 a8083063 Iustin Pop
  try:
2305 a8083063 Iustin Pop
    st = os.stat(api_file)
2306 a8083063 Iustin Pop
  except EnvironmentError, err:
2307 b6b45e0d Guido Trotter
    return False, ("Required file '%s' not found under path %s: %s" %
2308 eb93b673 Guido Trotter
                   (constants.OS_API_FILE, os_dir, utils.ErrnoOrStr(err)))
2309 a8083063 Iustin Pop
2310 a8083063 Iustin Pop
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
2311 b6b45e0d Guido Trotter
    return False, ("File '%s' in %s is not a regular file" %
2312 b6b45e0d Guido Trotter
                   (constants.OS_API_FILE, os_dir))
2313 a8083063 Iustin Pop
2314 a8083063 Iustin Pop
  try:
2315 3374afa9 Guido Trotter
    api_versions = utils.ReadFile(api_file).splitlines()
2316 a8083063 Iustin Pop
  except EnvironmentError, err:
2317 255dcebd Iustin Pop
    return False, ("Error while reading the API version file at %s: %s" %
2318 eb93b673 Guido Trotter
                   (api_file, utils.ErrnoOrStr(err)))
2319 a8083063 Iustin Pop
2320 a8083063 Iustin Pop
  try:
2321 63b9b186 Guido Trotter
    api_versions = [int(version.strip()) for version in api_versions]
2322 a8083063 Iustin Pop
  except (TypeError, ValueError), err:
2323 255dcebd Iustin Pop
    return False, ("API version(s) can't be converted to integer: %s" %
2324 255dcebd Iustin Pop
                   str(err))
2325 a8083063 Iustin Pop
2326 255dcebd Iustin Pop
  return True, api_versions
2327 a8083063 Iustin Pop
2328 386b57af Iustin Pop
2329 7c3d51d4 Guido Trotter
def DiagnoseOS(top_dirs=None):
2330 a8083063 Iustin Pop
  """Compute the validity for all OSes.
2331 a8083063 Iustin Pop

2332 10c2650b Iustin Pop
  @type top_dirs: list
2333 10c2650b Iustin Pop
  @param top_dirs: the list of directories in which to
2334 10c2650b Iustin Pop
      search (if not given defaults to
2335 3329f4de Michael Hanselmann
      L{pathutils.OS_SEARCH_PATH})
2336 10c2650b Iustin Pop
  @rtype: list of L{objects.OS}
2337 bad78e66 Iustin Pop
  @return: a list of tuples (name, path, status, diagnose, variants,
2338 bad78e66 Iustin Pop
      parameters, api_version) for all (potential) OSes under all
2339 bad78e66 Iustin Pop
      search paths, where:
2340 255dcebd Iustin Pop
          - name is the (potential) OS name
2341 255dcebd Iustin Pop
          - path is the full path to the OS
2342 255dcebd Iustin Pop
          - status True/False is the validity of the OS
2343 255dcebd Iustin Pop
          - diagnose is the error message for an invalid OS, otherwise empty
2344 ba00557a Guido Trotter
          - variants is a list of supported OS variants, if any
2345 c7d04a6b Iustin Pop
          - parameters is a list of (name, help) parameters, if any
2346 bad78e66 Iustin Pop
          - api_version is a list of support OS API versions
2347 a8083063 Iustin Pop

2348 a8083063 Iustin Pop
  """
2349 7c3d51d4 Guido Trotter
  if top_dirs is None:
2350 710f30ec Michael Hanselmann
    top_dirs = pathutils.OS_SEARCH_PATH
2351 a8083063 Iustin Pop
2352 a8083063 Iustin Pop
  result = []
2353 65fe4693 Iustin Pop
  for dir_name in top_dirs:
2354 65fe4693 Iustin Pop
    if os.path.isdir(dir_name):
2355 7c3d51d4 Guido Trotter
      try:
2356 65fe4693 Iustin Pop
        f_names = utils.ListVisibleFiles(dir_name)
2357 7c3d51d4 Guido Trotter
      except EnvironmentError, err:
2358 29921401 Iustin Pop
        logging.exception("Can't list the OS directory %s: %s", dir_name, err)
2359 7c3d51d4 Guido Trotter
        break
2360 7c3d51d4 Guido Trotter
      for name in f_names:
2361 e02b9114 Iustin Pop
        os_path = utils.PathJoin(dir_name, name)
2362 255dcebd Iustin Pop
        status, os_inst = _TryOSFromDisk(name, base_dir=dir_name)
2363 255dcebd Iustin Pop
        if status:
2364 255dcebd Iustin Pop
          diagnose = ""
2365 ba00557a Guido Trotter
          variants = os_inst.supported_variants
2366 c7d04a6b Iustin Pop
          parameters = os_inst.supported_parameters
2367 bad78e66 Iustin Pop
          api_versions = os_inst.api_versions
2368 255dcebd Iustin Pop
        else:
2369 255dcebd Iustin Pop
          diagnose = os_inst
2370 bad78e66 Iustin Pop
          variants = parameters = api_versions = []
2371 bad78e66 Iustin Pop
        result.append((name, os_path, status, diagnose, variants,
2372 bad78e66 Iustin Pop
                       parameters, api_versions))
2373 a8083063 Iustin Pop
2374 c26a6bd2 Iustin Pop
  return result
2375 a8083063 Iustin Pop
2376 a8083063 Iustin Pop
2377 255dcebd Iustin Pop
def _TryOSFromDisk(name, base_dir=None):
2378 a8083063 Iustin Pop
  """Create an OS instance from disk.
2379 a8083063 Iustin Pop

2380 a8083063 Iustin Pop
  This function will return an OS instance if the given name is a
2381 8e70b181 Iustin Pop
  valid OS name.
2382 a8083063 Iustin Pop

2383 8ee4dc80 Guido Trotter
  @type base_dir: string
2384 8ee4dc80 Guido Trotter
  @keyword base_dir: Base directory containing OS installations.
2385 8ee4dc80 Guido Trotter
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
2386 255dcebd Iustin Pop
  @rtype: tuple
2387 255dcebd Iustin Pop
  @return: success and either the OS instance if we find a valid one,
2388 255dcebd Iustin Pop
      or error message
2389 7c3d51d4 Guido Trotter

2390 a8083063 Iustin Pop
  """
2391 56bcd3f4 Guido Trotter
  if base_dir is None:
2392 710f30ec Michael Hanselmann
    os_dir = utils.FindFile(name, pathutils.OS_SEARCH_PATH, os.path.isdir)
2393 c34c0cfd Iustin Pop
  else:
2394 f95c81bf Iustin Pop
    os_dir = utils.FindFile(name, [base_dir], os.path.isdir)
2395 f95c81bf Iustin Pop
2396 f95c81bf Iustin Pop
  if os_dir is None:
2397 5c0433d6 Iustin Pop
    return False, "Directory for OS %s not found in search path" % name
2398 a8083063 Iustin Pop
2399 c19f9810 Iustin Pop
  status, api_versions = _OSOndiskAPIVersion(os_dir)
2400 255dcebd Iustin Pop
  if not status:
2401 255dcebd Iustin Pop
    # push the error up
2402 255dcebd Iustin Pop
    return status, api_versions
2403 a8083063 Iustin Pop
2404 d1a7d66f Guido Trotter
  if not constants.OS_API_VERSIONS.intersection(api_versions):
2405 255dcebd Iustin Pop
    return False, ("API version mismatch for path '%s': found %s, want %s." %
2406 d1a7d66f Guido Trotter
                   (os_dir, api_versions, constants.OS_API_VERSIONS))
2407 a8083063 Iustin Pop
2408 35007011 Iustin Pop
  # OS Files dictionary, we will populate it with the absolute path
2409 35007011 Iustin Pop
  # names; if the value is True, then it is a required file, otherwise
2410 35007011 Iustin Pop
  # an optional one
2411 35007011 Iustin Pop
  os_files = dict.fromkeys(constants.OS_SCRIPTS, True)
2412 a8083063 Iustin Pop
2413 95075fba Guido Trotter
  if max(api_versions) >= constants.OS_API_V15:
2414 35007011 Iustin Pop
    os_files[constants.OS_VARIANTS_FILE] = False
2415 95075fba Guido Trotter
2416 c7d04a6b Iustin Pop
  if max(api_versions) >= constants.OS_API_V20:
2417 35007011 Iustin Pop
    os_files[constants.OS_PARAMETERS_FILE] = True
2418 c7d04a6b Iustin Pop
  else:
2419 c7d04a6b Iustin Pop
    del os_files[constants.OS_SCRIPT_VERIFY]
2420 c7d04a6b Iustin Pop
2421 35007011 Iustin Pop
  for (filename, required) in os_files.items():
2422 e02b9114 Iustin Pop
    os_files[filename] = utils.PathJoin(os_dir, filename)
2423 a8083063 Iustin Pop
2424 a8083063 Iustin Pop
    try:
2425 ea79fc15 Michael Hanselmann
      st = os.stat(os_files[filename])
2426 a8083063 Iustin Pop
    except EnvironmentError, err:
2427 35007011 Iustin Pop
      if err.errno == errno.ENOENT and not required:
2428 35007011 Iustin Pop
        del os_files[filename]
2429 35007011 Iustin Pop
        continue
2430 41ba4061 Guido Trotter
      return False, ("File '%s' under path '%s' is missing (%s)" %
2431 eb93b673 Guido Trotter
                     (filename, os_dir, utils.ErrnoOrStr(err)))
2432 a8083063 Iustin Pop
2433 a8083063 Iustin Pop
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
2434 41ba4061 Guido Trotter
      return False, ("File '%s' under path '%s' is not a regular file" %
2435 ea79fc15 Michael Hanselmann
                     (filename, os_dir))
2436 255dcebd Iustin Pop
2437 ea79fc15 Michael Hanselmann
    if filename in constants.OS_SCRIPTS:
2438 0757c107 Guido Trotter
      if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
2439 0757c107 Guido Trotter
        return False, ("File '%s' under path '%s' is not executable" %
2440 ea79fc15 Michael Hanselmann
                       (filename, os_dir))
2441 0757c107 Guido Trotter
2442 845da3e8 Iustin Pop
  variants = []
2443 95075fba Guido Trotter
  if constants.OS_VARIANTS_FILE in os_files:
2444 95075fba Guido Trotter
    variants_file = os_files[constants.OS_VARIANTS_FILE]
2445 95075fba Guido Trotter
    try:
2446 5a7cb9d3 Iustin Pop
      variants = \
2447 5a7cb9d3 Iustin Pop
        utils.FilterEmptyLinesAndComments(utils.ReadFile(variants_file))
2448 95075fba Guido Trotter
    except EnvironmentError, err:
2449 35007011 Iustin Pop
      # we accept missing files, but not other errors
2450 35007011 Iustin Pop
      if err.errno != errno.ENOENT:
2451 35007011 Iustin Pop
        return False, ("Error while reading the OS variants file at %s: %s" %
2452 eb93b673 Guido Trotter
                       (variants_file, utils.ErrnoOrStr(err)))
2453 0757c107 Guido Trotter
2454 c7d04a6b Iustin Pop
  parameters = []
2455 c7d04a6b Iustin Pop
  if constants.OS_PARAMETERS_FILE in os_files:
2456 c7d04a6b Iustin Pop
    parameters_file = os_files[constants.OS_PARAMETERS_FILE]
2457 c7d04a6b Iustin Pop
    try:
2458 c7d04a6b Iustin Pop
      parameters = utils.ReadFile(parameters_file).splitlines()
2459 c7d04a6b Iustin Pop
    except EnvironmentError, err:
2460 c7d04a6b Iustin Pop
      return False, ("Error while reading the OS parameters file at %s: %s" %
2461 eb93b673 Guido Trotter
                     (parameters_file, utils.ErrnoOrStr(err)))
2462 c7d04a6b Iustin Pop
    parameters = [v.split(None, 1) for v in parameters]
2463 c7d04a6b Iustin Pop
2464 8e70b181 Iustin Pop
  os_obj = objects.OS(name=name, path=os_dir,
2465 41ba4061 Guido Trotter
                      create_script=os_files[constants.OS_SCRIPT_CREATE],
2466 41ba4061 Guido Trotter
                      export_script=os_files[constants.OS_SCRIPT_EXPORT],
2467 41ba4061 Guido Trotter
                      import_script=os_files[constants.OS_SCRIPT_IMPORT],
2468 41ba4061 Guido Trotter
                      rename_script=os_files[constants.OS_SCRIPT_RENAME],
2469 40684c3a Iustin Pop
                      verify_script=os_files.get(constants.OS_SCRIPT_VERIFY,
2470 40684c3a Iustin Pop
                                                 None),
2471 95075fba Guido Trotter
                      supported_variants=variants,
2472 c7d04a6b Iustin Pop
                      supported_parameters=parameters,
2473 255dcebd Iustin Pop
                      api_versions=api_versions)
2474 255dcebd Iustin Pop
  return True, os_obj
2475 255dcebd Iustin Pop
2476 255dcebd Iustin Pop
2477 255dcebd Iustin Pop
def OSFromDisk(name, base_dir=None):
2478 255dcebd Iustin Pop
  """Create an OS instance from disk.
2479 255dcebd Iustin Pop

2480 255dcebd Iustin Pop
  This function will return an OS instance if the given name is a
2481 255dcebd Iustin Pop
  valid OS name. Otherwise, it will raise an appropriate
2482 255dcebd Iustin Pop
  L{RPCFail} exception, detailing why this is not a valid OS.
2483 255dcebd Iustin Pop

2484 255dcebd Iustin Pop
  This is just a wrapper over L{_TryOSFromDisk}, which doesn't raise
2485 255dcebd Iustin Pop
  an exception but returns true/false status data.
2486 255dcebd Iustin Pop

2487 255dcebd Iustin Pop
  @type base_dir: string
2488 255dcebd Iustin Pop
  @keyword base_dir: Base directory containing OS installations.
2489 255dcebd Iustin Pop
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
2490 255dcebd Iustin Pop
  @rtype: L{objects.OS}
2491 255dcebd Iustin Pop
  @return: the OS instance if we find a valid one
2492 255dcebd Iustin Pop
  @raise RPCFail: if we don't find a valid OS
2493 255dcebd Iustin Pop

2494 255dcebd Iustin Pop
  """
2495 870dc44c Iustin Pop
  name_only = objects.OS.GetName(name)
2496 6ee7102a Guido Trotter
  status, payload = _TryOSFromDisk(name_only, base_dir)
2497 255dcebd Iustin Pop
2498 255dcebd Iustin Pop
  if not status:
2499 255dcebd Iustin Pop
    _Fail(payload)
2500 a8083063 Iustin Pop
2501 255dcebd Iustin Pop
  return payload
2502 a8083063 Iustin Pop
2503 a8083063 Iustin Pop
2504 a025e535 Vitaly Kuznetsov
def OSCoreEnv(os_name, inst_os, os_params, debug=0):
2505 efaa9b06 Iustin Pop
  """Calculate the basic environment for an os script.
2506 2266edb2 Guido Trotter

2507 a025e535 Vitaly Kuznetsov
  @type os_name: str
2508 a025e535 Vitaly Kuznetsov
  @param os_name: full operating system name (including variant)
2509 099c52ad Iustin Pop
  @type inst_os: L{objects.OS}
2510 099c52ad Iustin Pop
  @param inst_os: operating system for which the environment is being built
2511 1bdcbbab Iustin Pop
  @type os_params: dict
2512 1bdcbbab Iustin Pop
  @param os_params: the OS parameters
2513 2266edb2 Guido Trotter
  @type debug: integer
2514 10c2650b Iustin Pop
  @param debug: debug level (0 or 1, for OS Api 10)
2515 2266edb2 Guido Trotter
  @rtype: dict
2516 2266edb2 Guido Trotter
  @return: dict of environment variables
2517 10c2650b Iustin Pop
  @raise errors.BlockDeviceError: if the block device
2518 10c2650b Iustin Pop
      cannot be found
2519 2266edb2 Guido Trotter

2520 2266edb2 Guido Trotter
  """
2521 2266edb2 Guido Trotter
  result = {}
2522 099c52ad Iustin Pop
  api_version = \
2523 099c52ad Iustin Pop
    max(constants.OS_API_VERSIONS.intersection(inst_os.api_versions))
2524 d0c8c01d Iustin Pop
  result["OS_API_VERSION"] = "%d" % api_version
2525 d0c8c01d Iustin Pop
  result["OS_NAME"] = inst_os.name
2526 d0c8c01d Iustin Pop
  result["DEBUG_LEVEL"] = "%d" % debug
2527 efaa9b06 Iustin Pop
2528 efaa9b06 Iustin Pop
  # OS variants
2529 35007011 Iustin Pop
  if api_version >= constants.OS_API_V15 and inst_os.supported_variants:
2530 870dc44c Iustin Pop
    variant = objects.OS.GetVariant(os_name)
2531 870dc44c Iustin Pop
    if not variant:
2532 099c52ad Iustin Pop
      variant = inst_os.supported_variants[0]
2533 35007011 Iustin Pop
  else:
2534 35007011 Iustin Pop
    variant = ""
2535 35007011 Iustin Pop
  result["OS_VARIANT"] = variant
2536 efaa9b06 Iustin Pop
2537 1bdcbbab Iustin Pop
  # OS params
2538 1bdcbbab Iustin Pop
  for pname, pvalue in os_params.items():
2539 d0c8c01d Iustin Pop
    result["OSP_%s" % pname.upper()] = pvalue
2540 1bdcbbab Iustin Pop
2541 9a6ade06 Iustin Pop
  # Set a default path otherwise programs called by OS scripts (or
2542 9a6ade06 Iustin Pop
  # even hooks called from OS scripts) might break, and we don't want
2543 9a6ade06 Iustin Pop
  # to have each script require setting a PATH variable
2544 9a6ade06 Iustin Pop
  result["PATH"] = constants.HOOKS_PATH
2545 9a6ade06 Iustin Pop
2546 efaa9b06 Iustin Pop
  return result
2547 efaa9b06 Iustin Pop
2548 efaa9b06 Iustin Pop
2549 efaa9b06 Iustin Pop
def OSEnvironment(instance, inst_os, debug=0):
2550 efaa9b06 Iustin Pop
  """Calculate the environment for an os script.
2551 efaa9b06 Iustin Pop

2552 efaa9b06 Iustin Pop
  @type instance: L{objects.Instance}
2553 efaa9b06 Iustin Pop
  @param instance: target instance for the os script run
2554 efaa9b06 Iustin Pop
  @type inst_os: L{objects.OS}
2555 efaa9b06 Iustin Pop
  @param inst_os: operating system for which the environment is being built
2556 efaa9b06 Iustin Pop
  @type debug: integer
2557 efaa9b06 Iustin Pop
  @param debug: debug level (0 or 1, for OS Api 10)
2558 efaa9b06 Iustin Pop
  @rtype: dict
2559 efaa9b06 Iustin Pop
  @return: dict of environment variables
2560 efaa9b06 Iustin Pop
  @raise errors.BlockDeviceError: if the block device
2561 efaa9b06 Iustin Pop
      cannot be found
2562 efaa9b06 Iustin Pop

2563 efaa9b06 Iustin Pop
  """
2564 a025e535 Vitaly Kuznetsov
  result = OSCoreEnv(instance.os, inst_os, instance.osparams, debug=debug)
2565 efaa9b06 Iustin Pop
2566 519719fd Marco Casavecchia
  for attr in ["name", "os", "uuid", "ctime", "mtime", "primary_node"]:
2567 f2165b8a Iustin Pop
    result["INSTANCE_%s" % attr.upper()] = str(getattr(instance, attr))
2568 f2165b8a Iustin Pop
2569 d0c8c01d Iustin Pop
  result["HYPERVISOR"] = instance.hypervisor
2570 d0c8c01d Iustin Pop
  result["DISK_COUNT"] = "%d" % len(instance.disks)
2571 d0c8c01d Iustin Pop
  result["NIC_COUNT"] = "%d" % len(instance.nics)
2572 d0c8c01d Iustin Pop
  result["INSTANCE_SECONDARY_NODES"] = \
2573 d0c8c01d Iustin Pop
      ("%s" % " ".join(instance.secondary_nodes))
2574 efaa9b06 Iustin Pop
2575 efaa9b06 Iustin Pop
  # Disks
2576 2266edb2 Guido Trotter
  for idx, disk in enumerate(instance.disks):
2577 f2e07bb4 Michael Hanselmann
    real_disk = _OpenRealBD(disk)
2578 d0c8c01d Iustin Pop
    result["DISK_%d_PATH" % idx] = real_disk.dev_path
2579 d0c8c01d Iustin Pop
    result["DISK_%d_ACCESS" % idx] = disk.mode
2580 2266edb2 Guido Trotter
    if constants.HV_DISK_TYPE in instance.hvparams:
2581 d0c8c01d Iustin Pop
      result["DISK_%d_FRONTEND_TYPE" % idx] = \
2582 2266edb2 Guido Trotter
        instance.hvparams[constants.HV_DISK_TYPE]
2583 2266edb2 Guido Trotter
    if disk.dev_type in constants.LDS_BLOCK:
2584 d0c8c01d Iustin Pop
      result["DISK_%d_BACKEND_TYPE" % idx] = "block"
2585 2266edb2 Guido Trotter
    elif disk.dev_type == constants.LD_FILE:
2586 d0c8c01d Iustin Pop
      result["DISK_%d_BACKEND_TYPE" % idx] = \
2587 d0c8c01d Iustin Pop
        "file:%s" % disk.physical_id[0]
2588 efaa9b06 Iustin Pop
2589 efaa9b06 Iustin Pop
  # NICs
2590 2266edb2 Guido Trotter
  for idx, nic in enumerate(instance.nics):
2591 d0c8c01d Iustin Pop
    result["NIC_%d_MAC" % idx] = nic.mac
2592 2266edb2 Guido Trotter
    if nic.ip:
2593 d0c8c01d Iustin Pop
      result["NIC_%d_IP" % idx] = nic.ip
2594 d0c8c01d Iustin Pop
    result["NIC_%d_MODE" % idx] = nic.nicparams[constants.NIC_MODE]
2595 1ba9227f Guido Trotter
    if nic.nicparams[constants.NIC_MODE] == constants.NIC_MODE_BRIDGED:
2596 d0c8c01d Iustin Pop
      result["NIC_%d_BRIDGE" % idx] = nic.nicparams[constants.NIC_LINK]
2597 1ba9227f Guido Trotter
    if nic.nicparams[constants.NIC_LINK]:
2598 d0c8c01d Iustin Pop
      result["NIC_%d_LINK" % idx] = nic.nicparams[constants.NIC_LINK]
2599 d89168ff Guido Trotter
    if nic.netinfo:
2600 d89168ff Guido Trotter
      nobj = objects.Network.FromDict(nic.netinfo)
2601 d89168ff Guido Trotter
      result.update(nobj.HooksDict("NIC_%d_" % idx))
2602 2266edb2 Guido Trotter
    if constants.HV_NIC_TYPE in instance.hvparams:
2603 d0c8c01d Iustin Pop
      result["NIC_%d_FRONTEND_TYPE" % idx] = \
2604 2266edb2 Guido Trotter
        instance.hvparams[constants.HV_NIC_TYPE]
2605 2266edb2 Guido Trotter
2606 efaa9b06 Iustin Pop
  # HV/BE params
2607 67fc3042 Iustin Pop
  for source, kind in [(instance.beparams, "BE"), (instance.hvparams, "HV")]:
2608 67fc3042 Iustin Pop
    for key, value in source.items():
2609 030b218a Iustin Pop
      result["INSTANCE_%s_%s" % (kind, key)] = str(value)
2610 67fc3042 Iustin Pop
2611 2266edb2 Guido Trotter
  return result
2612 a8083063 Iustin Pop
2613 f2e07bb4 Michael Hanselmann
2614 b954f097 Constantinos Venetsanopoulos
def DiagnoseExtStorage(top_dirs=None):
2615 b954f097 Constantinos Venetsanopoulos
  """Compute the validity for all ExtStorage Providers.
2616 b954f097 Constantinos Venetsanopoulos

2617 b954f097 Constantinos Venetsanopoulos
  @type top_dirs: list
2618 b954f097 Constantinos Venetsanopoulos
  @param top_dirs: the list of directories in which to
2619 b954f097 Constantinos Venetsanopoulos
      search (if not given defaults to
2620 b954f097 Constantinos Venetsanopoulos
      L{pathutils.ES_SEARCH_PATH})
2621 b954f097 Constantinos Venetsanopoulos
  @rtype: list of L{objects.ExtStorage}
2622 b954f097 Constantinos Venetsanopoulos
  @return: a list of tuples (name, path, status, diagnose, parameters)
2623 b954f097 Constantinos Venetsanopoulos
      for all (potential) ExtStorage Providers under all
2624 b954f097 Constantinos Venetsanopoulos
      search paths, where:
2625 b954f097 Constantinos Venetsanopoulos
          - name is the (potential) ExtStorage Provider
2626 b954f097 Constantinos Venetsanopoulos
          - path is the full path to the ExtStorage Provider
2627 b954f097 Constantinos Venetsanopoulos
          - status True/False is the validity of the ExtStorage Provider
2628 b954f097 Constantinos Venetsanopoulos
          - diagnose is the error message for an invalid ExtStorage Provider,
2629 b954f097 Constantinos Venetsanopoulos
            otherwise empty
2630 b954f097 Constantinos Venetsanopoulos
          - parameters is a list of (name, help) parameters, if any
2631 b954f097 Constantinos Venetsanopoulos

2632 b954f097 Constantinos Venetsanopoulos
  """
2633 b954f097 Constantinos Venetsanopoulos
  if top_dirs is None:
2634 b954f097 Constantinos Venetsanopoulos
    top_dirs = pathutils.ES_SEARCH_PATH
2635 b954f097 Constantinos Venetsanopoulos
2636 b954f097 Constantinos Venetsanopoulos
  result = []
2637 b954f097 Constantinos Venetsanopoulos
  for dir_name in top_dirs:
2638 b954f097 Constantinos Venetsanopoulos
    if os.path.isdir(dir_name):
2639 b954f097 Constantinos Venetsanopoulos
      try:
2640 b954f097 Constantinos Venetsanopoulos
        f_names = utils.ListVisibleFiles(dir_name)
2641 b954f097 Constantinos Venetsanopoulos
      except EnvironmentError, err:
2642 b954f097 Constantinos Venetsanopoulos
        logging.exception("Can't list the ExtStorage directory %s: %s",
2643 b954f097 Constantinos Venetsanopoulos
                          dir_name, err)
2644 b954f097 Constantinos Venetsanopoulos
        break
2645 b954f097 Constantinos Venetsanopoulos
      for name in f_names:
2646 b954f097 Constantinos Venetsanopoulos
        es_path = utils.PathJoin(dir_name, name)
2647 b954f097 Constantinos Venetsanopoulos
        status, es_inst = bdev.ExtStorageFromDisk(name, base_dir=dir_name)
2648 b954f097 Constantinos Venetsanopoulos
        if status:
2649 b954f097 Constantinos Venetsanopoulos
          diagnose = ""
2650 b954f097 Constantinos Venetsanopoulos
          parameters = es_inst.supported_parameters
2651 b954f097 Constantinos Venetsanopoulos
        else:
2652 b954f097 Constantinos Venetsanopoulos
          diagnose = es_inst
2653 b954f097 Constantinos Venetsanopoulos
          parameters = []
2654 b954f097 Constantinos Venetsanopoulos
        result.append((name, es_path, status, diagnose, parameters))
2655 b954f097 Constantinos Venetsanopoulos
2656 b954f097 Constantinos Venetsanopoulos
  return result
2657 b954f097 Constantinos Venetsanopoulos
2658 b954f097 Constantinos Venetsanopoulos
2659 cad0723b Iustin Pop
def BlockdevGrow(disk, amount, dryrun, backingstore):
2660 594609c0 Iustin Pop
  """Grow a stack of block devices.
2661 594609c0 Iustin Pop

2662 594609c0 Iustin Pop
  This function is called recursively, with the childrens being the
2663 10c2650b Iustin Pop
  first ones to resize.
2664 594609c0 Iustin Pop

2665 10c2650b Iustin Pop
  @type disk: L{objects.Disk}
2666 10c2650b Iustin Pop
  @param disk: the disk to be grown
2667 a59faf4b Iustin Pop
  @type amount: integer
2668 a59faf4b Iustin Pop
  @param amount: the amount (in mebibytes) to grow with
2669 a59faf4b Iustin Pop
  @type dryrun: boolean
2670 a59faf4b Iustin Pop
  @param dryrun: whether to execute the operation in simulation mode
2671 a59faf4b Iustin Pop
      only, without actually increasing the size
2672 cad0723b Iustin Pop
  @param backingstore: whether to execute the operation on backing storage
2673 cad0723b Iustin Pop
      only, or on "logical" storage only; e.g. DRBD is logical storage,
2674 cad0723b Iustin Pop
      whereas LVM, file, RBD are backing storage
2675 10c2650b Iustin Pop
  @rtype: (status, result)
2676 a59faf4b Iustin Pop
  @return: a tuple with the status of the operation (True/False), and
2677 a59faf4b Iustin Pop
      the errors message if status is False
2678 594609c0 Iustin Pop

2679 594609c0 Iustin Pop
  """
2680 594609c0 Iustin Pop
  r_dev = _RecursiveFindBD(disk)
2681 594609c0 Iustin Pop
  if r_dev is None:
2682 afdc3985 Iustin Pop
    _Fail("Cannot find block device %s", disk)
2683 594609c0 Iustin Pop
2684 594609c0 Iustin Pop
  try:
2685 cad0723b Iustin Pop
    r_dev.Grow(amount, dryrun, backingstore)
2686 594609c0 Iustin Pop
  except errors.BlockDeviceError, err:
2687 2cc6781a Iustin Pop
    _Fail("Failed to grow block device: %s", err, exc=True)
2688 594609c0 Iustin Pop
2689 594609c0 Iustin Pop
2690 821d1bd1 Iustin Pop
def BlockdevSnapshot(disk):
2691 a8083063 Iustin Pop
  """Create a snapshot copy of a block device.
2692 a8083063 Iustin Pop

2693 a8083063 Iustin Pop
  This function is called recursively, and the snapshot is actually created
2694 a8083063 Iustin Pop
  just for the leaf lvm backend device.
2695 a8083063 Iustin Pop

2696 e9e9263d Guido Trotter
  @type disk: L{objects.Disk}
2697 e9e9263d Guido Trotter
  @param disk: the disk to be snapshotted
2698 e9e9263d Guido Trotter
  @rtype: string
2699 800ac399 Iustin Pop
  @return: snapshot disk ID as (vg, lv)
2700 a8083063 Iustin Pop

2701 098c0958 Michael Hanselmann
  """
2702 433c63aa Iustin Pop
  if disk.dev_type == constants.LD_DRBD8:
2703 433c63aa Iustin Pop
    if not disk.children:
2704 433c63aa Iustin Pop
      _Fail("DRBD device '%s' without backing storage cannot be snapshotted",
2705 433c63aa Iustin Pop
            disk.unique_id)
2706 433c63aa Iustin Pop
    return BlockdevSnapshot(disk.children[0])
2707 fe96220b Iustin Pop
  elif disk.dev_type == constants.LD_LV:
2708 a8083063 Iustin Pop
    r_dev = _RecursiveFindBD(disk)
2709 a8083063 Iustin Pop
    if r_dev is not None:
2710 433c63aa Iustin Pop
      # FIXME: choose a saner value for the snapshot size
2711 a8083063 Iustin Pop
      # let's stay on the safe side and ask for the full size, for now
2712 c26a6bd2 Iustin Pop
      return r_dev.Snapshot(disk.size)
2713 a8083063 Iustin Pop
    else:
2714 87812fd3 Iustin Pop
      _Fail("Cannot find block device %s", disk)
2715 a8083063 Iustin Pop
  else:
2716 87812fd3 Iustin Pop
    _Fail("Cannot snapshot non-lvm block device '%s' of type '%s'",
2717 87812fd3 Iustin Pop
          disk.unique_id, disk.dev_type)
2718 a8083063 Iustin Pop
2719 a8083063 Iustin Pop
2720 48e175a2 Iustin Pop
def BlockdevSetInfo(disk, info):
2721 48e175a2 Iustin Pop
  """Sets 'metadata' information on block devices.
2722 48e175a2 Iustin Pop

2723 48e175a2 Iustin Pop
  This function sets 'info' metadata on block devices. Initial
2724 48e175a2 Iustin Pop
  information is set at device creation; this function should be used
2725 48e175a2 Iustin Pop
  for example after renames.
2726 48e175a2 Iustin Pop

2727 48e175a2 Iustin Pop
  @type disk: L{objects.Disk}
2728 48e175a2 Iustin Pop
  @param disk: the disk to be grown
2729 48e175a2 Iustin Pop
  @type info: string
2730 48e175a2 Iustin Pop
  @param info: new 'info' metadata
2731 48e175a2 Iustin Pop
  @rtype: (status, result)
2732 48e175a2 Iustin Pop
  @return: a tuple with the status of the operation (True/False), and
2733 48e175a2 Iustin Pop
      the errors message if status is False
2734 48e175a2 Iustin Pop

2735 48e175a2 Iustin Pop
  """
2736 48e175a2 Iustin Pop
  r_dev = _RecursiveFindBD(disk)
2737 48e175a2 Iustin Pop
  if r_dev is None:
2738 48e175a2 Iustin Pop
    _Fail("Cannot find block device %s", disk)
2739 48e175a2 Iustin Pop
2740 48e175a2 Iustin Pop
  try:
2741 48e175a2 Iustin Pop
    r_dev.SetInfo(info)
2742 48e175a2 Iustin Pop
  except errors.BlockDeviceError, err:
2743 48e175a2 Iustin Pop
    _Fail("Failed to set information on block device: %s", err, exc=True)
2744 48e175a2 Iustin Pop
2745 48e175a2 Iustin Pop
2746 a8083063 Iustin Pop
def FinalizeExport(instance, snap_disks):
2747 a8083063 Iustin Pop
  """Write out the export configuration information.
2748 a8083063 Iustin Pop

2749 10c2650b Iustin Pop
  @type instance: L{objects.Instance}
2750 10c2650b Iustin Pop
  @param instance: the instance which we export, used for
2751 10c2650b Iustin Pop
      saving configuration
2752 10c2650b Iustin Pop
  @type snap_disks: list of L{objects.Disk}
2753 10c2650b Iustin Pop
  @param snap_disks: list of snapshot block devices, which
2754 10c2650b Iustin Pop
      will be used to get the actual name of the dump file
2755 a8083063 Iustin Pop

2756 c26a6bd2 Iustin Pop
  @rtype: None
2757 a8083063 Iustin Pop

2758 098c0958 Michael Hanselmann
  """
2759 710f30ec Michael Hanselmann
  destdir = utils.PathJoin(pathutils.EXPORT_DIR, instance.name + ".new")
2760 710f30ec Michael Hanselmann
  finaldestdir = utils.PathJoin(pathutils.EXPORT_DIR, instance.name)
2761 a8083063 Iustin Pop
2762 a8083063 Iustin Pop
  config = objects.SerializableConfigParser()
2763 a8083063 Iustin Pop
2764 a8083063 Iustin Pop
  config.add_section(constants.INISECT_EXP)
2765 d0c8c01d Iustin Pop
  config.set(constants.INISECT_EXP, "version", "0")
2766 d0c8c01d Iustin Pop
  config.set(constants.INISECT_EXP, "timestamp", "%d" % int(time.time()))
2767 d0c8c01d Iustin Pop
  config.set(constants.INISECT_EXP, "source", instance.primary_node)
2768 d0c8c01d Iustin Pop
  config.set(constants.INISECT_EXP, "os", instance.os)
2769 775b8743 Michael Hanselmann
  config.set(constants.INISECT_EXP, "compression", "none")
2770 a8083063 Iustin Pop
2771 a8083063 Iustin Pop
  config.add_section(constants.INISECT_INS)
2772 d0c8c01d Iustin Pop
  config.set(constants.INISECT_INS, "name", instance.name)
2773 1db993d5 Guido Trotter
  config.set(constants.INISECT_INS, "maxmem", "%d" %
2774 1db993d5 Guido Trotter
             instance.beparams[constants.BE_MAXMEM])
2775 1db993d5 Guido Trotter
  config.set(constants.INISECT_INS, "minmem", "%d" %
2776 1db993d5 Guido Trotter
             instance.beparams[constants.BE_MINMEM])
2777 1db993d5 Guido Trotter
  # "memory" is deprecated, but useful for exporting to old ganeti versions
2778 d0c8c01d Iustin Pop
  config.set(constants.INISECT_INS, "memory", "%d" %
2779 1db993d5 Guido Trotter
             instance.beparams[constants.BE_MAXMEM])
2780 d0c8c01d Iustin Pop
  config.set(constants.INISECT_INS, "vcpus", "%d" %
2781 51de46bf Iustin Pop
             instance.beparams[constants.BE_VCPUS])
2782 d0c8c01d Iustin Pop
  config.set(constants.INISECT_INS, "disk_template", instance.disk_template)
2783 d0c8c01d Iustin Pop
  config.set(constants.INISECT_INS, "hypervisor", instance.hypervisor)
2784 fbb2c636 Michael Hanselmann
  config.set(constants.INISECT_INS, "tags", " ".join(instance.GetTags()))
2785 66f93869 Manuel Franceschini
2786 95268cc3 Iustin Pop
  nic_total = 0
2787 a8083063 Iustin Pop
  for nic_count, nic in enumerate(instance.nics):
2788 95268cc3 Iustin Pop
    nic_total += 1
2789 d0c8c01d Iustin Pop
    config.set(constants.INISECT_INS, "nic%d_mac" %
2790 d0c8c01d Iustin Pop
               nic_count, "%s" % nic.mac)
2791 d0c8c01d Iustin Pop
    config.set(constants.INISECT_INS, "nic%d_ip" % nic_count, "%s" % nic.ip)
2792 7a476bb5 Dimitris Aragiorgis
    config.set(constants.INISECT_INS, "nic%d_network" % nic_count,
2793 7a476bb5 Dimitris Aragiorgis
               "%s" % nic.network)
2794 6801eb5c Iustin Pop
    for param in constants.NICS_PARAMETER_TYPES:
2795 d0c8c01d Iustin Pop
      config.set(constants.INISECT_INS, "nic%d_%s" % (nic_count, param),
2796 d0c8c01d Iustin Pop
                 "%s" % nic.nicparams.get(param, None))
2797 a8083063 Iustin Pop
  # TODO: redundant: on load can read nics until it doesn't exist
2798 e687ec01 Michael Hanselmann
  config.set(constants.INISECT_INS, "nic_count", "%d" % nic_total)
2799 a8083063 Iustin Pop
2800 726d7d68 Iustin Pop
  disk_total = 0
2801 a8083063 Iustin Pop
  for disk_count, disk in enumerate(snap_disks):
2802 19d7f90a Guido Trotter
    if disk:
2803 726d7d68 Iustin Pop
      disk_total += 1
2804 d0c8c01d Iustin Pop
      config.set(constants.INISECT_INS, "disk%d_ivname" % disk_count,
2805 d0c8c01d Iustin Pop
                 ("%s" % disk.iv_name))
2806 d0c8c01d Iustin Pop
      config.set(constants.INISECT_INS, "disk%d_dump" % disk_count,
2807 d0c8c01d Iustin Pop
                 ("%s" % disk.physical_id[1]))
2808 d0c8c01d Iustin Pop
      config.set(constants.INISECT_INS, "disk%d_size" % disk_count,
2809 d0c8c01d Iustin Pop
                 ("%d" % disk.size))
2810 d0c8c01d Iustin Pop
2811 e687ec01 Michael Hanselmann
  config.set(constants.INISECT_INS, "disk_count", "%d" % disk_total)
2812 a8083063 Iustin Pop
2813 3c8954ad Iustin Pop
  # New-style hypervisor/backend parameters
2814 3c8954ad Iustin Pop
2815 3c8954ad Iustin Pop
  config.add_section(constants.INISECT_HYP)
2816 3c8954ad Iustin Pop
  for name, value in instance.hvparams.items():
2817 3c8954ad Iustin Pop
    if name not in constants.HVC_GLOBALS:
2818 3c8954ad Iustin Pop
      config.set(constants.INISECT_HYP, name, str(value))
2819 3c8954ad Iustin Pop
2820 3c8954ad Iustin Pop
  config.add_section(constants.INISECT_BEP)
2821 3c8954ad Iustin Pop
  for name, value in instance.beparams.items():
2822 3c8954ad Iustin Pop
    config.set(constants.INISECT_BEP, name, str(value))
2823 3c8954ad Iustin Pop
2824 535b49cb Iustin Pop
  config.add_section(constants.INISECT_OSP)
2825 535b49cb Iustin Pop
  for name, value in instance.osparams.items():
2826 535b49cb Iustin Pop
    config.set(constants.INISECT_OSP, name, str(value))
2827 535b49cb Iustin Pop
2828 c4feafe8 Iustin Pop
  utils.WriteFile(utils.PathJoin(destdir, constants.EXPORT_CONF_FILE),
2829 726d7d68 Iustin Pop
                  data=config.Dumps())
2830 56569f4e Michael Hanselmann
  shutil.rmtree(finaldestdir, ignore_errors=True)
2831 a8083063 Iustin Pop
  shutil.move(destdir, finaldestdir)
2832 a8083063 Iustin Pop
2833 a8083063 Iustin Pop
2834 a8083063 Iustin Pop
def ExportInfo(dest):
2835 a8083063 Iustin Pop
  """Get export configuration information.
2836 a8083063 Iustin Pop

2837 10c2650b Iustin Pop
  @type dest: str
2838 10c2650b Iustin Pop
  @param dest: directory containing the export
2839 a8083063 Iustin Pop

2840 10c2650b Iustin Pop
  @rtype: L{objects.SerializableConfigParser}
2841 10c2650b Iustin Pop
  @return: a serializable config file containing the
2842 10c2650b Iustin Pop
      export info
2843 a8083063 Iustin Pop

2844 a8083063 Iustin Pop
  """
2845 c4feafe8 Iustin Pop
  cff = utils.PathJoin(dest, constants.EXPORT_CONF_FILE)
2846 a8083063 Iustin Pop
2847 a8083063 Iustin Pop
  config = objects.SerializableConfigParser()
2848 a8083063 Iustin Pop
  config.read(cff)
2849 a8083063 Iustin Pop
2850 a8083063 Iustin Pop
  if (not config.has_section(constants.INISECT_EXP) or
2851 a8083063 Iustin Pop
      not config.has_section(constants.INISECT_INS)):
2852 3eccac06 Iustin Pop
    _Fail("Export info file doesn't have the required fields")
2853 a8083063 Iustin Pop
2854 c26a6bd2 Iustin Pop
  return config.Dumps()
2855 a8083063 Iustin Pop
2856 a8083063 Iustin Pop
2857 a8083063 Iustin Pop
def ListExports():
2858 a8083063 Iustin Pop
  """Return a list of exports currently available on this machine.
2859 098c0958 Michael Hanselmann

2860 10c2650b Iustin Pop
  @rtype: list
2861 10c2650b Iustin Pop
  @return: list of the exports
2862 10c2650b Iustin Pop

2863 a8083063 Iustin Pop
  """
2864 710f30ec Michael Hanselmann
  if os.path.isdir(pathutils.EXPORT_DIR):
2865 710f30ec Michael Hanselmann
    return sorted(utils.ListVisibleFiles(pathutils.EXPORT_DIR))
2866 a8083063 Iustin Pop
  else:
2867 afdc3985 Iustin Pop
    _Fail("No exports directory")
2868 a8083063 Iustin Pop
2869 a8083063 Iustin Pop
2870 a8083063 Iustin Pop
def RemoveExport(export):
2871 a8083063 Iustin Pop
  """Remove an existing export from the node.
2872 a8083063 Iustin Pop

2873 10c2650b Iustin Pop
  @type export: str
2874 10c2650b Iustin Pop
  @param export: the name of the export to remove
2875 c26a6bd2 Iustin Pop
  @rtype: None
2876 a8083063 Iustin Pop

2877 098c0958 Michael Hanselmann
  """
2878 710f30ec Michael Hanselmann
  target = utils.PathJoin(pathutils.EXPORT_DIR, export)
2879 a8083063 Iustin Pop
2880 35fbcd11 Iustin Pop
  try:
2881 35fbcd11 Iustin Pop
    shutil.rmtree(target)
2882 35fbcd11 Iustin Pop
  except EnvironmentError, err:
2883 35fbcd11 Iustin Pop
    _Fail("Error while removing the export: %s", err, exc=True)
2884 a8083063 Iustin Pop
2885 a8083063 Iustin Pop
2886 821d1bd1 Iustin Pop
def BlockdevRename(devlist):
2887 f3e513ad Iustin Pop
  """Rename a list of block devices.
2888 f3e513ad Iustin Pop

2889 10c2650b Iustin Pop
  @type devlist: list of tuples
2890 10c2650b Iustin Pop
  @param devlist: list of tuples of the form  (disk,
2891 10c2650b Iustin Pop
      new_logical_id, new_physical_id); disk is an
2892 10c2650b Iustin Pop
      L{objects.Disk} object describing the current disk,
2893 10c2650b Iustin Pop
      and new logical_id/physical_id is the name we
2894 10c2650b Iustin Pop
      rename it to
2895 10c2650b Iustin Pop
  @rtype: boolean
2896 10c2650b Iustin Pop
  @return: True if all renames succeeded, False otherwise
2897 f3e513ad Iustin Pop

2898 f3e513ad Iustin Pop
  """
2899 6b5e3f70 Iustin Pop
  msgs = []
2900 f3e513ad Iustin Pop
  result = True
2901 f3e513ad Iustin Pop
  for disk, unique_id in devlist:
2902 f3e513ad Iustin Pop
    dev = _RecursiveFindBD(disk)
2903 f3e513ad Iustin Pop
    if dev is None:
2904 6b5e3f70 Iustin Pop
      msgs.append("Can't find device %s in rename" % str(disk))
2905 f3e513ad Iustin Pop
      result = False
2906 f3e513ad Iustin Pop
      continue
2907 f3e513ad Iustin Pop
    try:
2908 3f78eef2 Iustin Pop
      old_rpath = dev.dev_path
2909 f3e513ad Iustin Pop
      dev.Rename(unique_id)
2910 3f78eef2 Iustin Pop
      new_rpath = dev.dev_path
2911 3f78eef2 Iustin Pop
      if old_rpath != new_rpath:
2912 3f78eef2 Iustin Pop
        DevCacheManager.RemoveCache(old_rpath)
2913 3f78eef2 Iustin Pop
        # FIXME: we should add the new cache information here, like:
2914 3f78eef2 Iustin Pop
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
2915 3f78eef2 Iustin Pop
        # but we don't have the owner here - maybe parse from existing
2916 3f78eef2 Iustin Pop
        # cache? for now, we only lose lvm data when we rename, which
2917 3f78eef2 Iustin Pop
        # is less critical than DRBD or MD
2918 f3e513ad Iustin Pop
    except errors.BlockDeviceError, err:
2919 6b5e3f70 Iustin Pop
      msgs.append("Can't rename device '%s' to '%s': %s" %
2920 6b5e3f70 Iustin Pop
                  (dev, unique_id, err))
2921 18682bca Iustin Pop
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
2922 f3e513ad Iustin Pop
      result = False
2923 afdc3985 Iustin Pop
  if not result:
2924 afdc3985 Iustin Pop
    _Fail("; ".join(msgs))
2925 f3e513ad Iustin Pop
2926 f3e513ad Iustin Pop
2927 4b97f902 Apollon Oikonomopoulos
def _TransformFileStorageDir(fs_dir):
2928 778b75bb Manuel Franceschini
  """Checks whether given file_storage_dir is valid.
2929 778b75bb Manuel Franceschini

2930 4b97f902 Apollon Oikonomopoulos
  Checks wheter the given fs_dir is within the cluster-wide default
2931 4b97f902 Apollon Oikonomopoulos
  file_storage_dir or the shared_file_storage_dir, which are stored in
2932 4b97f902 Apollon Oikonomopoulos
  SimpleStore. Only paths under those directories are allowed.
2933 778b75bb Manuel Franceschini

2934 4b97f902 Apollon Oikonomopoulos
  @type fs_dir: str
2935 4b97f902 Apollon Oikonomopoulos
  @param fs_dir: the path to check
2936 d61cbe76 Iustin Pop

2937 b1206984 Iustin Pop
  @return: the normalized path if valid, None otherwise
2938 778b75bb Manuel Franceschini

2939 778b75bb Manuel Franceschini
  """
2940 63a3d8f7 Michael Hanselmann
  if not (constants.ENABLE_FILE_STORAGE or
2941 63a3d8f7 Michael Hanselmann
          constants.ENABLE_SHARED_FILE_STORAGE):
2942 cb7c0198 Iustin Pop
    _Fail("File storage disabled at configure time")
2943 5e09a309 Michael Hanselmann
2944 5e09a309 Michael Hanselmann
  bdev.CheckFileStoragePath(fs_dir)
2945 5e09a309 Michael Hanselmann
2946 5e09a309 Michael Hanselmann
  return os.path.normpath(fs_dir)
2947 778b75bb Manuel Franceschini
2948 778b75bb Manuel Franceschini
2949 778b75bb Manuel Franceschini
def CreateFileStorageDir(file_storage_dir):
2950 778b75bb Manuel Franceschini
  """Create file storage directory.
2951 778b75bb Manuel Franceschini

2952 b1206984 Iustin Pop
  @type file_storage_dir: str
2953 b1206984 Iustin Pop
  @param file_storage_dir: directory to create
2954 778b75bb Manuel Franceschini

2955 b1206984 Iustin Pop
  @rtype: tuple
2956 b1206984 Iustin Pop
  @return: tuple with first element a boolean indicating wheter dir
2957 b1206984 Iustin Pop
      creation was successful or not
2958 778b75bb Manuel Franceschini

2959 778b75bb Manuel Franceschini
  """
2960 778b75bb Manuel Franceschini
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2961 b2b8bcce Iustin Pop
  if os.path.exists(file_storage_dir):
2962 b2b8bcce Iustin Pop
    if not os.path.isdir(file_storage_dir):
2963 b2b8bcce Iustin Pop
      _Fail("Specified storage dir '%s' is not a directory",
2964 b2b8bcce Iustin Pop
            file_storage_dir)
2965 778b75bb Manuel Franceschini
  else:
2966 b2b8bcce Iustin Pop
    try:
2967 b2b8bcce Iustin Pop
      os.makedirs(file_storage_dir, 0750)
2968 b2b8bcce Iustin Pop
    except OSError, err:
2969 b2b8bcce Iustin Pop
      _Fail("Cannot create file storage directory '%s': %s",
2970 b2b8bcce Iustin Pop
            file_storage_dir, err, exc=True)
2971 778b75bb Manuel Franceschini
2972 778b75bb Manuel Franceschini
2973 778b75bb Manuel Franceschini
def RemoveFileStorageDir(file_storage_dir):
2974 778b75bb Manuel Franceschini
  """Remove file storage directory.
2975 778b75bb Manuel Franceschini

2976 778b75bb Manuel Franceschini
  Remove it only if it's empty. If not log an error and return.
2977 778b75bb Manuel Franceschini

2978 10c2650b Iustin Pop
  @type file_storage_dir: str
2979 10c2650b Iustin Pop
  @param file_storage_dir: the directory we should cleanup
2980 10c2650b Iustin Pop
  @rtype: tuple (success,)
2981 10c2650b Iustin Pop
  @return: tuple of one element, C{success}, denoting
2982 5bbd3f7f Michael Hanselmann
      whether the operation was successful
2983 778b75bb Manuel Franceschini

2984 778b75bb Manuel Franceschini
  """
2985 778b75bb Manuel Franceschini
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
2986 b2b8bcce Iustin Pop
  if os.path.exists(file_storage_dir):
2987 b2b8bcce Iustin Pop
    if not os.path.isdir(file_storage_dir):
2988 b2b8bcce Iustin Pop
      _Fail("Specified Storage directory '%s' is not a directory",
2989 b2b8bcce Iustin Pop
            file_storage_dir)
2990 afdc3985 Iustin Pop
    # deletes dir only if empty, otherwise we want to fail the rpc call
2991 b2b8bcce Iustin Pop
    try:
2992 b2b8bcce Iustin Pop
      os.rmdir(file_storage_dir)
2993 b2b8bcce Iustin Pop
    except OSError, err:
2994 b2b8bcce Iustin Pop
      _Fail("Cannot remove file storage directory '%s': %s",
2995 b2b8bcce Iustin Pop
            file_storage_dir, err)
2996 b2b8bcce Iustin Pop
2997 778b75bb Manuel Franceschini
2998 778b75bb Manuel Franceschini
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
2999 778b75bb Manuel Franceschini
  """Rename the file storage directory.
3000 778b75bb Manuel Franceschini

3001 10c2650b Iustin Pop
  @type old_file_storage_dir: str
3002 10c2650b Iustin Pop
  @param old_file_storage_dir: the current path
3003 10c2650b Iustin Pop
  @type new_file_storage_dir: str
3004 10c2650b Iustin Pop
  @param new_file_storage_dir: the name we should rename to
3005 10c2650b Iustin Pop
  @rtype: tuple (success,)
3006 10c2650b Iustin Pop
  @return: tuple of one element, C{success}, denoting
3007 10c2650b Iustin Pop
      whether the operation was successful
3008 778b75bb Manuel Franceschini

3009 778b75bb Manuel Franceschini
  """
3010 778b75bb Manuel Franceschini
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
3011 778b75bb Manuel Franceschini
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
3012 b2b8bcce Iustin Pop
  if not os.path.exists(new_file_storage_dir):
3013 b2b8bcce Iustin Pop
    if os.path.isdir(old_file_storage_dir):
3014 b2b8bcce Iustin Pop
      try:
3015 b2b8bcce Iustin Pop
        os.rename(old_file_storage_dir, new_file_storage_dir)
3016 b2b8bcce Iustin Pop
      except OSError, err:
3017 b2b8bcce Iustin Pop
        _Fail("Cannot rename '%s' to '%s': %s",
3018 b2b8bcce Iustin Pop
              old_file_storage_dir, new_file_storage_dir, err)
3019 778b75bb Manuel Franceschini
    else:
3020 b2b8bcce Iustin Pop
      _Fail("Specified storage dir '%s' is not a directory",
3021 b2b8bcce Iustin Pop
            old_file_storage_dir)
3022 b2b8bcce Iustin Pop
  else:
3023 b2b8bcce Iustin Pop
    if os.path.exists(old_file_storage_dir):
3024 b2b8bcce Iustin Pop
      _Fail("Cannot rename '%s' to '%s': both locations exist",
3025 b2b8bcce Iustin Pop
            old_file_storage_dir, new_file_storage_dir)
3026 778b75bb Manuel Franceschini
3027 778b75bb Manuel Franceschini
3028 c8457ce7 Iustin Pop
def _EnsureJobQueueFile(file_name):
3029 dc31eae3 Michael Hanselmann
  """Checks whether the given filename is in the queue directory.
3030 ca52cdeb Michael Hanselmann

3031 10c2650b Iustin Pop
  @type file_name: str
3032 10c2650b Iustin Pop
  @param file_name: the file name we should check
3033 c8457ce7 Iustin Pop
  @rtype: None
3034 c8457ce7 Iustin Pop
  @raises RPCFail: if the file is not valid
3035 10c2650b Iustin Pop

3036 ca52cdeb Michael Hanselmann
  """
3037 b3589802 Michael Hanselmann
  if not utils.IsBelowDir(pathutils.QUEUE_DIR, file_name):
3038 c8457ce7 Iustin Pop
    _Fail("Passed job queue file '%s' does not belong to"
3039 b3589802 Michael Hanselmann
          " the queue directory '%s'", file_name, pathutils.QUEUE_DIR)
3040 dc31eae3 Michael Hanselmann
3041 dc31eae3 Michael Hanselmann
3042 dc31eae3 Michael Hanselmann
def JobQueueUpdate(file_name, content):
3043 dc31eae3 Michael Hanselmann
  """Updates a file in the queue directory.
3044 dc31eae3 Michael Hanselmann

3045 3865ca48 Michael Hanselmann
  This is just a wrapper over L{utils.io.WriteFile}, with proper
3046 10c2650b Iustin Pop
  checking.
3047 10c2650b Iustin Pop

3048 10c2650b Iustin Pop
  @type file_name: str
3049 10c2650b Iustin Pop
  @param file_name: the job file name
3050 10c2650b Iustin Pop
  @type content: str
3051 10c2650b Iustin Pop
  @param content: the new job contents
3052 10c2650b Iustin Pop
  @rtype: boolean
3053 10c2650b Iustin Pop
  @return: the success of the operation
3054 10c2650b Iustin Pop

3055 dc31eae3 Michael Hanselmann
  """
3056 cffbbae7 Michael Hanselmann
  file_name = vcluster.LocalizeVirtualPath(file_name)
3057 cffbbae7 Michael Hanselmann
3058 c8457ce7 Iustin Pop
  _EnsureJobQueueFile(file_name)
3059 82b22e19 René Nussbaumer
  getents = runtime.GetEnts()
3060 ca52cdeb Michael Hanselmann
3061 ca52cdeb Michael Hanselmann
  # Write and replace the file atomically
3062 82b22e19 René Nussbaumer
  utils.WriteFile(file_name, data=_Decompress(content), uid=getents.masterd_uid,
3063 fe05a931 Michele Tartara
                  gid=getents.daemons_gid, mode=constants.JOB_QUEUE_FILES_PERMS)
3064 ca52cdeb Michael Hanselmann
3065 ca52cdeb Michael Hanselmann
3066 af5ebcb1 Michael Hanselmann
def JobQueueRename(old, new):
3067 af5ebcb1 Michael Hanselmann
  """Renames a job queue file.
3068 af5ebcb1 Michael Hanselmann

3069 c41eea6e Iustin Pop
  This is just a wrapper over os.rename with proper checking.
3070 10c2650b Iustin Pop

3071 10c2650b Iustin Pop
  @type old: str
3072 10c2650b Iustin Pop
  @param old: the old (actual) file name
3073 10c2650b Iustin Pop
  @type new: str
3074 10c2650b Iustin Pop
  @param new: the desired file name
3075 c8457ce7 Iustin Pop
  @rtype: tuple
3076 c8457ce7 Iustin Pop
  @return: the success of the operation and payload
3077 10c2650b Iustin Pop

3078 af5ebcb1 Michael Hanselmann
  """
3079 cffbbae7 Michael Hanselmann
  old = vcluster.LocalizeVirtualPath(old)
3080 cffbbae7 Michael Hanselmann
  new = vcluster.LocalizeVirtualPath(new)
3081 cffbbae7 Michael Hanselmann
3082 c8457ce7 Iustin Pop
  _EnsureJobQueueFile(old)
3083 c8457ce7 Iustin Pop
  _EnsureJobQueueFile(new)
3084 af5ebcb1 Michael Hanselmann
3085 8e5a705d René Nussbaumer
  getents = runtime.GetEnts()
3086 8e5a705d René Nussbaumer
3087 fe05a931 Michele Tartara
  utils.RenameFile(old, new, mkdir=True, mkdir_mode=0750,
3088 fe05a931 Michele Tartara
                   dir_uid=getents.masterd_uid, dir_gid=getents.daemons_gid)
3089 af5ebcb1 Michael Hanselmann
3090 af5ebcb1 Michael Hanselmann
3091 821d1bd1 Iustin Pop
def BlockdevClose(instance_name, disks):
3092 d61cbe76 Iustin Pop
  """Closes the given block devices.
3093 d61cbe76 Iustin Pop

3094 10c2650b Iustin Pop
  This means they will be switched to secondary mode (in case of
3095 10c2650b Iustin Pop
  DRBD).
3096 10c2650b Iustin Pop

3097 b2e7666a Iustin Pop
  @param instance_name: if the argument is not empty, the symlinks
3098 b2e7666a Iustin Pop
      of this instance will be removed
3099 10c2650b Iustin Pop
  @type disks: list of L{objects.Disk}
3100 10c2650b Iustin Pop
  @param disks: the list of disks to be closed
3101 10c2650b Iustin Pop
  @rtype: tuple (success, message)
3102 10c2650b Iustin Pop
  @return: a tuple of success and message, where success
3103 10c2650b Iustin Pop
      indicates the succes of the operation, and message
3104 10c2650b Iustin Pop
      which will contain the error details in case we
3105 10c2650b Iustin Pop
      failed
3106 d61cbe76 Iustin Pop

3107 d61cbe76 Iustin Pop
  """
3108 d61cbe76 Iustin Pop
  bdevs = []
3109 d61cbe76 Iustin Pop
  for cf in disks:
3110 d61cbe76 Iustin Pop
    rd = _RecursiveFindBD(cf)
3111 d61cbe76 Iustin Pop
    if rd is None:
3112 2cc6781a Iustin Pop
      _Fail("Can't find device %s", cf)
3113 d61cbe76 Iustin Pop
    bdevs.append(rd)
3114 d61cbe76 Iustin Pop
3115 d61cbe76 Iustin Pop
  msg = []
3116 d61cbe76 Iustin Pop
  for rd in bdevs:
3117 d61cbe76 Iustin Pop
    try:
3118 d61cbe76 Iustin Pop
      rd.Close()
3119 d61cbe76 Iustin Pop
    except errors.BlockDeviceError, err:
3120 d61cbe76 Iustin Pop
      msg.append(str(err))
3121 d61cbe76 Iustin Pop
  if msg:
3122 afdc3985 Iustin Pop
    _Fail("Can't make devices secondary: %s", ",".join(msg))
3123 d61cbe76 Iustin Pop
  else:
3124 b2e7666a Iustin Pop
    if instance_name:
3125 5282084b Iustin Pop
      _RemoveBlockDevLinks(instance_name, disks)
3126 d61cbe76 Iustin Pop
3127 d61cbe76 Iustin Pop
3128 6217e295 Iustin Pop
def ValidateHVParams(hvname, hvparams):
3129 6217e295 Iustin Pop
  """Validates the given hypervisor parameters.
3130 6217e295 Iustin Pop

3131 6217e295 Iustin Pop
  @type hvname: string
3132 6217e295 Iustin Pop
  @param hvname: the hypervisor name
3133 6217e295 Iustin Pop
  @type hvparams: dict
3134 6217e295 Iustin Pop
  @param hvparams: the hypervisor parameters to be validated
3135 c26a6bd2 Iustin Pop
  @rtype: None
3136 6217e295 Iustin Pop

3137 6217e295 Iustin Pop
  """
3138 6217e295 Iustin Pop
  try:
3139 6217e295 Iustin Pop
    hv_type = hypervisor.GetHypervisor(hvname)
3140 6217e295 Iustin Pop
    hv_type.ValidateParameters(hvparams)
3141 6217e295 Iustin Pop
  except errors.HypervisorError, err:
3142 afdc3985 Iustin Pop
    _Fail(str(err), log=False)
3143 6217e295 Iustin Pop
3144 6217e295 Iustin Pop
3145 acd9ff9e Iustin Pop
def _CheckOSPList(os_obj, parameters):
3146 acd9ff9e Iustin Pop
  """Check whether a list of parameters is supported by the OS.
3147 acd9ff9e Iustin Pop

3148 acd9ff9e Iustin Pop
  @type os_obj: L{objects.OS}
3149 acd9ff9e Iustin Pop
  @param os_obj: OS object to check
3150 acd9ff9e Iustin Pop
  @type parameters: list
3151 acd9ff9e Iustin Pop
  @param parameters: the list of parameters to check
3152 acd9ff9e Iustin Pop

3153 acd9ff9e Iustin Pop
  """
3154 acd9ff9e Iustin Pop
  supported = [v[0] for v in os_obj.supported_parameters]
3155 acd9ff9e Iustin Pop
  delta = frozenset(parameters).difference(supported)
3156 acd9ff9e Iustin Pop
  if delta:
3157 acd9ff9e Iustin Pop
    _Fail("The following parameters are not supported"
3158 acd9ff9e Iustin Pop
          " by the OS %s: %s" % (os_obj.name, utils.CommaJoin(delta)))
3159 acd9ff9e Iustin Pop
3160 acd9ff9e Iustin Pop
3161 acd9ff9e Iustin Pop
def ValidateOS(required, osname, checks, osparams):
3162 acd9ff9e Iustin Pop
  """Validate the given OS' parameters.
3163 acd9ff9e Iustin Pop

3164 acd9ff9e Iustin Pop
  @type required: boolean
3165 acd9ff9e Iustin Pop
  @param required: whether absence of the OS should translate into
3166 acd9ff9e Iustin Pop
      failure or not
3167 acd9ff9e Iustin Pop
  @type osname: string
3168 acd9ff9e Iustin Pop
  @param osname: the OS to be validated
3169 acd9ff9e Iustin Pop
  @type checks: list
3170 acd9ff9e Iustin Pop
  @param checks: list of the checks to run (currently only 'parameters')
3171 acd9ff9e Iustin Pop
  @type osparams: dict
3172 acd9ff9e Iustin Pop
  @param osparams: dictionary with OS parameters
3173 acd9ff9e Iustin Pop
  @rtype: boolean
3174 acd9ff9e Iustin Pop
  @return: True if the validation passed, or False if the OS was not
3175 acd9ff9e Iustin Pop
      found and L{required} was false
3176 acd9ff9e Iustin Pop

3177 acd9ff9e Iustin Pop
  """
3178 acd9ff9e Iustin Pop
  if not constants.OS_VALIDATE_CALLS.issuperset(checks):
3179 acd9ff9e Iustin Pop
    _Fail("Unknown checks required for OS %s: %s", osname,
3180 acd9ff9e Iustin Pop
          set(checks).difference(constants.OS_VALIDATE_CALLS))
3181 acd9ff9e Iustin Pop
3182 870dc44c Iustin Pop
  name_only = objects.OS.GetName(osname)
3183 acd9ff9e Iustin Pop
  status, tbv = _TryOSFromDisk(name_only, None)
3184 acd9ff9e Iustin Pop
3185 acd9ff9e Iustin Pop
  if not status:
3186 acd9ff9e Iustin Pop
    if required:
3187 acd9ff9e Iustin Pop
      _Fail(tbv)
3188 acd9ff9e Iustin Pop
    else:
3189 acd9ff9e Iustin Pop
      return False
3190 acd9ff9e Iustin Pop
3191 72db3fd7 Iustin Pop
  if max(tbv.api_versions) < constants.OS_API_V20:
3192 72db3fd7 Iustin Pop
    return True
3193 72db3fd7 Iustin Pop
3194 acd9ff9e Iustin Pop
  if constants.OS_VALIDATE_PARAMETERS in checks:
3195 acd9ff9e Iustin Pop
    _CheckOSPList(tbv, osparams.keys())
3196 acd9ff9e Iustin Pop
3197 a025e535 Vitaly Kuznetsov
  validate_env = OSCoreEnv(osname, tbv, osparams)
3198 acd9ff9e Iustin Pop
  result = utils.RunCmd([tbv.verify_script] + checks, env=validate_env,
3199 896a03f6 Iustin Pop
                        cwd=tbv.path, reset_env=True)
3200 acd9ff9e Iustin Pop
  if result.failed:
3201 acd9ff9e Iustin Pop
    logging.error("os validate command '%s' returned error: %s output: %s",
3202 acd9ff9e Iustin Pop
                  result.cmd, result.fail_reason, result.output)
3203 acd9ff9e Iustin Pop
    _Fail("OS validation script failed (%s), output: %s",
3204 acd9ff9e Iustin Pop
          result.fail_reason, result.output, log=False)
3205 acd9ff9e Iustin Pop
3206 acd9ff9e Iustin Pop
  return True
3207 acd9ff9e Iustin Pop
3208 acd9ff9e Iustin Pop
3209 56aa9fd5 Iustin Pop
def DemoteFromMC():
3210 56aa9fd5 Iustin Pop
  """Demotes the current node from master candidate role.
3211 56aa9fd5 Iustin Pop

3212 56aa9fd5 Iustin Pop
  """
3213 56aa9fd5 Iustin Pop
  # try to ensure we're not the master by mistake
3214 56aa9fd5 Iustin Pop
  master, myself = ssconf.GetMasterAndMyself()
3215 56aa9fd5 Iustin Pop
  if master == myself:
3216 afdc3985 Iustin Pop
    _Fail("ssconf status shows I'm the master node, will not demote")
3217 f154a7a3 Michael Hanselmann
3218 710f30ec Michael Hanselmann
  result = utils.RunCmd([pathutils.DAEMON_UTIL, "check", constants.MASTERD])
3219 f154a7a3 Michael Hanselmann
  if not result.failed:
3220 afdc3985 Iustin Pop
    _Fail("The master daemon is running, will not demote")
3221 f154a7a3 Michael Hanselmann
3222 56aa9fd5 Iustin Pop
  try:
3223 710f30ec Michael Hanselmann
    if os.path.isfile(pathutils.CLUSTER_CONF_FILE):
3224 710f30ec Michael Hanselmann
      utils.CreateBackup(pathutils.CLUSTER_CONF_FILE)
3225 56aa9fd5 Iustin Pop
  except EnvironmentError, err:
3226 56aa9fd5 Iustin Pop
    if err.errno != errno.ENOENT:
3227 afdc3985 Iustin Pop
      _Fail("Error while backing up cluster file: %s", err, exc=True)
3228 f154a7a3 Michael Hanselmann
3229 710f30ec Michael Hanselmann
  utils.RemoveFile(pathutils.CLUSTER_CONF_FILE)
3230 56aa9fd5 Iustin Pop
3231 56aa9fd5 Iustin Pop
3232 f942a838 Michael Hanselmann
def _GetX509Filenames(cryptodir, name):
3233 f942a838 Michael Hanselmann
  """Returns the full paths for the private key and certificate.
3234 f942a838 Michael Hanselmann

3235 f942a838 Michael Hanselmann
  """
3236 f942a838 Michael Hanselmann
  return (utils.PathJoin(cryptodir, name),
3237 f942a838 Michael Hanselmann
          utils.PathJoin(cryptodir, name, _X509_KEY_FILE),
3238 f942a838 Michael Hanselmann
          utils.PathJoin(cryptodir, name, _X509_CERT_FILE))
3239 f942a838 Michael Hanselmann
3240 f942a838 Michael Hanselmann
3241 710f30ec Michael Hanselmann
def CreateX509Certificate(validity, cryptodir=pathutils.CRYPTO_KEYS_DIR):
3242 f942a838 Michael Hanselmann
  """Creates a new X509 certificate for SSL/TLS.
3243 f942a838 Michael Hanselmann

3244 f942a838 Michael Hanselmann
  @type validity: int
3245 f942a838 Michael Hanselmann
  @param validity: Validity in seconds
3246 f942a838 Michael Hanselmann
  @rtype: tuple; (string, string)
3247 f942a838 Michael Hanselmann
  @return: Certificate name and public part
3248 f942a838 Michael Hanselmann

3249 f942a838 Michael Hanselmann
  """
3250 f942a838 Michael Hanselmann
  (key_pem, cert_pem) = \
3251 b705c7a6 Manuel Franceschini
    utils.GenerateSelfSignedX509Cert(netutils.Hostname.GetSysName(),
3252 f942a838 Michael Hanselmann
                                     min(validity, _MAX_SSL_CERT_VALIDITY))
3253 f942a838 Michael Hanselmann
3254 f942a838 Michael Hanselmann
  cert_dir = tempfile.mkdtemp(dir=cryptodir,
3255 f942a838 Michael Hanselmann
                              prefix="x509-%s-" % utils.TimestampForFilename())
3256 f942a838 Michael Hanselmann
  try:
3257 f942a838 Michael Hanselmann
    name = os.path.basename(cert_dir)
3258 f942a838 Michael Hanselmann
    assert len(name) > 5
3259 f942a838 Michael Hanselmann
3260 f942a838 Michael Hanselmann
    (_, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
3261 f942a838 Michael Hanselmann
3262 f942a838 Michael Hanselmann
    utils.WriteFile(key_file, mode=0400, data=key_pem)
3263 f942a838 Michael Hanselmann
    utils.WriteFile(cert_file, mode=0400, data=cert_pem)
3264 f942a838 Michael Hanselmann
3265 f942a838 Michael Hanselmann
    # Never return private key as it shouldn't leave the node
3266 f942a838 Michael Hanselmann
    return (name, cert_pem)
3267 f942a838 Michael Hanselmann
  except Exception:
3268 f942a838 Michael Hanselmann
    shutil.rmtree(cert_dir, ignore_errors=True)
3269 f942a838 Michael Hanselmann
    raise
3270 f942a838 Michael Hanselmann
3271 f942a838 Michael Hanselmann
3272 710f30ec Michael Hanselmann
def RemoveX509Certificate(name, cryptodir=pathutils.CRYPTO_KEYS_DIR):
3273 f942a838 Michael Hanselmann
  """Removes a X509 certificate.
3274 f942a838 Michael Hanselmann

3275 f942a838 Michael Hanselmann
  @type name: string
3276 f942a838 Michael Hanselmann
  @param name: Certificate name
3277 f942a838 Michael Hanselmann

3278 f942a838 Michael Hanselmann
  """
3279 f942a838 Michael Hanselmann
  (cert_dir, key_file, cert_file) = _GetX509Filenames(cryptodir, name)
3280 f942a838 Michael Hanselmann
3281 f942a838 Michael Hanselmann
  utils.RemoveFile(key_file)
3282 f942a838 Michael Hanselmann
  utils.RemoveFile(cert_file)
3283 f942a838 Michael Hanselmann
3284 f942a838 Michael Hanselmann
  try:
3285 f942a838 Michael Hanselmann
    os.rmdir(cert_dir)
3286 f942a838 Michael Hanselmann
  except EnvironmentError, err:
3287 f942a838 Michael Hanselmann
    _Fail("Cannot remove certificate directory '%s': %s",
3288 f942a838 Michael Hanselmann
          cert_dir, err)
3289 f942a838 Michael Hanselmann
3290 f942a838 Michael Hanselmann
3291 1651d116 Michael Hanselmann
def _GetImportExportIoCommand(instance, mode, ieio, ieargs):
3292 1651d116 Michael Hanselmann
  """Returns the command for the requested input/output.
3293 1651d116 Michael Hanselmann

3294 1651d116 Michael Hanselmann
  @type instance: L{objects.Instance}
3295 1651d116 Michael Hanselmann
  @param instance: The instance object
3296 1651d116 Michael Hanselmann
  @param mode: Import/export mode
3297 1651d116 Michael Hanselmann
  @param ieio: Input/output type
3298 1651d116 Michael Hanselmann
  @param ieargs: Input/output arguments
3299 1651d116 Michael Hanselmann

3300 1651d116 Michael Hanselmann
  """
3301 1651d116 Michael Hanselmann
  assert mode in (constants.IEM_IMPORT, constants.IEM_EXPORT)
3302 1651d116 Michael Hanselmann
3303 1651d116 Michael Hanselmann
  env = None
3304 1651d116 Michael Hanselmann
  prefix = None
3305 1651d116 Michael Hanselmann
  suffix = None
3306 2ad5550d Michael Hanselmann
  exp_size = None
3307 1651d116 Michael Hanselmann
3308 1651d116 Michael Hanselmann
  if ieio == constants.IEIO_FILE:
3309 1651d116 Michael Hanselmann
    (filename, ) = ieargs
3310 1651d116 Michael Hanselmann
3311 1651d116 Michael Hanselmann
    if not utils.IsNormAbsPath(filename):
3312 1651d116 Michael Hanselmann
      _Fail("Path '%s' is not normalized or absolute", filename)
3313 1651d116 Michael Hanselmann
3314 748c9884 René Nussbaumer
    real_filename = os.path.realpath(filename)
3315 748c9884 René Nussbaumer
    directory = os.path.dirname(real_filename)
3316 1651d116 Michael Hanselmann
3317 710f30ec Michael Hanselmann
    if not utils.IsBelowDir(pathutils.EXPORT_DIR, real_filename):
3318 748c9884 René Nussbaumer
      _Fail("File '%s' is not under exports directory '%s': %s",
3319 710f30ec Michael Hanselmann
            filename, pathutils.EXPORT_DIR, real_filename)
3320 1651d116 Michael Hanselmann
3321 1651d116 Michael Hanselmann
    # Create directory
3322 1651d116 Michael Hanselmann
    utils.Makedirs(directory, mode=0750)
3323 1651d116 Michael Hanselmann
3324 1651d116 Michael Hanselmann
    quoted_filename = utils.ShellQuote(filename)
3325 1651d116 Michael Hanselmann
3326 1651d116 Michael Hanselmann
    if mode == constants.IEM_IMPORT:
3327 1651d116 Michael Hanselmann
      suffix = "> %s" % quoted_filename
3328 1651d116 Michael Hanselmann
    elif mode == constants.IEM_EXPORT:
3329 1651d116 Michael Hanselmann
      suffix = "< %s" % quoted_filename
3330 1651d116 Michael Hanselmann
3331 2ad5550d Michael Hanselmann
      # Retrieve file size
3332 2ad5550d Michael Hanselmann
      try:
3333 2ad5550d Michael Hanselmann
        st = os.stat(filename)
3334 2ad5550d Michael Hanselmann
      except EnvironmentError, err:
3335 2ad5550d Michael Hanselmann
        logging.error("Can't stat(2) %s: %s", filename, err)
3336 2ad5550d Michael Hanselmann
      else:
3337 2ad5550d Michael Hanselmann
        exp_size = utils.BytesToMebibyte(st.st_size)
3338 2ad5550d Michael Hanselmann
3339 1651d116 Michael Hanselmann
  elif ieio == constants.IEIO_RAW_DISK:
3340 1651d116 Michael Hanselmann
    (disk, ) = ieargs
3341 1651d116 Michael Hanselmann
3342 1651d116 Michael Hanselmann
    real_disk = _OpenRealBD(disk)
3343 1651d116 Michael Hanselmann
3344 1651d116 Michael Hanselmann
    if mode == constants.IEM_IMPORT:
3345 1651d116 Michael Hanselmann
      # we set here a smaller block size as, due to transport buffering, more
3346 1651d116 Michael Hanselmann
      # than 64-128k will mostly ignored; we use nocreat to fail if the device
3347 1651d116 Michael Hanselmann
      # is not already there or we pass a wrong path; we use notrunc to no
3348 1651d116 Michael Hanselmann
      # attempt truncate on an LV device; we use oflag=dsync to not buffer too
3349 1651d116 Michael Hanselmann
      # much memory; this means that at best, we flush every 64k, which will
3350 1651d116 Michael Hanselmann
      # not be very fast
3351 1651d116 Michael Hanselmann
      suffix = utils.BuildShellCmd(("| dd of=%s conv=nocreat,notrunc"
3352 1651d116 Michael Hanselmann
                                    " bs=%s oflag=dsync"),
3353 1651d116 Michael Hanselmann
                                    real_disk.dev_path,
3354 1651d116 Michael Hanselmann
                                    str(64 * 1024))
3355 1651d116 Michael Hanselmann
3356 1651d116 Michael Hanselmann
    elif mode == constants.IEM_EXPORT:
3357 1651d116 Michael Hanselmann
      # the block size on the read dd is 1MiB to match our units
3358 1651d116 Michael Hanselmann
      prefix = utils.BuildShellCmd("dd if=%s bs=%s count=%s |",
3359 1651d116 Michael Hanselmann
                                   real_disk.dev_path,
3360 1651d116 Michael Hanselmann
                                   str(1024 * 1024), # 1 MB
3361 1651d116 Michael Hanselmann
                                   str(disk.size))
3362 2ad5550d Michael Hanselmann
      exp_size = disk.size
3363 1651d116 Michael Hanselmann
3364 1651d116 Michael Hanselmann
  elif ieio == constants.IEIO_SCRIPT:
3365 1651d116 Michael Hanselmann
    (disk, disk_index, ) = ieargs
3366 1651d116 Michael Hanselmann
3367 1651d116 Michael Hanselmann
    assert isinstance(disk_index, (int, long))
3368 1651d116 Michael Hanselmann
3369 1651d116 Michael Hanselmann
    real_disk = _OpenRealBD(disk)
3370 1651d116 Michael Hanselmann
3371 1651d116 Michael Hanselmann
    inst_os = OSFromDisk(instance.os)
3372 1651d116 Michael Hanselmann
    env = OSEnvironment(instance, inst_os)
3373 1651d116 Michael Hanselmann
3374 1651d116 Michael Hanselmann
    if mode == constants.IEM_IMPORT:
3375 1651d116 Michael Hanselmann
      env["IMPORT_DEVICE"] = env["DISK_%d_PATH" % disk_index]
3376 1651d116 Michael Hanselmann
      env["IMPORT_INDEX"] = str(disk_index)
3377 1651d116 Michael Hanselmann
      script = inst_os.import_script
3378 1651d116 Michael Hanselmann
3379 1651d116 Michael Hanselmann
    elif mode == constants.IEM_EXPORT:
3380 1651d116 Michael Hanselmann
      env["EXPORT_DEVICE"] = real_disk.dev_path
3381 1651d116 Michael Hanselmann
      env["EXPORT_INDEX"] = str(disk_index)
3382 1651d116 Michael Hanselmann
      script = inst_os.export_script
3383 1651d116 Michael Hanselmann
3384 1651d116 Michael Hanselmann
    # TODO: Pass special environment only to script
3385 1651d116 Michael Hanselmann
    script_cmd = utils.BuildShellCmd("( cd %s && %s; )", inst_os.path, script)
3386 1651d116 Michael Hanselmann
3387 1651d116 Michael Hanselmann
    if mode == constants.IEM_IMPORT:
3388 1651d116 Michael Hanselmann
      suffix = "| %s" % script_cmd
3389 1651d116 Michael Hanselmann
3390 1651d116 Michael Hanselmann
    elif mode == constants.IEM_EXPORT:
3391 1651d116 Michael Hanselmann
      prefix = "%s |" % script_cmd
3392 1651d116 Michael Hanselmann
3393 2ad5550d Michael Hanselmann
    # Let script predict size
3394 2ad5550d Michael Hanselmann
    exp_size = constants.IE_CUSTOM_SIZE
3395 2ad5550d Michael Hanselmann
3396 1651d116 Michael Hanselmann
  else:
3397 1651d116 Michael Hanselmann
    _Fail("Invalid %s I/O mode %r", mode, ieio)
3398 1651d116 Michael Hanselmann
3399 2ad5550d Michael Hanselmann
  return (env, prefix, suffix, exp_size)
3400 1651d116 Michael Hanselmann
3401 1651d116 Michael Hanselmann
3402 1651d116 Michael Hanselmann
def _CreateImportExportStatusDir(prefix):
3403 1651d116 Michael Hanselmann
  """Creates status directory for import/export.
3404 1651d116 Michael Hanselmann

3405 1651d116 Michael Hanselmann
  """
3406 710f30ec Michael Hanselmann
  return tempfile.mkdtemp(dir=pathutils.IMPORT_EXPORT_DIR,
3407 1651d116 Michael Hanselmann
                          prefix=("%s-%s-" %
3408 1651d116 Michael Hanselmann
                                  (prefix, utils.TimestampForFilename())))
3409 1651d116 Michael Hanselmann
3410 1651d116 Michael Hanselmann
3411 6613661a Iustin Pop
def StartImportExportDaemon(mode, opts, host, port, instance, component,
3412 6613661a Iustin Pop
                            ieio, ieioargs):
3413 1651d116 Michael Hanselmann
  """Starts an import or export daemon.
3414 1651d116 Michael Hanselmann

3415 1651d116 Michael Hanselmann
  @param mode: Import/output mode
3416 eb630f50 Michael Hanselmann
  @type opts: L{objects.ImportExportOptions}
3417 eb630f50 Michael Hanselmann
  @param opts: Daemon options
3418 1651d116 Michael Hanselmann
  @type host: string
3419 1651d116 Michael Hanselmann
  @param host: Remote host for export (None for import)
3420 1651d116 Michael Hanselmann
  @type port: int
3421 1651d116 Michael Hanselmann
  @param port: Remote port for export (None for import)
3422 1651d116 Michael Hanselmann
  @type instance: L{objects.Instance}
3423 1651d116 Michael Hanselmann
  @param instance: Instance object
3424 6613661a Iustin Pop
  @type component: string
3425 6613661a Iustin Pop
  @param component: which part of the instance is transferred now,
3426 6613661a Iustin Pop
      e.g. 'disk/0'
3427 1651d116 Michael Hanselmann
  @param ieio: Input/output type
3428 1651d116 Michael Hanselmann
  @param ieioargs: Input/output arguments
3429 1651d116 Michael Hanselmann

3430 1651d116 Michael Hanselmann
  """
3431 1651d116 Michael Hanselmann
  if mode == constants.IEM_IMPORT:
3432 1651d116 Michael Hanselmann
    prefix = "import"
3433 1651d116 Michael Hanselmann
3434 1651d116 Michael Hanselmann
    if not (host is None and port is None):
3435 1651d116 Michael Hanselmann
      _Fail("Can not specify host or port on import")
3436 1651d116 Michael Hanselmann
3437 1651d116 Michael Hanselmann
  elif mode == constants.IEM_EXPORT:
3438 1651d116 Michael Hanselmann
    prefix = "export"
3439 1651d116 Michael Hanselmann
3440 1651d116 Michael Hanselmann
    if host is None or port is None:
3441 1651d116 Michael Hanselmann
      _Fail("Host and port must be specified for an export")
3442 1651d116 Michael Hanselmann
3443 1651d116 Michael Hanselmann
  else:
3444 1651d116 Michael Hanselmann
    _Fail("Invalid mode %r", mode)
3445 1651d116 Michael Hanselmann
3446 eb630f50 Michael Hanselmann
  if (opts.key_name is None) ^ (opts.ca_pem is None):
3447 1651d116 Michael Hanselmann
    _Fail("Cluster certificate can only be used for both key and CA")
3448 1651d116 Michael Hanselmann
3449 2ad5550d Michael Hanselmann
  (cmd_env, cmd_prefix, cmd_suffix, exp_size) = \
3450 1651d116 Michael Hanselmann
    _GetImportExportIoCommand(instance, mode, ieio, ieioargs)
3451 1651d116 Michael Hanselmann
3452 eb630f50 Michael Hanselmann
  if opts.key_name is None:
3453 1651d116 Michael Hanselmann
    # Use server.pem
3454 710f30ec Michael Hanselmann
    key_path = pathutils.NODED_CERT_FILE
3455 710f30ec Michael Hanselmann
    cert_path = pathutils.NODED_CERT_FILE
3456 eb630f50 Michael Hanselmann
    assert opts.ca_pem is None
3457 1651d116 Michael Hanselmann
  else:
3458 710f30ec Michael Hanselmann
    (_, key_path, cert_path) = _GetX509Filenames(pathutils.CRYPTO_KEYS_DIR,
3459 eb630f50 Michael Hanselmann
                                                 opts.key_name)
3460 eb630f50 Michael Hanselmann
    assert opts.ca_pem is not None
3461 1651d116 Michael Hanselmann
3462 63bcea2a Michael Hanselmann
  for i in [key_path, cert_path]:
3463 dcaabc4f Michael Hanselmann
    if not os.path.exists(i):
3464 63bcea2a Michael Hanselmann
      _Fail("File '%s' does not exist" % i)
3465 63bcea2a Michael Hanselmann
3466 6613661a Iustin Pop
  status_dir = _CreateImportExportStatusDir("%s-%s" % (prefix, component))
3467 1651d116 Michael Hanselmann
  try:
3468 1651d116 Michael Hanselmann
    status_file = utils.PathJoin(status_dir, _IES_STATUS_FILE)
3469 1651d116 Michael Hanselmann
    pid_file = utils.PathJoin(status_dir, _IES_PID_FILE)
3470 63bcea2a Michael Hanselmann
    ca_file = utils.PathJoin(status_dir, _IES_CA_FILE)
3471 1651d116 Michael Hanselmann
3472 eb630f50 Michael Hanselmann
    if opts.ca_pem is None:
3473 1651d116 Michael Hanselmann
      # Use server.pem
3474 710f30ec Michael Hanselmann
      ca = utils.ReadFile(pathutils.NODED_CERT_FILE)
3475 eb630f50 Michael Hanselmann
    else:
3476 eb630f50 Michael Hanselmann
      ca = opts.ca_pem
3477 63bcea2a Michael Hanselmann
3478 eb630f50 Michael Hanselmann
    # Write CA file
3479 63bcea2a Michael Hanselmann
    utils.WriteFile(ca_file, data=ca, mode=0400)
3480 1651d116 Michael Hanselmann
3481 1651d116 Michael Hanselmann
    cmd = [
3482 710f30ec Michael Hanselmann
      pathutils.IMPORT_EXPORT_DAEMON,
3483 1651d116 Michael Hanselmann
      status_file, mode,
3484 1651d116 Michael Hanselmann
      "--key=%s" % key_path,
3485 1651d116 Michael Hanselmann
      "--cert=%s" % cert_path,
3486 63bcea2a Michael Hanselmann
      "--ca=%s" % ca_file,
3487 1651d116 Michael Hanselmann
      ]
3488 1651d116 Michael Hanselmann
3489 1651d116 Michael Hanselmann
    if host:
3490 1651d116 Michael Hanselmann
      cmd.append("--host=%s" % host)
3491 1651d116 Michael Hanselmann
3492 1651d116 Michael Hanselmann
    if port:
3493 1651d116 Michael Hanselmann
      cmd.append("--port=%s" % port)
3494 1651d116 Michael Hanselmann
3495 855d2fc7 Michael Hanselmann
    if opts.ipv6:
3496 855d2fc7 Michael Hanselmann
      cmd.append("--ipv6")
3497 855d2fc7 Michael Hanselmann
    else:
3498 855d2fc7 Michael Hanselmann
      cmd.append("--ipv4")
3499 855d2fc7 Michael Hanselmann
3500 a5310c2a Michael Hanselmann
    if opts.compress:
3501 a5310c2a Michael Hanselmann
      cmd.append("--compress=%s" % opts.compress)
3502 a5310c2a Michael Hanselmann
3503 af1d39b1 Michael Hanselmann
    if opts.magic:
3504 af1d39b1 Michael Hanselmann
      cmd.append("--magic=%s" % opts.magic)
3505 af1d39b1 Michael Hanselmann
3506 2ad5550d Michael Hanselmann
    if exp_size is not None:
3507 2ad5550d Michael Hanselmann
      cmd.append("--expected-size=%s" % exp_size)
3508 2ad5550d Michael Hanselmann
3509 1651d116 Michael Hanselmann
    if cmd_prefix:
3510 1651d116 Michael Hanselmann
      cmd.append("--cmd-prefix=%s" % cmd_prefix)
3511 1651d116 Michael Hanselmann
3512 1651d116 Michael Hanselmann
    if cmd_suffix:
3513 1651d116 Michael Hanselmann
      cmd.append("--cmd-suffix=%s" % cmd_suffix)
3514 1651d116 Michael Hanselmann
3515 4478301b Michael Hanselmann
    if mode == constants.IEM_EXPORT:
3516 4478301b Michael Hanselmann
      # Retry connection a few times when connecting to remote peer
3517 4478301b Michael Hanselmann
      cmd.append("--connect-retries=%s" % constants.RIE_CONNECT_RETRIES)
3518 4478301b Michael Hanselmann
      cmd.append("--connect-timeout=%s" % constants.RIE_CONNECT_ATTEMPT_TIMEOUT)
3519 4478301b Michael Hanselmann
    elif opts.connect_timeout is not None:
3520 4478301b Michael Hanselmann
      assert mode == constants.IEM_IMPORT
3521 4478301b Michael Hanselmann
      # Overall timeout for establishing connection while listening
3522 4478301b Michael Hanselmann
      cmd.append("--connect-timeout=%s" % opts.connect_timeout)
3523 4478301b Michael Hanselmann
3524 6aa7a354 Iustin Pop
    logfile = _InstanceLogName(prefix, instance.os, instance.name, component)
3525 1651d116 Michael Hanselmann
3526 1651d116 Michael Hanselmann
    # TODO: Once _InstanceLogName uses tempfile.mkstemp, StartDaemon has
3527 1651d116 Michael Hanselmann
    # support for receiving a file descriptor for output
3528 1651d116 Michael Hanselmann
    utils.StartDaemon(cmd, env=cmd_env, pidfile=pid_file,
3529 1651d116 Michael Hanselmann
                      output=logfile)
3530 1651d116 Michael Hanselmann
3531 1651d116 Michael Hanselmann
    # The import/export name is simply the status directory name
3532 1651d116 Michael Hanselmann
    return os.path.basename(status_dir)
3533 1651d116 Michael Hanselmann
3534 1651d116 Michael Hanselmann
  except Exception:
3535 1651d116 Michael Hanselmann
    shutil.rmtree(status_dir, ignore_errors=True)
3536 1651d116 Michael Hanselmann
    raise
3537 1651d116 Michael Hanselmann
3538 1651d116 Michael Hanselmann
3539 1651d116 Michael Hanselmann
def GetImportExportStatus(names):
3540 1651d116 Michael Hanselmann
  """Returns import/export daemon status.
3541 1651d116 Michael Hanselmann

3542 1651d116 Michael Hanselmann
  @type names: sequence
3543 1651d116 Michael Hanselmann
  @param names: List of names
3544 1651d116 Michael Hanselmann
  @rtype: List of dicts
3545 1651d116 Michael Hanselmann
  @return: Returns a list of the state of each named import/export or None if a
3546 1651d116 Michael Hanselmann
           status couldn't be read
3547 1651d116 Michael Hanselmann

3548 1651d116 Michael Hanselmann
  """
3549 1651d116 Michael Hanselmann
  result = []
3550 1651d116 Michael Hanselmann
3551 1651d116 Michael Hanselmann
  for name in names:
3552 710f30ec Michael Hanselmann
    status_file = utils.PathJoin(pathutils.IMPORT_EXPORT_DIR, name,
3553 1651d116 Michael Hanselmann
                                 _IES_STATUS_FILE)
3554 1651d116 Michael Hanselmann
3555 1651d116 Michael Hanselmann
    try:
3556 1651d116 Michael Hanselmann
      data = utils.ReadFile(status_file)
3557 1651d116 Michael Hanselmann
    except EnvironmentError, err:
3558 1651d116 Michael Hanselmann
      if err.errno != errno.ENOENT:
3559 1651d116 Michael Hanselmann
        raise
3560 1651d116 Michael Hanselmann
      data = None
3561 1651d116 Michael Hanselmann
3562 1651d116 Michael Hanselmann
    if not data:
3563 1651d116 Michael Hanselmann
      result.append(None)
3564 1651d116 Michael Hanselmann
      continue
3565 1651d116 Michael Hanselmann
3566 1651d116 Michael Hanselmann
    result.append(serializer.LoadJson(data))
3567 1651d116 Michael Hanselmann
3568 1651d116 Michael Hanselmann
  return result
3569 1651d116 Michael Hanselmann
3570 1651d116 Michael Hanselmann
3571 f81c4737 Michael Hanselmann
def AbortImportExport(name):
3572 f81c4737 Michael Hanselmann
  """Sends SIGTERM to a running import/export daemon.
3573 f81c4737 Michael Hanselmann

3574 f81c4737 Michael Hanselmann
  """
3575 f81c4737 Michael Hanselmann
  logging.info("Abort import/export %s", name)
3576 f81c4737 Michael Hanselmann
3577 710f30ec Michael Hanselmann
  status_dir = utils.PathJoin(pathutils.IMPORT_EXPORT_DIR, name)
3578 f81c4737 Michael Hanselmann
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
3579 f81c4737 Michael Hanselmann
3580 f81c4737 Michael Hanselmann
  if pid:
3581 f81c4737 Michael Hanselmann
    logging.info("Import/export %s is running with PID %s, sending SIGTERM",
3582 f81c4737 Michael Hanselmann
                 name, pid)
3583 560cbec1 Michael Hanselmann
    utils.IgnoreProcessNotFound(os.kill, pid, signal.SIGTERM)
3584 f81c4737 Michael Hanselmann
3585 f81c4737 Michael Hanselmann
3586 1651d116 Michael Hanselmann
def CleanupImportExport(name):
3587 1651d116 Michael Hanselmann
  """Cleanup after an import or export.
3588 1651d116 Michael Hanselmann

3589 1651d116 Michael Hanselmann
  If the import/export daemon is still running it's killed. Afterwards the
3590 1651d116 Michael Hanselmann
  whole status directory is removed.
3591 1651d116 Michael Hanselmann

3592 1651d116 Michael Hanselmann
  """
3593 1651d116 Michael Hanselmann
  logging.info("Finalizing import/export %s", name)
3594 1651d116 Michael Hanselmann
3595 710f30ec Michael Hanselmann
  status_dir = utils.PathJoin(pathutils.IMPORT_EXPORT_DIR, name)
3596 1651d116 Michael Hanselmann
3597 debed9ae Michael Hanselmann
  pid = utils.ReadLockedPidFile(utils.PathJoin(status_dir, _IES_PID_FILE))
3598 1651d116 Michael Hanselmann
3599 1651d116 Michael Hanselmann
  if pid:
3600 1651d116 Michael Hanselmann
    logging.info("Import/export %s is still running with PID %s",
3601 1651d116 Michael Hanselmann
                 name, pid)
3602 1651d116 Michael Hanselmann
    utils.KillProcess(pid, waitpid=False)
3603 1651d116 Michael Hanselmann
3604 1651d116 Michael Hanselmann
  shutil.rmtree(status_dir, ignore_errors=True)
3605 1651d116 Michael Hanselmann
3606 1651d116 Michael Hanselmann
3607 6b93ec9d Iustin Pop
def _FindDisks(nodes_ip, disks):
3608 6b93ec9d Iustin Pop
  """Sets the physical ID on disks and returns the block devices.
3609 6b93ec9d Iustin Pop

3610 6b93ec9d Iustin Pop
  """
3611 6b93ec9d Iustin Pop
  # set the correct physical ID
3612 b705c7a6 Manuel Franceschini
  my_name = netutils.Hostname.GetSysName()
3613 6b93ec9d Iustin Pop
  for cf in disks:
3614 6b93ec9d Iustin Pop
    cf.SetPhysicalID(my_name, nodes_ip)
3615 6b93ec9d Iustin Pop
3616 6b93ec9d Iustin Pop
  bdevs = []
3617 6b93ec9d Iustin Pop
3618 6b93ec9d Iustin Pop
  for cf in disks:
3619 6b93ec9d Iustin Pop
    rd = _RecursiveFindBD(cf)
3620 6b93ec9d Iustin Pop
    if rd is None:
3621 5a533f8a Iustin Pop
      _Fail("Can't find device %s", cf)
3622 6b93ec9d Iustin Pop
    bdevs.append(rd)
3623 5a533f8a Iustin Pop
  return bdevs
3624 6b93ec9d Iustin Pop
3625 6b93ec9d Iustin Pop
3626 6b93ec9d Iustin Pop
def DrbdDisconnectNet(nodes_ip, disks):
3627 6b93ec9d Iustin Pop
  """Disconnects the network on a list of drbd devices.
3628 6b93ec9d Iustin Pop

3629 6b93ec9d Iustin Pop
  """
3630 5a533f8a Iustin Pop
  bdevs = _FindDisks(nodes_ip, disks)
3631 6b93ec9d Iustin Pop
3632 6b93ec9d Iustin Pop
  # disconnect disks
3633 6b93ec9d Iustin Pop
  for rd in bdevs:
3634 6b93ec9d Iustin Pop
    try:
3635 6b93ec9d Iustin Pop
      rd.DisconnectNet()
3636 6b93ec9d Iustin Pop
    except errors.BlockDeviceError, err:
3637 2cc6781a Iustin Pop
      _Fail("Can't change network configuration to standalone mode: %s",
3638 2cc6781a Iustin Pop
            err, exc=True)
3639 6b93ec9d Iustin Pop
3640 6b93ec9d Iustin Pop
3641 6b93ec9d Iustin Pop
def DrbdAttachNet(nodes_ip, disks, instance_name, multimaster):
3642 6b93ec9d Iustin Pop
  """Attaches the network on a list of drbd devices.
3643 6b93ec9d Iustin Pop

3644 6b93ec9d Iustin Pop
  """
3645 5a533f8a Iustin Pop
  bdevs = _FindDisks(nodes_ip, disks)
3646 6b93ec9d Iustin Pop
3647 6b93ec9d Iustin Pop
  if multimaster:
3648 53c776b5 Iustin Pop
    for idx, rd in enumerate(bdevs):
3649 6b93ec9d Iustin Pop
      try:
3650 53c776b5 Iustin Pop
        _SymlinkBlockDev(instance_name, rd.dev_path, idx)
3651 6b93ec9d Iustin Pop
      except EnvironmentError, err:
3652 2cc6781a Iustin Pop
        _Fail("Can't create symlink: %s", err)
3653 6b93ec9d Iustin Pop
  # reconnect disks, switch to new master configuration and if
3654 6b93ec9d Iustin Pop
  # needed primary mode
3655 6b93ec9d Iustin Pop
  for rd in bdevs:
3656 6b93ec9d Iustin Pop
    try:
3657 6b93ec9d Iustin Pop
      rd.AttachNet(multimaster)
3658 6b93ec9d Iustin Pop
    except errors.BlockDeviceError, err:
3659 2cc6781a Iustin Pop
      _Fail("Can't change network configuration: %s", err)
3660 3c0cdc83 Michael Hanselmann
3661 6b93ec9d Iustin Pop
  # wait until the disks are connected; we need to retry the re-attach
3662 6b93ec9d Iustin Pop
  # if the device becomes standalone, as this might happen if the one
3663 6b93ec9d Iustin Pop
  # node disconnects and reconnects in a different mode before the
3664 6b93ec9d Iustin Pop
  # other node reconnects; in this case, one or both of the nodes will
3665 6b93ec9d Iustin Pop
  # decide it has wrong configuration and switch to standalone
3666 3c0cdc83 Michael Hanselmann
3667 3c0cdc83 Michael Hanselmann
  def _Attach():
3668 6b93ec9d Iustin Pop
    all_connected = True
3669 3c0cdc83 Michael Hanselmann
3670 6b93ec9d Iustin Pop
    for rd in bdevs:
3671 6b93ec9d Iustin Pop
      stats = rd.GetProcStatus()
3672 3c0cdc83 Michael Hanselmann
3673 3c0cdc83 Michael Hanselmann
      all_connected = (all_connected and
3674 3c0cdc83 Michael Hanselmann
                       (stats.is_connected or stats.is_in_resync))
3675 3c0cdc83 Michael Hanselmann
3676 6b93ec9d Iustin Pop
      if stats.is_standalone:
3677 6b93ec9d Iustin Pop
        # peer had different config info and this node became
3678 6b93ec9d Iustin Pop
        # standalone, even though this should not happen with the
3679 6b93ec9d Iustin Pop
        # new staged way of changing disk configs
3680 6b93ec9d Iustin Pop
        try:
3681 c738375b Iustin Pop
          rd.AttachNet(multimaster)
3682 6b93ec9d Iustin Pop
        except errors.BlockDeviceError, err:
3683 2cc6781a Iustin Pop
          _Fail("Can't change network configuration: %s", err)
3684 3c0cdc83 Michael Hanselmann
3685 3c0cdc83 Michael Hanselmann
    if not all_connected:
3686 3c0cdc83 Michael Hanselmann
      raise utils.RetryAgain()
3687 3c0cdc83 Michael Hanselmann
3688 3c0cdc83 Michael Hanselmann
  try:
3689 3c0cdc83 Michael Hanselmann
    # Start with a delay of 100 miliseconds and go up to 5 seconds
3690 3c0cdc83 Michael Hanselmann
    utils.Retry(_Attach, (0.1, 1.5, 5.0), 2 * 60)
3691 3c0cdc83 Michael Hanselmann
  except utils.RetryTimeout:
3692 afdc3985 Iustin Pop
    _Fail("Timeout in disk reconnecting")
3693 3c0cdc83 Michael Hanselmann
3694 6b93ec9d Iustin Pop
  if multimaster:
3695 6b93ec9d Iustin Pop
    # change to primary mode
3696 6b93ec9d Iustin Pop
    for rd in bdevs:
3697 d3da87b8 Iustin Pop
      try:
3698 d3da87b8 Iustin Pop
        rd.Open()
3699 d3da87b8 Iustin Pop
      except errors.BlockDeviceError, err:
3700 2cc6781a Iustin Pop
        _Fail("Can't change to primary mode: %s", err)
3701 6b93ec9d Iustin Pop
3702 6b93ec9d Iustin Pop
3703 6b93ec9d Iustin Pop
def DrbdWaitSync(nodes_ip, disks):
3704 6b93ec9d Iustin Pop
  """Wait until DRBDs have synchronized.
3705 6b93ec9d Iustin Pop

3706 6b93ec9d Iustin Pop
  """
3707 db8667b7 Iustin Pop
  def _helper(rd):
3708 db8667b7 Iustin Pop
    stats = rd.GetProcStatus()
3709 db8667b7 Iustin Pop
    if not (stats.is_connected or stats.is_in_resync):
3710 db8667b7 Iustin Pop
      raise utils.RetryAgain()
3711 db8667b7 Iustin Pop
    return stats
3712 db8667b7 Iustin Pop
3713 5a533f8a Iustin Pop
  bdevs = _FindDisks(nodes_ip, disks)
3714 6b93ec9d Iustin Pop
3715 6b93ec9d Iustin Pop
  min_resync = 100
3716 6b93ec9d Iustin Pop
  alldone = True
3717 6b93ec9d Iustin Pop
  for rd in bdevs:
3718 db8667b7 Iustin Pop
    try:
3719 db8667b7 Iustin Pop
      # poll each second for 15 seconds
3720 db8667b7 Iustin Pop
      stats = utils.Retry(_helper, 1, 15, args=[rd])
3721 db8667b7 Iustin Pop
    except utils.RetryTimeout:
3722 db8667b7 Iustin Pop
      stats = rd.GetProcStatus()
3723 db8667b7 Iustin Pop
      # last check
3724 db8667b7 Iustin Pop
      if not (stats.is_connected or stats.is_in_resync):
3725 db8667b7 Iustin Pop
        _Fail("DRBD device %s is not in sync: stats=%s", rd, stats)
3726 6b93ec9d Iustin Pop
    alldone = alldone and (not stats.is_in_resync)
3727 6b93ec9d Iustin Pop
    if stats.sync_percent is not None:
3728 6b93ec9d Iustin Pop
      min_resync = min(min_resync, stats.sync_percent)
3729 afdc3985 Iustin Pop
3730 c26a6bd2 Iustin Pop
  return (alldone, min_resync)
3731 6b93ec9d Iustin Pop
3732 6b93ec9d Iustin Pop
3733 c46b9782 Luca Bigliardi
def GetDrbdUsermodeHelper():
3734 c46b9782 Luca Bigliardi
  """Returns DRBD usermode helper currently configured.
3735 c46b9782 Luca Bigliardi

3736 c46b9782 Luca Bigliardi
  """
3737 c46b9782 Luca Bigliardi
  try:
3738 47e0abee Thomas Thrainer
    return drbd.DRBD8.GetUsermodeHelper()
3739 c46b9782 Luca Bigliardi
  except errors.BlockDeviceError, err:
3740 c46b9782 Luca Bigliardi
    _Fail(str(err))
3741 c46b9782 Luca Bigliardi
3742 c46b9782 Luca Bigliardi
3743 f5118ade Iustin Pop
def PowercycleNode(hypervisor_type):
3744 f5118ade Iustin Pop
  """Hard-powercycle the node.
3745 f5118ade Iustin Pop

3746 f5118ade Iustin Pop
  Because we need to return first, and schedule the powercycle in the
3747 f5118ade Iustin Pop
  background, we won't be able to report failures nicely.
3748 f5118ade Iustin Pop

3749 f5118ade Iustin Pop
  """
3750 f5118ade Iustin Pop
  hyper = hypervisor.GetHypervisor(hypervisor_type)
3751 f5118ade Iustin Pop
  try:
3752 f5118ade Iustin Pop
    pid = os.fork()
3753 29921401 Iustin Pop
  except OSError:
3754 f5118ade Iustin Pop
    # if we can't fork, we'll pretend that we're in the child process
3755 f5118ade Iustin Pop
    pid = 0
3756 f5118ade Iustin Pop
  if pid > 0:
3757 c26a6bd2 Iustin Pop
    return "Reboot scheduled in 5 seconds"
3758 1af6ac0f Luca Bigliardi
  # ensure the child is running on ram
3759 1af6ac0f Luca Bigliardi
  try:
3760 1af6ac0f Luca Bigliardi
    utils.Mlockall()
3761 b459a848 Andrea Spadaccini
  except Exception: # pylint: disable=W0703
3762 1af6ac0f Luca Bigliardi
    pass
3763 f5118ade Iustin Pop
  time.sleep(5)
3764 f5118ade Iustin Pop
  hyper.PowercycleNode()
3765 f5118ade Iustin Pop
3766 f5118ade Iustin Pop
3767 405bffe2 Michael Hanselmann
def _VerifyRestrictedCmdName(cmd):
3768 45bc4635 Iustin Pop
  """Verifies a restricted command name.
3769 1a2eb2dc Michael Hanselmann

3770 1a2eb2dc Michael Hanselmann
  @type cmd: string
3771 1a2eb2dc Michael Hanselmann
  @param cmd: Command name
3772 1a2eb2dc Michael Hanselmann
  @rtype: tuple; (boolean, string or None)
3773 1a2eb2dc Michael Hanselmann
  @return: The tuple's first element is the status; if C{False}, the second
3774 1a2eb2dc Michael Hanselmann
    element is an error message string, otherwise it's C{None}
3775 1a2eb2dc Michael Hanselmann

3776 1a2eb2dc Michael Hanselmann
  """
3777 1a2eb2dc Michael Hanselmann
  if not cmd.strip():
3778 1a2eb2dc Michael Hanselmann
    return (False, "Missing command name")
3779 1a2eb2dc Michael Hanselmann
3780 1a2eb2dc Michael Hanselmann
  if os.path.basename(cmd) != cmd:
3781 1a2eb2dc Michael Hanselmann
    return (False, "Invalid command name")
3782 1a2eb2dc Michael Hanselmann
3783 1a2eb2dc Michael Hanselmann
  if not constants.EXT_PLUGIN_MASK.match(cmd):
3784 1a2eb2dc Michael Hanselmann
    return (False, "Command name contains forbidden characters")
3785 1a2eb2dc Michael Hanselmann
3786 1a2eb2dc Michael Hanselmann
  return (True, None)
3787 1a2eb2dc Michael Hanselmann
3788 1a2eb2dc Michael Hanselmann
3789 405bffe2 Michael Hanselmann
def _CommonRestrictedCmdCheck(path, owner):
3790 45bc4635 Iustin Pop
  """Common checks for restricted command file system directories and files.
3791 1a2eb2dc Michael Hanselmann

3792 1a2eb2dc Michael Hanselmann
  @type path: string
3793 1a2eb2dc Michael Hanselmann
  @param path: Path to check
3794 1a2eb2dc Michael Hanselmann
  @param owner: C{None} or tuple containing UID and GID
3795 1a2eb2dc Michael Hanselmann
  @rtype: tuple; (boolean, string or C{os.stat} result)
3796 1a2eb2dc Michael Hanselmann
  @return: The tuple's first element is the status; if C{False}, the second
3797 1a2eb2dc Michael Hanselmann
    element is an error message string, otherwise it's the result of C{os.stat}
3798 1a2eb2dc Michael Hanselmann

3799 1a2eb2dc Michael Hanselmann
  """
3800 1a2eb2dc Michael Hanselmann
  if owner is None:
3801 1a2eb2dc Michael Hanselmann
    # Default to root as owner
3802 1a2eb2dc Michael Hanselmann
    owner = (0, 0)
3803 1a2eb2dc Michael Hanselmann
3804 1a2eb2dc Michael Hanselmann
  try:
3805 1a2eb2dc Michael Hanselmann
    st = os.stat(path)
3806 1a2eb2dc Michael Hanselmann
  except EnvironmentError, err:
3807 1a2eb2dc Michael Hanselmann
    return (False, "Can't stat(2) '%s': %s" % (path, err))
3808 1a2eb2dc Michael Hanselmann
3809 1a2eb2dc Michael Hanselmann
  if stat.S_IMODE(st.st_mode) & (~_RCMD_MAX_MODE):
3810 1a2eb2dc Michael Hanselmann
    return (False, "Permissions on '%s' are too permissive" % path)
3811 1a2eb2dc Michael Hanselmann
3812 1a2eb2dc Michael Hanselmann
  if (st.st_uid, st.st_gid) != owner:
3813 1a2eb2dc Michael Hanselmann
    (owner_uid, owner_gid) = owner
3814 1a2eb2dc Michael Hanselmann
    return (False, "'%s' is not owned by %s:%s" % (path, owner_uid, owner_gid))
3815 1a2eb2dc Michael Hanselmann
3816 1a2eb2dc Michael Hanselmann
  return (True, st)
3817 1a2eb2dc Michael Hanselmann
3818 1a2eb2dc Michael Hanselmann
3819 405bffe2 Michael Hanselmann
def _VerifyRestrictedCmdDirectory(path, _owner=None):
3820 45bc4635 Iustin Pop
  """Verifies restricted command directory.
3821 1a2eb2dc Michael Hanselmann

3822 1a2eb2dc Michael Hanselmann
  @type path: string
3823 1a2eb2dc Michael Hanselmann
  @param path: Path to check
3824 1a2eb2dc Michael Hanselmann
  @rtype: tuple; (boolean, string or None)
3825 1a2eb2dc Michael Hanselmann
  @return: The tuple's first element is the status; if C{False}, the second
3826 1a2eb2dc Michael Hanselmann
    element is an error message string, otherwise it's C{None}
3827 1a2eb2dc Michael Hanselmann

3828 1a2eb2dc Michael Hanselmann
  """
3829 405bffe2 Michael Hanselmann
  (status, value) = _CommonRestrictedCmdCheck(path, _owner)
3830 1a2eb2dc Michael Hanselmann
3831 1a2eb2dc Michael Hanselmann
  if not status:
3832 1a2eb2dc Michael Hanselmann
    return (False, value)
3833 1a2eb2dc Michael Hanselmann
3834 1a2eb2dc Michael Hanselmann
  if not stat.S_ISDIR(value.st_mode):
3835 1a2eb2dc Michael Hanselmann
    return (False, "Path '%s' is not a directory" % path)
3836 1a2eb2dc Michael Hanselmann
3837 1a2eb2dc Michael Hanselmann
  return (True, None)
3838 1a2eb2dc Michael Hanselmann
3839 1a2eb2dc Michael Hanselmann
3840 405bffe2 Michael Hanselmann
def _VerifyRestrictedCmd(path, cmd, _owner=None):
3841 45bc4635 Iustin Pop
  """Verifies a whole restricted command and returns its executable filename.
3842 1a2eb2dc Michael Hanselmann

3843 1a2eb2dc Michael Hanselmann
  @type path: string
3844 45bc4635 Iustin Pop
  @param path: Directory containing restricted commands
3845 1a2eb2dc Michael Hanselmann
  @type cmd: string
3846 1a2eb2dc Michael Hanselmann
  @param cmd: Command name
3847 1a2eb2dc Michael Hanselmann
  @rtype: tuple; (boolean, string)
3848 1a2eb2dc Michael Hanselmann
  @return: The tuple's first element is the status; if C{False}, the second
3849 1a2eb2dc Michael Hanselmann
    element is an error message string, otherwise the second element is the
3850 1a2eb2dc Michael Hanselmann
    absolute path to the executable
3851 1a2eb2dc Michael Hanselmann

3852 1a2eb2dc Michael Hanselmann
  """
3853 1a2eb2dc Michael Hanselmann
  executable = utils.PathJoin(path, cmd)
3854 1a2eb2dc Michael Hanselmann
3855 405bffe2 Michael Hanselmann
  (status, msg) = _CommonRestrictedCmdCheck(executable, _owner)
3856 1a2eb2dc Michael Hanselmann
3857 1a2eb2dc Michael Hanselmann
  if not status:
3858 1a2eb2dc Michael Hanselmann
    return (False, msg)
3859 1a2eb2dc Michael Hanselmann
3860 1a2eb2dc Michael Hanselmann
  if not utils.IsExecutable(executable):
3861 1a2eb2dc Michael Hanselmann
    return (False, "access(2) thinks '%s' can't be executed" % executable)
3862 1a2eb2dc Michael Hanselmann
3863 1a2eb2dc Michael Hanselmann
  return (True, executable)
3864 1a2eb2dc Michael Hanselmann
3865 1a2eb2dc Michael Hanselmann
3866 405bffe2 Michael Hanselmann
def _PrepareRestrictedCmd(path, cmd,
3867 405bffe2 Michael Hanselmann
                          _verify_dir=_VerifyRestrictedCmdDirectory,
3868 405bffe2 Michael Hanselmann
                          _verify_name=_VerifyRestrictedCmdName,
3869 405bffe2 Michael Hanselmann
                          _verify_cmd=_VerifyRestrictedCmd):
3870 45bc4635 Iustin Pop
  """Performs a number of tests on a restricted command.
3871 1a2eb2dc Michael Hanselmann

3872 1a2eb2dc Michael Hanselmann
  @type path: string
3873 45bc4635 Iustin Pop
  @param path: Directory containing restricted commands
3874 1a2eb2dc Michael Hanselmann
  @type cmd: string
3875 1a2eb2dc Michael Hanselmann
  @param cmd: Command name
3876 405bffe2 Michael Hanselmann
  @return: Same as L{_VerifyRestrictedCmd}
3877 1a2eb2dc Michael Hanselmann

3878 1a2eb2dc Michael Hanselmann
  """
3879 1a2eb2dc Michael Hanselmann
  # Verify the directory first
3880 1a2eb2dc Michael Hanselmann
  (status, msg) = _verify_dir(path)
3881 1a2eb2dc Michael Hanselmann
  if status:
3882 1a2eb2dc Michael Hanselmann
    # Check command if everything was alright
3883 1a2eb2dc Michael Hanselmann
    (status, msg) = _verify_name(cmd)
3884 1a2eb2dc Michael Hanselmann
3885 1a2eb2dc Michael Hanselmann
  if not status:
3886 1a2eb2dc Michael Hanselmann
    return (False, msg)
3887 1a2eb2dc Michael Hanselmann
3888 1a2eb2dc Michael Hanselmann
  # Check actual executable
3889 1a2eb2dc Michael Hanselmann
  return _verify_cmd(path, cmd)
3890 1a2eb2dc Michael Hanselmann
3891 1a2eb2dc Michael Hanselmann
3892 42bd26e8 Michael Hanselmann
def RunRestrictedCmd(cmd,
3893 1a2eb2dc Michael Hanselmann
                     _lock_timeout=_RCMD_LOCK_TIMEOUT,
3894 878c42ae Michael Hanselmann
                     _lock_file=pathutils.RESTRICTED_COMMANDS_LOCK_FILE,
3895 878c42ae Michael Hanselmann
                     _path=pathutils.RESTRICTED_COMMANDS_DIR,
3896 1a2eb2dc Michael Hanselmann
                     _sleep_fn=time.sleep,
3897 405bffe2 Michael Hanselmann
                     _prepare_fn=_PrepareRestrictedCmd,
3898 1a2eb2dc Michael Hanselmann
                     _runcmd_fn=utils.RunCmd,
3899 1fdeb284 Michael Hanselmann
                     _enabled=constants.ENABLE_RESTRICTED_COMMANDS):
3900 45bc4635 Iustin Pop
  """Executes a restricted command after performing strict tests.
3901 1a2eb2dc Michael Hanselmann

3902 1a2eb2dc Michael Hanselmann
  @type cmd: string
3903 1a2eb2dc Michael Hanselmann
  @param cmd: Command name
3904 1a2eb2dc Michael Hanselmann
  @rtype: string
3905 1a2eb2dc Michael Hanselmann
  @return: Command output
3906 1a2eb2dc Michael Hanselmann
  @raise RPCFail: In case of an error
3907 1a2eb2dc Michael Hanselmann

3908 1a2eb2dc Michael Hanselmann
  """
3909 45bc4635 Iustin Pop
  logging.info("Preparing to run restricted command '%s'", cmd)
3910 1a2eb2dc Michael Hanselmann
3911 1a2eb2dc Michael Hanselmann
  if not _enabled:
3912 45bc4635 Iustin Pop
    _Fail("Restricted commands disabled at configure time")
3913 1a2eb2dc Michael Hanselmann
3914 1a2eb2dc Michael Hanselmann
  lock = None
3915 1a2eb2dc Michael Hanselmann
  try:
3916 1a2eb2dc Michael Hanselmann
    cmdresult = None
3917 1a2eb2dc Michael Hanselmann
    try:
3918 1a2eb2dc Michael Hanselmann
      lock = utils.FileLock.Open(_lock_file)
3919 1a2eb2dc Michael Hanselmann
      lock.Exclusive(blocking=True, timeout=_lock_timeout)
3920 1a2eb2dc Michael Hanselmann
3921 1a2eb2dc Michael Hanselmann
      (status, value) = _prepare_fn(_path, cmd)
3922 1a2eb2dc Michael Hanselmann
3923 1a2eb2dc Michael Hanselmann
      if status:
3924 1a2eb2dc Michael Hanselmann
        cmdresult = _runcmd_fn([value], env={}, reset_env=True,
3925 1a2eb2dc Michael Hanselmann
                               postfork_fn=lambda _: lock.Unlock())
3926 1a2eb2dc Michael Hanselmann
      else:
3927 1a2eb2dc Michael Hanselmann
        logging.error(value)
3928 1a2eb2dc Michael Hanselmann
    except Exception: # pylint: disable=W0703
3929 1a2eb2dc Michael Hanselmann
      # Keep original error in log
3930 1a2eb2dc Michael Hanselmann
      logging.exception("Caught exception")
3931 1a2eb2dc Michael Hanselmann
3932 1a2eb2dc Michael Hanselmann
    if cmdresult is None:
3933 1a2eb2dc Michael Hanselmann
      logging.info("Sleeping for %0.1f seconds before returning",
3934 1a2eb2dc Michael Hanselmann
                   _RCMD_INVALID_DELAY)
3935 1a2eb2dc Michael Hanselmann
      _sleep_fn(_RCMD_INVALID_DELAY)
3936 1a2eb2dc Michael Hanselmann
3937 1a2eb2dc Michael Hanselmann
      # Do not include original error message in returned error
3938 1a2eb2dc Michael Hanselmann
      _Fail("Executing command '%s' failed" % cmd)
3939 1a2eb2dc Michael Hanselmann
    elif cmdresult.failed or cmdresult.fail_reason:
3940 45bc4635 Iustin Pop
      _Fail("Restricted command '%s' failed: %s; output: %s",
3941 1a2eb2dc Michael Hanselmann
            cmd, cmdresult.fail_reason, cmdresult.output)
3942 1a2eb2dc Michael Hanselmann
    else:
3943 1a2eb2dc Michael Hanselmann
      return cmdresult.output
3944 1a2eb2dc Michael Hanselmann
  finally:
3945 1a2eb2dc Michael Hanselmann
    if lock is not None:
3946 1a2eb2dc Michael Hanselmann
      # Release lock at last
3947 1a2eb2dc Michael Hanselmann
      lock.Close()
3948 1a2eb2dc Michael Hanselmann
      lock = None
3949 1a2eb2dc Michael Hanselmann
3950 1a2eb2dc Michael Hanselmann
3951 99e222b1 Michael Hanselmann
def SetWatcherPause(until, _filename=pathutils.WATCHER_PAUSEFILE):
3952 99e222b1 Michael Hanselmann
  """Creates or removes the watcher pause file.
3953 99e222b1 Michael Hanselmann

3954 99e222b1 Michael Hanselmann
  @type until: None or number
3955 99e222b1 Michael Hanselmann
  @param until: Unix timestamp saying until when the watcher shouldn't run
3956 99e222b1 Michael Hanselmann

3957 99e222b1 Michael Hanselmann
  """
3958 99e222b1 Michael Hanselmann
  if until is None:
3959 99e222b1 Michael Hanselmann
    logging.info("Received request to no longer pause watcher")
3960 99e222b1 Michael Hanselmann
    utils.RemoveFile(_filename)
3961 99e222b1 Michael Hanselmann
  else:
3962 99e222b1 Michael Hanselmann
    logging.info("Received request to pause watcher until %s", until)
3963 99e222b1 Michael Hanselmann
3964 99e222b1 Michael Hanselmann
    if not ht.TNumber(until):
3965 99e222b1 Michael Hanselmann
      _Fail("Duration must be numeric")
3966 99e222b1 Michael Hanselmann
3967 99e222b1 Michael Hanselmann
    utils.WriteFile(_filename, data="%d\n" % (until, ), mode=0644)
3968 99e222b1 Michael Hanselmann
3969 99e222b1 Michael Hanselmann
3970 a8083063 Iustin Pop
class HooksRunner(object):
3971 a8083063 Iustin Pop
  """Hook runner.
3972 a8083063 Iustin Pop

3973 10c2650b Iustin Pop
  This class is instantiated on the node side (ganeti-noded) and not
3974 10c2650b Iustin Pop
  on the master side.
3975 a8083063 Iustin Pop

3976 a8083063 Iustin Pop
  """
3977 a8083063 Iustin Pop
  def __init__(self, hooks_base_dir=None):
3978 a8083063 Iustin Pop
    """Constructor for hooks runner.
3979 a8083063 Iustin Pop

3980 10c2650b Iustin Pop
    @type hooks_base_dir: str or None
3981 10c2650b Iustin Pop
    @param hooks_base_dir: if not None, this overrides the
3982 3329f4de Michael Hanselmann
        L{pathutils.HOOKS_BASE_DIR} (useful for unittests)
3983 a8083063 Iustin Pop

3984 a8083063 Iustin Pop
    """
3985 a8083063 Iustin Pop
    if hooks_base_dir is None:
3986 710f30ec Michael Hanselmann
      hooks_base_dir = pathutils.HOOKS_BASE_DIR
3987 fe267188 Iustin Pop
    # yeah, _BASE_DIR is not valid for attributes, we use it like a
3988 fe267188 Iustin Pop
    # constant
3989 b459a848 Andrea Spadaccini
    self._BASE_DIR = hooks_base_dir # pylint: disable=C0103
3990 a8083063 Iustin Pop
3991 0fa481f5 Andrea Spadaccini
  def RunLocalHooks(self, node_list, hpath, phase, env):
3992 0fa481f5 Andrea Spadaccini
    """Check that the hooks will be run only locally and then run them.
3993 0fa481f5 Andrea Spadaccini

3994 0fa481f5 Andrea Spadaccini
    """
3995 0fa481f5 Andrea Spadaccini
    assert len(node_list) == 1
3996 0fa481f5 Andrea Spadaccini
    node = node_list[0]
3997 0fa481f5 Andrea Spadaccini
    _, myself = ssconf.GetMasterAndMyself()
3998 0fa481f5 Andrea Spadaccini
    assert node == myself
3999 0fa481f5 Andrea Spadaccini
4000 0fa481f5 Andrea Spadaccini
    results = self.RunHooks(hpath, phase, env)
4001 0fa481f5 Andrea Spadaccini
4002 0fa481f5 Andrea Spadaccini
    # Return values in the form expected by HooksMaster
4003 0fa481f5 Andrea Spadaccini
    return {node: (None, False, results)}
4004 0fa481f5 Andrea Spadaccini
4005 a8083063 Iustin Pop
  def RunHooks(self, hpath, phase, env):
4006 a8083063 Iustin Pop
    """Run the scripts in the hooks directory.
4007 a8083063 Iustin Pop

4008 10c2650b Iustin Pop
    @type hpath: str
4009 10c2650b Iustin Pop
    @param hpath: the path to the hooks directory which
4010 10c2650b Iustin Pop
        holds the scripts
4011 10c2650b Iustin Pop
    @type phase: str
4012 10c2650b Iustin Pop
    @param phase: either L{constants.HOOKS_PHASE_PRE} or
4013 10c2650b Iustin Pop
        L{constants.HOOKS_PHASE_POST}
4014 10c2650b Iustin Pop
    @type env: dict
4015 10c2650b Iustin Pop
    @param env: dictionary with the environment for the hook
4016 10c2650b Iustin Pop
    @rtype: list
4017 10c2650b Iustin Pop
    @return: list of 3-element tuples:
4018 10c2650b Iustin Pop
      - script path
4019 10c2650b Iustin Pop
      - script result, either L{constants.HKR_SUCCESS} or
4020 10c2650b Iustin Pop
        L{constants.HKR_FAIL}
4021 10c2650b Iustin Pop
      - output of the script
4022 10c2650b Iustin Pop

4023 10c2650b Iustin Pop
    @raise errors.ProgrammerError: for invalid input
4024 10c2650b Iustin Pop
        parameters
4025 a8083063 Iustin Pop

4026 a8083063 Iustin Pop
    """
4027 a8083063 Iustin Pop
    if phase == constants.HOOKS_PHASE_PRE:
4028 a8083063 Iustin Pop
      suffix = "pre"
4029 a8083063 Iustin Pop
    elif phase == constants.HOOKS_PHASE_POST:
4030 a8083063 Iustin Pop
      suffix = "post"
4031 a8083063 Iustin Pop
    else:
4032 3fb4f740 Iustin Pop
      _Fail("Unknown hooks phase '%s'", phase)
4033 3fb4f740 Iustin Pop
4034 a8083063 Iustin Pop
    subdir = "%s-%s.d" % (hpath, suffix)
4035 0411c011 Iustin Pop
    dir_name = utils.PathJoin(self._BASE_DIR, subdir)
4036 6bb65e3a Guido Trotter
4037 6bb65e3a Guido Trotter
    results = []
4038 a9b7e346 Iustin Pop
4039 a9b7e346 Iustin Pop
    if not os.path.isdir(dir_name):
4040 a9b7e346 Iustin Pop
      # for non-existing/non-dirs, we simply exit instead of logging a
4041 a9b7e346 Iustin Pop
      # warning at every operation
4042 a9b7e346 Iustin Pop
      return results
4043 a9b7e346 Iustin Pop
4044 a9b7e346 Iustin Pop
    runparts_results = utils.RunParts(dir_name, env=env, reset_env=True)
4045 a9b7e346 Iustin Pop
4046 5ae4945a Iustin Pop
    for (relname, relstatus, runresult) in runparts_results:
4047 6bb65e3a Guido Trotter
      if relstatus == constants.RUNPARTS_SKIP:
4048 a8083063 Iustin Pop
        rrval = constants.HKR_SKIP
4049 a8083063 Iustin Pop
        output = ""
4050 6bb65e3a Guido Trotter
      elif relstatus == constants.RUNPARTS_ERR:
4051 6bb65e3a Guido Trotter
        rrval = constants.HKR_FAIL
4052 6bb65e3a Guido Trotter
        output = "Hook script execution error: %s" % runresult
4053 6bb65e3a Guido Trotter
      elif relstatus == constants.RUNPARTS_RUN:
4054 6bb65e3a Guido Trotter
        if runresult.failed:
4055 a8083063 Iustin Pop
          rrval = constants.HKR_FAIL
4056 a8083063 Iustin Pop
        else:
4057 6bb65e3a Guido Trotter
          rrval = constants.HKR_SUCCESS
4058 6bb65e3a Guido Trotter
        output = utils.SafeEncode(runresult.output.strip())
4059 6bb65e3a Guido Trotter
      results.append(("%s/%s" % (subdir, relname), rrval, output))
4060 6bb65e3a Guido Trotter
4061 6bb65e3a Guido Trotter
    return results
4062 3f78eef2 Iustin Pop
4063 3f78eef2 Iustin Pop
4064 8d528b7c Iustin Pop
class IAllocatorRunner(object):
4065 8d528b7c Iustin Pop
  """IAllocator runner.
4066 8d528b7c Iustin Pop

4067 8d528b7c Iustin Pop
  This class is instantiated on the node side (ganeti-noded) and not on
4068 8d528b7c Iustin Pop
  the master side.
4069 8d528b7c Iustin Pop

4070 8d528b7c Iustin Pop
  """
4071 7e950d31 Iustin Pop
  @staticmethod
4072 7e950d31 Iustin Pop
  def Run(name, idata):
4073 8d528b7c Iustin Pop
    """Run an iallocator script.
4074 8d528b7c Iustin Pop

4075 10c2650b Iustin Pop
    @type name: str
4076 10c2650b Iustin Pop
    @param name: the iallocator script name
4077 10c2650b Iustin Pop
    @type idata: str
4078 10c2650b Iustin Pop
    @param idata: the allocator input data
4079 10c2650b Iustin Pop

4080 10c2650b Iustin Pop
    @rtype: tuple
4081 87f5c298 Iustin Pop
    @return: two element tuple of:
4082 87f5c298 Iustin Pop
       - status
4083 87f5c298 Iustin Pop
       - either error message or stdout of allocator (for success)
4084 8d528b7c Iustin Pop

4085 8d528b7c Iustin Pop
    """
4086 8d528b7c Iustin Pop
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
4087 8d528b7c Iustin Pop
                                  os.path.isfile)
4088 8d528b7c Iustin Pop
    if alloc_script is None:
4089 87f5c298 Iustin Pop
      _Fail("iallocator module '%s' not found in the search path", name)
4090 8d528b7c Iustin Pop
4091 8d528b7c Iustin Pop
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
4092 8d528b7c Iustin Pop
    try:
4093 8d528b7c Iustin Pop
      os.write(fd, idata)
4094 8d528b7c Iustin Pop
      os.close(fd)
4095 8d528b7c Iustin Pop
      result = utils.RunCmd([alloc_script, fin_name])
4096 8d528b7c Iustin Pop
      if result.failed:
4097 87f5c298 Iustin Pop
        _Fail("iallocator module '%s' failed: %s, output '%s'",
4098 87f5c298 Iustin Pop
              name, result.fail_reason, result.output)
4099 8d528b7c Iustin Pop
    finally:
4100 8d528b7c Iustin Pop
      os.unlink(fin_name)
4101 8d528b7c Iustin Pop
4102 c26a6bd2 Iustin Pop
    return result.stdout
4103 8d528b7c Iustin Pop
4104 8d528b7c Iustin Pop
4105 3f78eef2 Iustin Pop
class DevCacheManager(object):
4106 c99a3cc0 Manuel Franceschini
  """Simple class for managing a cache of block device information.
4107 3f78eef2 Iustin Pop

4108 3f78eef2 Iustin Pop
  """
4109 3f78eef2 Iustin Pop
  _DEV_PREFIX = "/dev/"
4110 710f30ec Michael Hanselmann
  _ROOT_DIR = pathutils.BDEV_CACHE_DIR
4111 3f78eef2 Iustin Pop
4112 3f78eef2 Iustin Pop
  @classmethod
4113 3f78eef2 Iustin Pop
  def _ConvertPath(cls, dev_path):
4114 3f78eef2 Iustin Pop
    """Converts a /dev/name path to the cache file name.
4115 3f78eef2 Iustin Pop

4116 3f78eef2 Iustin Pop
    This replaces slashes with underscores and strips the /dev
4117 10c2650b Iustin Pop
    prefix. It then returns the full path to the cache file.
4118 10c2650b Iustin Pop

4119 10c2650b Iustin Pop
    @type dev_path: str
4120 10c2650b Iustin Pop
    @param dev_path: the C{/dev/} path name
4121 10c2650b Iustin Pop
    @rtype: str
4122 10c2650b Iustin Pop
    @return: the converted path name
4123 3f78eef2 Iustin Pop

4124 3f78eef2 Iustin Pop
    """
4125 3f78eef2 Iustin Pop
    if dev_path.startswith(cls._DEV_PREFIX):
4126 3f78eef2 Iustin Pop
      dev_path = dev_path[len(cls._DEV_PREFIX):]
4127 3f78eef2 Iustin Pop
    dev_path = dev_path.replace("/", "_")
4128 0411c011 Iustin Pop
    fpath = utils.PathJoin(cls._ROOT_DIR, "bdev_%s" % dev_path)
4129 3f78eef2 Iustin Pop
    return fpath
4130 3f78eef2 Iustin Pop
4131 3f78eef2 Iustin Pop
  @classmethod
4132 3f78eef2 Iustin Pop
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
4133 3f78eef2 Iustin Pop
    """Updates the cache information for a given device.
4134 3f78eef2 Iustin Pop

4135 10c2650b Iustin Pop
    @type dev_path: str
4136 10c2650b Iustin Pop
    @param dev_path: the pathname of the device
4137 10c2650b Iustin Pop
    @type owner: str
4138 10c2650b Iustin Pop
    @param owner: the owner (instance name) of the device
4139 10c2650b Iustin Pop
    @type on_primary: bool
4140 10c2650b Iustin Pop
    @param on_primary: whether this is the primary
4141 10c2650b Iustin Pop
        node nor not
4142 10c2650b Iustin Pop
    @type iv_name: str
4143 10c2650b Iustin Pop
    @param iv_name: the instance-visible name of the
4144 c41eea6e Iustin Pop
        device, as in objects.Disk.iv_name
4145 10c2650b Iustin Pop

4146 10c2650b Iustin Pop
    @rtype: None
4147 10c2650b Iustin Pop

4148 3f78eef2 Iustin Pop
    """
4149 cf5a8306 Iustin Pop
    if dev_path is None:
4150 18682bca Iustin Pop
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
4151 cf5a8306 Iustin Pop
      return
4152 3f78eef2 Iustin Pop
    fpath = cls._ConvertPath(dev_path)
4153 3f78eef2 Iustin Pop
    if on_primary:
4154 3f78eef2 Iustin Pop
      state = "primary"
4155 3f78eef2 Iustin Pop
    else:
4156 3f78eef2 Iustin Pop
      state = "secondary"
4157 3f78eef2 Iustin Pop
    if iv_name is None:
4158 3f78eef2 Iustin Pop
      iv_name = "not_visible"
4159 3f78eef2 Iustin Pop
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
4160 3f78eef2 Iustin Pop
    try:
4161 3f78eef2 Iustin Pop
      utils.WriteFile(fpath, data=fdata)
4162 3f78eef2 Iustin Pop
    except EnvironmentError, err:
4163 29921401 Iustin Pop
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)
4164 3f78eef2 Iustin Pop
4165 3f78eef2 Iustin Pop
  @classmethod
4166 3f78eef2 Iustin Pop
  def RemoveCache(cls, dev_path):
4167 3f78eef2 Iustin Pop
    """Remove data for a dev_path.
4168 3f78eef2 Iustin Pop

4169 3865ca48 Michael Hanselmann
    This is just a wrapper over L{utils.io.RemoveFile} with a converted
4170 10c2650b Iustin Pop
    path name and logging.
4171 10c2650b Iustin Pop

4172 10c2650b Iustin Pop
    @type dev_path: str
4173 10c2650b Iustin Pop
    @param dev_path: the pathname of the device
4174 10c2650b Iustin Pop

4175 10c2650b Iustin Pop
    @rtype: None
4176 10c2650b Iustin Pop

4177 3f78eef2 Iustin Pop
    """
4178 cf5a8306 Iustin Pop
    if dev_path is None:
4179 18682bca Iustin Pop
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
4180 cf5a8306 Iustin Pop
      return
4181 3f78eef2 Iustin Pop
    fpath = cls._ConvertPath(dev_path)
4182 3f78eef2 Iustin Pop
    try:
4183 3f78eef2 Iustin Pop
      utils.RemoveFile(fpath)
4184 3f78eef2 Iustin Pop
    except EnvironmentError, err:
4185 29921401 Iustin Pop
      logging.exception("Can't update bdev cache for %s: %s", dev_path, err)