initial version

This commit is contained in:
taradiddles 2018-09-25 23:04:29 +03:00
parent eb8a7ccb5b
commit e65d8de382

View File

@ -0,0 +1,118 @@
How to open links/files in other VMs
====================================
This document describes how to automatically open files/attachments or URLs from a VM in another VM (usually a dispVM), with or without user confirmation. This setup particularly suits "locked down" VMs with restrictive firewalls like "mailVMs".
Naming convention: `srcVM` is the VM where the files/URLs are, while `dstVM` is the VM we want to open them in. `dstVM` can be any VM type - a dispVM, a regular AppVM, a whonix dvm, ...
Configuring `srcVM`
-------------------
There are a few approaches that one can follow to open files as we'll see below, but all of them rely on the `qubes.OpenInVM` and `qubes.OpenURL` [RPC services](https://www.qubes-os.org/doc/qrexec3/#qubes-rpc-services), usually through the `qvm-open-in-vm` and `qvm-open-in-dvm` scripts.
### Command-line ###
Save for copy/pasting URLs between VMs, the most basic - and less convenient - approach is to open files or URLs like so:
~~~
qvm-open-in-vm dstVM http://example.com
qvm-open-in-vm dstVM word.doc
~~~
Or, if opening in random dispVMs:
~~~
qvm-open-in-dvm http://example.com
qvm-open-in-dvm word.doc
~~~
(Actually `qvm-open-in-dvm` is a wrapper to `qvm-open-in-vm`).
### Per application setup ###
Stepping up from the command line approach, a better solution would be to configure each application to use the `qvm-open-in-vm` script.
#### Thunderbird ####
In the case of Thunderbird, that would mean defining actions for attachement (see the [mozilla doc](http://kb.mozillazine.org/Actions_for_attachment_file_types), mainly section "Download Actions" settings"). Changing the way http and https URLs are opened requires tweaking config options (see [this mozilla doc](http://kb.mozillazine.org/Changing_the_web_browser_invoked_by_Thunderbird)). This can be made with thunderbird's config editor, or by adding the following to `$HOME/.thunderbird/user.js`:
~~~
user_pref("network.protocol-handler.warn-external.http", true);
user_pref("network.protocol-handler.warn-external.https", true);
// http://kb.mozillazine.org/Network.protocol-handler.expose-all
user_pref("network.protocol-handler.expose-all", true);
~~~
The next time you click on a link, Thunderbird will ask which program to use. If you want to open links in dispVMs, choose `qvm-open-in-dvm`. Otherwise you'll have to create a wrapper since you can't pass arguments in Thunderbird's dialog. For instance, put the following in `$HOME/bin/thunderbird-url`, make it executable, and choose that script for opening http/https URLs:
~~~
#!/bin/sh
qvm-open-in-vm dstVM "$@"
~~~
#### Firefox, Chrome/Chromium ####
Those programs probably have the same mechanism as Thunderbird to define what program to use for each file (Mime) type. However this isn't really flexible - one may want to open files in different dstVMs depending on the site's level of trust - in which case Raffaele Florio's [qubes-url-redirector](https://github.com/raffaeleflorio/qubes-url-redirector) add-on comes handy: links can be opened with context menu entries, the add-on has a settings page embedded in browser to customize default behavior, with support for whitelist regexes).
#### Vi ####
Put the following in `$HOME/.vimrc` to open URLs in `dstVM` with `gx` when the cursor is over an URL:
~~~
let g:netrw_browsex_viewer = 'qvm-open-in-vm dstVM'
~~~
### Application independent setup ###
The approach above relied on configuring *each* application; it's the most flexible approach but is overkill and time consuming when the same action/program should be used by all the applications in `srcVM`.
Providing the applications adheres to the freedesktop standard, defining a global action is straightforward:
- put the following in `~/.local/share/applications/browser_vm.desktop`
~~~
[Desktop Entry]
Encoding=UTF-8
Name=BrowserVM
Exec=qvm-open-in-vm browser %u
Terminal=false
X-MultipleArgs=false
Type=Application
Categories=Network;WebBrowser;
MimeType=x-scheme-handler/unknown;x-scheme-handler/about;text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;
~~~
- set xdg's "default browser" to the .desktop entry you've just created with `xdg-settings set default-web-browser browser_vm.desktop`
The same can be done with any Mime type (see `man xdg-mime` and `xdg-settings`).
**Caveat**: if dom0 default permissions are set to allow without user confirmation (see the "Configuring dom0 RPC permissions" section below), applications can leak data through the URL name despite `srcVM`'s restrictive firewall (you may notice that an URL has been open in `dstVM` but it would be too late).
Configuring dom0 RPC permissions
--------------------------------
When using `qvm-open-in-{vm,dvm}` scripts (`qubes.OpenInVM` and `qubes.OpenURL` RPC calls), one may choose if/when a user confirmation dialog should pop up, depending on the RPC call, and the `srcVM` / `dstVM` combo. See the [official doc](https://www.qubes-os.org/doc/rpc-policy/) for the proper syntax.
"Named, semi-permanent" dispVMs
-------------------------------
Opening things in dispVMs is the most secure approach, but the long starting time of dispVMs often gets in the way so users end up opening files/URLs in persistent VMs. A middle-ground solution is to create a "semi-permanent" dispVM like so:
~~~
qvm-create -C DispVM -t fedora-28-dvm -l red dstVM
~~~
This VM works like a regular VM, with the difference that its private disk is wiped after it's powered off. However it doesn't "auto power off" like random dispVMs, so it's up to the user to power off (and optionaly restart) the VM when he/she deems necessary.
Further considerations/caveats of dispVMs:
- Obviously, using dispVMs (whether random or "semi-permanent") for `dstVM` means that any change - saved bookmarks, application preferences, add-on update, ... - is lost at poweroff. Saving changes persistently requires updating the VM's templateVM.
- Bookmark management could be eased with tools like [buku](https://github.com/jarun/Buku) (available in Fedora 28 repo - `dnf install buku`).