I've spent more than a few hours humbling myself on the ACM ICPC's problem set archive, and I've wondered how the online judge is able to compile and run source code from any user and prevent malicious attacks to their system.

Are the compiled binaries run from some kind of limited sandbox? How would one go about setting up this kind of sandbox? What OS would you use? How would you launch a user's compiled executable?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

You could run it in a Linux chroot jail, or link it against a libc that doesn't implement any file I/O.

link|improve this answer
What exactly is a chroot jail? – Andrew Garrison Jun 19 '09 at 14:42
2  
It's an environment available in some UNIX systems that lets a program run without having any access to the full filesystem. Processes running inside the jail see a certain subdirectory as their root directory, and cannot access anything outside of it. Specifically, a system call sets the fake root directory and all child processes inherit it. – thirtyseven Nov 10 '09 at 22:24
feedback

The programs are run in a chrooted jail with a limited run time. Judge computers are distributed across a number of servers to help prevent a single point of failure or DOS attacks.

I am a regional contest admin.

link|improve this answer
could you elaborate on what a chrooted jail is? – Andrew Garrison Jul 15 '10 at 1:50
It will be great if anybody can explain about it a bit more. Do all libraries required at run time by gcc need to included in that jailed area? – Terminal Mar 15 '11 at 9:06
feedback

I think they don't run any code. Sometimes there is this error "Restricted function" for example when you try to read or write a file "ofstream" & "ifstream" in c++

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.