Skip to content

Releases: igo95862/bubblejail

0.8.3

02 Mar 15:25
0.8.3
5331f1c
Compare
Choose a tag to compare

Features

  • Add debug service which can be used to add arguments to bwrap
    and xdg-dbus-proxy invocations. See bubblejail.services man page
    for its configuration keys and values. (requested by @xiota)
  • Document directories used by bubblejail in bubblejail man page.
    (requested by @firefoxlover)

Fixes

  • Mount file pointed by symlink if /etc/resolv.conf is a symlink when network
    service is used. This fixes DNS issues when systemd-resolved is used.
    (first reported by @adworacz)
  • Fixed joystick description not being complete. (reported by @xiota)
  • Fixed PYTHONPYCACHEPREFIX environment variable breaking build system.
    (first reported by mlj on AUR)

0.8.2

25 Oct 16:49
0.8.2
12307c4
Compare
Choose a tag to compare

Fixes

  • Fix slirp4netns service sometimes failing because of wrong user namespace
    being passed. (reported by @xiota)
  • Fix bubblejail sometimes continuing to run even if some service failed to
    initialize. (reported by @xiota)
  • Fix typo in the generic.toml profile file. (contributed by @I-Al-Istannen )

0.8.1

06 Aug 15:21
0.8.1
806acc9
Compare
Choose a tag to compare

Features

  • Added support for tomllib standard library package for reading TOML files.
    It is available since Python 3.11. tomli package is now only needed if
    running on Python 3.10. (note that TOML writing library tomli-w is still
    required)
  • Using run command on an already running instance now prints a message to stderr
    that the instance already running and the commands that will be sent to instance.
  • Tightened D-Bus filtering rules for Notifications and Systray services. Turns out
    a lot of D-Bus servers for those services expose too many interfaces than required.
    (thank you @rusty-snake for pointing this out)

Fixes

  • Fixed trying to create config directories on access. If a system wide directory was
    missing like /etc/bubblejail/profiles/ bubblejail would fail to run.
    (reported by @rusty-snake)
  • Removed isolated python mode for build scripts. This makes it easier to build bubblejail
    when meson or Python is installed in non system directory. (fixed with the help of @eli-schwartz)
  • Fixed slirp4netns initialization failure being ignored. Now if slirp4netns fails to
    start bubblejail will also fail. (reported by @xiota)
  • Fixed running bubblejail without arguments raising exception instead of help text.
    (fixed by @rusty-snake)
  • Fixed namespaces_limits initialization failure being ignored. Now if namespaces_limits
    fails to set namespace limits bubblejail will also fail. (reported by @rusty-snake)

0.8.0

01 Jul 14:22
0.8.0
a97e617
Compare
Choose a tag to compare

Known Issues

  • GUI has been ported to Qt6. After porting some text elements appear to be washed out. See issue #57
  • Certain services only available to x86_64 platform. (slirp4netns and namespaces_limits)
  • slirp4netns and namespaces_limits can conflict with each other because slirp4netns tries to switch to new mount namespace.

Changelog since 0.7.0

Added namespaces_limits service

Linux namespaces are a powerful instruments that can be used to create
sandboxes but it also exposes internal kernel interfaces to unprivileged users
which can be a source of vulnerabilities. (for example CVE-2022-25636)

New service namespaces_limits will limit amount of namespaces that
could be created inside sandbox.

It has user, mount, pid, ipc, net, time, uts and cgroup
settings which corresponds to each type of namespace. Those settings take
an integer as value with 0 (default) completely disabling creating that
type of namespace, -1 allowing unlimited amount and any positive integer
sets limit to that number. The positive integer is useful in case your application
will only create a limited number of namespaces.

Profiles might receive a well tested namespaces limits in the future version.

Dependenices changes

  • GUI has been ported to PyQt6.

Build changes

  • Fixed libseccomp and python-xdg being required during build.
  • Added meson option to disable man page build and installation.
  • Added meson install tags. Current tags are runtime for core files and CLI tool,
    bubblejail-gui for gui configuration tool, fish-completion/bash-completion
    for shell autocompletion and man for man pages.
    (thank you @gordon-quad)

Fixes

  • Fixed X11 multi-screen not working. (the single screen spanning multiple displays already works)
    (thank you @gxtu)

0.8.RC2

15 Apr 16:24
0.8.RC2
be8028d
Compare
Choose a tag to compare
0.8.RC2 Pre-release
Pre-release

