summaryrefslogtreecommitdiff
path: root/sandboxlib/bubblewrap.py
blob: e03b7a08b88edb0618428a9bb5ad8c51d61d14f0 (plain)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# Copyright (C) 2016  Codethink Limited
#
# 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; version 2 of the License.
#
# 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, see <http://www.gnu.org/licenses/>.

"""Execute command in a sandbox, using 'bubblewrap'.

This implements an API defined in sandboxlib/__init__.py.
"""


import os
import logging
import logging.config
import sandboxlib

bwrap_abspath=os.path.dirname(__file__)
logging.config.fileConfig(os.path.join(bwrap_abspath, 'logger.conf'))

log = logging.getLogger("sandboxlib")
# FIXME copied over from `linux_user_chroot`, not sure on what is expected here.
CAPABILITIES = {
    'network': ['isolated', 'undefined'],
    'mounts': ['isolated', 'undefined'],
    'filesystem_writable_paths': ['all', 'any'],
}


def degrade_config_for_capabilities(in_config, warn=True):
    # This backend has the most features, right now!
    log.debug("Nothing to degrade in bwrap config")
    return in_config


def run_sandbox(command, cwd=None, env=None,
                filesystem_root='/', filesystem_writable_paths='all',
                mounts='undefined', extra_mounts=None,
                network='undefined',
                stderr=sandboxlib.CAPTURE, stdout=sandboxlib.CAPTURE):
    """Run 'command' in a sandboxed environment.

    Parameters:
      - command: the command to run. Pass a list of parameters rather than
            using spaces to separate them, e.g. ['echo', '"Hello world"'].
      - cwd: the working directory of 'command', relative to 'rootfs_path'.
            Defaults to '/' if "rootfs_path" is specified, and the current
            directory of the calling process otherwise.
      - env: environment variables to set
      - filesystem_root: the path to the root of the sandbox. Defaults to '/',
            which doesn't isolate the command from the host filesystem at all.
      - filesystem_writable_paths: defaults to 'all', which allows the command
            to write to anywhere under 'filesystem_root' that the user of the
            calling process could write to. Backends may accept a list of paths
            instead of 'all', and will prevent writes to any files not under a
            path in that whitelist. If 'none' or an empty list is passed, the
            whole file-system will be read-only. The paths should be relative
            to filesystem_root. This will processed /after/ extra_mounts are
            mounted.
      - mounts: configures mount sharing. Defaults to 'undefined', where no
            no attempt is made to isolate mounts. Backends may support
            'isolated' as well.
      - extra_mounts: a list of locations to mount inside 'rootfs_path',
            specified as a list of tuples of (source_path, target_path, type,
            options). The 'type' and 'options' should match what would be
            specified in /etc/fstab, but a backends may support only a limited
            subset of values. The 'target_path' is relative to filesystem_root
            and will be created before mounting if it doesn't exist.
      - network: configures network sharing. Defaults to 'undefined', where
            no attempt is made to either prevent or provide networking
            inside the sandbox. Backends may support 'isolated' and/or other
            values as well.
      - stdout: whether to capture stdout, or redirect stdout to a file handle.
            If set to sandboxlib.CAPTURE, the function will return the stdout
            data, if not, it will return None for that. If stdout=None, the
            data will be discarded -- it will NOT inherit the parent process's
            stdout, unlike with subprocess.Popen(). Set 'stdout=sys.stdout' if
            you want that.
      - stderr: same as stdout

    Returns:
      a tuple of (exit code, stdout output, stderr output).

    """

    log.debug("cmd: {}, cwd: {}, env: {}, filesystem_root: {}, "
              "filesystem_writable_paths: {}, mounts: {}, extra_mounts: {}, "
              "network: {}, stderr: {}, stdout: {}".format(
                command, cwd, env, filesystem_root, filesystem_writable_paths,
                mounts, extra_mounts, network, stderr, stdout))
    
    if type(command) == str:
        command = [command]

    # Bwrap full path
    bwrap_command = [bubblewrap_program()]
    log.debug("/path/to/bwrap : {}".format(bwrap_command))

    # Add in the root filesystem stuff first
    # rootfs is mounted as RW initially so that further mounts can be placed on top
    # If a RO root is required, after all other mounts are complete, root is
    # remounted as RO
    bwrap_command += ["--bind", filesystem_root, "/"]

    bwrap_command += process_network_config(network)
 
    if cwd is not None:
        log.debug("Setting cwd to '{}'".format(cwd))
        bwrap_command.extend(['--chdir', cwd])
 
    # do pre checks on mounts
    extra_mounts = sandboxlib.validate_extra_mounts(extra_mounts)
    create_mount_points_if_missing(filesystem_root, extra_mounts)

    # Handles the ro and rw mounts
    bwrap_command += process_mounts(filesystem_root, extra_mounts,
                                    filesystem_writable_paths)

    # Set UID and GUI
    bwrap_command.extend(['--unshare-user', '--uid', '0', '--gid', '0'])

    argv = bwrap_command + command
    log.info("bubblewrap.run_command({}, stdout:{}, stderr:{}, env:{})"
             .format(" ".join(argv), stdout, stderr, env))

    exit, out, err = sandboxlib._run_command(argv, stdout, stderr, env=env)

    return exit, out, err


def run_sandbox_with_redirection(command, **sandbox_config):
    """Start a subprocess in a sandbox, redirecting stderr and/or stdout.

    The sandbox_config arguments are the same as the run_command() function.

    This returns just the exit code, because if stdout or stderr are redirected
    those values will be None in any case.

    """

    exit, out, err = run_sandbox(command, **sandbox_config)
    # out and err will be None
    return exit

