Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
06-03-2014, 05:38 AM
|
#1
|
Member
Registered: Jun 2014
Location: Sydney, Australia
Distribution: Slackware,LFS
Posts: 936
|
Update shadow for -current please?
The shadow in -current is 4.1.5.1. The most recent upstream is 4.2.1 (see: http://pkg-shadow.alioth.debian.org/). Why upgrade? Version 4.2 introduced support for subuid & subgid which are important (mandatory) for running LXC (Linux Containers) as normal user.
Is this important? Well, on my own boxes I can always sudo but in the lab that I run I don't want all users to have sudo privileges. Like, say, VirtualBox, LXC should be able to be run as a normal user. An upgraded shadow package would enable this.
chris
|
|
|
06-03-2014, 08:10 AM
|
#2
|
Member
Registered: Oct 2010
Location: Bowling Green, KY
Distribution: Slackware
Posts: 288
Rep:
|
Odd... I've run VirtualBox as a normal user for years before switching to KVM... maybe your users just need to be in proper groups?
|
|
|
06-03-2014, 08:21 AM
|
#3
|
Member
Registered: Jun 2014
Location: Sydney, Australia
Distribution: Slackware,LFS
Posts: 936
Original Poster
|
What I mean is that, just as you say, VirtualBox can be run as normal user. On the other hand LXC (lxc-start etc.) needs to be run as root or via sudo. A shadow package with subuid & subgid support would enable LXC to be run by normal user, just like VirtualBox.
chris
|
|
2 members found this post helpful.
|
06-03-2014, 10:02 AM
|
#4
|
Senior Member
Registered: Jan 2008
Location: Urbana IL
Distribution: Slackware, Slacko,
Posts: 3,716
|
do you have a Slackware question. ?
|
|
|
06-03-2014, 10:08 AM
|
#5
|
Senior Member
Registered: Nov 2013
Location: Brazil
Distribution: Slackware
Posts: 1,223
Rep:
|
Couldn't you upgrade it yourself?
Or does a shadow upgrade breaks a lot of packages?
|
|
|
06-03-2014, 12:55 PM
|
#6
|
Member
Registered: Aug 2012
Posts: 484
Rep:
|
Quote:
Originally Posted by Drakeo
do you have a Slackware question. ?
|
Isn't his question about Slackware?
===
The OP makes a good case why the new Shadow version should be considered for the next Slackware release. Being able to use
user namespaces with LXC containers is a very important feature. Without that, LXC containment is rather unsafe: uid 0 inside
the container is uid 0 outside meaning an escape from isolation can have catastrophic consequences. It doesn't end there; To
improve the security of your LXC container you need to also be concerned with issues like resource sharing, etc.
Also, if the new Shadow is going to end up in the next Slackware, inclusion in Slackware-current is better sooner than later to
increase the probability bugs/issues/etc. are found and reported before the stable release.
Chris:
Pat visits LQ but I am not sure how regularly. You might want to also send a similar request directly to him via email. In addition
to the Shadow bump you would need to request that Pat: a) upgrade to LXC 1.0+ (as of 20140602, 1.0.3 is the latest), and
b) add user namespace support to the kernel ( CONFIG_USER_NS). When doing that I recommend adding memory resource
controllers ( CONFIG_MEMCG & CONFIG_MEMCG_KMEM).
--mancha
Last edited by mancha; 06-03-2014 at 01:27 PM.
Reason: Mention LXC upgrade
|
|
4 members found this post helpful.
|
06-03-2014, 01:58 PM
|
#7
|
LQ Guru
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,259
|
and, if you like, you can also add to the recipe the new two deps libnih/cgmanager, and also patch slackpkg accordingly (just two small patches I'm testing since some years, one to respect the $ROOT enviroment variable like installpkg does and another that let you specify a custom CONF directory) to use with it a template I've created and have a debootstrap-like tools to create containers.
http://ponce.cc/slackware/testing/lxc/
thanks Chris for your work with lxc
Last edited by ponce; 06-03-2014 at 02:00 PM.
|
|
1 members found this post helpful.
|
06-04-2014, 02:52 AM
|
#8
|
Member
Registered: Oct 2013
Posts: 109
Rep:
|
Quote:
Originally Posted by chris.willing
Version 4.2 introduced support for subuid & subgid which are important (mandatory) for running LXC (Linux Containers) as normal user.
|
That's interesting. LXC 1.0 needed PAM to run as a normal user. Did that change in the mean time?
|
|
|
06-29-2014, 05:26 AM
|
#9
|
Member
Registered: Jun 2014
Location: Sydney, Australia
Distribution: Slackware,LFS
Posts: 936
Original Poster
|
I guess the question about PAM arose because its listed as a prerequisite at Stephane Graber's https://www.stgraber.org/2014/01/17/...ed-containers/ page. I posted a question there about it but received no reply. Anyway, after lots of testing I can say that the answer is no, PAM is not needed.
For those interested, I set up a VM with slack64-current, modified the config & rebuilt kernel and installed the latest shadow (that includes subuid & subgid support) and lxc-1.0.4, then followed the steps outlined on Stephane's web page. At first I had very limited success until I realized that lxc wasn't able to manipulate /sys/fs/cgroup entries on my behalf. It turned out that I needed the cgmanager daemon/application as well to provide that cgroup access in a neat way. After that I was able download and run Stephane's premade containers as a normal user (its quite strange watching latest Ubuntu run inside Slackware without vbox or kvm). I also made a new Slackware template that I can create and run a container from, although this was initially a bit trickier to do. As explained on Stephane's page, there is a problem with ordinary users running a creation template since it will need to do things like run mknod - thats a no go. Thats the reason Stephane is providing a bunch of premade containers. I therefore first created a "normal" container using sudo, then ran a small application called "uidmapshift" to convert the new container's uids & gids into the range allocated to the ordinary user. Then after moving the container into the ordinary user's designated space ($HOME/.local/share/lxc/), I was able to run the new container as a regular user. Success!
I'll make a web page sometime documenting it all. In the meantime, it works enough that I now feel I can approach Pat about updating the shadow package and adding CONFIG_USER_NS to the kernel config (CONFIG_MEMCG & CONFIG_MEMCG_KMEM are already enabled in the -current kernel). I'm not sure how he'll feel about adding cgmanager and dependent libnih packages to Slackware proper but I already have SlackBuilds which could be submitted to Slackbuilds.org.
chris
|
|
2 members found this post helpful.
|
06-29-2014, 05:51 AM
|
#10
|
Member
Registered: Oct 2013
Posts: 109
Rep:
|
thanks a lot, please keep us updated about your documentation efforts. using a normal user as container root is something i really would like to try. usage of CONFIG_USER_NS was discouraged when i tinkered with lxc, maybe that changed. i had to recompile my kernel just because of this, which is annoying.
|
|
|
06-29-2014, 08:36 PM
|
#11
|
Member
Registered: Jun 2014
Location: Sydney, Australia
Distribution: Slackware,LFS
Posts: 936
Original Poster
|
Yes, I see that Arch doesn't enable CONFIG_USER_NS yet after concerns about elevating normal user to root privileges. They were going to reconsider "later" but its still unset in the current version I just checked. I also checked the latest Debian (7.5), Ubuntu (14.04) and Fedora (20) and CONFIG_USER_NS is enabled in all of those. Not to say we should be strictly following the pack; just that CONFIG_USER_NS=yes has been out there in the wild for a while now and I haven't seen any reports of problems attributable to it.
The big thing about CONFIG_USER_NS is "user namespace" - the granting of any (including root) privilege is confined to a restricted environment (the user's name space) not system wide. Any such privilege has to be specifically granted - its not there by default (just able to be given). Of course we should be cautious about the possibility of escaping the restricted environment but, as above, its been around for a while now and so far looking pretty safe.
chris
|
|
|
06-30-2014, 01:06 AM
|
#12
|
Member
Registered: Aug 2012
Posts: 484
Rep:
|
Quote:
Originally Posted by chris.willing
Not to say we should be strictly following the pack; just that CONFIG_USER_NS=yes has been out there in the wild for a while now and I
haven't seen any reports of problems attributable to it.
|
Hi Chris.
Many thanks for your ongoing testing of the new Shadow, LXC, etc. Regarding your above comment, a flaw was recently found in user
namespaces that can be exploited under certain conditions to escalate privileges ( CVE-2014-4014). This obviously is relevant within the
context of secure containment.
Fixes were introduced in: 3.10.44, 3.12.23, 3.14.8, and 3.16rc1.
--mancha
Last edited by mancha; 06-30-2014 at 02:58 AM.
Reason: Fix typo in CVE ID
|
|
|
06-30-2014, 01:51 AM
|
#13
|
Member
Registered: Jun 2014
Location: Sydney, Australia
Distribution: Slackware,LFS
Posts: 936
Original Poster
|
Thanks for finding that mancha - its good to have all such problems (and fixes) out in the open so that any new features can be introduced with confidence. Hopefully the next -current updates will have kernel >= 3.14.8 then, its not much of a bump.
chris
|
|
|
06-30-2014, 02:15 AM
|
#14
|
Member
Registered: Aug 2012
Posts: 484
Rep:
|
Agreed. I wanted to let you know because it seems you're preparing a set of requests for Pat to consider. This way you can let him
know about the issue and which 3.14.x introduced a fix.
Also, I wanted to let other slackers know in case they decide to use user namespaces with their LXC containers on their own kernels
(say 14.1 users sticking to 3.10.x).
--mancha
|
|
|
06-30-2014, 02:25 AM
|
#15
|
Member
Registered: Aug 2012
Location: Ryomgård, Danmark
Distribution: Slackware64
Posts: 146
Rep:
|
About CONFIG_USER_NS enabled per default
Quote:
When user namespaces are enabled in the kernel it is
recommended that the MEMCG and MEMCG_KMEM options also be
enabled and that user-space use the memory control groups to
limit the amount of memory a memory unprivileged users can
use
|
Since this recommendation in the kernel config,
it may be an issue in a system with several concurrent users
|
|
|
All times are GMT -5. The time now is 12:17 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|