From: William Pitcock <nenolod@atheme.org>
To: daw-usenet@taverner.cs.berkeley.edu (David Wagner)
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2.6.18 try 2] net/ipv4: sysctl to allow non-superuser to bypass CAP_NET_BIND_SERVICE requirement
Date: Fri, 22 Sep 2006 04:19:25 -0500 [thread overview]
Message-ID: <EEE7B568-41EC-4005-AFEF-FD9B47ED98EB@atheme.org> (raw)
In-Reply-To: <ef08l0$avn$1@taverner.cs.berkeley.edu>
On Sep 22, 2006, at 3:59 AM, David Wagner wrote:
> William Pitcock wrote:
>> This patch allows for a user to disable the requirement to meet the
>> CAP_NET_BIND_SERVICE capability for a non-superuser. It is toggled by
>> the net.ipv4.allow_lowport_bind_nonsuperuser sysctl value.
>
> Can't you provide this functionality (in a non-transparent way)
> through
> user-space code alone? I'm thinking of a setuid-root program that
> takes a port number as argv[1], binds to that port, dup()s the new
> file descriptor onto fd 0 (say), drops root, and then forks and execs
> a program specified on argv[2]. If you want to get fancy, instead of
> exec-ing, you could use the standard trick to pass the file descriptor
> over a Unix domain socket to some other process. Seems like you
> should
> be able to make something like this work, as long as you're willing to
> make small modifications to the program that uses the low port. Does
> that work?
While this is possible, the purpose of this patch is to allow for
such things to "just work" without any effort from the user to make
it work.
Additionally, with your solution, the program would still need to be
extensively modified. With the sysctl patch, this isn't necessary, as
the lowport bind() will be successful as long as the sysctl value is
set to a non-zero value.
On other TCP stacks, such as the one included with FreeBSD, you can
do the exact same thing this patch does, by doing:
# sysctl net.inet.ip.portrange.reservedhigh=0
The goal of this patch is to provide similar functionality, which
right now, it does. However, it's not as fancy as FreeBSD's, but that
is because PROT_SOCK in af_inet.c is a constant (#define), and thus
not as nicely tuneable.
However, that is a weak argument for not doing it that way, as I
could have done something like:
int sysctl_ip_portrange_high = PROT_SOCK;
The current way is simpler, though, than the way it is done in
FreeBSD, and I feel covers the typical use-case very well.
However, that's really not a bad idea (what you proposed). But, I
still believe that the sysctl patch is more flexible, especially in
cases where you might not have the source-code to what you are trying
to run (common with enterprise apps, gameserver admin panels, etc.).
next prev parent reply other threads:[~2006-09-22 9:19 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-22 6:25 [PATCH 2.6.18 1/1] " William Pitcock
2006-09-22 7:31 ` [PATCH 2.6.18 try 2] " William Pitcock
2006-09-22 7:41 ` YOSHIFUJI Hideaki / 吉藤英明
2006-09-22 8:22 ` William Pitcock
2006-09-22 8:27 ` William Pitcock
2006-09-22 18:04 ` David Miller
2006-09-22 8:59 ` David Wagner
2006-09-22 9:19 ` William Pitcock [this message]
2006-09-22 9:37 ` David Wagner
2006-09-22 11:55 ` [PATCH 2.6.18 1/1] " Rolf Eike Beer
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=EEE7B568-41EC-4005-AFEF-FD9B47ED98EB@atheme.org \
--to=nenolod@atheme.org \
--cc=daw-usenet@taverner.cs.berkeley.edu \
--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
Powered by JetHome