def get_program():
    return bubblewrap_program()

# Non API methods below


def bubblewrap_program():
    # Raises sandboxlib.ProgramNotFound if not found.
    return sandboxlib.utils.find_program('bwrap')


def create_mount_points_if_missing(filesystem_root, mount_info_list):
    for source, mount_point, mount_type, mount_options in mount_info_list:
        # Strip the preceeding '/' from mount_point, because it'll break
        # os.path.join().
        mount_point_no_slash = os.path.abspath(mount_point).lstrip('/')

        path = os.path.join(filesystem_root, mount_point_no_slash)
        if not os.path.exists(path):
            log.debug("making empty '{}' directory in '{}'".
                      format(mount_point_no_slash, filesystem_root))

            os.makedirs(path)


def process_network_config(network):
    sandboxlib.utils.check_parameter('network', network, CAPABILITIES['network'])

    if network == 'isolated':
        # This is all we need to do for network isolation
        network_args = ['--unshare-net']
    else:
        network_args = []

    return network_args


def process_mounts(fs_root, mounts, writable_paths):
    """
    filesystem_writable_paths: defaults to 'all', which allows the command
            to write to anywhere under 'filesystem_root' that the user of the
            calling process could write to. Backends may accept a list of paths
            instead of 'all', and will prevent writes to any files not under a
            path in that whitelist. If 'none' or an empty list is passed, the
            whole file-system will be read-only. The paths should be relative
            to filesystem_root. This will processed /after/ extra_mounts are
            mounted.
    extra_mounts: a list of locations to mount inside 'rootfs_path',
            specified as a list of tuples of (source_path, target_path, type,
            options). The 'type' and 'options' should match what would be
            specified in /etc/fstab, but a backends may support only a limited
            subset of values. The 'target_path' is relative to filesystem_root
            and will be created before mounting if it doesn't exist.
    """

    log.debug("process_mounts(fs_root={}, mounts={}, writable_paths={})".format(fs_root, mounts, writable_paths))
    extra_args = []
    fs_dict = {}

    for ex_mnt in mounts:
        mnt_src, mnt_target, mnt_type, mnt_options = ex_mnt
        # TODO
        # How to handle options? Can bwrap do this?

        if mnt_target not in fs_dict.keys():
            fs_dict[mnt_target] = {'src': mnt_src, 'type': mnt_type, 'options': mnt_options}
        # already exists. should only upgrade some things
        else:
            # Use current files/folders from host
            if fs_dict[mnt_target]['type'] == "tmpfs"\
                    and is_mount_writable(mnt_target, writable_paths):
                fs_dict[mnt_target]['type'] = None
                fs_dict[mnt_target]['src'] = mnt_src
            # else ??

    # This needs to be done to turn tmpfs mounts into normal binded mounts
    # when we are expecting data to already be inside the mount, else an
    # empty mount is made. This breaks the test_mount_point_writable test
    if type(writable_paths) is list:
        for wr_mnt in writable_paths:
            if wr_mnt not in fs_dict.keys():
                fs_dict[wr_mnt] = {}

            # fs_dict[wr_mnt]['options'] = None
            # fs_dict[wr_mnt]['type'] = None
            fs_dict[wr_mnt]['src'] = os.path.join(fs_root, wr_mnt.strip("/"))

    for k, v in fs_dict.items():
        mnt_src = v['src']
        mnt_target = k
        mnt_type = v.get('type', None)
        mnt_options = v.get('options', None)

        log.debug("mount ({},{},{},{})".format(mnt_src, mnt_target, mnt_type, mnt_options))

        if mnt_options is "bind":
            # For legacy reasons, 'bind' is set as an option for some reason, instead
            # of listed in filesystem_writable_paths. We will append the path here anyway
            writable_paths.append(mnt_target)

        if mnt_type == "proc":
            extra_args.extend(['--proc', mnt_target])
        elif mnt_type == "tmpfs":
            extra_args.extend(['--tmpfs', mnt_target])
        elif mnt_target == "/dev":
            # TODO dev can be mounted in two ways in bwrap
            # First is using the --dev option that mounts host /dev
            # Second is using --dev-bind for moutning a [src] to [dest]
            # while allowing device access.


            # How do we diferentiate the two?
            # Check if we are mounting host root to target
            if "/" in fs_dict.keys() and fs_dict['/']['src'] == "/":
                log.info("Using --dev to share host dev")
                extra_args.extend(['--dev', mnt_target])
            else:
                log.info("Using --dev-bind for local dev")
                extra_args.extend(['--dev-bind', mnt_src, mnt_target])
        else:
            if is_mount_writable(mnt_target, writable_paths):
                extra_args.extend(['--bind', mnt_src, mnt_target])
            else:
                extra_args.extend(['--ro-bind', mnt_src, mnt_target])

    # Final remount if root is read-only
    if not is_mount_writable("/", writable_paths):
        log.debug("/ is set as RO")
        extra_args += ["--remount-ro", "/"]

    return extra_args

                
def is_mount_writable(mnt, writable_paths):
    # Deal with the catch all statements first
    if writable_paths == 'all':
        return True
    elif writable_paths in ['none', []]:
        return False
    elif type(writable_paths) is list:
        return mnt in writable_paths
        
    # Default/unknown case
    else:
        log.warn("Unknown bubblewrap.writable_path arg type given : {} type({})"
                 .format(writable_paths, type(writable_paths)))
        
        return False