Re: [coreutils] [patch] Re: Install enhancement request: capabilities

2010-11-10 Thread Mike Frysinger
On Wednesday, November 10, 2010 07:00:51 Pádraig Brady wrote:
 Ideally the package archive format should
 support capabilities if they're needed,
 and tar et. al. should support the attributes
 if they're important.

yes, but tar doesnt support it today

 From a package maint point of view,
 if you're changing a package to use capabilities,
 then adding the dep is a minor inconvenience.

that isnt the case.  in the oft-quoted ping case, the package itself isnt 
changing in any way.  the file permissions are simply being changed from 
granting it set*id to granting it the one explicit network capability it 
requires.

 Also one could take the view that adding a separate
 `setcap` call might be easier to maintain than
 messing with existing `install` commands.
 Also `install` might not have even been used.
 Also at a stretch, one could argue that having a dep
 on the binary package, might be useful to allow one to
 query which packages on the system require capabilties.

except that coreutils is required on a system which means `install` is 
required.  `setcap` is not.
-mike


signature.asc
Description: This is a digitally signed message part.


Re: [coreutils] [patch] Re: Install enhancement request: capabilities

2010-11-07 Thread Yaron Sheffer

Hi Jim, Pádraig,

I still don't see the logic of not including capabilities in the 
install feature set. We could use chmod and chown separately, too. But 
still, setting owner/group and mode are a core functionality of this 
utility. Similarly, if we think that POSIX capabilities are important 
(see e.g. http://fedoraproject.org/wiki/Features/RemoveSETUID), we 
should make their use as easy and natural as possible. For me that means 
at the minimum support in install, tar (and derived packaging tools) and 
possibly ls.


Thanks,
Yaron

On 11/04/2010 03:22 PM, Jim Meyering wrote:

Yaron Sheffer wrote:

it's somewhat cleaner to have all the security-critical settings in
one place: owner, group, permissions, capabilities (and grep for -P
or --capabilities...). Plus you can rely on install to always be
there, which I don't think is true for setcap.

Thanks for the patch.
However, since that's the only benefit I see (setcap may not be installed),
I'm 60:40 against.  If you find some other install program with this
feature, that would strengthen the case for adding the option here.




Re: [coreutils] [patch] Re: Install enhancement request: capabilities

2010-11-04 Thread Pádraig Brady
Thanks for the patch!
I think the feature is worth it.

Currently install does not preserve xattrs
and so looses any previous capabilities
associated with a file.

In any case, capabilities don't need to be implemented
using xattrs, and might not be on tmpfs on Linux
for example when support is eventually added there.

One tricky thing I noticed with capabilities,
is that one needs to do after setting any ownership,
which you do correctly in the patch.

cheers,
Pádraig.



Re: [coreutils] [patch] Re: Install enhancement request: capabilities

2010-11-04 Thread Pádraig Brady
On 04/11/10 11:08, Pádraig Brady wrote:
 Thanks for the patch!
 I think the feature is worth it.
 
 Currently install does not preserve xattrs
 and so looses any previous capabilities
 associated with a file.
 
 In any case, capabilities don't need to be implemented
 using xattrs, and might not be on tmpfs on Linux
 for example when support is eventually added there.
 
 One tricky thing I noticed with capabilities,
 is that one needs to do after setting any ownership,
 which you do correctly in the patch.

On the other hand one can always just call
`setcap` after `install` for the few files that require it.
Having `install` support it means you don't need a separate
setcap util, but it also means that one can't just
grep for setcap in a bunch of rpms for example
to see what capabilities are set on the system.
Also using the `setcap` util is slightly more flexible
in failure modes (optionally failing if all/some/none are set)

So I'm back to 55:45 against this one.

cheers,
Pádraig.



Re: [coreutils] [patch] Re: Install enhancement request: capabilities

2010-11-04 Thread Yaron Sheffer

Hi Pádraig,

it's somewhat cleaner to have all the security-critical settings in one 
place: owner, group, permissions, capabilities (and grep for -P or 
--capabilities...). Plus you can rely on install to always be there, 
which I don't think is true for setcap.


Thanks,
Yaron

On 11/04/2010 02:55 PM, Pádraig Brady wrote:

On 04/11/10 11:08, Pádraig Brady wrote:

Thanks for the patch!
I think the feature is worth it.

Currently install does not preserve xattrs
and so looses any previous capabilities
associated with a file.

In any case, capabilities don't need to be implemented
using xattrs, and might not be on tmpfs on Linux
for example when support is eventually added there.

One tricky thing I noticed with capabilities,
is that one needs to do after setting any ownership,
which you do correctly in the patch.

On the other hand one can always just call
`setcap` after `install` for the few files that require it.
Having `install` support it means you don't need a separate
setcap util, but it also means that one can't just
grep for setcap in a bunch of rpms for example
to see what capabilities are set on the system.
Also using the `setcap` util is slightly more flexible
in failure modes (optionally failing if all/some/none are set)

So I'm back to 55:45 against this one.

cheers,
Pádraig.