Is it possible to limit standard streams available to linux at the process level? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T13:38:58Z http://stackoverflow.com/feeds/question/185082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level 3 Is it possible to limit standard streams available to linux at the process level? Stephen Cagle http://stackoverflow.com/users/21317 2008-10-08T21:55:37Z 2009-06-20T00:16:49Z <p>I would like to be able to spawn a linux process that would only have access to stdin, stdout, and stderr (nothing more and nothing less). Can I do this at the process level itself? I am also implicitly stating (oxymoron) that I don't want the spawned process to be able to change the "thing" that the other end of the stream points to. </p> <p>Metaphorically:</p> <ul> <li>the process has a input pipe that comes from somewhere, it cannot change where the pipe starts from, so it cannot control where input comes from.</li> <li>the process has output and error pipes that go somewhere, it cannot change where the other end of the output pipes point to, so it cannot control where output goes to.</li> <li>it cannot create any new pipes.</li> </ul> <p>I am also currently looking at SElinux. Would this allow me to create a process that only had access to these three streams? Thank you.</p> http://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level/185568#185568 1 Answer by ephemient for Is it possible to limit standard streams available to linux at the process level? ephemient http://stackoverflow.com/users/20713 2008-10-09T01:11:52Z 2008-10-09T01:11:52Z <p>If you're root, you can chroot to a directory, drop privileges so that you no longer have filesystem write access, then exec. That will prevent a program from creating new files. But there's no way to prevent a program from creating pipes and sockets (well, no-sockets is possible with SELinux), and there's no way to prevent a program from rearranging and closing its file descriptors.</p> <p>Well, I suppose you could use <code>ptrace</code> to trap all syscalls, and only allow the ones that you approve of, so when I say "there's no way" I mean "there's no easy way". This incurs a noticable overhead, but if you're careful enough you can make it secure. The <a href="http://sourceforge.net/projects/strace/" rel="nofollow"><code>strace</code></a> or <a href="http://wiki.virtualsquare.org/index.php/UMview" rel="nofollow">UMview</a> projects may be good starting points if you decide to go down this path.</p> http://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level/185986#185986 1 Answer by Chris Arguin for Is it possible to limit standard streams available to linux at the process level? Chris Arguin http://stackoverflow.com/users/25704 2008-10-09T05:14:41Z 2008-10-09T05:14:41Z <p>SELinux could do the job; you can assign permissions for certain programs to use certain system calls. By denying access to open, pipe, and others, you should be able to do exactly what you describe.</p> <p>A second possible route is to use the LD_PRELOAD capability, and provide your own open,pipe,etc. functions. This isn't 100% secure, as the program could still access the system calls more directly ( assuming that this is a potentially hostile program )</p> http://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level/186625#186625 2 Answer by Anders Waldenborg for Is it possible to limit standard streams available to linux at the process level? Anders Waldenborg http://stackoverflow.com/users/24082 2008-10-09T10:08:36Z 2008-10-09T10:08:36Z <p>This sounds very much like <a href="http://lwn.net/Articles/120647/" rel="nofollow">what is described this LWN article</a> which basically blocks all syscalls except read, write and exit. </p> http://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level/1020569#1020569 1 Answer by rev for Is it possible to limit standard streams available to linux at the process level? rev http://stackoverflow.com/users/125959 2009-06-20T00:16:49Z 2009-06-20T00:16:49Z <p>As stated in another answer SELinux does have various permissions that help lock down any process.</p> <p>The kernel manages access to certain objects (with associated set of permissions) for example a file is an object, a directory is an object, a unix datagram socket is an object and many more.</p> <p>probably the easiest thing to do is write a little policy. Luckily SELinux is deny by default so run your program and look at the logs for SELinux denials and only allow your program to do what you want. In other words you would avoid adding permission that involve object classes like msg (messages in a systemV message queue), msgq (SystemV message queue itself), sem (semaphores), shm (shared memory) and probably others depending on what it does. </p> <p>I suggest the first time you do it have SELinux on but in permissive (see setenforce 0)</p> <p>I would also suggest tools to help you build some policy, it can be a bit overwhelming to write basically raw M4</p>