All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH 00/01]qemu VM entrypoints
@ 2007-07-20 19:32 ` David Windsor
  0 siblings, 0 replies; 46+ messages in thread
From: David Windsor @ 2007-07-20 19:32 UTC (permalink / raw)
  To: selinux, kvm-devel; +Cc: Joshua Brindle

Hi,

After a bit more discussion about integrating SELinux and KVM, it seems that
there is little interest in adding enforcement hooks to KVM as it stands.
Once KVM gets some type of inter-vm communication mechanism, MAC hooks will
probably be added in that space.

Until then, there seems to be interest in adding MAC controls to control VM
management operations, such as migrating VMs, or saving/resuming VMs.

One particular aspect of VM management which may be nice to control via
SELinux is the loading of a virtual hard disk into a VM.  Currently,
administrators would have to rely on file permissions to control which files
could be used as a virtual hard disks.  The semantics of file permissions do
not accomplish what is needed here.  A domain needs to explicitly get
permission from the policy to both use a file as a virtual disk and to use
the contents of that virtual disk as an "entrypoint" to the new, virtual
machine of a different integrity level.

Since there is no SELinux permission for this, I have created the vm {
entrypoint } object class/permission pair to represent this type of access.
Policy for allowing domain user_t to load a virtual disk of type
qemu_virtdisk_t would look something like:

allow user_t qemu_virtdisk_t:file r_file_perms;
type_change user_t qemu_virtdisk_t:vm vm_user_t;
allow qemu_virtdisk_t user_vm_t:vm entrypoint;

Please note that this patch will only check the entrypoint permission, and
does not actually facilitate transitioning on the type of the virtual disk.
I want some comments before continuing with this approach.

When loading a virtual disk into a VM, qemu would consult the policy to see
essentially three things: if the current process is allowed to read the
virtual disk file, what the type of the VM should be after loading the disk,
and if the virtual disk is in fact allowed to serve as an entrypoint to the
target domain.

One problem with this approach is that loading a VM is not an exec-based
operation.  Dynamic transitions could be used, but could possibly be avoided
by altering the patch to fork, then re-exec in the target domain.

This patch applies cleanly to kvm-userspace trunk.

Thoughts?

--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 46+ messages in thread

end of thread, other threads:[~2007-07-23 13:55 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-20 19:32 [RFC][PATCH 00/01]qemu VM entrypoints David Windsor
2007-07-20 19:32 ` David Windsor
     [not found] ` <C2C68600.366D%dwindsor-5TQdPaFcblfQT0dZR+AlfA@public.gmane.org>
2007-07-20 20:03   ` Anthony Liguori
2007-07-20 21:55     ` [kvm-devel] " David Windsor
2007-07-20 21:55       ` [Qemu-devel] " David Windsor
2007-07-20 21:55       ` David Windsor
2007-07-20 22:19       ` [kvm-devel] " Anthony Liguori
2007-07-20 22:19         ` [Qemu-devel] " Anthony Liguori
2007-07-20 20:11   ` Daniel P. Berrange
2007-07-20 20:30     ` [kvm-devel] " James Morris
2007-07-20 20:30       ` James Morris
2007-07-20 20:38       ` Daniel P. Berrange
2007-07-20 20:46       ` Anthony Liguori
2007-07-20 22:42         ` [kvm-devel] " James Morris
2007-07-20 22:42           ` James Morris
2007-07-20 22:53           ` Anthony Liguori
2007-07-20 23:33             ` [kvm-devel] " James Morris
2007-07-20 23:33               ` James Morris
2007-07-21  2:48           ` [kvm-devel] " David Windsor
2007-07-21  2:48             ` David Windsor
2007-07-21  2:51             ` [Qemu-devel] " David Windsor
     [not found]         ` <46A11F1A.2080004-rdkfGonbjUSkNkDKm+mE6A@public.gmane.org>
2007-07-21  6:21           ` Avi Kivity
2007-07-21  6:53             ` [kvm-devel] " David Windsor
2007-07-21  6:53               ` David Windsor
     [not found]               ` <C2C7258F.36C9%dwindsor-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2007-07-21 15:54                 ` Anthony Liguori
2007-07-21 17:55                   ` [kvm-devel] " James Morris
2007-07-21 17:55                     ` James Morris
2007-07-21 19:01                     ` [kvm-devel] " Joshua Brindle
2007-07-21 19:01                       ` Joshua Brindle
     [not found]                       ` <6FE441CD9F0C0C479F2D88F959B01588DE1B1E-Lp/cVzEoVybUo1n7N8X6UhN0Am9MfdqnVpNB7YpNyf8@public.gmane.org>
2007-07-22 19:07                         ` Anthony Liguori
2007-07-22 20:22                           ` [kvm-devel] " David Windsor
2007-07-22 20:22                             ` David Windsor
2007-07-22 20:27                             ` [Qemu-devel] [kvm-devel] " David Windsor
2007-07-22 17:39                   ` David Windsor
2007-07-22 17:39                     ` David Windsor
2007-07-20 21:57       ` [kvm-devel] " David Windsor
2007-07-20 21:57         ` [Qemu-devel] " David Windsor
2007-07-20 21:57         ` David Windsor
     [not found]         ` <25a1d91b0707201457m6865a505maf93d22c5c28f0cc-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2007-07-20 23:50           ` Daniel P. Berrange
2007-07-20 23:50             ` [Qemu-devel] Re: [kvm-devel] " Daniel P. Berrange
2007-07-21  1:41             ` James Morris
2007-07-21  1:41               ` [Qemu-devel] " James Morris
2007-07-21  1:41               ` James Morris
2007-07-20 20:35 ` [kvm-devel] " James Morris
2007-07-20 20:35   ` James Morris
2007-07-20 21:50 ` [Qemu-devel] " David Windsor

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.