From: Chris Snook <csnook@redhat.com>
To: gogi-k@gogi.tv
Cc: linux-kernel@vger.kernel.org
Subject: Re: One process with multiple user ids.
Date: Tue, 02 Oct 2007 13:11:41 -0400 [thread overview]
Message-ID: <47027BCD.9080709@redhat.com> (raw)
In-Reply-To: <200710021256.08469.gogi-k@gogi.tv>
Giuliano Gagliardi wrote:
> Hello,
>
> I have a server that has to switch to different user ids, but because it does
> other complex things, I would rather not have it run as root.
Well, it's probably going to have to *start* as root, or use something like
sudo. It's probably easiest to have it start as root and drop privileges as
soon as possible, certainly before handling any untrusted data.
> I only need the
> server to be able to switch to certain pre-defined user ids.
This is a very easy special case. Just start a process for each user ID and
drop root privileges. They can communicate via sockets or even shared memory.
If you wanted to switch between arbitrary UIDs at runtime, it might be worth
doing something exotic, but it's really not in this case. Also, if you do it
this way, it's rather easy to verify the correctness of your design, and you
never have to touch kernel code.
> I have seen that two possible solutions have already been suggested here on
> the LKML, but it was some years ago, and nothing like it has been
> implemented.
>
> (1) Having supplementary user ids like there are supplementary group ids and
> system calls getuids() and setuids() that work like getgroups() and
> setgroups()
But you can already accomplish this with ACLs and SELinux. You're trying to
make this problem harder than it really is.
> (2) Allowing processes to pass user and group ids via sockets.
And do what with them? You can already pass arbitrary data via sockets. It
sounds like you need (1) to use (2).
> Both (1) and (2) would solve my problem. Now my question is whether there are
> any fundamental flaws with (1) or (2), or whether the right way to solve my
> problem is another one.
(1) doesn't accomplish anything you can't already do, but it would make a huge
mess of a lot of code.
(2) is silly. Sockets are for communicating between userspace processes. If
you want to be granting/revoking credentials, you should be using system calls,
and even then only if you absolutely must. Having the kernel snoop traffic on
sockets between processes would be disastrous for performance, and without that,
any process could claim that it had been granted privileges over a socket and
the kernel would just have to trust it.
Don't overthink this. You don't need to touch the kernel at all to do this.
Just use a multi-process model, like qmail does, for example. You can start
with root privileges and drop them, or use sudo to help you out. It's fast,
secure, takes advantage of modern multi-core CPUs, and is much simpler.
-- Chris
next prev parent reply other threads:[~2007-10-02 17:11 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-02 10:56 One process with multiple user ids Giuliano Gagliardi
2007-10-02 11:23 ` Jan Engelhardt
[not found] ` <200710021333.05826.gogi-k@gogi.tv>
2007-10-02 11:34 ` Jan Engelhardt
2007-10-02 11:39 ` Giuliano Gagliardi
2007-10-02 11:52 ` Jan Engelhardt
2007-10-02 11:34 ` Giuliano Gagliardi
2007-10-02 13:23 ` Mark Lord
2007-10-08 10:15 ` Helge Hafting
2007-10-02 17:11 ` Chris Snook [this message]
2007-10-02 22:23 ` David Newall
2007-10-02 22:38 ` Bill Davidsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=47027BCD.9080709@redhat.com \
--to=csnook@redhat.com \
--cc=gogi-k@gogi.tv \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox