Statistics
| Branch: | Tag: | Revision:

root / lib / backend.py @ 58b311ca

History | View | Annotate | Download (59.1 kB)

1 2f31098c Iustin Pop
#
2 a8083063 Iustin Pop
#
3 a8083063 Iustin Pop
4 a8083063 Iustin Pop
# Copyright (C) 2006, 2007 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 a8083063 Iustin Pop
"""Functions used by the node daemon"""
23 a8083063 Iustin Pop
24 a8083063 Iustin Pop
25 a8083063 Iustin Pop
import os
26 a8083063 Iustin Pop
import os.path
27 a8083063 Iustin Pop
import shutil
28 a8083063 Iustin Pop
import time
29 a8083063 Iustin Pop
import stat
30 a8083063 Iustin Pop
import errno
31 a8083063 Iustin Pop
import re
32 a8083063 Iustin Pop
import subprocess
33 b544cfe0 Iustin Pop
import random
34 18682bca Iustin Pop
import logging
35 3b9e6a30 Iustin Pop
import tempfile
36 a8083063 Iustin Pop
37 a8083063 Iustin Pop
from ganeti import errors
38 a8083063 Iustin Pop
from ganeti import utils
39 a8083063 Iustin Pop
from ganeti import ssh
40 a8083063 Iustin Pop
from ganeti import hypervisor
41 a8083063 Iustin Pop
from ganeti import constants
42 a8083063 Iustin Pop
from ganeti import bdev
43 a8083063 Iustin Pop
from ganeti import objects
44 880478f8 Iustin Pop
from ganeti import ssconf
45 a8083063 Iustin Pop
46 a8083063 Iustin Pop
47 c657dcc9 Michael Hanselmann
def _GetConfig():
48 c657dcc9 Michael Hanselmann
  return ssconf.SimpleConfigReader()
49 c657dcc9 Michael Hanselmann
50 c657dcc9 Michael Hanselmann
51 62c9ec92 Iustin Pop
def _GetSshRunner(cluster_name):
52 62c9ec92 Iustin Pop
  return ssh.SshRunner(cluster_name)
53 c92b310a Michael Hanselmann
54 c92b310a Michael Hanselmann
55 76ab5558 Michael Hanselmann
def _CleanDirectory(path, exclude=[]):
56 76ab5558 Michael Hanselmann
  """Removes all regular files in a directory.
57 76ab5558 Michael Hanselmann

58 76ab5558 Michael Hanselmann
  @param exclude: List of files to be excluded.
59 76ab5558 Michael Hanselmann
  @type exclude: list
60 76ab5558 Michael Hanselmann

61 76ab5558 Michael Hanselmann
  """
62 3956cee1 Michael Hanselmann
  if not os.path.isdir(path):
63 3956cee1 Michael Hanselmann
    return
64 76ab5558 Michael Hanselmann
65 76ab5558 Michael Hanselmann
  # Normalize excluded paths
66 76ab5558 Michael Hanselmann
  exclude = [os.path.normpath(i) for i in exclude]
67 76ab5558 Michael Hanselmann
68 3956cee1 Michael Hanselmann
  for rel_name in utils.ListVisibleFiles(path):
69 76ab5558 Michael Hanselmann
    full_name = os.path.normpath(os.path.join(path, rel_name))
70 76ab5558 Michael Hanselmann
    if full_name in exclude:
71 76ab5558 Michael Hanselmann
      continue
72 3956cee1 Michael Hanselmann
    if os.path.isfile(full_name) and not os.path.islink(full_name):
73 3956cee1 Michael Hanselmann
      utils.RemoveFile(full_name)
74 3956cee1 Michael Hanselmann
75 3956cee1 Michael Hanselmann
76 1bc59f76 Michael Hanselmann
def JobQueuePurge():
77 24fc781f Michael Hanselmann
  """Removes job queue files and archived jobs
78 24fc781f Michael Hanselmann

79 24fc781f Michael Hanselmann
  """
80 1bc59f76 Michael Hanselmann
  _CleanDirectory(constants.QUEUE_DIR, exclude=[constants.JOB_QUEUE_LOCK_FILE])
81 24fc781f Michael Hanselmann
  _CleanDirectory(constants.JOB_QUEUE_ARCHIVE_DIR)
82 24fc781f Michael Hanselmann
83 24fc781f Michael Hanselmann
84 bd1e4562 Iustin Pop
def GetMasterInfo():
85 bd1e4562 Iustin Pop
  """Returns master information.
86 bd1e4562 Iustin Pop

87 bd1e4562 Iustin Pop
  This is an utility function to compute master information, either
88 bd1e4562 Iustin Pop
  for consumption here or from the node daemon.
89 bd1e4562 Iustin Pop

90 bd1e4562 Iustin Pop
  @rtype: tuple
91 bd1e4562 Iustin Pop
  @return: (master_netdev, master_ip, master_name)
92 b1b6ea87 Iustin Pop

93 b1b6ea87 Iustin Pop
  """
94 b1b6ea87 Iustin Pop
  try:
95 c657dcc9 Michael Hanselmann
    cfg = _GetConfig()
96 c657dcc9 Michael Hanselmann
    master_netdev = cfg.GetMasterNetdev()
97 c657dcc9 Michael Hanselmann
    master_ip = cfg.GetMasterIP()
98 c657dcc9 Michael Hanselmann
    master_node = cfg.GetMasterNode()
99 b1b6ea87 Iustin Pop
  except errors.ConfigurationError, err:
100 b1b6ea87 Iustin Pop
    logging.exception("Cluster configuration incomplete")
101 b1b6ea87 Iustin Pop
    return (None, None)
102 bd1e4562 Iustin Pop
  return (master_netdev, master_ip, master_node)
103 b1b6ea87 Iustin Pop
104 b1b6ea87 Iustin Pop
105 1c65840b Iustin Pop
def StartMaster(start_daemons):
106 a8083063 Iustin Pop
  """Activate local node as master node.
107 a8083063 Iustin Pop

108 1c65840b Iustin Pop
  The function will always try activate the IP address of the master
109 1c65840b Iustin Pop
  (if someone else has it, then it won't). Then, if the start_daemons
110 1c65840b Iustin Pop
  parameter is True, it will also start the master daemons
111 1c65840b Iustin Pop
  (ganet-masterd and ganeti-rapi).
112 a8083063 Iustin Pop

113 a8083063 Iustin Pop
  """
114 b1b6ea87 Iustin Pop
  ok = True
115 bd1e4562 Iustin Pop
  master_netdev, master_ip, _ = GetMasterInfo()
116 b1b6ea87 Iustin Pop
  if not master_netdev:
117 a8083063 Iustin Pop
    return False
118 a8083063 Iustin Pop
119 b1b6ea87 Iustin Pop
  if utils.TcpPing(master_ip, constants.DEFAULT_NODED_PORT):
120 caad16e2 Iustin Pop
    if utils.OwnIpAddress(master_ip):
121 b1b6ea87 Iustin Pop
      # we already have the ip:
122 b1b6ea87 Iustin Pop
      logging.debug("Already started")
123 b1b6ea87 Iustin Pop
    else:
124 b1b6ea87 Iustin Pop
      logging.error("Someone else has the master ip, not activating")
125 b1b6ea87 Iustin Pop
      ok = False
126 b1b6ea87 Iustin Pop
  else:
127 b1b6ea87 Iustin Pop
    result = utils.RunCmd(["ip", "address", "add", "%s/32" % master_ip,
128 b1b6ea87 Iustin Pop
                           "dev", master_netdev, "label",
129 b1b6ea87 Iustin Pop
                           "%s:0" % master_netdev])
130 b1b6ea87 Iustin Pop
    if result.failed:
131 b1b6ea87 Iustin Pop
      logging.error("Can't activate master IP: %s", result.output)
132 b1b6ea87 Iustin Pop
      ok = False
133 b1b6ea87 Iustin Pop
134 b1b6ea87 Iustin Pop
    result = utils.RunCmd(["arping", "-q", "-U", "-c 3", "-I", master_netdev,
135 b1b6ea87 Iustin Pop
                           "-s", master_ip, master_ip])
136 b1b6ea87 Iustin Pop
    # we'll ignore the exit code of arping
137 b1b6ea87 Iustin Pop
138 b1b6ea87 Iustin Pop
  # and now start the master and rapi daemons
139 b1b6ea87 Iustin Pop
  if start_daemons:
140 b1b6ea87 Iustin Pop
    for daemon in 'ganeti-masterd', 'ganeti-rapi':
141 b1b6ea87 Iustin Pop
      result = utils.RunCmd([daemon])
142 b1b6ea87 Iustin Pop
      if result.failed:
143 b1b6ea87 Iustin Pop
        logging.error("Can't start daemon %s: %s", daemon, result.output)
144 b1b6ea87 Iustin Pop
        ok = False
145 b1b6ea87 Iustin Pop
  return ok
146 a8083063 Iustin Pop
147 a8083063 Iustin Pop
148 1c65840b Iustin Pop
def StopMaster(stop_daemons):
149 a8083063 Iustin Pop
  """Deactivate this node as master.
150 a8083063 Iustin Pop

151 1c65840b Iustin Pop
  The function will always try to deactivate the IP address of the
152 1c65840b Iustin Pop
  master. Then, if the stop_daemons parameter is True, it will also
153 1c65840b Iustin Pop
  stop the master daemons (ganet-masterd and ganeti-rapi).
154 a8083063 Iustin Pop

155 a8083063 Iustin Pop
  """
156 bd1e4562 Iustin Pop
  master_netdev, master_ip, _ = GetMasterInfo()
157 b1b6ea87 Iustin Pop
  if not master_netdev:
158 b1b6ea87 Iustin Pop
    return False
159 a8083063 Iustin Pop
160 b1b6ea87 Iustin Pop
  result = utils.RunCmd(["ip", "address", "del", "%s/32" % master_ip,
161 b1b6ea87 Iustin Pop
                         "dev", master_netdev])
162 a8083063 Iustin Pop
  if result.failed:
163 3b9e6a30 Iustin Pop
    logging.error("Can't remove the master IP, error: %s", result.output)
164 b1b6ea87 Iustin Pop
    # but otherwise ignore the failure
165 b1b6ea87 Iustin Pop
166 b1b6ea87 Iustin Pop
  if stop_daemons:
167 b1b6ea87 Iustin Pop
    # stop/kill the rapi and the master daemon
168 b1b6ea87 Iustin Pop
    for daemon in constants.RAPI_PID, constants.MASTERD_PID:
169 b1b6ea87 Iustin Pop
      utils.KillProcess(utils.ReadPidFile(utils.DaemonPidFileName(daemon)))
170 a8083063 Iustin Pop
171 a8083063 Iustin Pop
  return True
172 a8083063 Iustin Pop
173 a8083063 Iustin Pop
174 9716fdce Iustin Pop
def AddNode(dsa, dsapub, rsa, rsapub, sshkey, sshpub):
175 7900ed01 Iustin Pop
  """Joins this node to the cluster.
176 a8083063 Iustin Pop

177 7900ed01 Iustin Pop
  This does the following:
178 7900ed01 Iustin Pop
      - updates the hostkeys of the machine (rsa and dsa)
179 7900ed01 Iustin Pop
      - adds the ssh private key to the user
180 7900ed01 Iustin Pop
      - adds the ssh public key to the users' authorized_keys file
181 a8083063 Iustin Pop

182 7900ed01 Iustin Pop
  """
183 70d9e3d8 Iustin Pop
  sshd_keys =  [(constants.SSH_HOST_RSA_PRIV, rsa, 0600),
184 70d9e3d8 Iustin Pop
                (constants.SSH_HOST_RSA_PUB, rsapub, 0644),
185 70d9e3d8 Iustin Pop
                (constants.SSH_HOST_DSA_PRIV, dsa, 0600),
186 70d9e3d8 Iustin Pop
                (constants.SSH_HOST_DSA_PUB, dsapub, 0644)]
187 7900ed01 Iustin Pop
  for name, content, mode in sshd_keys:
188 70d9e3d8 Iustin Pop
    utils.WriteFile(name, data=content, mode=mode)
189 a8083063 Iustin Pop
190 70d9e3d8 Iustin Pop
  try:
191 70d9e3d8 Iustin Pop
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS,
192 70d9e3d8 Iustin Pop
                                                    mkdir=True)
193 70d9e3d8 Iustin Pop
  except errors.OpExecError, err:
194 18682bca Iustin Pop
    logging.exception("Error while processing user ssh files")
195 70d9e3d8 Iustin Pop
    return False
196 a8083063 Iustin Pop
197 70d9e3d8 Iustin Pop
  for name, content in [(priv_key, sshkey), (pub_key, sshpub)]:
198 70d9e3d8 Iustin Pop
    utils.WriteFile(name, data=content, mode=0600)
199 a8083063 Iustin Pop
200 70d9e3d8 Iustin Pop
  utils.AddAuthorizedKey(auth_keys, sshpub)
201 a8083063 Iustin Pop
202 f491c3a8 Michael Hanselmann
  utils.RunCmd([constants.SSH_INITD_SCRIPT, "restart"])
203 a8083063 Iustin Pop
204 a8083063 Iustin Pop
  return True
205 a8083063 Iustin Pop
206 a8083063 Iustin Pop
207 a8083063 Iustin Pop
def LeaveCluster():
208 a8083063 Iustin Pop
  """Cleans up the current node and prepares it to be removed from the cluster.
209 a8083063 Iustin Pop

210 a8083063 Iustin Pop
  """
211 f78346f5 Michael Hanselmann
  _CleanDirectory(constants.DATA_DIR)
212 1bc59f76 Michael Hanselmann
  JobQueuePurge()
213 f78346f5 Michael Hanselmann
214 70d9e3d8 Iustin Pop
  try:
215 70d9e3d8 Iustin Pop
    priv_key, pub_key, auth_keys = ssh.GetUserFiles(constants.GANETI_RUNAS)
216 18682bca Iustin Pop
  except errors.OpExecError:
217 18682bca Iustin Pop
    logging.exception("Error while processing ssh files")
218 7900ed01 Iustin Pop
    return
219 7900ed01 Iustin Pop
220 70d9e3d8 Iustin Pop
  f = open(pub_key, 'r')
221 a8083063 Iustin Pop
  try:
222 70d9e3d8 Iustin Pop
    utils.RemoveAuthorizedKey(auth_keys, f.read(8192))
223 a8083063 Iustin Pop
  finally:
224 a8083063 Iustin Pop
    f.close()
225 a8083063 Iustin Pop
226 70d9e3d8 Iustin Pop
  utils.RemoveFile(priv_key)
227 70d9e3d8 Iustin Pop
  utils.RemoveFile(pub_key)
228 a8083063 Iustin Pop
229 6d8b6238 Guido Trotter
  # Return a reassuring string to the caller, and quit
230 6d8b6238 Guido Trotter
  raise errors.QuitGanetiException(False, 'Shutdown scheduled')
231 6d8b6238 Guido Trotter
232 a8083063 Iustin Pop
233 e69d05fd Iustin Pop
def GetNodeInfo(vgname, hypervisor_type):
234 2f8598a5 Alexander Schreiber
  """Gives back a hash with different informations about the node.
235 a8083063 Iustin Pop

236 e69d05fd Iustin Pop
  @type vgname: C{string}
237 e69d05fd Iustin Pop
  @param vgname: the name of the volume group to ask for disk space information
238 e69d05fd Iustin Pop
  @type hypervisor_type: C{str}
239 e69d05fd Iustin Pop
  @param hypervisor_type: the name of the hypervisor to ask for
240 e69d05fd Iustin Pop
      memory information
241 e69d05fd Iustin Pop
  @rtype: C{dict}
242 e69d05fd Iustin Pop
  @return: dictionary with the following keys:
243 e69d05fd Iustin Pop
      - vg_size is the size of the configured volume group in MiB
244 e69d05fd Iustin Pop
      - vg_free is the free size of the volume group in MiB
245 e69d05fd Iustin Pop
      - memory_dom0 is the memory allocated for domain0 in MiB
246 e69d05fd Iustin Pop
      - memory_free is the currently available (free) ram in MiB
247 e69d05fd Iustin Pop
      - memory_total is the total number of ram in MiB
248 a8083063 Iustin Pop

249 098c0958 Michael Hanselmann
  """
250 a8083063 Iustin Pop
  outputarray = {}
251 a8083063 Iustin Pop
  vginfo = _GetVGInfo(vgname)
252 a8083063 Iustin Pop
  outputarray['vg_size'] = vginfo['vg_size']
253 a8083063 Iustin Pop
  outputarray['vg_free'] = vginfo['vg_free']
254 a8083063 Iustin Pop
255 e69d05fd Iustin Pop
  hyper = hypervisor.GetHypervisor(hypervisor_type)
256 a8083063 Iustin Pop
  hyp_info = hyper.GetNodeInfo()
257 a8083063 Iustin Pop
  if hyp_info is not None:
258 a8083063 Iustin Pop
    outputarray.update(hyp_info)
259 a8083063 Iustin Pop
260 3ef10550 Michael Hanselmann
  f = open("/proc/sys/kernel/random/boot_id", 'r')
261 3ef10550 Michael Hanselmann
  try:
262 3ef10550 Michael Hanselmann
    outputarray["bootid"] = f.read(128).rstrip("\n")
