~greatmay12/+junk/test1

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

  • Committer: thitipong at ndrsolution
  • Date: 2011-11-14 06:31:02 UTC
  • Revision ID: thitipong@ndrsolution.com-20111114063102-9obte3yfi2azku7d
ndr redirect version

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)]