[libvirt] [PATCH] security: apparmor: Label externalDataStore

Cole Robinson posted 1 patch 4 years, 6 months ago
Test syntax-check passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/49dfeac6e8fabdd92981ef01a3fc509f504543f4.1570821213.git.crobinso@redhat.com
There is a newer version of this series
src/security/virt-aa-helper.c | 4 ++++
1 file changed, 4 insertions(+)
[libvirt] [PATCH] security: apparmor: Label externalDataStore
Posted by Cole Robinson 4 years, 6 months ago
Teach virt-aa-helper how to label a qcow2 data_file, tracked internally
as externalDataStore. It should be treated the same as its sibling
disk image

Signed-off-by: Cole Robinson <crobinso@redhat.com>
---
Compiled but not runtime tested, I don't have an apparmor setup

 src/security/virt-aa-helper.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
index 509187ac36..fe6fa12550 100644
--- a/src/security/virt-aa-helper.c
+++ b/src/security/virt-aa-helper.c
@@ -949,6 +949,10 @@ storage_source_add_files(virStorageSourcePtr src,
         if (add_file_path(tmp, depth, buf) < 0)
             return -1;
 
+        if (src->externalDataStore &&
+            storage_source_add_files(src->externalDataStore, buf, depth) < 0)
+            return -1;
+
         depth++;
     }
 
-- 
2.23.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH] security: apparmor: Label externalDataStore
Posted by Cole Robinson 4 years, 4 months ago
ping

On 10/11/19 3:14 PM, Cole Robinson wrote:
> Teach virt-aa-helper how to label a qcow2 data_file, tracked internally
> as externalDataStore. It should be treated the same as its sibling
> disk image
> 
> Signed-off-by: Cole Robinson <crobinso@redhat.com>
> ---
> Compiled but not runtime tested, I don't have an apparmor setup
> 
>  src/security/virt-aa-helper.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
> index 509187ac36..fe6fa12550 100644
> --- a/src/security/virt-aa-helper.c
> +++ b/src/security/virt-aa-helper.c
> @@ -949,6 +949,10 @@ storage_source_add_files(virStorageSourcePtr src,
>          if (add_file_path(tmp, depth, buf) < 0)
>              return -1;
>  
> +        if (src->externalDataStore &&
> +            storage_source_add_files(src->externalDataStore, buf, depth) < 0)
> +            return -1;
> +
>          depth++;
>      }
>  
>

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] [PATCH] security: apparmor: Label externalDataStore
Posted by Christian Ehrhardt 4 years, 4 months ago
On Fri, Oct 11, 2019 at 9:13 PM Cole Robinson <crobinso@redhat.com> wrote:
>
> Teach virt-aa-helper how to label a qcow2 data_file, tracked internally
> as externalDataStore. It should be treated the same as its sibling
> disk image
>
> Signed-off-by: Cole Robinson <crobinso@redhat.com>
> ---
> Compiled but not runtime tested, I don't have an apparmor setup
>
>  src/security/virt-aa-helper.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
> index 509187ac36..fe6fa12550 100644
> --- a/src/security/virt-aa-helper.c
> +++ b/src/security/virt-aa-helper.c
> @@ -949,6 +949,10 @@ storage_source_add_files(virStorageSourcePtr src,
>          if (add_file_path(tmp, depth, buf) < 0)
>              return -1;
>
> +        if (src->externalDataStore &&
> +            storage_source_add_files(src->externalDataStore, buf, depth)
< 0)
> +            return -1;
> +

After thinking twice about it ack to carry over depth as only the first
layer should only ever need write permissions on those extra files as well.

But I'm unsure about using "src->externalDataStore".
After all this does initialize "tmp = src".
And then iterates the (potential) backing chain.
That way each loop iteration has a different "tmp" along the backing chain
but "src" will always point to the first entry.

It comes down to a detail question about the design of external data in
qcow.
In a case with a base file and two snapshots, does the chain look like:

A:
Current  -> Snap2 -> Snap1
  \
  external data

or
B:

Current    ->   Snap2    -> Snap1
  \               \           \
  ext-dat2      ext-dat1     ext-dat

or
C:

Current    ->   Snap2    -> Snap1
                              \
                             external data

Depending on that it should IMHO be
a) call storage_source_add_files outside the loop and with depth arg always
set to zero
b+c)  call storage_source_add_files with tmp instead of src as argument
(also use tmp in the check if externalDataStore exists)


>          depth++;
>      }
>
> --
> 2.23.0
>



