Statistics
| Branch: | Tag: | Revision:

root / lib / ssh.py @ 2892a4c9

History | View | Annotate | Download (8 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007 Google Inc.
5
#
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Module encapsulating ssh functionality.
23

24
"""
25

    
26

    
27
import os
28
import logging
29

    
30
from ganeti import utils
31
from ganeti import errors
32
from ganeti import constants
33

    
34

    
35
def GetUserFiles(user, mkdir=False):
36
  """Return the paths of a user's ssh files.
37

38
  The function will return a triplet (priv_key_path, pub_key_path,
39
  auth_key_path) that are used for ssh authentication. Currently, the
40
  keys used are DSA keys, so this function will return:
41
  (~user/.ssh/id_dsa, ~user/.ssh/id_dsa.pub,
42
  ~user/.ssh/authorized_keys).
43

44
  If the optional parameter mkdir is True, the ssh directory will be
45
  created if it doesn't exist.
46

47
  Regardless of the mkdir parameters, the script will raise an error
48
  if ~user/.ssh is not a directory.
49

50
  """
51
  user_dir = utils.GetHomeDir(user)
52
  if not user_dir:
53
    raise errors.OpExecError("Cannot resolve home of user %s" % user)
54

    
55
  ssh_dir = utils.PathJoin(user_dir, ".ssh")
56
  if not os.path.lexists(ssh_dir):
57
    if mkdir:
58
      try:
59
        os.mkdir(ssh_dir, 0700)
60
      except EnvironmentError, err:
61
        raise errors.OpExecError("Can't create .ssh dir for user %s: %s" %
62
                                 (user, str(err)))
63
  elif not os.path.isdir(ssh_dir):
64
    raise errors.OpExecError("path ~%s/.ssh is not a directory" % user)
65

    
66
  return [utils.PathJoin(ssh_dir, base)
67
          for base in ["id_dsa", "id_dsa.pub", "authorized_keys"]]
68

    
69

    
70
class SshRunner:
71
  """Wrapper for SSH commands.
72

73
  """
74
  def __init__(self, cluster_name):
75
    self.cluster_name = cluster_name
76

    
77
  def _BuildSshOptions(self, batch, ask_key, use_cluster_key,
78
                       strict_host_check, private_key=None, quiet=True):
79
    """Builds a list with needed SSH options.
80

81
    @param batch: same as ssh's batch option
82
    @param ask_key: allows ssh to ask for key confirmation; this
83
        parameter conflicts with the batch one
84
    @param use_cluster_key: if True, use the cluster name as the
85
        HostKeyAlias name
86
    @param strict_host_check: this makes the host key checking strict
87
    @param private_key: use this private key instead of the default
88
    @param quiet: whether to enable -q to ssh
89

90
    @rtype: list
91
    @return: the list of options ready to use in L{utils.RunCmd}
92

93
    """
94
    options = [
95
      "-oEscapeChar=none",
96
      "-oHashKnownHosts=no",
97
      "-oGlobalKnownHostsFile=%s" % constants.SSH_KNOWN_HOSTS_FILE,
98
      "-oUserKnownHostsFile=/dev/null",
99
      "-oCheckHostIp=no",
100
      ]
101

    
102
    if use_cluster_key:
103
      options.append("-oHostKeyAlias=%s" % self.cluster_name)
104

    
105
    if quiet:
106
      options.append("-q")
107

    
108
    if private_key:
109
      options.append("-i%s" % private_key)
110

    
111
    # TODO: Too many boolean options, maybe convert them to more descriptive
112
    # constants.
113

    
114
    # Note: ask_key conflicts with batch mode
115
    if batch:
116
      if ask_key:
117
        raise errors.ProgrammerError("SSH call requested conflicting options")
118

    
119
      options.append("-oBatchMode=yes")
120

    
121
      if strict_host_check:
122
        options.append("-oStrictHostKeyChecking=yes")
123
      else:
124
        options.append("-oStrictHostKeyChecking=no")
125

    
126
    else:
127
      # non-batch mode
128

    
129
      if ask_key:
130
        options.append("-oStrictHostKeyChecking=ask")
131
      elif strict_host_check:
132
        options.append("-oStrictHostKeyChecking=yes")
133
      else:
134
        options.append("-oStrictHostKeyChecking=no")
135

    
136
    return options
137

    
138
  def BuildCmd(self, hostname, user, command, batch=True, ask_key=False,
139
               tty=False, use_cluster_key=True, strict_host_check=True,
140
               private_key=None, quiet=True):
141
    """Build an ssh command to execute a command on a remote node.
142

143
    @param hostname: the target host, string
144
    @param user: user to auth as
145
    @param command: the command
146
    @param batch: if true, ssh will run in batch mode with no prompting
147
    @param ask_key: if true, ssh will run with
148
        StrictHostKeyChecking=ask, so that we can connect to an
149
        unknown host (not valid in batch mode)
150
    @param use_cluster_key: whether to expect and use the
151
        cluster-global SSH key
152
    @param strict_host_check: whether to check the host's SSH key at all
153
    @param private_key: use this private key instead of the default
154
    @param quiet: whether to enable -q to ssh
155

156
    @return: the ssh call to run 'command' on the remote host.
157

158
    """
159
    argv = [constants.SSH]
160
    argv.extend(self._BuildSshOptions(batch, ask_key, use_cluster_key,
161
                                      strict_host_check, private_key,
162
                                      quiet=quiet))
163
    if tty:
164
      argv.append("-t")
165
    argv.extend(["%s@%s" % (user, hostname), command])
166
    return argv
167

    
168
  def Run(self, *args, **kwargs):
169
    """Runs a command on a remote node.
170

171
    This method has the same return value as `utils.RunCmd()`, which it
172
    uses to launch ssh.
173

174
    Args: see SshRunner.BuildCmd.
175

176
    @rtype: L{utils.RunResult}
177
    @return: the result as from L{utils.RunCmd()}
178

179
    """
180
    return utils.RunCmd(self.BuildCmd(*args, **kwargs))
181

    
182
  def CopyFileToNode(self, node, filename):
183
    """Copy a file to another node with scp.
184

185
    @param node: node in the cluster
186
    @param filename: absolute pathname of a local file
187

188
    @rtype: boolean
189
    @return: the success of the operation
190

191
    """
192
    if not os.path.isabs(filename):
193
      logging.error("File %s must be an absolute path", filename)
194
      return False
195

    
196
    if not os.path.isfile(filename):
197
      logging.error("File %s does not exist", filename)
198
      return False
199

    
200
    command = [constants.SCP, "-p"]
201
    command.extend(self._BuildSshOptions(True, False, True, True))
202
    command.append(filename)
203
    command.append("%s:%s" % (node, filename))
204

    
205
    result = utils.RunCmd(command)
206

    
207
    if result.failed:
208
      logging.error("Copy to node %s failed (%s) error %s,"
209
                    " command was %s",
210
                    node, result.fail_reason, result.output, result.cmd)
211

    
212
    return not result.failed
213

    
214
  def VerifyNodeHostname(self, node):
215
    """Verify hostname consistency via SSH.
216

217
    This functions connects via ssh to a node and compares the hostname
218
    reported by the node to the name with have (the one that we
219
    connected to).
220

221
    This is used to detect problems in ssh known_hosts files
222
    (conflicting known hosts) and inconsistencies between dns/hosts
223
    entries and local machine names
224

225
    @param node: nodename of a host to check; can be short or
226
        full qualified hostname
227

228
    @return: (success, detail), where:
229
        - success: True/False
230
        - detail: string with details
231

232
    """
233
    retval = self.Run(node, 'root', 'hostname --fqdn')
234

    
235
    if retval.failed:
236
      msg = "ssh problem"
237
      output = retval.output
238
      if output:
239
        msg += ": %s" % output
240
      else:
241
        msg += ": %s (no output)" % retval.fail_reason
242
      logging.error("Command %s failed: %s", retval.cmd, msg)
243
      return False, msg
244

    
245
    remotehostname = retval.stdout.strip()
246

    
247
    if not remotehostname or remotehostname != node:
248
      if node.startswith(remotehostname + "."):
249
        msg = "hostname not FQDN"
250
      else:
251
        msg = "hostname mistmatch"
252
      return False, ("%s: expected %s but got %s" %
253
                     (msg, node, remotehostname))
254

    
255
    return True, "host matches"
256

    
257

    
258
def WriteKnownHostsFile(cfg, file_name):
259
  """Writes the cluster-wide equally known_hosts file.
260

261
  """
262
  utils.WriteFile(file_name, mode=0600,
263
                  data="%s ssh-rsa %s\n" % (cfg.GetClusterName(),
264
                                            cfg.GetHostKey()))