263 3ef10550 Michael Hanselmann
  finally:
264 3ef10550 Michael Hanselmann
    f.close()
265 3ef10550 Michael Hanselmann
266 a8083063 Iustin Pop
  return outputarray
267 a8083063 Iustin Pop
268 a8083063 Iustin Pop
269 62c9ec92 Iustin Pop
def VerifyNode(what, cluster_name):
270 a8083063 Iustin Pop
  """Verify the status of the local node.
271 a8083063 Iustin Pop

272 e69d05fd Iustin Pop
  Based on the input L{what} parameter, various checks are done on the
273 e69d05fd Iustin Pop
  local node.
274 e69d05fd Iustin Pop

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

278 e69d05fd Iustin Pop
  If the I{nodelist} key is present, we check that we have
279 e69d05fd Iustin Pop
  connectivity via ssh with the target nodes (and check the hostname
280 e69d05fd Iustin Pop
  report).
281 a8083063 Iustin Pop

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

286 e69d05fd Iustin Pop
  @type what: C{dict}
287 e69d05fd Iustin Pop
  @param what: a dictionary of things to check:
288 e69d05fd Iustin Pop
      - filelist: list of files for which to compute checksums
289 e69d05fd Iustin Pop
      - nodelist: list of nodes we should check ssh communication with
290 e69d05fd Iustin Pop
      - node-net-test: list of nodes we should check node daemon port
291 e69d05fd Iustin Pop
        connectivity with
292 e69d05fd Iustin Pop
      - hypervisor: list with hypervisors to run the verify for
293 a8083063 Iustin Pop

294 a8083063 Iustin Pop
  """
295 a8083063 Iustin Pop
  result = {}
296 a8083063 Iustin Pop
297 a8083063 Iustin Pop
  if 'hypervisor' in what:
298 e69d05fd Iustin Pop
    result['hypervisor'] = my_dict = {}
299 e69d05fd Iustin Pop
    for hv_name in what['hypervisor']:
300 e69d05fd Iustin Pop
      my_dict[hv_name] = hypervisor.GetHypervisor(hv_name).Verify()
301 a8083063 Iustin Pop
302 a8083063 Iustin Pop
  if 'filelist' in what:
303 a8083063 Iustin Pop
    result['filelist'] = utils.FingerprintFiles(what['filelist'])
304 a8083063 Iustin Pop
305 a8083063 Iustin Pop
  if 'nodelist' in what:
306 a8083063 Iustin Pop
    result['nodelist'] = {}
307 b544cfe0 Iustin Pop
    random.shuffle(what['nodelist'])
308 a8083063 Iustin Pop
    for node in what['nodelist']:
309 62c9ec92 Iustin Pop
      success, message = _GetSshRunner(cluster_name).VerifyNodeHostname(node)
310 a8083063 Iustin Pop
      if not success:
311 a8083063 Iustin Pop
        result['nodelist'][node] = message
312 9d4bfc96 Iustin Pop
  if 'node-net-test' in what:
313 9d4bfc96 Iustin Pop
    result['node-net-test'] = {}
314 9d4bfc96 Iustin Pop
    my_name = utils.HostInfo().name
315 9d4bfc96 Iustin Pop
    my_pip = my_sip = None
316 9d4bfc96 Iustin Pop
    for name, pip, sip in what['node-net-test']:
317 9d4bfc96 Iustin Pop
      if name == my_name:
318 9d4bfc96 Iustin Pop
        my_pip = pip
319 9d4bfc96 Iustin Pop
        my_sip = sip
320 9d4bfc96 Iustin Pop
        break
321 9d4bfc96 Iustin Pop
    if not my_pip:
322 9d4bfc96 Iustin Pop
      result['node-net-test'][my_name] = ("Can't find my own"
323 9d4bfc96 Iustin Pop
                                          " primary/secondary IP"
324 9d4bfc96 Iustin Pop
                                          " in the node list")
325 9d4bfc96 Iustin Pop
    else:
326 c657dcc9 Michael Hanselmann
      port = utils.GetNodeDaemonPort()
327 9d4bfc96 Iustin Pop
      for name, pip, sip in what['node-net-test']:
328 9d4bfc96 Iustin Pop
        fail = []
329 9d4bfc96 Iustin Pop
        if not utils.TcpPing(pip, port, source=my_pip):
330 9d4bfc96 Iustin Pop
          fail.append("primary")
331 9d4bfc96 Iustin Pop
        if sip != pip:
332 9d4bfc96 Iustin Pop
          if not utils.TcpPing(sip, port, source=my_sip):
333 9d4bfc96 Iustin Pop
            fail.append("secondary")
334 9d4bfc96 Iustin Pop
        if fail:
335 9d4bfc96 Iustin Pop
          result['node-net-test'][name] = ("failure using the %s"
336 9d4bfc96 Iustin Pop
                                           " interface(s)" %
337 9d4bfc96 Iustin Pop
                                           " and ".join(fail))
338 9d4bfc96 Iustin Pop
339 a8083063 Iustin Pop
  return result
340 a8083063 Iustin Pop
341 a8083063 Iustin Pop
342 a8083063 Iustin Pop
def GetVolumeList(vg_name):
343 a8083063 Iustin Pop
  """Compute list of logical volumes and their size.
344 a8083063 Iustin Pop

345 a8083063 Iustin Pop
  Returns:
346 cb2037a2 Iustin Pop
    dictionary of all partions (key) with their size (in MiB), inactive
347 cb2037a2 Iustin Pop
    and online status:
348 cb2037a2 Iustin Pop
    {'test1': ('20.06', True, True)}
349 a8083063 Iustin Pop

350 a8083063 Iustin Pop
  """
351 cb2037a2 Iustin Pop
  lvs = {}
352 cb2037a2 Iustin Pop
  sep = '|'
353 cb2037a2 Iustin Pop
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
354 cb2037a2 Iustin Pop
                         "--separator=%s" % sep,
355 cb2037a2 Iustin Pop
                         "-olv_name,lv_size,lv_attr", vg_name])
356 a8083063 Iustin Pop
  if result.failed:
357 18682bca Iustin Pop
    logging.error("Failed to list logical volumes, lvs output: %s",
358 18682bca Iustin Pop
                  result.output)
359 b63ed789 Iustin Pop
    return result.output
360 cb2037a2 Iustin Pop
361 df4c2628 Iustin Pop
  valid_line_re = re.compile("^ *([^|]+)\|([0-9.]+)\|([^|]{6})\|?$")
362 cb2037a2 Iustin Pop
  for line in result.stdout.splitlines():
363 df4c2628 Iustin Pop
    line = line.strip()
364 df4c2628 Iustin Pop
    match = valid_line_re.match(line)
365 df4c2628 Iustin Pop
    if not match:
366 18682bca Iustin Pop
      logging.error("Invalid line returned from lvs output: '%s'", line)
367 df4c2628 Iustin Pop
      continue
368 df4c2628 Iustin Pop
    name, size, attr = match.groups()
369 cb2037a2 Iustin Pop
    inactive = attr[4] == '-'
370 cb2037a2 Iustin Pop
    online = attr[5] == 'o'
371 cb2037a2 Iustin Pop
    lvs[name] = (size, inactive, online)
372 cb2037a2 Iustin Pop
373 cb2037a2 Iustin Pop
  return lvs
374 a8083063 Iustin Pop
375 a8083063 Iustin Pop
376 a8083063 Iustin Pop
def ListVolumeGroups():
377 2f8598a5 Alexander Schreiber
  """List the volume groups and their size.
378 a8083063 Iustin Pop

379 a8083063 Iustin Pop
  Returns:
380 a8083063 Iustin Pop
    Dictionary with keys volume name and values the size of the volume
381 a8083063 Iustin Pop

382 a8083063 Iustin Pop
  """
383 a8083063 Iustin Pop
  return utils.ListVolumeGroups()
384 a8083063 Iustin Pop
385 a8083063 Iustin Pop
386 dcb93971 Michael Hanselmann
def NodeVolumes():
387 dcb93971 Michael Hanselmann
  """List all volumes on this node.
388 dcb93971 Michael Hanselmann

389 dcb93971 Michael Hanselmann
  """
390 dcb93971 Michael Hanselmann
  result = utils.RunCmd(["lvs", "--noheadings", "--units=m", "--nosuffix",
391 dcb93971 Michael Hanselmann
                         "--separator=|",
392 dcb93971 Michael Hanselmann
                         "--options=lv_name,lv_size,devices,vg_name"])
393 dcb93971 Michael Hanselmann
  if result.failed:
394 18682bca Iustin Pop
    logging.error("Failed to list logical volumes, lvs output: %s",
395 18682bca Iustin Pop
                  result.output)
396 dcb93971 Michael Hanselmann
    return {}
397 dcb93971 Michael Hanselmann
398 dcb93971 Michael Hanselmann
  def parse_dev(dev):
399 dcb93971 Michael Hanselmann
    if '(' in dev:
400 dcb93971 Michael Hanselmann
      return dev.split('(')[0]
401 dcb93971 Michael Hanselmann
    else:
402 dcb93971 Michael Hanselmann
      return dev
403 dcb93971 Michael Hanselmann
404 dcb93971 Michael Hanselmann
  def map_line(line):
405 dcb93971 Michael Hanselmann
    return {
406 dcb93971 Michael Hanselmann
      'name': line[0].strip(),
407 dcb93971 Michael Hanselmann
      'size': line[1].strip(),
408 dcb93971 Michael Hanselmann
      'dev': parse_dev(line[2].strip()),
409 dcb93971 Michael Hanselmann
      'vg': line[3].strip(),
410 dcb93971 Michael Hanselmann
    }
411 dcb93971 Michael Hanselmann
412 a17a7623 Iustin Pop
  return [map_line(line.split('|')) for line in result.stdout.splitlines()
413 a17a7623 Iustin Pop
          if line.count('|') >= 3]
414 dcb93971 Michael Hanselmann
415 dcb93971 Michael Hanselmann
416 a8083063 Iustin Pop
def BridgesExist(bridges_list):
417 2f8598a5 Alexander Schreiber
  """Check if a list of bridges exist on the current node.
418 a8083063 Iustin Pop

419 a8083063 Iustin Pop
  Returns:
420 a8083063 Iustin Pop
    True if all of them exist, false otherwise
421 a8083063 Iustin Pop

422 a8083063 Iustin Pop
  """
423 a8083063 Iustin Pop
  for bridge in bridges_list:
424 a8083063 Iustin Pop
    if not utils.BridgeExists(bridge):
425 a8083063 Iustin Pop
      return False
426 a8083063 Iustin Pop
427 a8083063 Iustin Pop
  return True
428 a8083063 Iustin Pop
429 a8083063 Iustin Pop
430 e69d05fd Iustin Pop
def GetInstanceList(hypervisor_list):
431 2f8598a5 Alexander Schreiber
  """Provides a list of instances.
432 a8083063 Iustin Pop

433 e69d05fd Iustin Pop
  @type hypervisor_list: list
434 e69d05fd Iustin Pop
  @param hypervisor_list: the list of hypervisors to query information
435 e69d05fd Iustin Pop

436 e69d05fd Iustin Pop
  @rtype: list
437 e69d05fd Iustin Pop
  @return: a list of all running instances on the current node
438 e69d05fd Iustin Pop
             - instance1.example.com
439 e69d05fd Iustin Pop
             - instance2.example.com
440 a8083063 Iustin Pop

441 098c0958 Michael Hanselmann
  """
442 e69d05fd Iustin Pop
  results = []
443 e69d05fd Iustin Pop
  for hname in hypervisor_list:
444 e69d05fd Iustin Pop
    try:
445 e69d05fd Iustin Pop
      names = hypervisor.GetHypervisor(hname).ListInstances()
446 e69d05fd Iustin Pop
      results.extend(names)
447 e69d05fd Iustin Pop
    except errors.HypervisorError, err:
448 e69d05fd Iustin Pop
      logging.exception("Error enumerating instances for hypevisor %s", hname)
449 e69d05fd Iustin Pop
      # FIXME: should we somehow not propagate this to the master?
450 e69d05fd Iustin Pop
      raise
451 a8083063 Iustin Pop
452 e69d05fd Iustin Pop
  return results
453 a8083063 Iustin Pop
454 a8083063 Iustin Pop
455 e69d05fd Iustin Pop
def GetInstanceInfo(instance, hname):
456 2f8598a5 Alexander Schreiber
  """Gives back the informations about an instance as a dictionary.
457 a8083063 Iustin Pop

458 e69d05fd Iustin Pop
  @type instance: string
459 e69d05fd Iustin Pop
  @param instance: the instance name
460 e69d05fd Iustin Pop
  @type hname: string
461 e69d05fd Iustin Pop
  @param hname: the hypervisor type of the instance
462 a8083063 Iustin Pop

463 e69d05fd Iustin Pop
  @rtype: dict
464 e69d05fd Iustin Pop
  @return: dictionary with the following keys:
465 e69d05fd Iustin Pop
      - memory: memory size of instance (int)
466 e69d05fd Iustin Pop
      - state: xen state of instance (string)
467 e69d05fd Iustin Pop
      - time: cpu time of instance (float)
468 a8083063 Iustin Pop

469 098c0958 Michael Hanselmann
  """
470 a8083063 Iustin Pop
  output = {}
471 a8083063 Iustin Pop
472 e69d05fd Iustin Pop
  iinfo = hypervisor.GetHypervisor(hname).GetInstanceInfo(instance)
473 a8083063 Iustin Pop
  if iinfo is not None:
474 a8083063 Iustin Pop
    output['memory'] = iinfo[2]
475 a8083063 Iustin Pop
    output['state'] = iinfo[4]
476 a8083063 Iustin Pop
    output['time'] = iinfo[5]
477 a8083063 Iustin Pop
478 a8083063 Iustin Pop
  return output
479 a8083063 Iustin Pop
480 a8083063 Iustin Pop
481 e69d05fd Iustin Pop
def GetAllInstancesInfo(hypervisor_list):
482 a8083063 Iustin Pop
  """Gather data about all instances.
483 a8083063 Iustin Pop

484 a8083063 Iustin Pop
  This is the equivalent of `GetInstanceInfo()`, except that it
485 a8083063 Iustin Pop
  computes data for all instances at once, thus being faster if one
486 a8083063 Iustin Pop
  needs data about more than one instance.
487 a8083063 Iustin Pop

488 e69d05fd Iustin Pop
  @type hypervisor_list: list
489 e69d05fd Iustin Pop
  @param hypervisor_list: list of hypervisors to query for instance data
490 e69d05fd Iustin Pop

491 e69d05fd Iustin Pop
  @rtype: dict of dicts
492 e69d05fd Iustin Pop
  @return: dictionary of instance: data, with data having the following keys:
493 e69d05fd Iustin Pop
      - memory: memory size of instance (int)
494 e69d05fd Iustin Pop
      - state: xen state of instance (string)
495 e69d05fd Iustin Pop
      - time: cpu time of instance (float)
496 e69d05fd Iustin Pop
      - vcpuus: the number of vcpus
497 a8083063 Iustin Pop

498 098c0958 Michael Hanselmann
  """
499 a8083063 Iustin Pop
  output = {}
500 a8083063 Iustin Pop
501 e69d05fd Iustin Pop
  for hname in hypervisor_list:
502 e69d05fd Iustin Pop
    iinfo = hypervisor.GetHypervisor(hname).GetAllInstancesInfo()
503 e69d05fd Iustin Pop
    if iinfo:
504 e69d05fd Iustin Pop
      for name, inst_id, memory, vcpus, state, times in iinfo:
505 f23b5ae8 Iustin Pop
        value = {
506 e69d05fd Iustin Pop
          'memory': memory,
507 e69d05fd Iustin Pop
          'vcpus': vcpus,
508 e69d05fd Iustin Pop
          'state': state,
509 e69d05fd Iustin Pop
          'time': times,
510 e69d05fd Iustin Pop
          }
511 f23b5ae8 Iustin Pop
        if name in output and output[name] != value:
512 f23b5ae8 Iustin Pop
          raise errors.HypervisorError("Instance %s running duplicate"
513 f23b5ae8 Iustin Pop
                                       " with different parameters" % name)
514 f23b5ae8 Iustin Pop
        output[name] = value
515 a8083063 Iustin Pop
516 a8083063 Iustin Pop
  return output
517 a8083063 Iustin Pop
518 a8083063 Iustin Pop
519 d15a9ad3 Guido Trotter
def AddOSToInstance(instance):
520 2f8598a5 Alexander Schreiber
  """Add an OS to an instance.
521 a8083063 Iustin Pop

522 d15a9ad3 Guido Trotter
  @type instance: L{objects.Instance}
523 d15a9ad3 Guido Trotter
  @param instance: Instance whose OS is to be installed
524 a8083063 Iustin Pop

525 a8083063 Iustin Pop
  """
526 a8083063 Iustin Pop
  inst_os = OSFromDisk(instance.os)
527 a8083063 Iustin Pop
528 a8083063 Iustin Pop
  create_script = inst_os.create_script
529 58f6e5ca Guido Trotter
  create_env = OSEnvironment(instance)
530 a8083063 Iustin Pop
531 a8083063 Iustin Pop
  logfile = "%s/add-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
532 a8083063 Iustin Pop
                                     instance.name, int(time.time()))
533 a8083063 Iustin Pop
  if not os.path.exists(constants.LOG_OS_DIR):
534 a8083063 Iustin Pop
    os.mkdir(constants.LOG_OS_DIR, 0750)
535 a8083063 Iustin Pop
536 58f6e5ca Guido Trotter
  command = utils.BuildShellCmd("cd %s && %s &>%s",
537 58f6e5ca Guido Trotter
                                inst_os.path, create_script, logfile)
538 decd5f45 Iustin Pop
539 58f6e5ca Guido Trotter
  result = utils.RunCmd(command, env=create_env)
540 decd5f45 Iustin Pop
  if result.failed:
541 18682bca Iustin Pop
    logging.error("os create command '%s' returned error: %s, logfile: %s,"
542 18682bca Iustin Pop
                  " output: %s", command, result.fail_reason, logfile,
543 18682bca Iustin Pop
                  result.output)
544 decd5f45 Iustin Pop
    return False
545 decd5f45 Iustin Pop
546 decd5f45 Iustin Pop
  return True
547 decd5f45 Iustin Pop
548 decd5f45 Iustin Pop
549 d15a9ad3 Guido Trotter
def RunRenameInstance(instance, old_name):
550 decd5f45 Iustin Pop
  """Run the OS rename script for an instance.
551 decd5f45 Iustin Pop

552 d15a9ad3 Guido Trotter
  @type instance: objects.Instance
553 d15a9ad3 Guido Trotter
  @param instance: Instance whose OS is to be installed
554 d15a9ad3 Guido Trotter
  @type old_name: string
555 d15a9ad3 Guido Trotter
  @param old_name: previous instance name
556 decd5f45 Iustin Pop

557 decd5f45 Iustin Pop
  """
558 decd5f45 Iustin Pop
  inst_os = OSFromDisk(instance.os)
559 decd5f45 Iustin Pop
560 decd5f45 Iustin Pop
  script = inst_os.rename_script
561 ff38b6c0 Guido Trotter
  rename_env = OSEnvironment(instance)
562 ff38b6c0 Guido Trotter
  rename_env['OLD_INSTANCE_NAME'] = old_name
563 decd5f45 Iustin Pop
564 decd5f45 Iustin Pop
  logfile = "%s/rename-%s-%s-%s-%d.log" % (constants.LOG_OS_DIR, instance.os,
565 decd5f45 Iustin Pop
                                           old_name,
566 decd5f45 Iustin Pop
                                           instance.name, int(time.time()))
567 decd5f45 Iustin Pop
  if not os.path.exists(constants.LOG_OS_DIR):
568 decd5f45 Iustin Pop
    os.mkdir(constants.LOG_OS_DIR, 0750)
569 decd5f45 Iustin Pop
570 ff38b6c0 Guido Trotter
  command = utils.BuildShellCmd("cd %s && %s &>%s",
571 ff38b6c0 Guido Trotter
                                inst_os.path, script, logfile)
572 a8083063 Iustin Pop
573 ff38b6c0 Guido Trotter
  result = utils.RunCmd(command, env=rename_env)
574 a8083063 Iustin Pop
575 a8083063 Iustin Pop
  if result.failed:
576 18682bca Iustin Pop
    logging.error("os create command '%s' returned error: %s output: %s",
577 18682bca Iustin Pop
                  command, result.fail_reason, result.output)
578 a8083063 Iustin Pop
    return False
579 a8083063 Iustin Pop
580 a8083063 Iustin Pop
  return True
581 a8083063 Iustin Pop
582 a8083063 Iustin Pop
583 a8083063 Iustin Pop
def _GetVGInfo(vg_name):
584 a8083063 Iustin Pop
  """Get informations about the volume group.
585 a8083063 Iustin Pop

586 a8083063 Iustin Pop
  Args:
587 a8083063 Iustin Pop
    vg_name: the volume group
588 a8083063 Iustin Pop

589 a8083063 Iustin Pop
  Returns:
590 a8083063 Iustin Pop
    { 'vg_size' : xxx, 'vg_free' : xxx, 'pv_count' : xxx }
591 a8083063 Iustin Pop
    where
592 a8083063 Iustin Pop
    vg_size is the total size of the volume group in MiB
593 a8083063 Iustin Pop
    vg_free is the free size of the volume group in MiB
594 a8083063 Iustin Pop
    pv_count are the number of physical disks in that vg
595 a8083063 Iustin Pop

596 f4d377e7 Iustin Pop
  If an error occurs during gathering of data, we return the same dict
597 f4d377e7 Iustin Pop
  with keys all set to None.
598 f4d377e7 Iustin Pop

599 a8083063 Iustin Pop
  """
600 f4d377e7 Iustin Pop
  retdic = dict.fromkeys(["vg_size", "vg_free", "pv_count"])
601 f4d377e7 Iustin Pop
602 a8083063 Iustin Pop
  retval = utils.RunCmd(["vgs", "-ovg_size,vg_free,pv_count", "--noheadings",
603 a8083063 Iustin Pop
                         "--nosuffix", "--units=m", "--separator=:", vg_name])
604 a8083063 Iustin Pop
605 a8083063 Iustin Pop
  if retval.failed:
606 18682bca Iustin Pop
    logging.error("volume group %s not present", vg_name)
607 f4d377e7 Iustin Pop
    return retdic
608 d87ae7d2 Iustin Pop
  valarr = retval.stdout.strip().rstrip(':').split(':')
609 f4d377e7 Iustin Pop
  if len(valarr) == 3:
610 f4d377e7 Iustin Pop
    try:
611 f4d377e7 Iustin Pop
      retdic = {
612 f4d377e7 Iustin Pop
        "vg_size": int(round(float(valarr[0]), 0)),
613 f4d377e7 Iustin Pop
        "vg_free": int(round(float(valarr[1]), 0)),
614 f4d377e7 Iustin Pop
        "pv_count": int(valarr[2]),
615 f4d377e7 Iustin Pop
        }
616 f4d377e7 Iustin Pop
    except ValueError, err:
617 18682bca Iustin Pop
      logging.exception("Fail to parse vgs output")
618 f4d377e7 Iustin Pop
  else:
619 18682bca Iustin Pop
    logging.error("vgs output has the wrong number of fields (expected"
620 18682bca Iustin Pop
                  " three): %s", str(valarr))
621 a8083063 Iustin Pop
  return retdic
622 a8083063 Iustin Pop
623 a8083063 Iustin Pop
624 a8083063 Iustin Pop
def _GatherBlockDevs(instance):
625 a8083063 Iustin Pop
  """Set up an instance's block device(s).
626 a8083063 Iustin Pop

627 a8083063 Iustin Pop
  This is run on the primary node at instance startup. The block
628 a8083063 Iustin Pop
  devices must be already assembled.
629 a8083063 Iustin Pop

630 a8083063 Iustin Pop
  """
631 a8083063 Iustin Pop
  block_devices = []
632 a8083063 Iustin Pop
  for disk in instance.disks:
633 a8083063 Iustin Pop
    device = _RecursiveFindBD(disk)
634 a8083063 Iustin Pop
    if device is None:
635 a8083063 Iustin Pop
      raise errors.BlockDeviceError("Block device '%s' is not set up." %
636 a8083063 Iustin Pop
                                    str(disk))
637 a8083063 Iustin Pop
    device.Open()
638 a8083063 Iustin Pop
    block_devices.append((disk, device))
639 a8083063 Iustin Pop
  return block_devices
640 a8083063 Iustin Pop
641 a8083063 Iustin Pop
642 a8083063 Iustin Pop
def StartInstance(instance, extra_args):
643 a8083063 Iustin Pop
  """Start an instance.
644 a8083063 Iustin Pop

645 e69d05fd Iustin Pop
  @type instance: instance object
646 e69d05fd Iustin Pop
  @param instance: the instance object
647 e69d05fd Iustin Pop
  @rtype: boolean
648 e69d05fd Iustin Pop
  @return: whether the startup was successful or not
649 a8083063 Iustin Pop

650 098c0958 Michael Hanselmann
  """
651 e69d05fd Iustin Pop
  running_instances = GetInstanceList([instance.hypervisor])
652 a8083063 Iustin Pop
653 a8083063 Iustin Pop
  if instance.name in running_instances:
654 a8083063 Iustin Pop
    return True
655 a8083063 Iustin Pop
656 a8083063 Iustin Pop
  block_devices = _GatherBlockDevs(instance)
657 e69d05fd Iustin Pop
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
658 a8083063 Iustin Pop
659 a8083063 Iustin Pop
  try:
660 a8083063 Iustin Pop
    hyper.StartInstance(instance, block_devices, extra_args)
661 a8083063 Iustin Pop
  except errors.HypervisorError, err:
662 18682bca Iustin Pop
    logging.exception("Failed to start instance")
663 a8083063 Iustin Pop
    return False
664 a8083063 Iustin Pop
665 a8083063 Iustin Pop
  return True
666 a8083063 Iustin Pop
667 a8083063 Iustin Pop
668 a8083063 Iustin Pop
def ShutdownInstance(instance):
669 a8083063 Iustin Pop
  """Shut an instance down.
670 a8083063 Iustin Pop

671 e69d05fd Iustin Pop
  @type instance: instance object
672 e69d05fd Iustin Pop
  @param instance: the instance object
673 e69d05fd Iustin Pop
  @rtype: boolean
674 e69d05fd Iustin Pop
  @return: whether the startup was successful or not
675 a8083063 Iustin Pop

676 098c0958 Michael Hanselmann
  """
677 e69d05fd Iustin Pop
  hv_name = instance.hypervisor
678 e69d05fd Iustin Pop
  running_instances = GetInstanceList([hv_name])
679 a8083063 Iustin Pop
680 a8083063 Iustin Pop
  if instance.name not in running_instances:
681 a8083063 Iustin Pop
    return True
682 a8083063 Iustin Pop
683 e69d05fd Iustin Pop
  hyper = hypervisor.GetHypervisor(hv_name)
684 a8083063 Iustin Pop
  try:
685 a8083063 Iustin Pop
    hyper.StopInstance(instance)
686 a8083063 Iustin Pop
  except errors.HypervisorError, err:
687 18682bca Iustin Pop
    logging.error("Failed to stop instance")
688 a8083063 Iustin Pop
    return False
689 a8083063 Iustin Pop
690 a8083063 Iustin Pop
  # test every 10secs for 2min
691 a8083063 Iustin Pop
  shutdown_ok = False
692 a8083063 Iustin Pop
693 a8083063 Iustin Pop
  time.sleep(1)
694 a8083063 Iustin Pop
  for dummy in range(11):
695 e69d05fd Iustin Pop
    if instance.name not in GetInstanceList([hv_name]):
696 a8083063 Iustin Pop
      break
697 a8083063 Iustin Pop
    time.sleep(10)
698 a8083063 Iustin Pop
  else:
699 a8083063 Iustin Pop
    # the shutdown did not succeed
700 18682bca Iustin Pop
    logging.error("shutdown of '%s' unsuccessful, using destroy", instance)
701 a8083063 Iustin Pop
702 a8083063 Iustin Pop
    try:
703 a8083063 Iustin Pop
      hyper.StopInstance(instance, force=True)
704 a8083063 Iustin Pop
    except errors.HypervisorError, err:
705 18682bca Iustin Pop
      logging.exception("Failed to stop instance")
706 a8083063 Iustin Pop
      return False
707 a8083063 Iustin Pop
708 a8083063 Iustin Pop
    time.sleep(1)
709 e69d05fd Iustin Pop
    if instance.name in GetInstanceList([hv_name]):
710 18682bca Iustin Pop
      logging.error("could not shutdown instance '%s' even by destroy",
711 18682bca Iustin Pop
                    instance.name)
712 a8083063 Iustin Pop
      return False
713 a8083063 Iustin Pop
714 a8083063 Iustin Pop
  return True
715 a8083063 Iustin Pop
716 a8083063 Iustin Pop
717 007a2f3e Alexander Schreiber
def RebootInstance(instance, reboot_type, extra_args):
718 007a2f3e Alexander Schreiber
  """Reboot an instance.
719 007a2f3e Alexander Schreiber

720 007a2f3e Alexander Schreiber
  Args:
721 007a2f3e Alexander Schreiber
    instance    - name of instance to reboot
722 007a2f3e Alexander Schreiber
    reboot_type - how to reboot [soft,hard,full]
723 007a2f3e Alexander Schreiber

724 007a2f3e Alexander Schreiber
  """
725 e69d05fd Iustin Pop
  running_instances = GetInstanceList([instance.hypervisor])
726 007a2f3e Alexander Schreiber
727 007a2f3e Alexander Schreiber
  if instance.name not in running_instances:
728 18682bca Iustin Pop
    logging.error("Cannot reboot instance that is not running")
729 007a2f3e Alexander Schreiber
    return False
730 007a2f3e Alexander Schreiber
731 e69d05fd Iustin Pop
  hyper = hypervisor.GetHypervisor(instance.hypervisor)
732 007a2f3e Alexander Schreiber
  if reboot_type == constants.INSTANCE_REBOOT_SOFT:
733 007a2f3e Alexander Schreiber
    try:
734 007a2f3e Alexander Schreiber
      hyper.RebootInstance(instance)
735 007a2f3e Alexander Schreiber
    except errors.HypervisorError, err:
736 18682bca Iustin Pop
      logging.exception("Failed to soft reboot instance")
737 007a2f3e Alexander Schreiber
      return False
738 007a2f3e Alexander Schreiber
  elif reboot_type == constants.INSTANCE_REBOOT_HARD:
739 007a2f3e Alexander Schreiber
    try:
740 007a2f3e Alexander Schreiber
      ShutdownInstance(instance)
741 007a2f3e Alexander Schreiber
      StartInstance(instance, extra_args)
742 007a2f3e Alexander Schreiber
    except errors.HypervisorError, err:
743 18682bca Iustin Pop
      logging.exception("Failed to hard reboot instance")
744 007a2f3e Alexander Schreiber
      return False
745 007a2f3e Alexander Schreiber
  else:
746 007a2f3e Alexander Schreiber
    raise errors.ParameterError("reboot_type invalid")
747 007a2f3e Alexander Schreiber
748 007a2f3e Alexander Schreiber
  return True
749 007a2f3e Alexander Schreiber
750 007a2f3e Alexander Schreiber
751 2a10865c Iustin Pop
def MigrateInstance(instance, target, live):
752 2a10865c Iustin Pop
  """Migrates an instance to another node.
753 2a10865c Iustin Pop

754 9f0e6b37 Iustin Pop
  @type instance: C{objects.Instance}
755 9f0e6b37 Iustin Pop
  @param instance: the instance definition
756 9f0e6b37 Iustin Pop
  @type target: string
757 9f0e6b37 Iustin Pop
  @param target: the target node name
758 9f0e6b37 Iustin Pop
  @type live: boolean
759 9f0e6b37 Iustin Pop
  @param live: whether the migration should be done live or not (the
760 9f0e6b37 Iustin Pop
      interpretation of this parameter is left to the hypervisor)
761 9f0e6b37 Iustin Pop
  @rtype: tuple
762 9f0e6b37 Iustin Pop
  @return: a tuple of (success, msg) where:
763 9f0e6b37 Iustin Pop
      - succes is a boolean denoting the success/failure of the operation
764 9f0e6b37 Iustin Pop
      - msg is a string with details in case of failure
765 9f0e6b37 Iustin Pop

766 2a10865c Iustin Pop
  """
767 e69d05fd Iustin Pop
  hyper = hypervisor.GetHypervisor(instance.hypervisor_name)
768 2a10865c Iustin Pop
769 2a10865c Iustin Pop
  try:
770 9f0e6b37 Iustin Pop
    hyper.MigrateInstance(instance.name, target, live)
771 2a10865c Iustin Pop
  except errors.HypervisorError, err:
772 2a10865c Iustin Pop
    msg = "Failed to migrate instance: %s" % str(err)
773 18682bca Iustin Pop
    logging.error(msg)
774 2a10865c Iustin Pop
    return (False, msg)
775 2a10865c Iustin Pop
  return (True, "Migration successfull")
776 2a10865c Iustin Pop
777 2a10865c Iustin Pop
778 3f78eef2 Iustin Pop
def CreateBlockDevice(disk, size, owner, on_primary, info):
779 a8083063 Iustin Pop
  """Creates a block device for an instance.
780 a8083063 Iustin Pop

781 a8083063 Iustin Pop
  Args:
782 c99a3cc0 Manuel Franceschini
   disk: a ganeti.objects.Disk object
783 c99a3cc0 Manuel Franceschini
   size: the size of the physical underlying device
784 c99a3cc0 Manuel Franceschini
   owner: a string with the name of the instance
785 6c8af3d0 Manuel Franceschini
   on_primary: a boolean indicating if it is the primary node or not
786 6c8af3d0 Manuel Franceschini
   info: string that will be sent to the physical device creation
787 a8083063 Iustin Pop

788 a8083063 Iustin Pop
  Returns:
789 a8083063 Iustin Pop
    the new unique_id of the device (this can sometime be
790 a8083063 Iustin Pop
    computed only after creation), or None. On secondary nodes,
791 a8083063 Iustin Pop
    it's not required to return anything.
792 a8083063 Iustin Pop

793 a8083063 Iustin Pop
  """
794 a8083063 Iustin Pop
  clist = []
795 a8083063 Iustin Pop
  if disk.children:
796 a8083063 Iustin Pop
    for child in disk.children:
797 3f78eef2 Iustin Pop
      crdev = _RecursiveAssembleBD(child, owner, on_primary)
798 a8083063 Iustin Pop
      if on_primary or disk.AssembleOnSecondary():
799 a8083063 Iustin Pop
        # we need the children open in case the device itself has to
800 a8083063 Iustin Pop
        # be assembled
801 a8083063 Iustin Pop
        crdev.Open()
802 a8083063 Iustin Pop
      clist.append(crdev)
803 a8083063 Iustin Pop
  try:
804 a8083063 Iustin Pop
    device = bdev.FindDevice(disk.dev_type, disk.physical_id, clist)
805 a8083063 Iustin Pop
    if device is not None:
806 18682bca Iustin Pop
      logging.info("removing existing device %s", disk)
807 a8083063 Iustin Pop
      device.Remove()
808 a8083063 Iustin Pop
  except errors.BlockDeviceError, err:
809 a8083063 Iustin Pop
    pass
810 a8083063 Iustin Pop
811 a8083063 Iustin Pop
  device = bdev.Create(disk.dev_type, disk.physical_id,
812 a8083063 Iustin Pop
                       clist, size)
813 a8083063 Iustin Pop
  if device is None:
814 a8083063 Iustin Pop
    raise ValueError("Can't create child device for %s, %s" %
815 a8083063 Iustin Pop
                     (disk, size))
816 a8083063 Iustin Pop
  if on_primary or disk.AssembleOnSecondary():
817 cf5a8306 Iustin Pop
    if not device.Assemble():
818 20a0c9ef Guido Trotter
      errorstring = "Can't assemble device after creation"
819 18682bca Iustin Pop
      logging.error(errorstring)
820 20a0c9ef Guido Trotter
      raise errors.BlockDeviceError("%s, very unusual event - check the node"
821 20a0c9ef Guido Trotter
                                    " daemon logs" % errorstring)
822 e31c43f7 Michael Hanselmann
    device.SetSyncSpeed(constants.SYNC_SPEED)
823 a8083063 Iustin Pop
    if on_primary or disk.OpenOnSecondary():
824 a8083063 Iustin Pop
      device.Open(force=True)
825 3f78eef2 Iustin Pop
    DevCacheManager.UpdateCache(device.dev_path, owner,
826 3f78eef2 Iustin Pop
                                on_primary, disk.iv_name)
827 a0c3fea1 Michael Hanselmann
828 a0c3fea1 Michael Hanselmann
  device.SetInfo(info)
829 a0c3fea1 Michael Hanselmann
830 a8083063 Iustin Pop
  physical_id = device.unique_id
831 a8083063 Iustin Pop
  return physical_id
832 a8083063 Iustin Pop
833 a8083063 Iustin Pop
834 a8083063 Iustin Pop
def RemoveBlockDevice(disk):
835 a8083063 Iustin Pop
  """Remove a block device.
836 a8083063 Iustin Pop

837 a8083063 Iustin Pop
  This is intended to be called recursively.
838 a8083063 Iustin Pop

839 a8083063 Iustin Pop
  """
840 a8083063 Iustin Pop
  try:
841 a8083063 Iustin Pop
    # since we are removing the device, allow a partial match
842 a8083063 Iustin Pop
    # this allows removal of broken mirrors
843 a8083063 Iustin Pop
    rdev = _RecursiveFindBD(disk, allow_partial=True)
844 a8083063 Iustin Pop
  except errors.BlockDeviceError, err:
845 a8083063 Iustin Pop
    # probably can't attach
846 18682bca Iustin Pop
    logging.info("Can't attach to device %s in remove", disk)
847 a8083063 Iustin Pop
    rdev = None
848 a8083063 Iustin Pop
  if rdev is not None:
849 3f78eef2 Iustin Pop
    r_path = rdev.dev_path
850 a8083063 Iustin Pop
    result = rdev.Remove()
851 3f78eef2 Iustin Pop
    if result:
852 3f78eef2 Iustin Pop
      DevCacheManager.RemoveCache(r_path)
853 a8083063 Iustin Pop
  else:
854 a8083063 Iustin Pop
    result = True
855 a8083063 Iustin Pop
  if disk.children:
856 a8083063 Iustin Pop
    for child in disk.children:
857 a8083063 Iustin Pop
      result = result and RemoveBlockDevice(child)
858 a8083063 Iustin Pop
  return result
859 a8083063 Iustin Pop
860 a8083063 Iustin Pop
861 3f78eef2 Iustin Pop
def _RecursiveAssembleBD(disk, owner, as_primary):
862 a8083063 Iustin Pop
  """Activate a block device for an instance.
863 a8083063 Iustin Pop

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

866 a8083063 Iustin Pop
  This function is called recursively.
867 a8083063 Iustin Pop

868 a8083063 Iustin Pop
  Args:
869 a8083063 Iustin Pop
    disk: a objects.Disk object
870 a8083063 Iustin Pop
    as_primary: if we should make the block device read/write
871 a8083063 Iustin Pop

872 a8083063 Iustin Pop
  Returns:
873 a8083063 Iustin Pop
    the assembled device or None (in case no device was assembled)
874 a8083063 Iustin Pop

875 a8083063 Iustin Pop
  If the assembly is not successful, an exception is raised.
876 a8083063 Iustin Pop

877 a8083063 Iustin Pop
  """
878 a8083063 Iustin Pop
  children = []
879 a8083063 Iustin Pop
  if disk.children:
880 fc1dc9d7 Iustin Pop
    mcn = disk.ChildrenNeeded()
881 fc1dc9d7 Iustin Pop
    if mcn == -1:
882 fc1dc9d7 Iustin Pop
      mcn = 0 # max number of Nones allowed
883 fc1dc9d7 Iustin Pop
    else:
884 fc1dc9d7 Iustin Pop
      mcn = len(disk.children) - mcn # max number of Nones
885 a8083063 Iustin Pop
    for chld_disk in disk.children:
886 fc1dc9d7 Iustin Pop
      try:
887 fc1dc9d7 Iustin Pop
        cdev = _RecursiveAssembleBD(chld_disk, owner, as_primary)
888 fc1dc9d7 Iustin Pop
      except errors.BlockDeviceError, err:
889 7803d4d3 Iustin Pop
        if children.count(None) >= mcn:
890 fc1dc9d7 Iustin Pop
          raise
891 fc1dc9d7 Iustin Pop
        cdev = None
892 18682bca Iustin Pop
        logging.debug("Error in child activation: %s", str(err))
893 fc1dc9d7 Iustin Pop
      children.append(cdev)
894 a8083063 Iustin Pop
895 a8083063 Iustin Pop
  if as_primary or disk.AssembleOnSecondary():
896 a8083063 Iustin Pop
    r_dev = bdev.AttachOrAssemble(disk.dev_type, disk.physical_id, children)
897 e31c43f7 Michael Hanselmann
    r_dev.SetSyncSpeed(constants.SYNC_SPEED)
898 a8083063 Iustin Pop
    result = r_dev
899 a8083063 Iustin Pop
    if as_primary or disk.OpenOnSecondary():
900 a8083063 Iustin Pop
      r_dev.Open()
901 3f78eef2 Iustin Pop
    DevCacheManager.UpdateCache(r_dev.dev_path, owner,
902 3f78eef2 Iustin Pop
                                as_primary, disk.iv_name)
903 3f78eef2 Iustin Pop
904 a8083063 Iustin Pop
  else:
905 a8083063 Iustin Pop
    result = True
906 a8083063 Iustin Pop
  return result
907 a8083063 Iustin Pop
908 a8083063 Iustin Pop
909 3f78eef2 Iustin Pop
def AssembleBlockDevice(disk, owner, as_primary):
910 a8083063 Iustin Pop
  """Activate a block device for an instance.
911 a8083063 Iustin Pop

912 a8083063 Iustin Pop
  This is a wrapper over _RecursiveAssembleBD.
913 a8083063 Iustin Pop

914 a8083063 Iustin Pop
  Returns:
915 a8083063 Iustin Pop
    a /dev path for primary nodes
916 a8083063 Iustin Pop
    True for secondary nodes
917 a8083063 Iustin Pop

918 a8083063 Iustin Pop
  """
919 3f78eef2 Iustin Pop
  result = _RecursiveAssembleBD(disk, owner, as_primary)
920 a8083063 Iustin Pop
  if isinstance(result, bdev.BlockDev):
921 a8083063 Iustin Pop
    result = result.dev_path
922 a8083063 Iustin Pop
  return result
923 a8083063 Iustin Pop
924 a8083063 Iustin Pop
925 a8083063 Iustin Pop
def ShutdownBlockDevice(disk):
926 a8083063 Iustin Pop
  """Shut down a block device.
927 a8083063 Iustin Pop

928 a8083063 Iustin Pop
  First, if the device is assembled (can `Attach()`), then the device
929 a8083063 Iustin Pop
  is shutdown. Then the children of the device are shutdown.
930 a8083063 Iustin Pop

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

935 a8083063 Iustin Pop
  """
936 a8083063 Iustin Pop
  r_dev = _RecursiveFindBD(disk)
937 a8083063 Iustin Pop
  if r_dev is not None:
938 3f78eef2 Iustin Pop
    r_path = r_dev.dev_path
939 a8083063 Iustin Pop
    result = r_dev.Shutdown()
940 3f78eef2 Iustin Pop
    if result:
941 3f78eef2 Iustin Pop
      DevCacheManager.RemoveCache(r_path)
942 a8083063 Iustin Pop
  else:
943 a8083063 Iustin Pop
    result = True
944 a8083063 Iustin Pop
  if disk.children:
945 a8083063 Iustin Pop
    for child in disk.children:
946 a8083063 Iustin Pop
      result = result and ShutdownBlockDevice(child)
947 a8083063 Iustin Pop
  return result
948 a8083063 Iustin Pop
949 a8083063 Iustin Pop
950 153d9724 Iustin Pop
def MirrorAddChildren(parent_cdev, new_cdevs):
951 153d9724 Iustin Pop
  """Extend a mirrored block device.
952 a8083063 Iustin Pop

953 a8083063 Iustin Pop
  """
954 153d9724 Iustin Pop
  parent_bdev = _RecursiveFindBD(parent_cdev, allow_partial=True)
955 153d9724 Iustin Pop
  if parent_bdev is None:
956 18682bca Iustin Pop
    logging.error("Can't find parent device")
957 a8083063 Iustin Pop
    return False
958 153d9724 Iustin Pop
  new_bdevs = [_RecursiveFindBD(disk) for disk in new_cdevs]
959 153d9724 Iustin Pop
  if new_bdevs.count(None) > 0:
960 18682bca Iustin Pop
    logging.error("Can't find new device(s) to add: %s:%s",
961 18682bca Iustin Pop
                  new_bdevs, new_cdevs)
962 a8083063 Iustin Pop
    return False
963 153d9724 Iustin Pop
  parent_bdev.AddChildren(new_bdevs)
964 a8083063 Iustin Pop
  return True
965 a8083063 Iustin Pop
966 a8083063 Iustin Pop
967 153d9724 Iustin Pop
def MirrorRemoveChildren(parent_cdev, new_cdevs):
968 153d9724 Iustin Pop
  """Shrink a mirrored block device.
969 a8083063 Iustin Pop

970 a8083063 Iustin Pop
  """
971 153d9724 Iustin Pop
  parent_bdev = _RecursiveFindBD(parent_cdev)
972 153d9724 Iustin Pop
  if parent_bdev is None:
973 18682bca Iustin Pop
    logging.error("Can't find parent in remove children: %s", parent_cdev)
974 a8083063 Iustin Pop
    return False
975 e739bd57 Iustin Pop
  devs = []
976 e739bd57 Iustin Pop
  for disk in new_cdevs:
977 e739bd57 Iustin Pop
    rpath = disk.StaticDevPath()
978 e739bd57 Iustin Pop
    if rpath is None:
979 e739bd57 Iustin Pop
      bd = _RecursiveFindBD(disk)
980 e739bd57 Iustin Pop
      if bd is None:
981 18682bca Iustin Pop
        logging.error("Can't find dynamic device %s while removing children",
982 18682bca Iustin Pop
                      disk)
983 e739bd57 Iustin Pop
        return False
984 e739bd57 Iustin Pop
      else:
985 e739bd57 Iustin Pop
        devs.append(bd.dev_path)
986 e739bd57 Iustin Pop
    else:
987 e739bd57 Iustin Pop
      devs.append(rpath)
988 e739bd57 Iustin Pop
  parent_bdev.RemoveChildren(devs)
989 a8083063 Iustin Pop
  return True
990 a8083063 Iustin Pop
991 a8083063 Iustin Pop
992 a8083063 Iustin Pop
def GetMirrorStatus(disks):
993 a8083063 Iustin Pop
  """Get the mirroring status of a list of devices.
994 a8083063 Iustin Pop

995 a8083063 Iustin Pop
  Args:
996 a8083063 Iustin Pop
    disks: list of `objects.Disk`
997 a8083063 Iustin Pop

998 a8083063 Iustin Pop
  Returns:
999 a8083063 Iustin Pop
    list of (mirror_done, estimated_time) tuples, which
1000 a8083063 Iustin Pop
    are the result of bdev.BlockDevice.CombinedSyncStatus()
1001 a8083063 Iustin Pop

1002 a8083063 Iustin Pop
  """
1003 a8083063 Iustin Pop
  stats = []
1004 a8083063 Iustin Pop
  for dsk in disks:
1005 a8083063 Iustin Pop
    rbd = _RecursiveFindBD(dsk)
1006 a8083063 Iustin Pop
    if rbd is None:
1007 3ecf6786 Iustin Pop
      raise errors.BlockDeviceError("Can't find device %s" % str(dsk))
1008 a8083063 Iustin Pop
    stats.append(rbd.CombinedSyncStatus())
1009 a8083063 Iustin Pop
  return stats
1010 a8083063 Iustin Pop
1011 a8083063 Iustin Pop
1012 a8083063 Iustin Pop
def _RecursiveFindBD(disk, allow_partial=False):
1013 a8083063 Iustin Pop
  """Check if a device is activated.
1014 a8083063 Iustin Pop

1015 a8083063 Iustin Pop
  If so, return informations about the real device.
1016 a8083063 Iustin Pop

1017 a8083063 Iustin Pop
  Args:
1018 a8083063 Iustin Pop
    disk: the objects.Disk instance
1019 a8083063 Iustin Pop
    allow_partial: don't abort the find if a child of the
1020 a8083063 Iustin Pop
                   device can't be found; this is intended to be
1021 a8083063 Iustin Pop
                   used when repairing mirrors
1022 a8083063 Iustin Pop

1023 a8083063 Iustin Pop
  Returns:
1024 a8083063 Iustin Pop
    None if the device can't be found
1025 a8083063 Iustin Pop
    otherwise the device instance
1026 a8083063 Iustin Pop

1027 a8083063 Iustin Pop
  """
1028 a8083063 Iustin Pop
  children = []
1029 a8083063 Iustin Pop
  if disk.children:
1030 a8083063 Iustin Pop
    for chdisk in disk.children:
1031 a8083063 Iustin Pop
      children.append(_RecursiveFindBD(chdisk))
1032 a8083063 Iustin Pop
1033 a8083063 Iustin Pop
  return bdev.FindDevice(disk.dev_type, disk.physical_id, children)
1034 a8083063 Iustin Pop
1035 a8083063 Iustin Pop
1036 a8083063 Iustin Pop
def FindBlockDevice(disk):
1037 a8083063 Iustin Pop
  """Check if a device is activated.
1038 a8083063 Iustin Pop

1039 a8083063 Iustin Pop
  If so, return informations about the real device.
1040 a8083063 Iustin Pop

1041 a8083063 Iustin Pop
  Args:
1042 a8083063 Iustin Pop
    disk: the objects.Disk instance
1043 a8083063 Iustin Pop
  Returns:
1044 a8083063 Iustin Pop
    None if the device can't be found
1045 a8083063 Iustin Pop
    (device_path, major, minor, sync_percent, estimated_time, is_degraded)
1046 a8083063 Iustin Pop

1047 a8083063 Iustin Pop
  """
1048 a8083063 Iustin Pop
  rbd = _RecursiveFindBD(disk)
1049 a8083063 Iustin Pop
  if rbd is None:
1050 a8083063 Iustin Pop
    return rbd
1051 0834c866 Iustin Pop
  return (rbd.dev_path, rbd.major, rbd.minor) + rbd.GetSyncStatus()
1052 a8083063 Iustin Pop
1053 a8083063 Iustin Pop
1054 a8083063 Iustin Pop
def UploadFile(file_name, data, mode, uid, gid, atime, mtime):
1055 a8083063 Iustin Pop
  """Write a file to the filesystem.
1056 a8083063 Iustin Pop

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

1060 a8083063 Iustin Pop
  """
1061 a8083063 Iustin Pop
  if not os.path.isabs(file_name):
1062 18682bca Iustin Pop
    logging.error("Filename passed to UploadFile is not absolute: '%s'",
1063 18682bca Iustin Pop
                  file_name)
1064 a8083063 Iustin Pop
    return False
