Is it possible to limit standard streams available to linux at the process level? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T13:38:58Zhttp://stackoverflow.com/feeds/question/185082http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/185082/is-it-possible-to-limit-standard-streams-available-to-linux-at-the-process-level3Is it possible to limit standard streams available to linux at the process level?Stephen Caglehttp://stackoverflow.com/users/213172008-10-08T21:55:37Z2009-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#1855681Answer by ephemient for Is it possible to limit standard streams available to linux at the process level?ephemienthttp://stackoverflow.com/users/207132008-10-09T01:11:52Z2008-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#1859861Answer by Chris Arguin for Is it possible to limit standard streams available to linux at the process level?Chris Arguinhttp://stackoverflow.com/users/257042008-10-09T05:14:41Z2008-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#1866252Answer by Anders Waldenborg for Is it possible to limit standard streams available to linux at the process level?Anders Waldenborghttp://stackoverflow.com/users/240822008-10-09T10:08:36Z2008-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#10205691Answer by rev for Is it possible to limit standard streams available to linux at the process level?revhttp://stackoverflow.com/users/1259592009-06-20T00:16:49Z2009-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>