~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

  • Committer: Alexander Belchenko
  • Date: 2006-07-30 16:43:12 UTC
  • mto: (1711.2.111 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1906.
  • Revision ID: bialix@ukr.net-20060730164312-b025fd3ff0cee59e
rename  gpl.txt => COPYING.txt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
2
 
#
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.
7
 
#
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.
12
 
#
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
"""Implementation of Transport that prevents access to locations above a set
18
 
root.
19
 
"""
20
 
 
21
 
from bzrlib.transport import (
22
 
    pathfilter,
23
 
    register_transport,
24
 
    )
25
 
 
26
 
 
27
 
class ChrootServer(pathfilter.PathFilteringServer):
28
 
    """User space 'chroot' facility.
29
 
 
30
 
    The server's get_url returns the url for a chroot transport mapped to the
31
 
    backing transport. The url is of the form chroot-xxx:/// so parent
32
 
    directories of the backing transport are not visible. The chroot url will
33
 
    not allow '..' sequences to result in requests to the chroot affecting
34
 
    directories outside the backing transport.
35
 
 
36
 
    PathFilteringServer does all the path sanitation needed to enforce a
37
 
    chroot, so this is a simple subclass of PathFilteringServer that ignores
38
 
    filter_func.
39
 
    """
40
 
 
41
 
    def __init__(self, backing_transport):
42
 
        pathfilter.PathFilteringServer.__init__(self, backing_transport, None)
43
 
 
44
 
    def _factory(self, url):
45
 
        return ChrootTransport(self, url)
46
 
 
47
 
    def start_server(self):
48
 
        self.scheme = 'chroot-%d:///' % id(self)
49
 
        register_transport(self.scheme, self._factory)
50
 
 
51
 
 
52
 
class ChrootTransport(pathfilter.PathFilteringTransport):
53
 
    """A ChrootTransport.
54
 
 
55
 
    Please see ChrootServer for details.
56
 
    """
57
 
 
58
 
    def _filter(self, relpath):
59
 
        # A simplified version of PathFilteringTransport's _filter that omits
60
 
        # the call to self.server.filter_func.
61
 
        return self._relpath_from_server_root(relpath)
62
 
 
63
 
 
64
 
def get_test_permutations():
65
 
    """Return the permutations to be used in testing."""
66
 
    from bzrlib.tests import test_server
67
 
    return [(ChrootTransport, test_server.TestingChrootServer)]