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
|
# Copyright (C) 2006 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Implementation of Transport that prevents access to locations above a set
root.
"""
from bzrlib import errors, urlutils
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
class ChrootTransportDecorator(TransportDecorator):
"""A decorator that can convert any transport to be chrooted.
This is requested via the 'chrooted+' prefix to get_transport().
"""
def __init__(self, url, _decorated=None, chroot=None):
super(ChrootTransportDecorator, self).__init__(url,
_decorated=_decorated)
if chroot is None:
self.chroot_url = self._decorated.base
else:
self.chroot_url = chroot
@classmethod
def _get_url_prefix(self):
"""Chroot transport decorators are invoked via 'chroot+'"""
return 'chroot+'
def _ensure_relpath_is_child(self, relpath):
abspath = self.abspath(relpath)
chroot_base = self._get_url_prefix() + self.chroot_url
real_relpath = urlutils.relative_url(chroot_base, abspath)
if real_relpath == '..' or real_relpath.startswith('../'):
raise errors.PathNotChild(relpath, self.chroot_url)
# decorated methods
def append_file(self, relpath, f, mode=None):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.append_file(self, relpath, f, mode=mode)
def append_bytes(self, relpath, bytes, mode=None):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.append_bytes(self, relpath, bytes, mode=mode)
def clone(self, offset=None):
self._ensure_relpath_is_child(offset)
return TransportDecorator.clone(self, offset)
def delete(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.delete(self, relpath)
def delete_tree(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.delete_tree(self, relpath)
def get(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.get(self, relpath)
def get_bytes(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.get_bytes(self, relpath)
def get(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.get(self, relpath)
def has(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.has(self, relpath)
def list_dir(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.list_dir(self, relpath)
def lock_read(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.lock_read(self, relpath)
def lock_write(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.lock_write(self, relpath)
def mkdir(self, relpath, mode=None):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.mkdir(self, relpath, mode=mode)
def put_bytes(self, relpath, bytes, mode=None):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.put_bytes(self, relpath, bytes, mode=mode)
def put_file(self, relpath, f, mode=None):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.put_file(self, relpath, f, mode=mode)
def rename(self, rel_from, rel_to):
self._ensure_relpath_is_child(rel_from)
self._ensure_relpath_is_child(rel_to)
return TransportDecorator.rename(self, rel_from, rel_to)
def rmdir(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.rmdir(self, relpath)
def stat(self, relpath):
self._ensure_relpath_is_child(relpath)
return TransportDecorator.stat(self, relpath)
class ChrootServer(DecoratorServer):
"""Server for the ReadonlyTransportDecorator for testing with."""
def get_decorator_class(self):
return ChrootTransportDecorator
def get_test_permutations():
"""Return the permutations to be used in testing."""
return [(ChrootTransportDecorator, ChrootServer),
]
|