1065 a8083063 Iustin Pop
1066 97628462 Iustin Pop
  allowed_files = [
1067 97628462 Iustin Pop
    constants.CLUSTER_CONF_FILE,
1068 97628462 Iustin Pop
    constants.ETC_HOSTS,
1069 97628462 Iustin Pop
    constants.SSH_KNOWN_HOSTS_FILE,
1070 90fae627 Guido Trotter
    constants.VNC_PASSWORD_FILE,
1071 97628462 Iustin Pop
    ]
1072 afee8008 Michael Hanselmann
1073 553f1c1d Michael Hanselmann
  if file_name not in allowed_files:
1074 18682bca Iustin Pop
    logging.error("Filename passed to UploadFile not in allowed"
1075 18682bca Iustin Pop
                 " upload targets: '%s'", file_name)
1076 a8083063 Iustin Pop
    return False
1077 a8083063 Iustin Pop
1078 41a57aab Michael Hanselmann
  utils.WriteFile(file_name, data=data, mode=mode, uid=uid, gid=gid,
1079 41a57aab Michael Hanselmann
                  atime=atime, mtime=mtime)
1080 a8083063 Iustin Pop
  return True
1081 a8083063 Iustin Pop
1082 386b57af Iustin Pop
1083 a8083063 Iustin Pop
def _ErrnoOrStr(err):
1084 a8083063 Iustin Pop
  """Format an EnvironmentError exception.
1085 a8083063 Iustin Pop

1086 a8083063 Iustin Pop
  If the `err` argument has an errno attribute, it will be looked up
1087 a8083063 Iustin Pop
  and converted into a textual EXXXX description. Otherwise the string
1088 a8083063 Iustin Pop
  representation of the error will be returned.
1089 a8083063 Iustin Pop

1090 a8083063 Iustin Pop
  """
1091 a8083063 Iustin Pop
  if hasattr(err, 'errno'):
1092 a8083063 Iustin Pop
    detail = errno.errorcode[err.errno]
1093 a8083063 Iustin Pop
  else:
1094 a8083063 Iustin Pop
    detail = str(err)
1095 a8083063 Iustin Pop
  return detail
1096 a8083063 Iustin Pop
1097 5d0fe286 Iustin Pop
1098 c26dabd7 Guido Trotter
def _OSOndiskVersion(name, os_dir):
1099 2f8598a5 Alexander Schreiber
  """Compute and return the API version of a given OS.
1100 a8083063 Iustin Pop

1101 2f8598a5 Alexander Schreiber
  This function will try to read the API version of the os given by
1102 7c3d51d4 Guido Trotter
  the 'name' parameter and residing in the 'os_dir' directory.
1103 7c3d51d4 Guido Trotter

1104 7c3d51d4 Guido Trotter
  Return value will be either an integer denoting the version or None in the
1105 7c3d51d4 Guido Trotter
  case when this is not a valid OS name.
1106 a8083063 Iustin Pop

1107 a8083063 Iustin Pop
  """
1108 a8083063 Iustin Pop
  api_file = os.path.sep.join([os_dir, "ganeti_api_version"])
1109 a8083063 Iustin Pop
1110 a8083063 Iustin Pop
  try:
1111 a8083063 Iustin Pop
    st = os.stat(api_file)
1112 a8083063 Iustin Pop
  except EnvironmentError, err:
1113 305a7297 Guido Trotter
    raise errors.InvalidOS(name, os_dir, "'ganeti_api_version' file not"
1114 3ecf6786 Iustin Pop
                           " found (%s)" % _ErrnoOrStr(err))
1115 a8083063 Iustin Pop
1116 a8083063 Iustin Pop
  if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1117 305a7297 Guido Trotter
    raise errors.InvalidOS(name, os_dir, "'ganeti_api_version' file is not"
1118 3ecf6786 Iustin Pop
                           " a regular file")
1119 a8083063 Iustin Pop
1120 a8083063 Iustin Pop
  try:
1121 a8083063 Iustin Pop
    f = open(api_file)
1122 a8083063 Iustin Pop
    try:
1123 082a7f91 Guido Trotter
      api_versions = f.readlines()
1124 a8083063 Iustin Pop
    finally:
1125 a8083063 Iustin Pop
      f.close()
1126 a8083063 Iustin Pop
  except EnvironmentError, err:
1127 305a7297 Guido Trotter
    raise errors.InvalidOS(name, os_dir, "error while reading the"
1128 3ecf6786 Iustin Pop
                           " API version (%s)" % _ErrnoOrStr(err))
1129 a8083063 Iustin Pop
1130 082a7f91 Guido Trotter
  api_versions = [version.strip() for version in api_versions]
1131 a8083063 Iustin Pop
  try:
1132 082a7f91 Guido Trotter
    api_versions = [int(version) for version in api_versions]
1133 a8083063 Iustin Pop
  except (TypeError, ValueError), err:
1134 305a7297 Guido Trotter
    raise errors.InvalidOS(name, os_dir,
1135 305a7297 Guido Trotter
                           "API version is not integer (%s)" % str(err))
1136 a8083063 Iustin Pop
1137 082a7f91 Guido Trotter
  return api_versions
1138 a8083063 Iustin Pop
1139 386b57af Iustin Pop
1140 7c3d51d4 Guido Trotter
def DiagnoseOS(top_dirs=None):
1141 a8083063 Iustin Pop
  """Compute the validity for all OSes.
1142 a8083063 Iustin Pop

1143 8fa42c7c Guido Trotter
  Returns an OS object for each name in all the given top directories
1144 8fa42c7c Guido Trotter
  (if not given defaults to constants.OS_SEARCH_PATH)
1145 a8083063 Iustin Pop

1146 a8083063 Iustin Pop
  Returns:
1147 8fa42c7c Guido Trotter
    list of OS objects
1148 a8083063 Iustin Pop

1149 a8083063 Iustin Pop
  """
1150 7c3d51d4 Guido Trotter
  if top_dirs is None:
1151 7c3d51d4 Guido Trotter
    top_dirs = constants.OS_SEARCH_PATH
1152 a8083063 Iustin Pop
1153 a8083063 Iustin Pop
  result = []
1154 65fe4693 Iustin Pop
  for dir_name in top_dirs:
1155 65fe4693 Iustin Pop
    if os.path.isdir(dir_name):
1156 7c3d51d4 Guido Trotter
      try:
1157 65fe4693 Iustin Pop
        f_names = utils.ListVisibleFiles(dir_name)
1158 7c3d51d4 Guido Trotter
      except EnvironmentError, err:
1159 18682bca Iustin Pop
        logging.exception("Can't list the OS directory %s", dir_name)
1160 7c3d51d4 Guido Trotter
        break
1161 7c3d51d4 Guido Trotter
      for name in f_names:
1162 7c3d51d4 Guido Trotter
        try:
1163 65fe4693 Iustin Pop
          os_inst = OSFromDisk(name, base_dir=dir_name)
1164 7c3d51d4 Guido Trotter
          result.append(os_inst)
1165 7c3d51d4 Guido Trotter
        except errors.InvalidOS, err:
1166 8fa42c7c Guido Trotter
          result.append(objects.OS.FromInvalidOS(err))
1167 a8083063 Iustin Pop
1168 a8083063 Iustin Pop
  return result
1169 a8083063 Iustin Pop
1170 a8083063 Iustin Pop
1171 56bcd3f4 Guido Trotter
def OSFromDisk(name, base_dir=None):
1172 a8083063 Iustin Pop
  """Create an OS instance from disk.
1173 a8083063 Iustin Pop

1174 a8083063 Iustin Pop
  This function will return an OS instance if the given name is a
1175 a8083063 Iustin Pop
  valid OS name. Otherwise, it will raise an appropriate
1176 a8083063 Iustin Pop
  `errors.InvalidOS` exception, detailing why this is not a valid
1177 a8083063 Iustin Pop
  OS.
1178 a8083063 Iustin Pop

1179 8ee4dc80 Guido Trotter
  @type base_dir: string
1180 8ee4dc80 Guido Trotter
  @keyword base_dir: Base directory containing OS installations.
1181 8ee4dc80 Guido Trotter
                     Defaults to a search in all the OS_SEARCH_PATH dirs.
1182 7c3d51d4 Guido Trotter

1183 a8083063 Iustin Pop
  """
1184 7c3d51d4 Guido Trotter
1185 56bcd3f4 Guido Trotter
  if base_dir is None:
1186 57c177af Iustin Pop
    os_dir = utils.FindFile(name, constants.OS_SEARCH_PATH, os.path.isdir)
1187 c34c0cfd Iustin Pop
    if os_dir is None:
1188 c34c0cfd Iustin Pop
      raise errors.InvalidOS(name, None, "OS dir not found in search path")
1189 c34c0cfd Iustin Pop
  else:
1190 c34c0cfd Iustin Pop
    os_dir = os.path.sep.join([base_dir, name])
1191 a8083063 Iustin Pop
1192 082a7f91 Guido Trotter
  api_versions = _OSOndiskVersion(name, os_dir)
1193 a8083063 Iustin Pop
1194 082a7f91 Guido Trotter
  if constants.OS_API_VERSION not in api_versions:
1195 305a7297 Guido Trotter
    raise errors.InvalidOS(name, os_dir, "API version mismatch"
1196 305a7297 Guido Trotter
                           " (found %s want %s)"
1197 082a7f91 Guido Trotter
                           % (api_versions, constants.OS_API_VERSION))
1198 a8083063 Iustin Pop
1199 a8083063 Iustin Pop
  # OS Scripts dictionary, we will populate it with the actual script names
1200 62dbbe7e Guido Trotter
  os_scripts = dict.fromkeys(constants.OS_SCRIPTS)
1201 a8083063 Iustin Pop
1202 a8083063 Iustin Pop
  for script in os_scripts:
1203 a8083063 Iustin Pop
    os_scripts[script] = os.path.sep.join([os_dir, script])
1204 a8083063 Iustin Pop
1205 a8083063 Iustin Pop
    try:
1206 a8083063 Iustin Pop
      st = os.stat(os_scripts[script])
1207 a8083063 Iustin Pop
    except EnvironmentError, err:
1208 305a7297 Guido Trotter
      raise errors.InvalidOS(name, os_dir, "'%s' script missing (%s)" %
1209 3ecf6786 Iustin Pop
                             (script, _ErrnoOrStr(err)))
1210 a8083063 Iustin Pop
1211 a8083063 Iustin Pop
    if stat.S_IMODE(st.st_mode) & stat.S_IXUSR != stat.S_IXUSR:
1212 305a7297 Guido Trotter
      raise errors.InvalidOS(name, os_dir, "'%s' script not executable" %
1213 305a7297 Guido Trotter
                             script)
1214 a8083063 Iustin Pop
1215 a8083063 Iustin Pop
    if not stat.S_ISREG(stat.S_IFMT(st.st_mode)):
1216 305a7297 Guido Trotter
      raise errors.InvalidOS(name, os_dir, "'%s' is not a regular file" %
1217 305a7297 Guido Trotter
                             script)
1218 a8083063 Iustin Pop
1219 a8083063 Iustin Pop
1220 8fa42c7c Guido Trotter
  return objects.OS(name=name, path=os_dir, status=constants.OS_VALID_STATUS,
1221 62dbbe7e Guido Trotter
                    create_script=os_scripts[constants.OS_SCRIPT_CREATE],
1222 62dbbe7e Guido Trotter
                    export_script=os_scripts[constants.OS_SCRIPT_EXPORT],
1223 62dbbe7e Guido Trotter
                    import_script=os_scripts[constants.OS_SCRIPT_IMPORT],
1224 62dbbe7e Guido Trotter
                    rename_script=os_scripts[constants.OS_SCRIPT_RENAME],
1225 082a7f91 Guido Trotter
                    api_versions=api_versions)
1226 a8083063 Iustin Pop
1227 2266edb2 Guido Trotter
def OSEnvironment(instance, debug=0):
1228 2266edb2 Guido Trotter
  """Calculate the environment for an os script.
1229 2266edb2 Guido Trotter

1230 2266edb2 Guido Trotter
  @type instance: instance object
1231 2266edb2 Guido Trotter
  @param instance: target instance for the os script run
1232 2266edb2 Guido Trotter
  @type debug: integer
1233 2266edb2 Guido Trotter
  @param debug: debug level (0 or 1, for os api 10)
1234 2266edb2 Guido Trotter
  @rtype: dict
1235 2266edb2 Guido Trotter
  @return: dict of environment variables
1236 2266edb2 Guido Trotter

1237 2266edb2 Guido Trotter
  """
1238 2266edb2 Guido Trotter
  result = {}
1239 2266edb2 Guido Trotter
  result['OS_API_VERSION'] = '%d' % constants.OS_API_VERSION
1240 2266edb2 Guido Trotter
  result['INSTANCE_NAME'] = instance.name
1241 2266edb2 Guido Trotter
  result['HYPERVISOR'] = instance.hypervisor
1242 2266edb2 Guido Trotter
  result['DISK_COUNT'] = '%d' % len(instance.disks)
1243 2266edb2 Guido Trotter
  result['NIC_COUNT'] = '%d' % len(instance.nics)
1244 2266edb2 Guido Trotter
  result['DEBUG_LEVEL'] = '%d' % debug
1245 2266edb2 Guido Trotter
  for idx, disk in enumerate(instance.disks):
1246 2266edb2 Guido Trotter
    real_disk = _RecursiveFindBD(disk)
1247 2266edb2 Guido Trotter
    if real_disk is None:
1248 2266edb2 Guido Trotter
      raise errors.BlockDeviceError("Block device '%s' is not set up" %
1249 2266edb2 Guido Trotter
                                    str(disk))
1250 2266edb2 Guido Trotter
    real_disk.Open()
1251 2266edb2 Guido Trotter
    result['DISK_%d_PATH' % idx] = real_disk.dev_path
1252 2266edb2 Guido Trotter
    # FIXME: When disks will have read-only mode, populate this
1253 2266edb2 Guido Trotter
    result['DISK_%d_ACCESS' % idx] = 'W'
1254 2266edb2 Guido Trotter
    if constants.HV_DISK_TYPE in instance.hvparams:
1255 2266edb2 Guido Trotter
      result['DISK_%d_FRONTEND_TYPE' % idx] = \
1256 2266edb2 Guido Trotter
        instance.hvparams[constants.HV_DISK_TYPE]
1257 2266edb2 Guido Trotter
    if disk.dev_type in constants.LDS_BLOCK:
1258 2266edb2 Guido Trotter
      result['DISK_%d_BACKEND_TYPE' % idx] = 'block'
1259 2266edb2 Guido Trotter
    elif disk.dev_type == constants.LD_FILE:
1260 2266edb2 Guido Trotter
      result['DISK_%d_BACKEND_TYPE' % idx] = \
1261 2266edb2 Guido Trotter
        'file:%s' % disk.physical_id[0]
1262 2266edb2 Guido Trotter
  for idx, nic in enumerate(instance.nics):
1263 2266edb2 Guido Trotter
    result['NIC_%d_MAC' % idx] = nic.mac
1264 2266edb2 Guido Trotter
    if nic.ip:
1265 2266edb2 Guido Trotter
      result['NIC_%d_IP' % idx] = nic.ip
1266 2266edb2 Guido Trotter
    result['NIC_%d_BRIDGE' % idx] = nic.bridge
1267 2266edb2 Guido Trotter
    if constants.HV_NIC_TYPE in instance.hvparams:
1268 2266edb2 Guido Trotter
      result['NIC_%d_FRONTEND_TYPE' % idx] = \
1269 2266edb2 Guido Trotter
        instance.hvparams[constants.HV_NIC_TYPE]
1270 2266edb2 Guido Trotter
1271 2266edb2 Guido Trotter
  return result
1272 a8083063 Iustin Pop
1273 594609c0 Iustin Pop
def GrowBlockDevice(disk, amount):
1274 594609c0 Iustin Pop
  """Grow a stack of block devices.
1275 594609c0 Iustin Pop

1276 594609c0 Iustin Pop
  This function is called recursively, with the childrens being the
1277 594609c0 Iustin Pop
  first one resize.
1278 594609c0 Iustin Pop

1279 594609c0 Iustin Pop
  Args:
1280 594609c0 Iustin Pop
    disk: the disk to be grown
1281 594609c0 Iustin Pop

1282 594609c0 Iustin Pop
  Returns: a tuple of (status, result), with:
1283 594609c0 Iustin Pop
    status: the result (true/false) of the operation
1284 594609c0 Iustin Pop
    result: the error message if the operation failed, otherwise not used
1285 594609c0 Iustin Pop

1286 594609c0 Iustin Pop
  """
1287 594609c0 Iustin Pop
  r_dev = _RecursiveFindBD(disk)
1288 594609c0 Iustin Pop
  if r_dev is None:
1289 594609c0 Iustin Pop
    return False, "Cannot find block device %s" % (disk,)
1290 594609c0 Iustin Pop
1291 594609c0 Iustin Pop
  try:
1292 594609c0 Iustin Pop
    r_dev.Grow(amount)
1293 594609c0 Iustin Pop
  except errors.BlockDeviceError, err:
1294 594609c0 Iustin Pop
    return False, str(err)
1295 594609c0 Iustin Pop
1296 594609c0 Iustin Pop
  return True, None
