[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 1/6] docs/qemu-deprivilege: Revise and update with status and future plans
On 09/24/2018 11:23 AM, Ian Jackson wrote: > George Dunlap writes ("[PATCH v2 1/6] docs/qemu-deprivilege: Revise and > update with status and future plans"): >> +## Xen library / file-descriptor restrictions >> + >> +'''Description''': Close and restrict Xen-related file descriptors. >> +Specifically: >> + * Close all xenstore-related file descriptors > > This is correct. > >> + * Make sure that extraneous `privcmd` and `evtchn` instances are >> +closed > > No, *all* privcmd and evtchn instances are restricted, even > `extraneous' ones which have been leaked by qemu. None are closed. Ack. >> +'''How to test''': >> + >> + tools/test/depriv/depriv-fd-checker.c > > You also need the tool `fishdescriptor' from src:chiark-utils to get > the descriptors out of qemu. It is in chiark-utils-bin in Debian > buster and Debian stretch-backports. This was meant to be a somewhat technical description of the mechanism of doing the testing (to be implemented by someone implementing the feature), rather than a how-to for keen users / testers to actually run the test. What about: "Use `fishdescriptor` from [reference], to pull a file descriptor from a running QEMU, then check that it has the desired properties, and that hypercalls which are meant to fail do fail. (The latter is implemented in `tools/test/depriv/depriv-fd-checker.c`)." On a related note: Is there any reason not to move osstest-depriv-fd-collector into the tree, perhaps even merging it with the functionality in depriv-process-checker? >> +## Namespaces for unused functionality (Linux only) >> + >> +'''Description''': Enter QEMU into its own mount & IPC namespaces. >> +This means that even if other restrictions fail, the process won't be >> +able to even name system mount points or exsting non-file-based IPC >> +descriptors to attempt to attack them. >> + >> +'''Implementation''': >> + >> +In theory this could be done in QEMU (similar to -sandbox, -runas, >> +-chroot, and so on), but a patch doing this in QEMU was NAKed >> +upstream. They preferred that this was done as a setup step by >> +whatever executes QEMU; i.e., have the process which exec's QEMU first >> +call: >> + >> + unshare(CLONE_NEWNS | CLONE_NEWIPC) > > If you are recording this kind of information here: this will of > course not work, because qemu binds and opens things at startup that > would be broken by this. Maybe you want to give a url to a mailing > list posting instead of this un-referenced hearsay. > >> +### Network namespacing (Linux only) >> + >> +Enter QEMU into its own network namespace (in addition to mount & IPC >> +namespaces). Basically change the 'unshare' call to be as follows: >> + >> + unshare(CLONE_NEWNET | CLONE_NEWNS | CLONE_NEWIPC) >> + >> +QEMU does actually use the network namespace by default, so adding >> +this restriction requires additional changes, listed below. > > The CLONE_NEWIPC overlaps with the IPC unshare discussed above. This is the second time I've had to try to explain the difference between the above two items; I'm not sure what's not clear about what was written. The title of the first says: "...for unused functionaltiy". IPC namespaces are for non-file-based IPCs (i.e., things which are not unix sockets). QEMU does not use this functionality, nor does it use mount functionality. The first restriction is in fact implemented in patch 4, and I haven't had any issues with it. I suppose I need more text like the above, explicitly defining what those namespaces do, and that QEMU doesn't need them? The second section explicitly mentions the fact that this will not work, and references further changes which would be required for such a change to be implemented (in the 'Network' and 'VNC' sections). I can certainly provide a reference if you think that's important. Any other suggestions for clarification, so that we don't have to repeat this discussion again, would be welcome. >> +## Setting up a userid range > > There was some discussion on a Debian list recently about some > container systems that encode a 16-bit within-container uid and a > 16-bit container number into the 32-bit uid. I guess we don't need to > explicitly worry about clashes between our usage and those ? Hmm, someone may run containers that use such things in dom0, at which point we may have a namespace collision. But really I think this is a distro problem to solve -- we don't specify a >16-bit UID, we just give it as an example. Debian could, for instance: - Not use the system which uses the 16/16 split - Enforce that Xen and the 16/16 split system are not installed at the same time - Reserve 32k of UIDs in the 16-bit space somehow - Reserve one of the "container ID" entries for Xen, so that there's never a collision >> +# Limitations >> + >> +The following features still need to be implemented: >> + * Inserting a new cdrom while the guest is running (xl cdrom-insert) >> + * Migration / save / restore >> + >> +Additionally, getting PCI passthrough to work securely would require a >> +significant rework of how passthrough works at the moment. It may be >> +implemented at some point but is not a near-term priority. > > The limitations section should also say something like this: > > The currently implemented restrictions are thought to be a useful > security improvement. However, the design and implementation is > preliminary and there is work left to do. Accordingly we do not > promise that they are sufficient to stop a rogue domain which takes > control of its qemu from escaping into the host, let alone stop it > from denying service to the host. Isn't this what "Tech preview" means? Or do you mean we'll keep this kind of warning in after we take it out of 'tech preview'? > Therefore, bugs which affect the effectiveness of the qemu depriv > mechanisms will be treated as plain bugs, not security bugs; they > would not result in a Xen Project Security Advisory. However, bugs > where the security of a system with dm_restrict=1 is worse than > before, will be treated as security bugs. This would be slightly different than 'tech preview'. Once this goes to "supported", I agree that we shouldn't issue an XSA for, say, a bug in Linux's implementation of RLIMIT_NPROC, or a bug in Linux that allows QEMU, while running as an unprivileged process, to do something it's not supposed to do (say, fill up our chroot, which is owned by root). But I do think we should issue an XSA if there is code in libxl which claims to do something but failed. For instance, if a change accidentally disables the `-runas` option to QEMU when dm_restrict=1, then that would merit an XSA in my opinion. -George _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |