1
1
# Copyright (C) 2005 Robey Pointer <robey@lag.net>, Canonical Ltd
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
11
# GNU General Public License for more details.
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
23
from paramiko import ServerInterface, SFTPServerInterface, SFTPServer, SFTPAttributes, \
24
24
SFTPHandle, SFTP_OK, AUTH_SUCCESSFUL, OPEN_SUCCEEDED
25
27
from bzrlib.osutils import pathjoin
26
28
from bzrlib.trace import mutter
29
31
class StubServer (ServerInterface):
30
33
def __init__(self, test_case):
31
34
ServerInterface.__init__(self)
32
35
self._test_case = test_case
61
64
class StubSFTPServer (SFTPServerInterface):
62
def __init__(self, server, root):
66
def __init__(self, server, root, home=None):
63
67
SFTPServerInterface.__init__(self, server)
68
# All paths are actually relative to 'root'.
69
# this is like implementing chroot().
74
assert home.startswith(self.root), \
75
"home must be a subdirectory of root (%s vs %s)" \
77
self.home = home[len(self.root):]
78
if self.home.startswith('/'):
79
self.home = self.home[1:]
80
server._test_case.log('sftpserver - new connection')
66
82
def _realpath(self, path):
83
# paths returned from self.canonicalize() always start with
84
# a path separator. So if 'root' is just '/', this would cause
85
# a double slash at the beginning '//home/dir'.
87
return self.canonicalize(path)
67
88
return self.root + self.canonicalize(path)
90
if sys.platform == 'win32':
91
def canonicalize(self, path):
92
# Win32 sftp paths end up looking like
93
# sftp://host@foo/h:/foo/bar
94
# which means absolute paths look like:
96
# and relative paths stay the same:
98
# win32 needs to use the Unicode APIs. so we require the
99
# paths to be utf8 (Linux just uses bytestreams)
100
thispath = path.decode('utf8')
101
if path.startswith('/'):
103
return os.path.normpath(thispath[1:])
105
return os.path.normpath(os.path.join(self.home, thispath))
107
def canonicalize(self, path):
108
if os.path.isabs(path):
109
return os.path.normpath(path)
111
return os.path.normpath('/' + os.path.join(self.home, path))
69
113
def chattr(self, path, attr):
71
115
SFTPServer.set_file_attr(path, attr)
77
121
path = self._realpath(path)
80
flist = os.listdir(path)
124
# TODO: win32 incorrectly lists paths with non-ascii if path is not
125
# unicode. However on Linux the server should only deal with
126
# bytestreams and posix.listdir does the right thing
127
if sys.platform == 'win32':
128
flist = [f.encode('utf8') for f in os.listdir(path)]
130
flist = os.listdir(path)
81
131
for fname in flist:
82
132
attr = SFTPAttributes.from_stat(os.stat(pathjoin(path, fname)))
83
133
attr.filename = fname
103
153
def open(self, path, flags, attr):
104
154
path = self._realpath(path)
106
if hasattr(os, 'O_BINARY'):
108
if (attr is not None) and hasattr(attr, 'st_mode'):
156
flags |= getattr(os, 'O_BINARY', 0)
157
if getattr(attr, 'st_mode', None):
109
158
fd = os.open(path, flags, attr.st_mode)
111
fd = os.open(path, flags)
160
# os.open() defaults to 0777 which is
161
# an odd default mode for files
162
fd = os.open(path, flags, 0666)
112
163
except OSError, e:
113
164
return SFTPServer.convert_errno(e.errno)
114
166
if (flags & os.O_CREAT) and (attr is not None):
115
167
attr._flags &= ~attr.FLAG_PERMISSIONS
116
168
SFTPServer.set_file_attr(path, attr)
151
203
def mkdir(self, path, attr):
152
204
path = self._realpath(path)
154
if attr is not None and hasattr(attr, 'st_mode'):
206
# Using getattr() in case st_mode is None or 0
207
# both evaluate to False
208
if getattr(attr, 'st_mode', None):
155
209
os.mkdir(path, attr.st_mode)