1297 594609c0 Iustin Pop
1298 594609c0 Iustin Pop
1299 a8083063 Iustin Pop
def SnapshotBlockDevice(disk):
1300 a8083063 Iustin Pop
  """Create a snapshot copy of a block device.
1301 a8083063 Iustin Pop

1302 a8083063 Iustin Pop
  This function is called recursively, and the snapshot is actually created
1303 a8083063 Iustin Pop
  just for the leaf lvm backend device.
1304 a8083063 Iustin Pop

1305 a8083063 Iustin Pop
  Args:
1306 a8083063 Iustin Pop
    disk: the disk to be snapshotted
1307 a8083063 Iustin Pop

1308 a8083063 Iustin Pop
  Returns:
1309 a8083063 Iustin Pop
    a config entry for the actual lvm device snapshotted.
1310 a8083063 Iustin Pop

1311 098c0958 Michael Hanselmann
  """
1312 a8083063 Iustin Pop
  if disk.children:
1313 a8083063 Iustin Pop
    if len(disk.children) == 1:
1314 a8083063 Iustin Pop
      # only one child, let's recurse on it
1315 a8083063 Iustin Pop
      return SnapshotBlockDevice(disk.children[0])
1316 a8083063 Iustin Pop
    else:
1317 a8083063 Iustin Pop
      # more than one child, choose one that matches
1318 a8083063 Iustin Pop
      for child in disk.children:
1319 a8083063 Iustin Pop
        if child.size == disk.size:
1320 a8083063 Iustin Pop
          # return implies breaking the loop
1321 a8083063 Iustin Pop
          return SnapshotBlockDevice(child)
1322 fe96220b Iustin Pop
  elif disk.dev_type == constants.LD_LV:
1323 a8083063 Iustin Pop
    r_dev = _RecursiveFindBD(disk)
1324 a8083063 Iustin Pop
    if r_dev is not None:
1325 a8083063 Iustin Pop
      # let's stay on the safe side and ask for the full size, for now
1326 a8083063 Iustin Pop
      return r_dev.Snapshot(disk.size)
1327 a8083063 Iustin Pop
    else:
1328 a8083063 Iustin Pop
      return None
1329 a8083063 Iustin Pop
  else:
1330 3ecf6786 Iustin Pop
    raise errors.ProgrammerError("Cannot snapshot non-lvm block device"
1331 f4bc1f2c Michael Hanselmann
                                 " '%s' of type '%s'" %
1332 3ecf6786 Iustin Pop
                                 (disk.unique_id, disk.dev_type))
1333 a8083063 Iustin Pop
1334 a8083063 Iustin Pop
1335 62c9ec92 Iustin Pop
def ExportSnapshot(disk, dest_node, instance, cluster_name):
1336 a8083063 Iustin Pop
  """Export a block device snapshot to a remote node.
1337 a8083063 Iustin Pop

1338 a8083063 Iustin Pop
  Args:
1339 a8083063 Iustin Pop
    disk: the snapshot block device
1340 a8083063 Iustin Pop
    dest_node: the node to send the image to
1341 a8083063 Iustin Pop
    instance: instance being exported
1342 a8083063 Iustin Pop

1343 a8083063 Iustin Pop
  Returns:
1344 a8083063 Iustin Pop
    True if successful, False otherwise.
1345 a8083063 Iustin Pop

1346 098c0958 Michael Hanselmann
  """
1347 d324e3fc Guido Trotter
  # TODO(ultrotter): Import/Export still to be converted to OS API 10
1348 d324e3fc Guido Trotter
  logging.error("Import/Export still to be converted to OS API 10")
1349 d324e3fc Guido Trotter
  return False
1350 d324e3fc Guido Trotter
1351 a8083063 Iustin Pop
  inst_os = OSFromDisk(instance.os)
1352 a8083063 Iustin Pop
  export_script = inst_os.export_script
1353 a8083063 Iustin Pop
1354 a8083063 Iustin Pop
  logfile = "%s/exp-%s-%s-%s.log" % (constants.LOG_OS_DIR, inst_os.name,
1355 a8083063 Iustin Pop
                                     instance.name, int(time.time()))
1356 a8083063 Iustin Pop
  if not os.path.exists(constants.LOG_OS_DIR):
1357 a8083063 Iustin Pop
    os.mkdir(constants.LOG_OS_DIR, 0750)
1358 a8083063 Iustin Pop
1359 a8083063 Iustin Pop
  real_os_dev = _RecursiveFindBD(disk)
1360 a8083063 Iustin Pop
  if real_os_dev is None:
1361 a8083063 Iustin Pop
    raise errors.BlockDeviceError("Block device '%s' is not set up" %
1362 a8083063 Iustin Pop
                                  str(disk))
1363 a8083063 Iustin Pop
  real_os_dev.Open()
1364 a8083063 Iustin Pop
1365 a8083063 Iustin Pop
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1366 a8083063 Iustin Pop
  destfile = disk.physical_id[1]
1367 a8083063 Iustin Pop
1368 a8083063 Iustin Pop
  # the target command is built out of three individual commands,
1369 a8083063 Iustin Pop
  # which are joined by pipes; we check each individual command for
1370 a8083063 Iustin Pop
  # valid parameters
1371 a8083063 Iustin Pop
1372 a8083063 Iustin Pop
  expcmd = utils.BuildShellCmd("cd %s; %s -i %s -b %s 2>%s", inst_os.path,
1373 a8083063 Iustin Pop
                               export_script, instance.name,
1374 a8083063 Iustin Pop
                               real_os_dev.dev_path, logfile)
1375 a8083063 Iustin Pop
1376 a8083063 Iustin Pop
  comprcmd = "gzip"
1377 a8083063 Iustin Pop
1378 72f0f7fd Iustin Pop
  destcmd = utils.BuildShellCmd("mkdir -p %s && cat > %s/%s",
1379 00003458 Guido Trotter
                                destdir, destdir, destfile)
1380 62c9ec92 Iustin Pop
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(dest_node,
1381 62c9ec92 Iustin Pop
                                                   constants.GANETI_RUNAS,
1382 62c9ec92 Iustin Pop
                                                   destcmd)
1383 a8083063 Iustin Pop
1384 a8083063 Iustin Pop
  # all commands have been checked, so we're safe to combine them
1385 72f0f7fd Iustin Pop
  command = '|'.join([expcmd, comprcmd, utils.ShellQuoteArgs(remotecmd)])
1386 a8083063 Iustin Pop
1387 a8083063 Iustin Pop
  result = utils.RunCmd(command)
1388 a8083063 Iustin Pop
1389 a8083063 Iustin Pop
  if result.failed:
1390 18682bca Iustin Pop
    logging.error("os snapshot export command '%s' returned error: %s"
1391 18682bca Iustin Pop
                  " output: %s", command, result.fail_reason, result.output)
1392 a8083063 Iustin Pop
    return False
1393 a8083063 Iustin Pop
1394 a8083063 Iustin Pop
  return True
1395 a8083063 Iustin Pop
1396 a8083063 Iustin Pop
1397 a8083063 Iustin Pop
def FinalizeExport(instance, snap_disks):
1398 a8083063 Iustin Pop
  """Write out the export configuration information.
1399 a8083063 Iustin Pop

1400 a8083063 Iustin Pop
  Args:
1401 a8083063 Iustin Pop
    instance: instance configuration
1402 a8083063 Iustin Pop
    snap_disks: snapshot block devices
1403 a8083063 Iustin Pop

1404 a8083063 Iustin Pop
  Returns:
1405 a8083063 Iustin Pop
    False in case of error, True otherwise.
1406 a8083063 Iustin Pop

1407 098c0958 Michael Hanselmann
  """
1408 a8083063 Iustin Pop
  destdir = os.path.join(constants.EXPORT_DIR, instance.name + ".new")
1409 a8083063 Iustin Pop
  finaldestdir = os.path.join(constants.EXPORT_DIR, instance.name)
1410 a8083063 Iustin Pop
1411 a8083063 Iustin Pop
  config = objects.SerializableConfigParser()
1412 a8083063 Iustin Pop
1413 a8083063 Iustin Pop
  config.add_section(constants.INISECT_EXP)
1414 a8083063 Iustin Pop
  config.set(constants.INISECT_EXP, 'version', '0')
1415 a8083063 Iustin Pop
  config.set(constants.INISECT_EXP, 'timestamp', '%d' % int(time.time()))
1416 a8083063 Iustin Pop
  config.set(constants.INISECT_EXP, 'source', instance.primary_node)
1417 a8083063 Iustin Pop
  config.set(constants.INISECT_EXP, 'os', instance.os)
1418 a8083063 Iustin Pop
  config.set(constants.INISECT_EXP, 'compression', 'gzip')
1419 a8083063 Iustin Pop
1420 a8083063 Iustin Pop
  config.add_section(constants.INISECT_INS)
1421 a8083063 Iustin Pop
  config.set(constants.INISECT_INS, 'name', instance.name)
1422 51de46bf Iustin Pop
  config.set(constants.INISECT_INS, 'memory', '%d' %
1423 51de46bf Iustin Pop
             instance.beparams[constants.BE_MEMORY])
1424 51de46bf Iustin Pop
  config.set(constants.INISECT_INS, 'vcpus', '%d' %
1425 51de46bf Iustin Pop
             instance.beparams[constants.BE_VCPUS])
1426 a8083063 Iustin Pop
  config.set(constants.INISECT_INS, 'disk_template', instance.disk_template)
1427 66f93869 Manuel Franceschini
1428 66f93869 Manuel Franceschini
  nic_count = 0
1429 a8083063 Iustin Pop
  for nic_count, nic in enumerate(instance.nics):
1430 a8083063 Iustin Pop
    config.set(constants.INISECT_INS, 'nic%d_mac' %
1431 a8083063 Iustin Pop
               nic_count, '%s' % nic.mac)
1432 a8083063 Iustin Pop
    config.set(constants.INISECT_INS, 'nic%d_ip' % nic_count, '%s' % nic.ip)
1433 38206f3c Iustin Pop
    config.set(constants.INISECT_INS, 'nic%d_bridge' % nic_count,
1434 38206f3c Iustin Pop
               '%s' % nic.bridge)
1435 a8083063 Iustin Pop
  # TODO: redundant: on load can read nics until it doesn't exist
1436 a8083063 Iustin Pop
  config.set(constants.INISECT_INS, 'nic_count' , '%d' % nic_count)
1437 a8083063 Iustin Pop
1438 66f93869 Manuel Franceschini
  disk_count = 0
1439 a8083063 Iustin Pop
  for disk_count, disk in enumerate(snap_disks):
1440 a8083063 Iustin Pop
    config.set(constants.INISECT_INS, 'disk%d_ivname' % disk_count,
1441 a8083063 Iustin Pop
               ('%s' % disk.iv_name))
1442 a8083063 Iustin Pop
    config.set(constants.INISECT_INS, 'disk%d_dump' % disk_count,
1443 a8083063 Iustin Pop
               ('%s' % disk.physical_id[1]))
1444 a8083063 Iustin Pop
    config.set(constants.INISECT_INS, 'disk%d_size' % disk_count,
1445 a8083063 Iustin Pop
               ('%d' % disk.size))
1446 a8083063 Iustin Pop
  config.set(constants.INISECT_INS, 'disk_count' , '%d' % disk_count)
1447 a8083063 Iustin Pop
1448 a8083063 Iustin Pop
  cff = os.path.join(destdir, constants.EXPORT_CONF_FILE)
1449 a8083063 Iustin Pop
  cfo = open(cff, 'w')
1450 a8083063 Iustin Pop
  try:
1451 a8083063 Iustin Pop
    config.write(cfo)
1452 a8083063 Iustin Pop
  finally:
1453 a8083063 Iustin Pop
    cfo.close()
1454 a8083063 Iustin Pop
1455 a8083063 Iustin Pop
  shutil.rmtree(finaldestdir, True)
1456 a8083063 Iustin Pop
  shutil.move(destdir, finaldestdir)
1457 a8083063 Iustin Pop
1458 a8083063 Iustin Pop
  return True
1459 a8083063 Iustin Pop
1460 a8083063 Iustin Pop
1461 a8083063 Iustin Pop
def ExportInfo(dest):
1462 a8083063 Iustin Pop
  """Get export configuration information.
1463 a8083063 Iustin Pop

1464 a8083063 Iustin Pop
  Args:
1465 a8083063 Iustin Pop
    dest: directory containing the export
1466 a8083063 Iustin Pop

1467 a8083063 Iustin Pop
  Returns:
1468 a8083063 Iustin Pop
    A serializable config file containing the export info.
1469 a8083063 Iustin Pop

1470 a8083063 Iustin Pop
  """
1471 a8083063 Iustin Pop
  cff = os.path.join(dest, constants.EXPORT_CONF_FILE)
1472 a8083063 Iustin Pop
1473 a8083063 Iustin Pop
  config = objects.SerializableConfigParser()
1474 a8083063 Iustin Pop
  config.read(cff)
1475 a8083063 Iustin Pop
1476 a8083063 Iustin Pop
  if (not config.has_section(constants.INISECT_EXP) or
1477 a8083063 Iustin Pop
      not config.has_section(constants.INISECT_INS)):
1478 a8083063 Iustin Pop
    return None
1479 a8083063 Iustin Pop
1480 a8083063 Iustin Pop
  return config
1481 a8083063 Iustin Pop
1482 a8083063 Iustin Pop
1483 62c9ec92 Iustin Pop
def ImportOSIntoInstance(instance, os_disk, swap_disk, src_node, src_image,
1484 62c9ec92 Iustin Pop
                         cluster_name):
1485 a8083063 Iustin Pop
  """Import an os image into an instance.
1486 a8083063 Iustin Pop

1487 a8083063 Iustin Pop
  Args:
1488 a8083063 Iustin Pop
    instance: the instance object
1489 a8083063 Iustin Pop
    os_disk: the instance-visible name of the os device
1490 a8083063 Iustin Pop
    swap_disk: the instance-visible name of the swap device
1491 a8083063 Iustin Pop
    src_node: node holding the source image
1492 a8083063 Iustin Pop
    src_image: path to the source image on src_node
1493 a8083063 Iustin Pop

1494 a8083063 Iustin Pop
  Returns:
1495 a8083063 Iustin Pop
    False in case of error, True otherwise.
1496 a8083063 Iustin Pop

1497 a8083063 Iustin Pop
  """
1498 d324e3fc Guido Trotter
  # TODO(ultrotter): Import/Export still to be converted to OS API 10
1499 d324e3fc Guido Trotter
  logging.error("Import/Export still to be converted to OS API 10")
1500 d324e3fc Guido Trotter
  return False
1501 d324e3fc Guido Trotter
1502 a8083063 Iustin Pop
  inst_os = OSFromDisk(instance.os)
1503 a8083063 Iustin Pop
  import_script = inst_os.import_script
1504 a8083063 Iustin Pop
1505 9716fdce Iustin Pop
  os_device = instance.FindDisk(os_disk)
1506 9716fdce Iustin Pop
  if os_device is None:
1507 18682bca Iustin Pop
    logging.error("Can't find this device-visible name '%s'", os_disk)
1508 a8083063 Iustin Pop
    return False
1509 a8083063 Iustin Pop
1510 9716fdce Iustin Pop
  swap_device = instance.FindDisk(swap_disk)
1511 9716fdce Iustin Pop
  if swap_device is None:
1512 18682bca Iustin Pop
    logging.error("Can't find this device-visible name '%s'", swap_disk)
1513 a8083063 Iustin Pop
    return False
1514 a8083063 Iustin Pop
1515 a8083063 Iustin Pop
  real_os_dev = _RecursiveFindBD(os_device)
1516 a8083063 Iustin Pop
  if real_os_dev is None:
1517 3ecf6786 Iustin Pop
    raise errors.BlockDeviceError("Block device '%s' is not set up" %
1518 3ecf6786 Iustin Pop
                                  str(os_device))
1519 a8083063 Iustin Pop
  real_os_dev.Open()
1520 a8083063 Iustin Pop
1521 a8083063 Iustin Pop
  real_swap_dev = _RecursiveFindBD(swap_device)
1522 a8083063 Iustin Pop
  if real_swap_dev is None:
1523 3ecf6786 Iustin Pop
    raise errors.BlockDeviceError("Block device '%s' is not set up" %
1524 3ecf6786 Iustin Pop
                                  str(swap_device))
1525 a8083063 Iustin Pop
  real_swap_dev.Open()
1526 a8083063 Iustin Pop
1527 a8083063 Iustin Pop
  logfile = "%s/import-%s-%s-%s.log" % (constants.LOG_OS_DIR, instance.os,
1528 a8083063 Iustin Pop
                                        instance.name, int(time.time()))
1529 a8083063 Iustin Pop
  if not os.path.exists(constants.LOG_OS_DIR):
1530 a8083063 Iustin Pop
    os.mkdir(constants.LOG_OS_DIR, 0750)
1531 a8083063 Iustin Pop
1532 00003458 Guido Trotter
  destcmd = utils.BuildShellCmd('cat %s', src_image)
1533 62c9ec92 Iustin Pop
  remotecmd = _GetSshRunner(cluster_name).BuildCmd(src_node,
1534 62c9ec92 Iustin Pop
                                                   constants.GANETI_RUNAS,
1535 62c9ec92 Iustin Pop
                                                   destcmd)
1536 a8083063 Iustin Pop
1537 a8083063 Iustin Pop
  comprcmd = "gunzip"
1538 a8083063 Iustin Pop
  impcmd = utils.BuildShellCmd("(cd %s; %s -i %s -b %s -s %s &>%s)",
1539 a8083063 Iustin Pop
                               inst_os.path, import_script, instance.name,
1540 a8083063 Iustin Pop
                               real_os_dev.dev_path, real_swap_dev.dev_path,
1541 a8083063 Iustin Pop
                               logfile)
1542 a8083063 Iustin Pop
1543 72f0f7fd Iustin Pop
  command = '|'.join([utils.ShellQuoteArgs(remotecmd), comprcmd, impcmd])
1544 e69d05fd Iustin Pop
  env = {'HYPERVISOR': instance.hypervisor}
1545 a8083063 Iustin Pop
1546 4f0afaf5 Guido Trotter
  result = utils.RunCmd(command, env=env)
1547 a8083063 Iustin Pop
1548 a8083063 Iustin Pop
  if result.failed:
1549 18682bca Iustin Pop
    logging.error("os import command '%s' returned error: %s"
1550 18682bca Iustin Pop
                  " output: %s", command, result.fail_reason, result.output)
1551 a8083063 Iustin Pop
    return False
1552 a8083063 Iustin Pop
1553 a8083063 Iustin Pop
  return True
1554 a8083063 Iustin Pop
1555 a8083063 Iustin Pop
1556 a8083063 Iustin Pop
def ListExports():
1557 a8083063 Iustin Pop
  """Return a list of exports currently available on this machine.
1558 098c0958 Michael Hanselmann

1559 a8083063 Iustin Pop
  """
1560 a8083063 Iustin Pop
  if os.path.isdir(constants.EXPORT_DIR):
1561 eedbda4b Michael Hanselmann
    return utils.ListVisibleFiles(constants.EXPORT_DIR)
1562 a8083063 Iustin Pop
  else:
1563 a8083063 Iustin Pop
    return []
1564 a8083063 Iustin Pop
1565 a8083063 Iustin Pop
1566 a8083063 Iustin Pop
def RemoveExport(export):
1567 a8083063 Iustin Pop
  """Remove an existing export from the node.
1568 a8083063 Iustin Pop

1569 a8083063 Iustin Pop
  Args:
1570 a8083063 Iustin Pop
    export: the name of the export to remove
1571 a8083063 Iustin Pop

1572 a8083063 Iustin Pop
  Returns:
1573 a8083063 Iustin Pop
    False in case of error, True otherwise.
1574 a8083063 Iustin Pop

1575 098c0958 Michael Hanselmann
  """
1576 a8083063 Iustin Pop
  target = os.path.join(constants.EXPORT_DIR, export)
1577 a8083063 Iustin Pop
1578 a8083063 Iustin Pop
  shutil.rmtree(target)
1579 a8083063 Iustin Pop
  # TODO: catch some of the relevant exceptions and provide a pretty
1580 a8083063 Iustin Pop
  # error message if rmtree fails.
1581 a8083063 Iustin Pop
1582 a8083063 Iustin Pop
  return True
1583 a8083063 Iustin Pop
1584 a8083063 Iustin Pop
1585 f3e513ad Iustin Pop
def RenameBlockDevices(devlist):
1586 f3e513ad Iustin Pop
  """Rename a list of block devices.
1587 f3e513ad Iustin Pop

1588 f3e513ad Iustin Pop
  The devlist argument is a list of tuples (disk, new_logical,
1589 f3e513ad Iustin Pop
  new_physical). The return value will be a combined boolean result
1590 f3e513ad Iustin Pop
  (True only if all renames succeeded).
1591 f3e513ad Iustin Pop

1592 f3e513ad Iustin Pop
  """
1593 f3e513ad Iustin Pop
  result = True
1594 f3e513ad Iustin Pop
  for disk, unique_id in devlist:
1595 f3e513ad Iustin Pop
    dev = _RecursiveFindBD(disk)
1596 f3e513ad Iustin Pop
    if dev is None:
1597 f3e513ad Iustin Pop
      result = False
1598 f3e513ad Iustin Pop
      continue
1599 f3e513ad Iustin Pop
    try:
1600 3f78eef2 Iustin Pop
      old_rpath = dev.dev_path
1601 f3e513ad Iustin Pop
      dev.Rename(unique_id)
1602 3f78eef2 Iustin Pop
      new_rpath = dev.dev_path
1603 3f78eef2 Iustin Pop
      if old_rpath != new_rpath:
1604 3f78eef2 Iustin Pop
        DevCacheManager.RemoveCache(old_rpath)
1605 3f78eef2 Iustin Pop
        # FIXME: we should add the new cache information here, like:
1606 3f78eef2 Iustin Pop
        # DevCacheManager.UpdateCache(new_rpath, owner, ...)
1607 3f78eef2 Iustin Pop
        # but we don't have the owner here - maybe parse from existing
1608 3f78eef2 Iustin Pop
        # cache? for now, we only lose lvm data when we rename, which
1609 3f78eef2 Iustin Pop
        # is less critical than DRBD or MD
1610 f3e513ad Iustin Pop
    except errors.BlockDeviceError, err:
1611 18682bca Iustin Pop
      logging.exception("Can't rename device '%s' to '%s'", dev, unique_id)
1612 f3e513ad Iustin Pop
      result = False
1613 f3e513ad Iustin Pop
  return result
1614 f3e513ad Iustin Pop
1615 f3e513ad Iustin Pop
1616 778b75bb Manuel Franceschini
def _TransformFileStorageDir(file_storage_dir):
1617 778b75bb Manuel Franceschini
  """Checks whether given file_storage_dir is valid.
1618 778b75bb Manuel Franceschini

1619 778b75bb Manuel Franceschini
  Checks wheter the given file_storage_dir is within the cluster-wide
1620 778b75bb Manuel Franceschini
  default file_storage_dir stored in SimpleStore. Only paths under that
1621 778b75bb Manuel Franceschini
  directory are allowed.
1622 778b75bb Manuel Franceschini

1623 778b75bb Manuel Franceschini
  Args:
1624 778b75bb Manuel Franceschini
    file_storage_dir: string with path
1625 d61cbe76 Iustin Pop

1626 778b75bb Manuel Franceschini
  Returns:
1627 778b75bb Manuel Franceschini
    normalized file_storage_dir (string) if valid, None otherwise
1628 778b75bb Manuel Franceschini

1629 778b75bb Manuel Franceschini
  """
1630 c657dcc9 Michael Hanselmann
  cfg = _GetConfig()
1631 778b75bb Manuel Franceschini
  file_storage_dir = os.path.normpath(file_storage_dir)
1632 c657dcc9 Michael Hanselmann
  base_file_storage_dir = cfg.GetFileStorageDir()
1633 778b75bb Manuel Franceschini
  if (not os.path.commonprefix([file_storage_dir, base_file_storage_dir]) ==
1634 778b75bb Manuel Franceschini
      base_file_storage_dir):
1635 18682bca Iustin Pop
    logging.error("file storage directory '%s' is not under base file"
1636 18682bca Iustin Pop
                  " storage directory '%s'",
1637 18682bca Iustin Pop
                  file_storage_dir, base_file_storage_dir)
1638 778b75bb Manuel Franceschini
    return None
1639 778b75bb Manuel Franceschini
  return file_storage_dir
1640 778b75bb Manuel Franceschini
1641 778b75bb Manuel Franceschini
1642 778b75bb Manuel Franceschini
def CreateFileStorageDir(file_storage_dir):
1643 778b75bb Manuel Franceschini
  """Create file storage directory.
1644 778b75bb Manuel Franceschini

1645 778b75bb Manuel Franceschini
  Args:
1646 778b75bb Manuel Franceschini
    file_storage_dir: string containing the path
1647 778b75bb Manuel Franceschini

1648 778b75bb Manuel Franceschini
  Returns:
1649 778b75bb Manuel Franceschini
    tuple with first element a boolean indicating wheter dir
1650 778b75bb Manuel Franceschini
    creation was successful or not
1651 778b75bb Manuel Franceschini

1652 778b75bb Manuel Franceschini
  """
1653 778b75bb Manuel Franceschini
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
1654 778b75bb Manuel Franceschini
  result = True,
1655 778b75bb Manuel Franceschini
  if not file_storage_dir:
1656 778b75bb Manuel Franceschini
    result = False,
1657 778b75bb Manuel Franceschini
  else:
1658 778b75bb Manuel Franceschini
    if os.path.exists(file_storage_dir):
1659 778b75bb Manuel Franceschini
      if not os.path.isdir(file_storage_dir):
1660 18682bca Iustin Pop
        logging.error("'%s' is not a directory", file_storage_dir)
1661 778b75bb Manuel Franceschini
        result = False,
1662 778b75bb Manuel Franceschini
    else:
1663 778b75bb Manuel Franceschini
      try:
1664 778b75bb Manuel Franceschini
        os.makedirs(file_storage_dir, 0750)
1665 778b75bb Manuel Franceschini
      except OSError, err:
1666 18682bca Iustin Pop
        logging.error("Cannot create file storage directory '%s': %s",
1667 18682bca Iustin Pop
                      file_storage_dir, err)
1668 778b75bb Manuel Franceschini
        result = False,
1669 778b75bb Manuel Franceschini
  return result
1670 778b75bb Manuel Franceschini
1671 778b75bb Manuel Franceschini
1672 778b75bb Manuel Franceschini
def RemoveFileStorageDir(file_storage_dir):
1673 778b75bb Manuel Franceschini
  """Remove file storage directory.
1674 778b75bb Manuel Franceschini

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

1677 778b75bb Manuel Franceschini
  Args:
1678 778b75bb Manuel Franceschini
    file_storage_dir: string containing the path
1679 778b75bb Manuel Franceschini

1680 778b75bb Manuel Franceschini
  Returns:
1681 778b75bb Manuel Franceschini
    tuple with first element a boolean indicating wheter dir
1682 778b75bb Manuel Franceschini
    removal was successful or not
1683 778b75bb Manuel Franceschini

1684 778b75bb Manuel Franceschini
  """
1685 778b75bb Manuel Franceschini
  file_storage_dir = _TransformFileStorageDir(file_storage_dir)
1686 778b75bb Manuel Franceschini
  result = True,
1687 778b75bb Manuel Franceschini
  if not file_storage_dir:
1688 778b75bb Manuel Franceschini
    result = False,
1689 778b75bb Manuel Franceschini
  else:
1690 778b75bb Manuel Franceschini
    if os.path.exists(file_storage_dir):
1691 778b75bb Manuel Franceschini
      if not os.path.isdir(file_storage_dir):
1692 18682bca Iustin Pop
        logging.error("'%s' is not a directory", file_storage_dir)
1693 778b75bb Manuel Franceschini
        result = False,
1694 778b75bb Manuel Franceschini
      # deletes dir only if empty, otherwise we want to return False
1695 778b75bb Manuel Franceschini
      try:
1696 778b75bb Manuel Franceschini
        os.rmdir(file_storage_dir)
1697 778b75bb Manuel Franceschini
      except OSError, err:
1698 18682bca Iustin Pop
        logging.exception("Cannot remove file storage directory '%s'",
1699 18682bca Iustin Pop
                          file_storage_dir)
1700 778b75bb Manuel Franceschini
        result = False,
1701 778b75bb Manuel Franceschini
  return result
1702 778b75bb Manuel Franceschini
1703 778b75bb Manuel Franceschini
1704 778b75bb Manuel Franceschini
def RenameFileStorageDir(old_file_storage_dir, new_file_storage_dir):
1705 778b75bb Manuel Franceschini
  """Rename the file storage directory.
1706 778b75bb Manuel Franceschini

1707 778b75bb Manuel Franceschini
  Args:
1708 778b75bb Manuel Franceschini
    old_file_storage_dir: string containing the old path
1709 778b75bb Manuel Franceschini
    new_file_storage_dir: string containing the new path
1710 778b75bb Manuel Franceschini

1711 778b75bb Manuel Franceschini
  Returns:
1712 778b75bb Manuel Franceschini
    tuple with first element a boolean indicating wheter dir
1713 778b75bb Manuel Franceschini
    rename was successful or not
1714 778b75bb Manuel Franceschini

1715 778b75bb Manuel Franceschini
  """
1716 778b75bb Manuel Franceschini
  old_file_storage_dir = _TransformFileStorageDir(old_file_storage_dir)
1717 778b75bb Manuel Franceschini
  new_file_storage_dir = _TransformFileStorageDir(new_file_storage_dir)
1718 778b75bb Manuel Franceschini
  result = True,
1719 778b75bb Manuel Franceschini
  if not old_file_storage_dir or not new_file_storage_dir:
1720 778b75bb Manuel Franceschini
    result = False,
1721 778b75bb Manuel Franceschini
  else:
1722 778b75bb Manuel Franceschini
    if not os.path.exists(new_file_storage_dir):
1723 778b75bb Manuel Franceschini
      if os.path.isdir(old_file_storage_dir):
1724 778b75bb Manuel Franceschini
        try:
1725 778b75bb Manuel Franceschini
          os.rename(old_file_storage_dir, new_file_storage_dir)
1726 778b75bb Manuel Franceschini
        except OSError, err:
1727 18682bca Iustin Pop
          logging.exception("Cannot rename '%s' to '%s'",
1728 18682bca Iustin Pop
                            old_file_storage_dir, new_file_storage_dir)
1729 778b75bb Manuel Franceschini
          result =  False,
1730 778b75bb Manuel Franceschini
      else:
1731 18682bca Iustin Pop
        logging.error("'%s' is not a directory", old_file_storage_dir)
1732 778b75bb Manuel Franceschini
        result = False,
1733 778b75bb Manuel Franceschini
    else:
1734 778b75bb Manuel Franceschini
      if os.path.exists(old_file_storage_dir):
1735 18682bca Iustin Pop
        logging.error("Cannot rename '%s' to '%s'. Both locations exist.",
1736 18682bca Iustin Pop
                      old_file_storage_dir, new_file_storage_dir)
1737 778b75bb Manuel Franceschini
        result = False,
1738 778b75bb Manuel Franceschini
  return result
1739 778b75bb Manuel Franceschini
1740 778b75bb Manuel Franceschini
1741 dc31eae3 Michael Hanselmann
def _IsJobQueueFile(file_name):
1742 dc31eae3 Michael Hanselmann
  """Checks whether the given filename is in the queue directory.
1743 ca52cdeb Michael Hanselmann

1744 ca52cdeb Michael Hanselmann
  """
1745 ca52cdeb Michael Hanselmann
  queue_dir = os.path.normpath(constants.QUEUE_DIR)
1746 dc31eae3 Michael Hanselmann
  result = (os.path.commonprefix([queue_dir, file_name]) == queue_dir)
1747 dc31eae3 Michael Hanselmann
1748 dc31eae3 Michael Hanselmann
  if not result:
1749 ca52cdeb Michael Hanselmann
    logging.error("'%s' is not a file in the queue directory",
1750 ca52cdeb Michael Hanselmann
                  file_name)
1751 dc31eae3 Michael Hanselmann
1752 dc31eae3 Michael Hanselmann
  return result
1753 dc31eae3 Michael Hanselmann
1754 dc31eae3 Michael Hanselmann
1755 dc31eae3 Michael Hanselmann
def JobQueueUpdate(file_name, content):
1756 dc31eae3 Michael Hanselmann
  """Updates a file in the queue directory.
1757 dc31eae3 Michael Hanselmann

1758 dc31eae3 Michael Hanselmann
  """
1759 dc31eae3 Michael Hanselmann
  if not _IsJobQueueFile(file_name):
1760 ca52cdeb Michael Hanselmann
    return False
1761 ca52cdeb Michael Hanselmann
1762 ca52cdeb Michael Hanselmann
  # Write and replace the file atomically
1763 ca52cdeb Michael Hanselmann
  utils.WriteFile(file_name, data=content)
1764 ca52cdeb Michael Hanselmann
1765 ca52cdeb Michael Hanselmann
  return True
1766 ca52cdeb Michael Hanselmann
1767 ca52cdeb Michael Hanselmann
1768 af5ebcb1 Michael Hanselmann
def JobQueueRename(old, new):
1769 af5ebcb1 Michael Hanselmann
  """Renames a job queue file.
1770 af5ebcb1 Michael Hanselmann

1771 af5ebcb1 Michael Hanselmann
  """
1772 af5ebcb1 Michael Hanselmann
  if not (_IsJobQueueFile(old) and _IsJobQueueFile(new)):
1773 af5ebcb1 Michael Hanselmann
    return False
1774 af5ebcb1 Michael Hanselmann
1775 af5ebcb1 Michael Hanselmann
  os.rename(old, new)
1776 af5ebcb1 Michael Hanselmann
1777 af5ebcb1 Michael Hanselmann
  return True
1778 af5ebcb1 Michael Hanselmann
1779 af5ebcb1 Michael Hanselmann
1780 5d672980 Iustin Pop
def JobQueueSetDrainFlag(drain_flag):
1781 5d672980 Iustin Pop
  """Set the drain flag for the queue.
1782 5d672980 Iustin Pop

1783 5d672980 Iustin Pop
  This will set or unset the queue drain flag.
1784 5d672980 Iustin Pop

1785 5d672980 Iustin Pop
  @type drain_flag: bool
1786 5d672980 Iustin Pop
  @param drain_flag: if True, will set the drain flag, otherwise reset it.
1787 5d672980 Iustin Pop

1788 5d672980 Iustin Pop
  """
1789 5d672980 Iustin Pop
  if drain_flag:
1790 5d672980 Iustin Pop
    utils.WriteFile(constants.JOB_QUEUE_DRAIN_FILE, data="", close=True)
1791 5d672980 Iustin Pop
  else:
1792 5d672980 Iustin Pop
    utils.RemoveFile(constants.JOB_QUEUE_DRAIN_FILE)
1793 5d672980 Iustin Pop
1794 5d672980 Iustin Pop
  return True
1795 5d672980 Iustin Pop
1796 5d672980 Iustin Pop
1797 d61cbe76 Iustin Pop
def CloseBlockDevices(disks):
1798 d61cbe76 Iustin Pop
  """Closes the given block devices.
1799 d61cbe76 Iustin Pop

1800 d61cbe76 Iustin Pop
  This means they will be switched to secondary mode (in case of DRBD).
1801 d61cbe76 Iustin Pop

1802 d61cbe76 Iustin Pop
  """
1803 d61cbe76 Iustin Pop
  bdevs = []
1804 d61cbe76 Iustin Pop
  for cf in disks:
1805 d61cbe76 Iustin Pop
    rd = _RecursiveFindBD(cf)
1806 d61cbe76 Iustin Pop
    if rd is None:
1807 d61cbe76 Iustin Pop
      return (False, "Can't find device %s" % cf)
1808 d61cbe76 Iustin Pop
    bdevs.append(rd)
1809 d61cbe76 Iustin Pop
1810 d61cbe76 Iustin Pop
  msg = []
1811 d61cbe76 Iustin Pop
  for rd in bdevs:
1812 d61cbe76 Iustin Pop
    try:
1813 d61cbe76 Iustin Pop
      rd.Close()
1814 d61cbe76 Iustin Pop
    except errors.BlockDeviceError, err:
1815 d61cbe76 Iustin Pop
      msg.append(str(err))
1816 d61cbe76 Iustin Pop
  if msg:
1817 d61cbe76 Iustin Pop
    return (False, "Can't make devices secondary: %s" % ",".join(msg))
1818 d61cbe76 Iustin Pop
  else:
1819 d61cbe76 Iustin Pop
    return (True, "All devices secondary")
1820 d61cbe76 Iustin Pop
1821 d61cbe76 Iustin Pop
1822 6217e295 Iustin Pop
def ValidateHVParams(hvname, hvparams):
1823 6217e295 Iustin Pop
  """Validates the given hypervisor parameters.
1824 6217e295 Iustin Pop

1825 6217e295 Iustin Pop
  @type hvname: string
1826 6217e295 Iustin Pop
  @param hvname: the hypervisor name
1827 6217e295 Iustin Pop
  @type hvparams: dict
1828 6217e295 Iustin Pop
  @param hvparams: the hypervisor parameters to be validated
1829 6217e295 Iustin Pop
  @rtype: tuple (bool, str)
1830 6217e295 Iustin Pop
  @return: tuple of (success, message)
1831 6217e295 Iustin Pop

1832 6217e295 Iustin Pop
  """
1833 6217e295 Iustin Pop
  try:
1834 6217e295 Iustin Pop
    hv_type = hypervisor.GetHypervisor(hvname)
1835 6217e295 Iustin Pop
    hv_type.ValidateParameters(hvparams)
1836 6217e295 Iustin Pop
    return (True, "Validation passed")
1837 6217e295 Iustin Pop
  except errors.HypervisorError, err:
1838 6217e295 Iustin Pop
    return (False, str(err))
1839 6217e295 Iustin Pop
1840 6217e295 Iustin Pop
1841 a8083063 Iustin Pop
class HooksRunner(object):
1842 a8083063 Iustin Pop
  """Hook runner.
1843 a8083063 Iustin Pop

1844 a8083063 Iustin Pop
  This class is instantiated on the node side (ganeti-noded) and not on
1845 a8083063 Iustin Pop
  the master side.
1846 a8083063 Iustin Pop

1847 a8083063 Iustin Pop
  """
1848 a8083063 Iustin Pop
  RE_MASK = re.compile("^[a-zA-Z0-9_-]+$")
1849 a8083063 Iustin Pop
1850 a8083063 Iustin Pop
  def __init__(self, hooks_base_dir=None):
1851 a8083063 Iustin Pop
    """Constructor for hooks runner.
1852 a8083063 Iustin Pop

1853 a8083063 Iustin Pop
    Args:
1854 a8083063 Iustin Pop
      - hooks_base_dir: if not None, this overrides the
1855 a8083063 Iustin Pop
        constants.HOOKS_BASE_DIR (useful for unittests)
1856 a8083063 Iustin Pop

1857 a8083063 Iustin Pop
    """
1858 a8083063 Iustin Pop
    if hooks_base_dir is None:
1859 a8083063 Iustin Pop
      hooks_base_dir = constants.HOOKS_BASE_DIR
1860 a8083063 Iustin Pop
    self._BASE_DIR = hooks_base_dir
1861 a8083063 Iustin Pop
1862 a8083063 Iustin Pop
  @staticmethod
1863 a8083063 Iustin Pop
  def ExecHook(script, env):
1864 a8083063 Iustin Pop
    """Exec one hook script.
1865 a8083063 Iustin Pop

1866 a8083063 Iustin Pop
    Args:
1867 a8083063 Iustin Pop
     - script: the full path to the script
1868 a8083063 Iustin Pop
     - env: the environment with which to exec the script
1869 a8083063 Iustin Pop

1870 a8083063 Iustin Pop
    """
1871 a8083063 Iustin Pop
    # exec the process using subprocess and log the output
1872 a8083063 Iustin Pop
    fdstdin = None
1873 a8083063 Iustin Pop
    try:
1874 a8083063 Iustin Pop
      fdstdin = open("/dev/null", "r")
1875 a8083063 Iustin Pop
      child = subprocess.Popen([script], stdin=fdstdin, stdout=subprocess.PIPE,
1876 a8083063 Iustin Pop
                               stderr=subprocess.STDOUT, close_fds=True,
1877 147af04d Iustin Pop
                               shell=False, cwd="/", env=env)
1878 a8083063 Iustin Pop
      output = ""
1879 a8083063 Iustin Pop
      try:
1880 a8083063 Iustin Pop
        output = child.stdout.read(4096)
1881 a8083063 Iustin Pop
        child.stdout.close()
1882 a8083063 Iustin Pop
      except EnvironmentError, err:
1883 a8083063 Iustin Pop
        output += "Hook script error: %s" % str(err)
1884 a8083063 Iustin Pop
1885 a8083063 Iustin Pop
      while True:
1886 a8083063 Iustin Pop
        try:
1887 a8083063 Iustin Pop
          result = child.wait()
1888 a8083063 Iustin Pop
          break
1889 a8083063 Iustin Pop
        except EnvironmentError, err:
1890 a8083063 Iustin Pop
          if err.errno == errno.EINTR:
1891 a8083063 Iustin Pop
            continue
1892 a8083063 Iustin Pop
          raise
1893 a8083063 Iustin Pop
    finally:
1894 a8083063 Iustin Pop
      # try not to leak fds
1895 a8083063 Iustin Pop
      for fd in (fdstdin, ):
1896 a8083063 Iustin Pop
        if fd is not None:
1897 a8083063 Iustin Pop
          try:
1898 a8083063 Iustin Pop
            fd.close()
1899 a8083063 Iustin Pop
          except EnvironmentError, err:
1900 a8083063 Iustin Pop
            # just log the error
1901 18682bca Iustin Pop
            #logging.exception("Error while closing fd %s", fd)
1902 a8083063 Iustin Pop
            pass
1903 a8083063 Iustin Pop
1904 a8083063 Iustin Pop
    return result == 0, output
1905 a8083063 Iustin Pop
1906 a8083063 Iustin Pop
  def RunHooks(self, hpath, phase, env):
1907 a8083063 Iustin Pop
    """Run the scripts in the hooks directory.
1908 a8083063 Iustin Pop

1909 a8083063 Iustin Pop
    This method will not be usually overriden by child opcodes.
1910 a8083063 Iustin Pop

1911 a8083063 Iustin Pop
    """
1912 a8083063 Iustin Pop
    if phase == constants.HOOKS_PHASE_PRE:
1913 a8083063 Iustin Pop
      suffix = "pre"
1914 a8083063 Iustin Pop
    elif phase == constants.HOOKS_PHASE_POST:
1915 a8083063 Iustin Pop
      suffix = "post"
1916 a8083063 Iustin Pop
    else:
1917 3ecf6786 Iustin Pop
      raise errors.ProgrammerError("Unknown hooks phase: '%s'" % phase)
1918 a8083063 Iustin Pop
    rr = []
1919 a8083063 Iustin Pop
1920 a8083063 Iustin Pop
    subdir = "%s-%s.d" % (hpath, suffix)
1921 a8083063 Iustin Pop
    dir_name = "%s/%s" % (self._BASE_DIR, subdir)
1922 a8083063 Iustin Pop
    try:
1923 eedbda4b Michael Hanselmann
      dir_contents = utils.ListVisibleFiles(dir_name)
1924 a8083063 Iustin Pop
    except OSError, err:
1925 a8083063 Iustin Pop
      # must log
1926 a8083063 Iustin Pop
      return rr
1927 a8083063 Iustin Pop
1928 a8083063 Iustin Pop
    # we use the standard python sort order,
1929 a8083063 Iustin Pop
    # so 00name is the recommended naming scheme
1930 a8083063 Iustin Pop
    dir_contents.sort()
1931 a8083063 Iustin Pop
    for relname in dir_contents:
1932 a8083063 Iustin Pop
      fname = os.path.join(dir_name, relname)
1933 a8083063 Iustin Pop
      if not (os.path.isfile(fname) and os.access(fname, os.X_OK) and
1934 a8083063 Iustin Pop
          self.RE_MASK.match(relname) is not None):
1935 a8083063 Iustin Pop
        rrval = constants.HKR_SKIP
1936 a8083063 Iustin Pop
        output = ""
1937 a8083063 Iustin Pop
      else:
1938 a8083063 Iustin Pop
        result, output = self.ExecHook(fname, env)
1939 a8083063 Iustin Pop
        if not result:
1940 a8083063 Iustin Pop
          rrval = constants.HKR_FAIL
1941 a8083063 Iustin Pop
        else:
1942 a8083063 Iustin Pop
          rrval = constants.HKR_SUCCESS
1943 a8083063 Iustin Pop
      rr.append(("%s/%s" % (subdir, relname), rrval, output))
1944 a8083063 Iustin Pop
1945 a8083063 Iustin Pop
    return rr
1946 3f78eef2 Iustin Pop
1947 3f78eef2 Iustin Pop
1948 8d528b7c Iustin Pop
class IAllocatorRunner(object):
1949 8d528b7c Iustin Pop
  """IAllocator runner.
1950 8d528b7c Iustin Pop

1951 8d528b7c Iustin Pop
  This class is instantiated on the node side (ganeti-noded) and not on
1952 8d528b7c Iustin Pop
  the master side.
1953 8d528b7c Iustin Pop

1954 8d528b7c Iustin Pop
  """
1955 8d528b7c Iustin Pop
  def Run(self, name, idata):
1956 8d528b7c Iustin Pop
    """Run an iallocator script.
1957 8d528b7c Iustin Pop

1958 8d528b7c Iustin Pop
    Return value: tuple of:
1959 8d528b7c Iustin Pop
       - run status (one of the IARUN_ constants)
1960 8d528b7c Iustin Pop
       - stdout
1961 8d528b7c Iustin Pop
       - stderr
1962 8d528b7c Iustin Pop
       - fail reason (as from utils.RunResult)
1963 8d528b7c Iustin Pop

1964 8d528b7c Iustin Pop
    """
1965 8d528b7c Iustin Pop
    alloc_script = utils.FindFile(name, constants.IALLOCATOR_SEARCH_PATH,
1966 8d528b7c Iustin Pop
                                  os.path.isfile)
1967 8d528b7c Iustin Pop
    if alloc_script is None:
1968 8d528b7c Iustin Pop
      return (constants.IARUN_NOTFOUND, None, None, None)
1969 8d528b7c Iustin Pop
1970 8d528b7c Iustin Pop
    fd, fin_name = tempfile.mkstemp(prefix="ganeti-iallocator.")
1971 8d528b7c Iustin Pop
    try:
1972 8d528b7c Iustin Pop
      os.write(fd, idata)
1973 8d528b7c Iustin Pop
      os.close(fd)
1974 8d528b7c Iustin Pop
      result = utils.RunCmd([alloc_script, fin_name])
1975 8d528b7c Iustin Pop
      if result.failed:
1976 8d528b7c Iustin Pop
        return (constants.IARUN_FAILURE, result.stdout, result.stderr,
1977 8d528b7c Iustin Pop
                result.fail_reason)
1978 8d528b7c Iustin Pop
    finally:
1979 8d528b7c Iustin Pop
      os.unlink(fin_name)
1980 8d528b7c Iustin Pop
1981 8d528b7c Iustin Pop
    return (constants.IARUN_SUCCESS, result.stdout, result.stderr, None)
1982 8d528b7c Iustin Pop
1983 8d528b7c Iustin Pop
1984 3f78eef2 Iustin Pop
class DevCacheManager(object):
1985 c99a3cc0 Manuel Franceschini
  """Simple class for managing a cache of block device information.
1986 3f78eef2 Iustin Pop

1987 3f78eef2 Iustin Pop
  """
1988 3f78eef2 Iustin Pop
  _DEV_PREFIX = "/dev/"
1989 3f78eef2 Iustin Pop
  _ROOT_DIR = constants.BDEV_CACHE_DIR
1990 3f78eef2 Iustin Pop
1991 3f78eef2 Iustin Pop
  @classmethod
1992 3f78eef2 Iustin Pop
  def _ConvertPath(cls, dev_path):
1993 3f78eef2 Iustin Pop
    """Converts a /dev/name path to the cache file name.
1994 3f78eef2 Iustin Pop

1995 3f78eef2 Iustin Pop
    This replaces slashes with underscores and strips the /dev
1996 3f78eef2 Iustin Pop
    prefix. It then returns the full path to the cache file
1997 3f78eef2 Iustin Pop

1998 3f78eef2 Iustin Pop
    """
1999 3f78eef2 Iustin Pop
    if dev_path.startswith(cls._DEV_PREFIX):
2000 3f78eef2 Iustin Pop
      dev_path = dev_path[len(cls._DEV_PREFIX):]
2001 3f78eef2 Iustin Pop
    dev_path = dev_path.replace("/", "_")
2002 3f78eef2 Iustin Pop
    fpath = "%s/bdev_%s" % (cls._ROOT_DIR, dev_path)
2003 3f78eef2 Iustin Pop
    return fpath
2004 3f78eef2 Iustin Pop
2005 3f78eef2 Iustin Pop
  @classmethod
2006 3f78eef2 Iustin Pop
  def UpdateCache(cls, dev_path, owner, on_primary, iv_name):
2007 3f78eef2 Iustin Pop
    """Updates the cache information for a given device.
2008 3f78eef2 Iustin Pop

2009 3f78eef2 Iustin Pop
    """
2010 cf5a8306 Iustin Pop
    if dev_path is None:
2011 18682bca Iustin Pop
      logging.error("DevCacheManager.UpdateCache got a None dev_path")
2012 cf5a8306 Iustin Pop
      return
2013 3f78eef2 Iustin Pop
    fpath = cls._ConvertPath(dev_path)
2014 3f78eef2 Iustin Pop
    if on_primary:
2015 3f78eef2 Iustin Pop
      state = "primary"
2016 3f78eef2 Iustin Pop
    else:
2017 3f78eef2 Iustin Pop
      state = "secondary"
2018 3f78eef2 Iustin Pop
    if iv_name is None:
2019 3f78eef2 Iustin Pop
      iv_name = "not_visible"
2020 3f78eef2 Iustin Pop
    fdata = "%s %s %s\n" % (str(owner), state, iv_name)
2021 3f78eef2 Iustin Pop
    try:
2022 3f78eef2 Iustin Pop
      utils.WriteFile(fpath, data=fdata)
2023 3f78eef2 Iustin Pop
    except EnvironmentError, err:
2024 18682bca Iustin Pop
      logging.exception("Can't update bdev cache for %s", dev_path)
2025 3f78eef2 Iustin Pop
2026 3f78eef2 Iustin Pop
  @classmethod
2027 3f78eef2 Iustin Pop
  def RemoveCache(cls, dev_path):
2028 3f78eef2 Iustin Pop
    """Remove data for a dev_path.
2029 3f78eef2 Iustin Pop

2030 3f78eef2 Iustin Pop
    """
2031 cf5a8306 Iustin Pop
    if dev_path is None:
2032 18682bca Iustin Pop
      logging.error("DevCacheManager.RemoveCache got a None dev_path")
2033 cf5a8306 Iustin Pop
      return
2034 3f78eef2 Iustin Pop
    fpath = cls._ConvertPath(dev_path)
2035 3f78eef2 Iustin Pop
    try:
2036 3f78eef2 Iustin Pop
      utils.RemoveFile(fpath)
2037 3f78eef2 Iustin Pop
    except EnvironmentError, err:
2038 18682bca Iustin Pop
      logging.exception("Can't update bdev cache for %s", dev_path)