/usr/lib/python2.7/dist-packages/sftpcloudfs/server.py is in sftpcloudfs 0.12.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | #!/usr/bin/python
"""
Expose a CloudFileFS object over SFTP using paramiko
Copyright (C) 2011-2013 by Memset Ltd. http://www.memset.com/
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
import logging
import os
import errno
import shlex
from SocketServer import StreamRequestHandler, ForkingTCPServer
import paramiko
from Crypto import Random
from ftpcloudfs.fs import ObjectStorageFS, ObjectStorageFD
from ftpcloudfs.utils import smart_str
from sftpcloudfs.scp import SCPHandler
from functools import wraps
from posixpath import basename
def return_sftp_errors(func):
"""
Decorator to catch EnvironmentError~s and return SFTP error codes instead.
Other exceptions are logged and processed as EIO errors.
"""
@wraps(func)
def wrapper(*args, **kwargs):
log = paramiko.util.get_logger("paramiko")
name = getattr(func, "func_name", "unknown")
try:
log.debug("%s(%r,%r): enter" % (name, args, kwargs))
rc = func(*args, **kwargs)
except BaseException, e:
obj = args[0]
params = args[1:] if len(args) > 1 else ()
msg = "%s%r from %r: %s" % (name, params, obj.client_address, e)
if isinstance(e, EnvironmentError):
log.info(msg)
error = e.errno
else:
log.exception("unexpected error: %s" % msg)
error = errno.EIO
rc = paramiko.SFTPServer.convert_errno(error)
log.debug("%s: returns %r" % (name, rc))
return rc
return wrapper
class SFTPServerInterface(paramiko.SFTPServerInterface):
"""
SFTPServerInterface implementation that exposes a ObjectStorageFS object.
"""
def __init__(self, server, fs, *args, **kwargs):
self.fs = fs
self.client_address = server.client_address
self.log = paramiko.util.get_logger("paramiko")
self.log.debug("%s: start filesystem interface" % self.__class__.__name__)
super(SFTPServerInterface,self).__init__(server, *args, **kwargs)
@return_sftp_errors
def open(self, path, flags, attr):
return SFTPHandle(self, path, flags)
@return_sftp_errors
def list_folder(self, path):
return [ paramiko.SFTPAttributes.from_stat(stat, smart_str(leaf))
for leaf, stat in self.fs.listdir_with_stat(path) ]
@return_sftp_errors
def stat(self, path):
stat = self.fs.stat(path)
filename = basename(path)
return paramiko.SFTPAttributes.from_stat(stat, filename)
def lstat(self, path):
return self.stat(path)
@return_sftp_errors
def remove(self, path):
self.fs.remove(path)
return paramiko.SFTP_OK
@return_sftp_errors
def rename(self, oldpath, newpath):
self.fs.rename(oldpath, newpath)
return paramiko.SFTP_OK
@return_sftp_errors
def mkdir(self, path, attr):
self.fs.mkdir(path)
return paramiko.SFTP_OK
@return_sftp_errors
def rmdir(self, path):
self.fs.rmdir(path)
return paramiko.SFTP_OK
def canonicalize(self, path):
return smart_str(self.fs.abspath(self.fs.normpath(path)))
@return_sftp_errors
def chattr(self, path, attr):
return paramiko.SFTP_OP_UNSUPPORTED
def readlink(self, path):
return paramiko.SFTP_OP_UNSUPPORTED
def symlink(self, path):
return paramiko.SFTP_OP_UNSUPPORTED
class SFTPHandle(paramiko.SFTPHandle):
"""
Expose a ObjectStorageFD object to SFTP.
"""
def __init__(self, owner, path, flags):
super(SFTPHandle, self).__init__(flags)
self.log = paramiko.util.get_logger("paramiko")
self.owner = owner
self.path = path
self.log.debug("SFTPHandle(path=%r, flags=%r)" % (path, flags))
open_mode = flags & (os.O_RDONLY | os.O_WRONLY | os.O_RDWR)
if open_mode == os.O_RDONLY:
mode = "r"
elif open_mode == os.O_WRONLY:
mode = "w"
elif open_mode == os.O_RDWR:
mode = "rw"
else:
self.log.error("Bad open mode %r" % flags)
return paramiko.SFTP_OP_UNSUPPORTED
if flags & os.O_APPEND:
mode += "+"
# we need the file size for r & rw mode; this needs to be performed
# BEFORE open so the cache gets invalidated in write operations
try:
self._size = owner.fs.stat(path).st_size
except EnvironmentError:
self._size = 0
# FIXME ignores os.O_CREAT, os.O_TRUNC, os.O_EXCL
self._file = owner.fs.open(path, mode)
self._tell = 0
@property
def client_address(self):
return self.owner.client_address
@return_sftp_errors
def close(self):
self._file.close()
return paramiko.SFTP_OK
@return_sftp_errors
def read(self, offset, length):
if offset != self._tell:
# this is not an "invalid offset" error
if offset > self._size:
return paramiko.SFTP_EOF
self._file.seek(offset)
self._tell = offset
data = self._file.read(length)
self._tell += len(data)
return data
@return_sftp_errors
def write(self, offset, data):
if offset != self._tell:
return paramiko.SFTP_OP_UNSUPPORTED
# FIXME self._file.seek(offset)
self._file.write(data)
self._tell += len(data)
# update the file size
if self._tell > self._size:
self._size = self._tell
return paramiko.SFTP_OK
def stat(self):
return self.owner.stat(self.path)
def chattr(self,attr):
return paramiko.SFTP_OP_UNSUPPORTED
class ObjectStorageSFTPRequestHandler(StreamRequestHandler):
"""
SocketServer RequestHandler subclass for ObjectStorageSFTPServer.
This RequestHandler subclass creates a paramiko Transport, sets up the
sftp subsystem, and hands off to the transport's own request handling
thread. Note that paramiko.Transport uses a separate thread by default,
so there is no need to use ThreadingMixin.
A TERM signal may be processed with a delay up to 10 seconds.
"""
timeout = 60
auth_timeout = 60
def handle(self):
Random.atfork()
paramiko.util.get_logger("paramiko.transport").setLevel(logging.CRITICAL)
self.log = paramiko.util.get_logger("paramiko")
self.log.debug("%s: start transport" % self.__class__.__name__)
self.server.client_address = self.client_address
t = paramiko.Transport(self.request)
t.add_server_key(self.server.host_key)
t.set_subsystem_handler("sftp", paramiko.SFTPServer, SFTPServerInterface, self.server.fs)
try:
t.start_server(server=self.server)
except paramiko.SSHException, e:
self.log.warning("Disconnecting: %s" % e)
t.close()
return
chan = t.accept(self.auth_timeout)
if chan is None:
self.log.warning("Channel is None, closing")
t.close()
return
while t.isAlive():
t.join(timeout=10)
class ObjectStorageSFTPServer(ForkingTCPServer, paramiko.ServerInterface):
"""
Expose a ObjectStorageFS object over SFTP.
"""
allow_reuse_address = True
def __init__(self, address, host_key=None, authurl=None, max_children=20, keystone=None, no_scp=False, split_size=0):
self.log = paramiko.util.get_logger("paramiko")
self.log.debug("%s: start server" % self.__class__.__name__)
self.fs = ObjectStorageFS(None, None, authurl=authurl, keystone=keystone) # unauthorized
self.host_key = host_key
self.max_children = max_children
self.no_scp = no_scp
ForkingTCPServer.__init__(self, address, ObjectStorageSFTPRequestHandler)
ObjectStorageFD.split_size = split_size
def check_channel_request(self, kind, chanid):
if kind == 'session':
return paramiko.OPEN_SUCCEEDED
self.log.warning("Channel request denied from %s, kind=%s" \
% (self.client_address, kind))
# all the check_channel_*_request return False by default but
# sftp subsystem because of the set_subsystem_handler call in
# the ObjectStorageSFTPRequestHandler
return paramiko.OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED
def check_channel_exec_request(self, channel, command):
"""Determine if a shell command will be executed for the client."""
# Parse the command
if ' -- ' in command:
# scp will use -- to delimit the begining of the unscaped filename
# so translate it to something that shelex can manage
command = command.replace(' -- ', ' "') + '"'
command = shlex.split(command)
self.log.debug('check_channel_exec_request %r' % command)
try:
if command[0] == 'scp':
if self.no_scp:
self.log.info("scp exec request denied from=%s (scp is disabled)" % (self.client_address,))
return False
self.log.info('invoking %r from=%s' % (command, self.client_address))
# handle the command execution
SCPHandler(command[1:], channel, self.fs, self.log).start()
return True
except:
self.log.exception("command %r failed from=%s" % (command, self.client_address))
return False
return False
def check_auth_none(self, username):
"""Check whether the user can proceed without authentication."""
return paramiko.AUTH_FAILED
def check_auth_publickey(self, username, key):
"""Check whether the given public key is valid for authentication."""
return paramiko.AUTH_FAILED
def check_auth_password(self, username, password):
"""Check whether the given password is valid for authentication."""
self.log.info("Auth request (type=password), username=%s, from=%s" \
% (username, self.client_address))
try:
if not password:
raise EnvironmentError("no password provided")
self.fs.authenticate(username, password)
except EnvironmentError, e:
self.log.warning("%s: Failed to authenticate: %s" % (self.client_address, e))
self.log.error("Authentication failure for %s from %s port %s" % (username,
self.client_address[0], self.client_address[1]))
return paramiko.AUTH_FAILED
self.fs.conn.real_ip = self.client_address[0]
self.log.info("%s authenticated from %s" % (username, self.client_address))
return paramiko.AUTH_SUCCESSFUL
def get_allowed_auths(self,username):
"""Return string containing a comma separated list of allowed auth modes.
The available modes are "node", "password" and "publickey".
"""
return "password"
|