Merge pull request #10937 from EtiennePerot:dangerzone-blog-post

PiperOrigin-RevId: 677873535
This commit is contained in:
gVisor bot
2024-09-23 11:33:04 -07:00
10 changed files with 443 additions and 2 deletions
+8
View File
@@ -27,6 +27,14 @@ defaults:
layout: default
analytics: "UA-150193582-1"
authors:
almet:
name: Alexis Métaireau
email: alexis@notmyidea.org
url: https://notmyidea.org
apyrgio:
name: Alex Pyrgiotis
email: alex.p@freedom.press
url: https://freedom.press/people/alex-p
ayushranjan:
name: Ayush Ranjan
email: ayushranjan@google.com
+9 -2
View File
@@ -183,7 +183,7 @@ table th {
margin: 20px auto;
}
.blog-content .attribution {
.blog-content .attribution, .blog-content figcaption {
/* Stay close to the image. */
display: block;
margin-top: 6px;
@@ -195,13 +195,20 @@ table th {
color: $text-color-secondary;
}
.blog-content * img:has(+ .attribution) {
.blog-content * img:has(+ .attribution), .blog-content * img:has(+ figcaption) {
/* Remove bottom margins from images where there is an attribution line
* immediately following the image.
*/
margin-bottom: 0px;
}
.blog-content .attribution, .blog-content figcaption {
/* Remove margin above image caption. */
margin-top: 0px;
/* Add margin under image caption. */
margin-bottom: 1em;
}
.blog-content details {
margin-left: 2em;
margin-right: 2em;
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 254 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1012 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 940 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.2 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.2 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 1.0 MiB

+408
View File
@@ -0,0 +1,408 @@
# Safe Ride into the Dangerzone: Reducing attack surface with gVisor
*This article was written in collaboration with the
[Freedom of the Press Foundation](https://freedom.press) and
[cross-posted on the Dangerzone blog](https://dangerzone.rocks/news/2024-09-23-gvisor).*
One of the oft-repeated sound bites of computer security advice is: “Don't open
random attachments from strangers.” If you are a journalist, however, opening
attachments and documents is part of your job description. Since journalists
already have a lot of security threats to worry about in dealing with sources,
the safe opening of documents should not be one of them.
[Dangerzone](https://dangerzone.rocks) was developed to solve this problem. It
lets you open suspicious documents with confidence and gets out of your way.
For the past few months, members of the Dangerzone team and the
[gVisor project](https://gvisor.dev) collaborated on significantly improving the
security properties of Dangerzone. We're excited to announce that **as of
version 0.7.0, Dangerzone uses gVisor to secure its document conversion
process**. It is already trusted by Google
[and others](https://gvisor.dev/users) to secure cloud products, scan Gmail
attachments for viruses, etc.
<!--/excerpt-->
If youre an existing Dangerzone user on 0.7.0 scratching your head and thinking
“Well, I havent noticed anything different,” then first of all, “yay!” That was
the plan. And second, because the plan worked so deviously well, this change has
probably flown under the radar, so here are more than 3,000 words to amend this.
The rest of the article dives deep into Dangerzones security, describes how
gVisor works as a technology, and explains how Dangerzones security profile has
changed after this integration. Expect some technical terms and nerdery.
## How Dangerzone works
Dangerzone's purpose is to sanitize documents of any elements that can
compromise your computer or the sources identity (think malware and document
metadata). To do this, it first renders the document into visual data (pixels)
and then turns this visual representation back into a readable document file.
The first part of this process (rendering the document into pixel data) is the
most security-critical part and, for the purpose of this article, we will zoom
in on just this.
> 💡 For a broader understanding of how Dangerzone works, we encourage you to
> read the [“About Dangerzone”](https://dangerzone.rocks/about/) section on the
> Dangerzone website. Props to the [Qubes OS](https://www.qubes-os.org/) team,
> who first popularized the concept that is now their
> [TrustedPDF feature](https://blog.invisiblethings.org/2013/02/21/converting-untrusted-pdfs-into-trusted.html).
In order to support a wide variety of document formats (PDF, office documents,
image formats, etc.), Dangerzone needs to open them with software that
potentially has security bugs. That may result in compromise of the users
device, personal files, and communication. This is the same risk you face when
you use your computer to open attachments from unknown sources. Dangerzone needs
to somehow isolate this process from the rest of your computer, so that anything
it does cannot "get out of the box".
Dangerzones isolation relies on **Linux containers**. Containers are very handy
for two things: ensuring that they work the same way across operating systems
and separating the container from the rest of the machine.
<figure>
<img src="/assets/images/2024-09-23-dangerzone-outline.svg" alt="Diagram showing the Dangerzone UI sending a document to a document renderer, which converts it to pixels, and then receives the pixels back.">
<figcaption>Outline of how Dangerzone uses containers to render a document into pixels.</figcaption>
</figure>
Dangerzone benefits from both of these aspects: Development and testing are made
easy by using containers' cross-platform compatibility; and containers'
security, especially how Dangerzone configured them, offers strong isolation
guarantees. The
[security audit Dangerzone passed recently](https://freedom.press/news/dangerzone-receives-favorable-audit/)
is a testament to this.
In computer security, the gold standard of isolation is **virtual machines**.
VMs are what they sound like: a computer running within a computer. When running
a virtual machine, the "host" (outer) machine is protected from the action of
the "guest" (inner) virtual machine. This is why the TrustedPDF feature of
QubesOS uses disposable VMs as its isolation mechanism. Dangerzone also tried to
use VMs in the past, but implementing them in a multiplatform way proved
high-maintenance. Thus, Dangerzone switched back to containers, but the team
always wanted to improve Dangerzones security properties.
> 💡 How does Dangerzone use Linux containers on Windows and Mac OS? It requires
> [Docker Desktop](https://www.docker.com/products/docker-desktop/), which runs
> Linux inside a virtual machine and then runs Linux containers in it.
## Dangerzones attack surface
To understand how to protect Dangerzone users from exploits, it's useful to
think like an attacker. When Dangerzone processes a malicious document within a
container, the first point of the attack is the application that opens the
document. Dangerzone is designed with the assumption that determined attackers
will find a vulnerability in such applications and take control of them (check
out this [security advisory from the Dangerzone team about a recent, critical
LibreOffice
vulnerability](https://github.com/freedomofpress/dangerzone/blob/main/docs/advisories/2023-12-07.md)).
From there on, the next point of attack is to circumvent the Linux kernel
protections for the container or directly compromise the Linux kernel.
The Linux kernel, even in Docker Desktop VMs, is a very privileged component. It
has access to sensitive data, such as other files on the user's machine or the
user's browser history, and to your computers network.
Processes in containers interface with the Linux kernel through
[**system calls**](https://en.wikipedia.org/wiki/System_call) and
[**virtual filesystems**](https://opensource.com/article/19/3/virtual-filesystems-linux).
Attackers can try to take advantage of security bugs in the above interfaces. So
it is critical to limit the container's access to the Linux kernel. We call this
the container's
[**attack surface**](https://en.wikipedia.org/wiki/Attack_surface). The smaller
it is, the more secure a system is.
Dangerzone tries to reduce its attack surface by multiple mechanisms available
to Linux containers:
* Removal of
[process capabilities](https://en.wikipedia.org/wiki/Capability-based_security).
This reduces the set of permissions the container has in the kernel.
* Removal of network access. This prevents the container from accessing the
internet to exfiltrate document data.
* Filtering of allowed system calls through
[seccomp](https://en.wikipedia.org/wiki/Seccomp). This reduces the set of
system calls (i.e., types of actions) that the container is allowed to make
to the kernel.
* Minimal [user ID](https://en.wikipedia.org/wiki/User_identifier) mapping.
This reduces the risk that the container may access files belonging to users
other than the Dangerzone user on the same computer.
> 💡 Check out the above protection measures in
> [Dangerzones codebase](https://github.com/freedomofpress/dangerzone/blob/88a2d151ab4a3cb2f769998f27f251518d93bb45/dangerzone/isolation_provider/container.py#L188-L213).
<figure>
<img src="/assets/images/2024-09-23-dangerzone-protections.svg" alt="Diagram showing that the renderer and LibreOffice make system calls to the Linux kernel, to which several filters are applied.">
<figcaption>Container protections employed by Dangerzone prior to 0.7.0.</figcaption>
</figure>
This provides the container with a fair degree of isolation from the Linux
kernel. However, some attack surface remains, since:
* The computers user is still mapped in the container. This means that a
container escape would allow the attacker to access the users personal
files (browser data, documents, etc.); it would be more isolated if that
were not the case.
* The system call filter is still relatively permissive. The specific system
calls that are blocked are dependent on the container manager and version in
use (see
[Docker's filters, for example](https://github.com/microsoft/docker/blob/master/docs/security/seccomp.md)),
but in general, the system call filter only blocks obscure or
system-admin-only system calls (e.g., rebooting, modifying systemwide
settings). It does not block containers from opening arbitrary files or
interacting with the network stack, which can still be vectors for security
bugs.
* The containers root filesystem, while ephemeral, is still writable. This
allows attackers to exploit potential vulnerabilities in Linuxs filesystem
stack.
* The Linux kernel is still exposed to the container. While it is possible to
reduce the attack surface available to the container to a minimum, this
architecture still requires that the container have direct access to Linux
via system calls. So if a Linux security bug can be triggered within the set
of filtered system calls, an attack may still be successful.
<figure>
<img src="/assets/images/2024-09-23-dangerzone-protections-annotated.svg" alt="Diagram highlighting how access to the Linux kernel and the relatively permissive system filter may create exposure to bugs or vulnerabilities.">
<figcaption>Dangerzones attack surface prior to 0.7.0, illustrated.</figcaption>
</figure>
We've wanted to mitigate these risks for a while now, but we had to do so in a
cross-platform way and without burdening the user with administrative tasks.
Enter gVisor.
## What is gVisor?
[**gVisor**](https://gvisor.dev) is a container security solution. In short, it
makes it much harder for malicious code to break out of the container boundary.
This was a great fit for Dangerzone's security needs.
An open source project written in Go, gVisor was released in May 2018 by Google
under the Apache 2.0 license. It runs on Linux and integrates with all popular
container management software, such as Docker, Podman, or Kubernetes. At its
core, gVisor is an **application kernel** that implements a substantial portion
of the Linux system call interface. This means gVisor sits between a container
and the Linux kernel and plays both roles: from the container's perspective,
gVisor acts as a **kernel**, but from Linux's perspective, gVisor is just a
regular **application**. That means the container can no longer directly
interface with the Linux kernel. This is a massive reduction in attack surface.
If youre new to gVisor, the concept of not interfacing with the Linux kernel at
all may seem either quite vague or overly restrictive. Thats normal, so lets
toy with this concept a bit for fun and illustrative purposes. Heres a
perfectly normal sentence:
> “A process opens a document on the filesystem”
And heres how gVisor warps every single word in that sentence: * “on the
filesystem”: Nope, no such thing. The gVisor container runs in an empty
filesystem. * “opens a document”: Nuh-uh, the gVisor container does not even
have the permission to perform the `open` system call. Also, there are no files
to open in the first place. * “A process”: Amusingly, the gVisor container does
not even have the ability to perform the `exec` system calls. From the Linux
kernel's perspective, the gVisor “process” looks like a typical multithreaded
program, even while many independent processes are running within the gVisor
sandbox.
And yet, gVisor can containerize most applications without issue. For example,
the Dangerzone container image was not altered at all for the gVisor
integration.
So whats going on here?
gVisor manages to pull the above trick with the help of two components:
1. **Sentry** is the component that runs the containerized application. It
intercepts every system call that the application makes and reimplements it
in Go. As part of this, it may decide to do one or more system calls to the
host Linux kernel. However, its heavily restricted with a strict seccomp
filter (thats why system calls like `open`, `socket`, or `exec` are not
allowed).
2. **Gofer** is a component that runs outside the container and is responsible
for filesystem operations. The sentry may make I/O requests to the gofer.
The gofer will independently validate them, then perform these I/O
operations on the containers behalf (thats how the container can read
files from the host filesystem, even though `open` is not allowed from the
sentry).
The above components are managed by a container runtime called `runsc`, which
exposes the same interface as other container runtimes. This means it can be
integrated in other container management software like Podman, Docker, or
Kubernetes.
<figure>
<img src="/assets/images/2024-09-23-gvisor-outline.svg" alt="Diagram showing a potentially vulnerable application running in the gVisor sandbox. gVisor Sentry implements the sandbox and intercepts all system calls. It services them either by making limited system calls of its own, or by asking gVisor Gofer to perform I/O system calls on its behalf. Both components are further restricted by a tailored kernel filter, along with other kernel protections.">
<figcaption>gVisor intercepting system calls from a sandboxed application</figcaption>
</figure>
With the above architecture, gVisor blue-pills the application into thinking
that it interacts with a regular Linux kernel. In practice, gVisor reimplements
most basic features that Linux provides (memory management, scheduling, system
call interface, I/O, networking), and only issues system calls to the Linux
kernel when truly necessary, such as when it needs information from it (e.g.,
reading the document to be converted by Dangerzone).
The gVisor kernel is designed to be difficult to break out of. gVisor is written
in Go. Many of Linux's security woes stem from its use of C, which is a
memory-unsafe language. By contrast, gVisor is a regular Go application and
inherits Go's memory safety features. This eliminates a large class of security
vulnerabilities.
The gVisor kernel also has a much smaller code footprint, because unlike a
traditional kernel like Linux, it does not have to deal with things like
hardware devices, and only implements a subset of the Linux kernel interface
that is sufficient for most applications to work in practice. Because of its
smaller implementation, there are fewer moving parts to juggle between, and thus
fewer opportunities for bugs to exist.
Beyond its kernel indirection, gVisor also hardens itself through a bunch of
security measures on startup, some of which are similar to regular containers:
* **Isolation**: Running in its own set of namespaces (user namespace, process
namespace, network namespace, etc.) to further isolate it from the host.
* **File access prevention**: Running in its own root with exactly zero host
files initially visible to it.
* **Privilege revocation**: Dropping all capabilities it has to ensure it runs
with the least privileges.
* **System call filtering**: Setting a strict system call filter tuned for the
gVisor Sentry specifically.
* As mentioned, unlike Docker or Podman's default system call filter, this
is a *very restricted set* of system calls. This filter blocks basic
operations like opening files, creating network connections, or
executing other processes. The presence of this filter does *not*
prevent use of these system calls from within the gVisor sandbox;
instead, the gVisor kernel *intercepts and reimplements* system calls
internally without needing to make a “real” system call out to the Linux
kernel.
* The gofer also uses all of the above techniques to isolate itself as much as
possible.
The gVisor kernel has been battle-tested by Google and other large companies
like Ant and Cloudflare. For example, searching for the text "GKE Sandbox"
(which uses gVisor) on the
[GKE security bulletin](https://cloud.google.com/kubernetes-engine/security-bulletins)
shows how often Linux kernel vulnerabilities occur but that gVisor prevents.
gVisor is also continuously [fuzz-tested](https://en.wikipedia.org/wiki/Fuzzing)
for bugs using [Syzkaller](https://github.com/google/syzkaller/), an automated
kernel security testing tool.
Whats the catch here? Applications that perform lots of system calls and heavy
I/O will have some degraded performance. Also, applications that rely on exotic
features by the Linux kernel may not work. In practice,
[the majority of applications do not suffer from this issue](https://gvisor.dev/docs/user_guide/compatibility).
## Integrating gVisor with Dangerzone
So, gVisor looks like a strong candidate for Dangerzone, which is a relatively
simple application that does not perform a heavy amount of system calls. Also,
gVisor conveniently offers a container runtime that is a drop-in replacement for
use with Docker/Podman. Therefore, integrating these two projects should be
really simple, right?
Well, not so fast.
Dangerzone is a *multiplatform* application, and most of its users are on
Windows and macOS. Integrating gVisor just for Linux would not cut it. At the
same time, gVisor works strictly on Linux systems, so we are at an impasse.
In what is, in retrospect, a classic case of
[Maslows hammer](https://en.wikipedia.org/wiki/Law_of_the_instrument), we
decided to solve our container problems with yet another container. The idea is
simple; why not containerize gVisor and make it run on Docker Desktop? After
all, as we already pointed out, Docker Desktop runs Linux inside a virtual
machine.
By doing so, Dangerzone now has two containers with different responsibilities:
* The **outer** Docker/Podman container acts as the **portability** layer for
Dangerzone. Its main responsibility is to bundle the necessary config files,
scripts, and programs to run gVisor. It's also responsible for bundling the
container image that gVisor will spawn a container from. * The **inner** gVisor
container acts as the **isolation** layer for Dangerzone. Its sole
responsibility is to run the actual Dangerzone logic for rendering documents to
pixels.
<figure>
<img src="/assets/images/2024-09-23-dangerzone-with-gvisor.svg" alt="Diagram showing the Dangerzone UI sending a document to a document renderer within an inner container, which is protected by gVisors Sentry. The Sentry intercepts system calls, allowing only limited system calls to pass to the Linux kernel with strict security settings. I/O system calls are handled by gVisor Gofer in an outer container, with less strict but controlled permissions">
<figcaption>Outline of how gVisor integrates with Dangerzone. There are now two nested containers, and each one brings its own protections. Usage of LibreOffice is implied.</figcaption>
</figure>
Running gVisor inside a container came with its own set of challenges: * The
Docker/Podmans seccomp filter must allow the `ptrace` system call. We found
that recent Docker Desktop versions and Podman version >= 4.0 have a seccomp
filter that allows this system call. For older versions, we specified a custom
seccomp filter that allowed it. * gVisor cannot run under SELinux in enforcing
mode under default settings, so we labeled the container with
`container_engine_t` (see GitHub issue
[#880](https://github.com/freedomofpress/dangerzone/issues/880)). * The
Docker/Podman container must run with the `SYS_CHROOT` capability. This is
needed by gVisor to restrict its own access to the filesystem before it starts
document processing. Other than that, the **outer** container drops all other
capabilities and privileges.
> 💡 You can find more details about this integration in the Dangerzones
> [gVisor design doc](https://github.com/freedomofpress/dangerzone/blob/main/docs/developer/gvisor.md).
## Dangerzone protections
We talked about Dangerzones original attack surface, and how we integrated
gVisor to reduce it. In practice though, in what ways is Dangerzone better off
than before? Well, if the Matryoshka containers are giving you a headache, or
you just skimmed to this section (no shade), heres how the new Dangerzone
protections fare against the previous version, and the default protections of
Linux containers:
🛡️ **Protections** | **Default** | **Dangerzone (0.6.1)** | **Dangerzone + gVisor (0.7.0)**
------------------------------ | -------------------------------------------------------- | --------------------------------------------------------- | -------------------------------
🐧 **Linux kernel** | <span style="color: #505050;">Exposed</span> | <span style="color: #990000;">👎 Exposed</span> | <span style="color: #38761d">🎉 Not exposed</span>
🛠️ **System call filter** | <span style="color: #505050;">Moderate</span> | <span style="color: #990000;">👎 Moderate</span> | <span style="color: #38761d">👍 Strict</span>
🛠️ **Capabilities** | <span style="color: #505050;">Default</span> | <span style="color: #38761d">👍 None</span> | <span style="color: #38761d">👍 None</span>
👤 **Host user** | <span style="color: #505050;">Mapped</span> | <span style="color: #990000;">👎 Mapped</span> | <span style="color: #38761d">👍 Unmapped</span>
📁 **Filesystem** | <span style="color: #505050;">Exposed</span> | <span style="color: #990000;">👎 Writable</span> | <span style="color: #38761d">👍 Read-only</span>
🌐 **Network** | <span style="color: #505050;">Exposed</span> | <span style="color: #38761d">👍 Disabled</span> | <span style="color: #38761d">✌️ Disabled at two levels</span>
🔒 **SELinux** | <span style="color: #505050;">Yes (`container_t`)</span> | <span style="color: #38761d">👍 Yes (`container_t`)</span> | <span style="color: #38761d">👍 Yes (`container_engine_t`)</span>
🖥️ **Hardware Virtualization** | <span style="color: #505050;">None</span> | <span style="color: #990000;">👎 None</span> | <span style="color: #990000;">👎 None</span>
As you can see, the most important protection is that **the document conversion
process no longer has access to the Linux kernel**. Instead, it only has access
to the gVisor kernel (in the Sentry), and must break out of it before it can
access the Linux kernel that it (prior to gVisor integration) had access to.
Additionally, Dangerzone itself configures the two containers to be more secure
with:
* Privilege revocation: Removing all privileges and capabilities of the
document conversion process in the **inner container**, and minimizing the
set of capabilities granted to the **outer container** to just `SYS_CHROOT`
and no other.
* File modification prevention: Making the **inner container**'s root
filesystem read-only.
* User isolation: Running the **outer container** in a user namespace that
does not include the Dangerzone UI user (available in Linux distributions
with Podman version 4.1 or greater).
* Kernel security settings: Setting the **outer container**'s system call
filter and SELinux label settings.
* Host access prevention: Not using any mounts in either container.
* Network access prevention: Disabling both containers' ability to use
networking.
<figure>
<img src="/assets/images/2024-09-23-dangerzone-with-gvisor-annotated.svg" alt="Diagram highlighting how gVisor mitigates against bugs and vulnerabilities in the inner container, including exploits which escalate privileges to the outer container.">
<figcaption>Explanation of how Dangerzones latest protections limit its attack surface.</figcaption>
</figure>
## Conclusion
Integrating the gVisor project with Dangerzone was very exciting: It's a good
example of how gVisor can add another line of defense to a project without
requiring application-level changes.
At the same time, the design complexity of the Dangerzone project increased a
bit, mostly to cater to its cross-platform nature, but honestly not that much.
Dangerzone is strongly security-focused, so we believe it's worth the cost.
We hope that this article demystifies some security aspects of containers, so
that you can use Dangerzone and gVisor with even more confidence. Feel free to
reach out to us with any questions or comments: *
[Etienne Perot](https://perot.me) * [Alexis Métaireau](https://notmyidea.org) *
[Alex Pyrgiotis](https://freedom.press/people/alex-p) *
[Freedom of the Press Foundation (FPF)](https://freedom.press/contact/) *
[gVisor community](https://gvisor.dev/community)
+12
View File
@@ -141,6 +141,18 @@ doc(
permalink = "/blog/2024/02/01/seccomp/",
)
doc(
name = "dangerzone",
src = "2024-09-23-dangerzone.md",
authors = [
"almet",
"apyrgio",
"eperot",
],
layout = "post",
permalink = "/blog/2024/09/23/safe-ride-into-the-dangerzone/",
)
docs(
name = "posts",
deps = [