Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:31:26Z http://stackoverflow.com/feeds/question/413807 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li 7 Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Jason Creighton 2009-01-05T17:09:37Z 2009-11-19T11:57:18Z <p>It's very annoying to have this limitation on my development box, when there won't ever be any users other than me.</p> <p>I'm aware of <a href="http://www.debian-administration.org/articles/386" rel="nofollow">the standard workarounds</a>, but none of them do exactly what I want:</p> <ol> <li><a href="http://en.wikipedia.org/wiki/Authbind" rel="nofollow">authbind</a> (The version in Debian testing, 1.0, only supports IPv4)</li> <li><a href="http://iptables-tutorial.frozentux.net/iptables-tutorial.html#REDIRECTTARGET" rel="nofollow">Using the iptables REDIRECT target to redirect a low port to a high port</a> (the "nat" table is not yet implemented for ip6tables, the IPv6 version of iptables)</li> <li>sudo (Running as root is what I'm trying to avoid)</li> <li>SELinux (or similar). (This is just my dev box, I don't want to introduce a lot of extra complexity.)</li> </ol> <p>So is there some simple sysctl variable for this, or am I just out of luck?</p> <p>EDIT: In some cases, you can <a href="http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-linux#414258">use capabilities</a> to do this.</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/413868#413868 10 Answer by Paul Tomblin for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Paul Tomblin 2009-01-05T17:29:56Z 2009-01-05T17:43:39Z <p>The standard way is to make them "setuid" so that they start up as root, and then they throw away that root privilege as soon as they've bound to the port but before they start accepting connections to it. You can see good examples of that in the source code for Apache and INN. I'm told that Lighttpd is another good example.</p> <p>Another example is Postfix, which uses multiple daemons that communicate through pipes, and only one or two of them (which do very little except accept or emit bytes) run as root and the rest run at a lower privilege.</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/413877#413877 -1 Answer by Joshua for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Joshua 2009-01-05T17:32:13Z 2009-01-05T17:32:13Z <p>Or patch your kernel and remove the check.</p> <p>(Option of last resort, not recommended).</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/413917#413917 2 Answer by Joachim Sauer for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Joachim Sauer 2009-01-05T17:49:12Z 2009-01-05T17:49:12Z <p>Linux supports <a href="http://www.securityfocus.com/infocus/1400" rel="nofollow">capabilities</a> to support more fine-grained permissions than just "this application is run as root". One of those capabilities is <code>CAP_NET_BIND_SERVICE</code> which is about binding to a privileged port (&lt;1024).</p> <p>Unfortunately I don't know how to exploit that to run an application as non-root while still giving it <code>CAP_NET_BIND_SERVICE</code> (probably using <code>setcap</code>, but there's bound to be an existing solution for this).</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/414258#414258 10 Answer by Jason Creighton for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Jason Creighton 2009-01-05T19:46:44Z 2009-01-05T20:01:40Z <p>Okay, thanks to the people who pointed out the capabilities system and <code>CAP_NET_BIND_SERVICE</code> capability. If you have a recent kernel, it is indeed possible to use this to start a service as non-root but bind low ports. The short answer is that you do:</p> <pre><code>setcap 'cap_net_bind_service=+ep' /path/to/program </code></pre> <p>And then anytime <code>program</code> is executed thereafter it will have the <code>CAP_NET_BIND_SERVICE</code> capability. <code>setcap</code> is in the debian package <code>libcap2-bin</code>.</p> <p>Now for the caveats:</p> <ol> <li>You will need at least a 2.6.24 kernel</li> <li>This won't work if your file is a script. (ie, uses a #! line to launch an interpreter). In this case, as far I as understand, you'd have to apply the capability to the interpreter executable itself, which of course is a security nightmare, since any program using that interpreter will have the capability. I wasn't able to find any clean, easy way to work around this problem.</li> </ol> <p>Resources:</p> <ul> <li><a href="http://www.kernel.org/doc/man-pages/online/pages/man7/capabilities.7.html" rel="nofollow">capabilities(7) man page</a>. Read this long and hard if you're going to use capabilities in a production environment. There are some really tricky details of how capabilities are inherited across exec() calls that are detailed here.</li> <li><a href="http://www.wensley.org.uk/info#setpcaps" rel="nofollow">"Bind ports below 1024 without root on GNU/Linux"</a>: The document that first pointed me towards <code>setcap</code>.</li> </ul> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/415173#415173 4 Answer by Martin Carpenter for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Martin Carpenter 2009-01-06T02:07:23Z 2009-01-06T02:07:23Z <p>Two other simple possibilities:</p> <p>There is an old (unfashionable) solution to the "a daemon that binds on a low port and hands control to your daemon". It's called inetd (or xinetd). The cons are:</p> <ul> <li>your daemon needs to talk on stdin/stdout (if you don't control the daemon -- if you don't have the source -- then this is perhaps a showstopper, although some services may have an inetd-compatibility flag)</li> <li>a new daemon process is forked for every connection</li> <li>it's one extra link in the chain</li> </ul> <p>Pros:</p> <ul> <li>available on any old UNIX</li> <li>once your sysadmin has set up the config, you're good to go about your development (when you re-build your daemon, might you lose setcap capabilities? And then you'll have to go back to your admin "please sir...")</li> <li>daemon doesn't have to worry about that networking stuff, just has to talk on stdin/stdout</li> <li>can configure to execute your daemon as a non-root user, as requested</li> </ul> <p>Another alternative: a hacked-up proxy (netcat or even something <em>more robust</em>) from the privileged port to some arbitrary high-numbered port where you can run your target daemon. (Netcat is obviously not a production solution, but "just my dev box", right?). This way you could continue to use a network-capable version of your server, would only need root/sudo to start proxy (at boot), wouldn't be relying on complex/potentially fragile capabilities.</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/917467#917467 -1 Answer by Gene Vayngrib for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Gene Vayngrib 2009-05-27T19:05:36Z 2009-05-27T19:05:36Z <p>tried to use setcap for java executable (Ubuntu Jaunty 9.04 kernel 2.6.28-11-generic). After setting capability on java executable (does nto work on symbolic links, only on real binary) started java process, but it failed with the following error:</p> <p>/usr/bin/java: error while loading shared libraries: libjli.so: cannot open shared object file: No such file or directory</p> <p>With sudo java process works just fine. To see what gives I ran java process with strace to see the difference between sudo and plain case. Here is the difference I located:</p> <p>without sudo: open("$ORIGIN/../jre/lib/i386/jli/libjli.so", O_RDONLY) = -1 ENOENT (No such file or directory)</p> <p>with sudo: open("/usr/lib/jvm/java-6-sun-1.6.0.13/jre/bin/../lib/i386/jli/libjli.so", O_RDONLY) = 3</p> <p>Did not find $ORIGIN environment variable defined anywhere. Googgled for 3 hours - no luck. Can anybody help?</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/996322#996322 0 Answer by Astro for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? Astro 2009-06-15T14:08:34Z 2009-06-15T14:08:34Z <p>My "standard workaround" uses socat as the user-space redirector:</p> <pre><code>socat tcp6-listen:80,fork tcp6:8080 </code></pre> <p>Beware that this won't scale, forking is expensive but it's the way socat works.</p> http://stackoverflow.com/questions/413807/is-there-a-way-for-non-root-processes-to-bind-to-privileged-ports-1024-on-li/1762807#1762807 0 Answer by FlappySocks for Is there a way for non-root processes to bind to "privileged" ports (<1024) on Linux? FlappySocks 2009-11-19T11:57:18Z 2009-11-19T11:57:18Z <p>You can do a port redirect. This is what I do for a Silverlight policy server running on a Linux box</p> <pre><code>iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 943 -j REDIRECT --to-port 1300 </code></pre>