Changes since 0.8.RC1

Fixes

  • Fixed GUI not working because of integer settings that namespaces_limits
    uses.

0.8.RC1

09 Apr 15:08
0.8.RC1
2f60972
Compare
Choose a tag to compare
0.8.RC1 Pre-release
Pre-release

Added namespaces_limits service

Linux namespaces are a powerful instruments that can be used to create
sandboxes but it also exposes internal kernel interfaces to unprivileged users
which can be a source of vulnerabilities. (for example CVE-2022-25636)

New service namespaces_limits will limit amount of namespaces that
could be created inside sandbox.

It has user, mount, pid, ipc, net, time, uts and cgroup
settings which corresponds to each type of namespace. Those settings take
an integer as value with 0 (default) completely disabling creating that
type of namespace, -1 allowing unlimited amount and any positive integer
sets limit to that number. The positive integer is useful in case your application
will only create a limited number of namespaces.

Profiles might receive a well tested namespaces limits in the future version.

Dependenices changes

  • GUI has been ported to PyQt6.

Build changes

  • Fixed libseccomp and python-xdg being required during build.
  • Added meson option to disable man page build and installation.
  • Added meson install tags. Current tags are runtime for core files and cli tool,
    bubblejail-gui for gui configuration tool, fish-completion/bash-completion
    for shell autocompletion and man for man pages.
    (thank you @gordon-quad)

Known issues

  • slirp4netns and namespaces_limits can conflict with each other because
    slirp4netns tries to switch to new mount namespace.
  • Namespaces functions only work on x86_64 platform.

0.7.0

12 Feb 08:05
0.7.0
1820189
Compare
Choose a tag to compare

Version 0.7.0 is out!

This version comes with a substantial build dependencies changes. m4 and sphinx have been replaced with jinja2 and scdoc respectively.

One new service has been added - slirp4netns. This service allows for separated networking namespace for sandbox while still being connected to the internet. It can also use a separate DNS server and bind to specific device or address. However, slirp4netns seems to have its own issues like built-in DNS resolver does not seem to work on my machine. (so using the options to specify a DNS nameserver is recommended)

I also opened a Patreon and Librerapay. I intent to use the Patreon as a blog where I will post the upcoming roadmaps and other news.

Changelog

  • m4 macro processor removed as build dependency
  • jinja2 template engine is now a build requirement
  • Sphinx removed as build dependency
  • scdoc is now used to build man pages. This is optional build dependency.
    If scdoc is not present the man pages will not be built.
  • Added bubblejail.services man page that contains information about all
    services and their options.
  • Added build option to specify bytecode optimization level.
    Optimization level should match your distro optimization level or there
    will be start-up penalty. Option is named bytecode-optimization and takes
    an integer from 0 to 2.
  • Added slirp4netns service. It is a custom networking stack for the sandbox.
    Allows to disconnect sandbox from loopback interface or bind it to a specific
    device or address. Currently only available on x86_64 platforms.
    Requires slirp4netns binary be installed.
  • Added service conflicts. Conflicting services can't be activated together.
    Currently ibus conflicts fcitx and network conflicts with slirp4netns.
  • Profiles can now be defined in /etc/bubblejail/profiles folder and will be
    available to any user on the system.

0.6.2

15 Jun 18:29
0.6.2
b7b2fa5
Compare
Choose a tag to compare

Fixes

  • Fixed generated empty desktop entries not having Type= key.
  • Fixed XAUTHORITY not being optional.
  • Fixed desktop notification about bubblewrap exiting with error
    being sent every time sandbox closes.

0.6.1

05 Jun 16:12
0.6.1
465899d
Compare
Choose a tag to compare
  • Fixed an edge case when users home directory overlapped with legacy location
  • notify-send is now more optional. No longer raises extra exception
    if it is missing.
  • Desktop notification is now sent on any bubblewrap non-zero exit code

0.6.0

15 May 17:10
0.6.0
969887a
Compare
Choose a tag to compare
  • /etc is now shared with sandbox. This is potentially breaking change
  • Home directory is now in same position from the prespective of sandbox
  • Removed support for old toml python package
  • Desktop notification is now sent if sandbox fails to start. (new dependency on notify-send)
  • Added Fcitx service (thanks @h0cheung)
  • Deprecated share_local_time option of common settings
  • Deprecated enable_aco option of DRI