1
# Copyright (C) 2005 Robey Pointer <robey@lag.net>, Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
A stub SFTP server for loopback SFTP testing.
19
Adapted from the one in paramiko's unit tests.
23
from paramiko import ServerInterface, SFTPServerInterface, SFTPServer, SFTPAttributes, \
24
SFTPHandle, SFTP_OK, AUTH_SUCCESSFUL, OPEN_SUCCEEDED
27
from bzrlib.osutils import pathjoin
28
from bzrlib.trace import mutter
31
class StubServer (ServerInterface):
33
def __init__(self, test_case):
34
ServerInterface.__init__(self)
35
self._test_case = test_case
37
def check_auth_password(self, username, password):
39
self._test_case.log('sftpserver - authorizing: %s' % (username,))
40
return AUTH_SUCCESSFUL
42
def check_channel_request(self, kind, chanid):
43
self._test_case.log('sftpserver - channel request: %s, %s' % (kind, chanid))
47
class StubSFTPHandle (SFTPHandle):
50
return SFTPAttributes.from_stat(os.fstat(self.readfile.fileno()))
52
return SFTPServer.convert_errno(e.errno)
54
def chattr(self, attr):
55
# python doesn't have equivalents to fchown or fchmod, so we have to
56
# use the stored filename
57
mutter('Changing permissions on %s to %s', self.filename, attr)
59
SFTPServer.set_file_attr(self.filename, attr)
61
return SFTPServer.convert_errno(e.errno)
64
class StubSFTPServer (SFTPServerInterface):
66
def __init__(self, server, root, home=None):
67
SFTPServerInterface.__init__(self, server)
68
# All paths are actually relative to 'root'.
69
# this is like implementing chroot().
72
# XXX: if 'home' is None, shouldn't it
73
# be set to '', since it should
74
# be relative to 'root'?
77
assert home.startswith(self.root), \
78
"home must be a subdirectory of root (%s vs %s)" \
80
self.home = home[len(self.root):]
81
if self.home.startswith('/'):
82
self.home = self.home[1:]
83
server._test_case.log('sftpserver - new connection')
85
def _realpath(self, path):
86
if sys.platform == 'win32':
87
# Win32 sftp paths end up looking like
88
# sftp://host@foo/h:/foo/bar
89
# which gets translated here to:
91
# Local paths stay 'foo/bar', though.
92
# Also, win32 needs to use the Unicode APIs.
93
thispath = path.decode('utf8')
94
if path.startswith('/'):
96
realpath = os.path.normpath(thispath[1:])
98
realpath = os.path.normpath(os.path.join(self.home, thispath))
100
realpath = self.root + self.canonicalize(path)
103
def canonicalize(self, path):
104
if os.path.isabs(path):
105
return os.path.normpath(path)
107
return os.path.normpath('/' + os.path.join(self.home, path))
109
def chattr(self, path, attr):
111
SFTPServer.set_file_attr(path, attr)
113
return SFTPServer.convert_errno(e.errno)
116
def list_folder(self, path):
117
path = self._realpath(path)
120
# TODO: win32 incorrectly lists paths with non-ascii if path is not
121
# unicode. However on Linux the server should only deal with
122
# bytestreams and posix.listdir does the right thing
123
if sys.platform == 'win32':
124
flist = [f.encode('utf8') for f in os.listdir(path)]
126
flist = os.listdir(path)
128
attr = SFTPAttributes.from_stat(os.stat(pathjoin(path, fname)))
129
attr.filename = fname
133
return SFTPServer.convert_errno(e.errno)
135
def stat(self, path):
136
path = self._realpath(path)
138
return SFTPAttributes.from_stat(os.stat(path))
140
return SFTPServer.convert_errno(e.errno)
142
def lstat(self, path):
143
path = self._realpath(path)
145
return SFTPAttributes.from_stat(os.lstat(path))
147
return SFTPServer.convert_errno(e.errno)
149
def open(self, path, flags, attr):
150
path = self._realpath(path)
152
if hasattr(os, 'O_BINARY'):
154
if getattr(attr, 'st_mode', None):
155
fd = os.open(path, flags, attr.st_mode)
157
fd = os.open(path, flags)
159
return SFTPServer.convert_errno(e.errno)
161
if (flags & os.O_CREAT) and (attr is not None):
162
attr._flags &= ~attr.FLAG_PERMISSIONS
163
SFTPServer.set_file_attr(path, attr)
164
if flags & os.O_WRONLY:
166
elif flags & os.O_RDWR:
172
f = os.fdopen(fd, fstr)
173
except (IOError, OSError), e:
174
return SFTPServer.convert_errno(e.errno)
175
fobj = StubSFTPHandle()
181
def remove(self, path):
182
path = self._realpath(path)
186
return SFTPServer.convert_errno(e.errno)
189
def rename(self, oldpath, newpath):
190
oldpath = self._realpath(oldpath)
191
newpath = self._realpath(newpath)
193
os.rename(oldpath, newpath)
195
return SFTPServer.convert_errno(e.errno)
198
def mkdir(self, path, attr):
199
path = self._realpath(path)
201
# Using getattr() in case st_mode is None or 0
202
# both evaluate to False
203
if getattr(attr, 'st_mode', None):
204
os.mkdir(path, attr.st_mode)
208
attr._flags &= ~attr.FLAG_PERMISSIONS
209
SFTPServer.set_file_attr(path, attr)
211
return SFTPServer.convert_errno(e.errno)
214
def rmdir(self, path):
215
path = self._realpath(path)
219
return SFTPServer.convert_errno(e.errno)
222
# removed: chattr, symlink, readlink
223
# (nothing in bzr's sftp transport uses those)