-- 
Christian Ehrhardt
Staff Engineer, Ubuntu Server
Canonical Ltd
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH] security: apparmor: Label externalDataStore
Posted by Peter Krempa 4 years, 4 months ago
On Mon, Dec 09, 2019 at 07:50:09 +0100, Christian Ehrhardt wrote:
> On Fri, Oct 11, 2019 at 9:13 PM Cole Robinson <crobinso@redhat.com> wrote:
> >
> > Teach virt-aa-helper how to label a qcow2 data_file, tracked internally
> > as externalDataStore. It should be treated the same as its sibling
> > disk image
> >
> > Signed-off-by: Cole Robinson <crobinso@redhat.com>
> > ---
> > Compiled but not runtime tested, I don't have an apparmor setup
> >
> >  src/security/virt-aa-helper.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> >
> > diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
> > index 509187ac36..fe6fa12550 100644
> > --- a/src/security/virt-aa-helper.c
> > +++ b/src/security/virt-aa-helper.c
> > @@ -949,6 +949,10 @@ storage_source_add_files(virStorageSourcePtr src,
> >          if (add_file_path(tmp, depth, buf) < 0)
> >              return -1;
> >
> > +        if (src->externalDataStore &&
> > +            storage_source_add_files(src->externalDataStore, buf, depth)
> < 0)
> > +            return -1;
> > +
> 
> After thinking twice about it ack to carry over depth as only the first
> layer should only ever need write permissions on those extra files as well.
> 
> But I'm unsure about using "src->externalDataStore".
> After all this does initialize "tmp = src".
> And then iterates the (potential) backing chain.
> That way each loop iteration has a different "tmp" along the backing chain
> but "src" will always point to the first entry.
> 
> It comes down to a detail question about the design of external data in
> qcow.
> In a case with a base file and two snapshots, does the chain look like:
> 
> A:
> Current  -> Snap2 -> Snap1
>   \
>   external data
> 
> or
> B:
> 
> Current    ->   Snap2    -> Snap1
>   \               \           \
>   ext-dat2      ext-dat1     ext-dat

This is the correct situation as the store is an per-image property. Any
level in the backing chain may or may not have it depending on how you
create the image.

The external data store write permission must mirror the permission of
the image it belongs to, so that if you are e.g. committing one of the
snapshots the backing store must be turned writable as qemu will write
the data into it.

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] [PATCH] security: apparmor: Label externalDataStore
Posted by Cole Robinson 4 years, 4 months ago
On 12/9/19 1:50 AM, Christian Ehrhardt wrote:
> 
> 
> On Fri, Oct 11, 2019 at 9:13 PM Cole Robinson <crobinso@redhat.com
> <mailto:crobinso@redhat.com>> wrote:
>>
>> Teach virt-aa-helper how to label a qcow2 data_file, tracked internally
>> as externalDataStore. It should be treated the same as its sibling
>> disk image
>>
>> Signed-off-by: Cole Robinson <crobinso@redhat.com
> <mailto:crobinso@redhat.com>>
>> ---
>> Compiled but not runtime tested, I don't have an apparmor setup
>>
>>  src/security/virt-aa-helper.c | 4 ++++
>>  1 file changed, 4 insertions(+)
>>
>> diff --git a/src/security/virt-aa-helper.c b/src/security/virt-aa-helper.c
>> index 509187ac36..fe6fa12550 100644
>> --- a/src/security/virt-aa-helper.c
>> +++ b/src/security/virt-aa-helper.c
>> @@ -949,6 +949,10 @@ storage_source_add_files(virStorageSourcePtr src,
>>          if (add_file_path(tmp, depth, buf) < 0)
>>              return -1;
>>
>> +        if (src->externalDataStore &&
>> +            storage_source_add_files(src->externalDataStore, buf,
> depth) < 0)
>> +            return -1;
>> +
> 
> After thinking twice about it ack to carry over depth as only the first
> layer should only ever need write permissions on those extra files as well.
> 
> But I'm unsure about using "src->externalDataStore".
> After all this does initialize "tmp = src".
> And then iterates the (potential) backing chain.
> That way each loop iteration has a different "tmp" along the backing
> chain but "src" will always point to the first entry.
> 
> It comes down to a detail question about the design of external data in
> qcow.
> In a case with a base file and two snapshots, does the chain look like:
> 
> A:
> Current  -> Snap2 -> Snap1
>   \
>   external data
> 
> or
> B:
> 
> Current    ->   Snap2    -> Snap1
>   \               \           \
>   ext-dat2      ext-dat1     ext-dat
> 
> or
> C:
> 
> Current    ->   Snap2    -> Snap1
>                               \
>                              external data
> 
> Depending on that it should IMHO be
> a) call storage_source_add_files outside the loop and with depth arg
> always set to zero
> b+c)  call storage_source_add_files with tmp instead of src as argument
> (also use tmp in the check if externalDataStore exists)

Indeed, it should be using tmp instead of src, nicely spotted. I'll send
a v2. Thankfully the already committed selinux code got it right

- Cole

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list