On Sat, Oct 5, 2013 at 4:07 PM, Rob Landley <rob@xxxxxxxxxxx> wrote: > > A todo item I've had _forever_ is fixing chroot() to not be broken so that > you can trivially break out of a chroot via: What drugs are you on? Your example is moronic, and against all _documented_ uses of chroot. > chdir("/"); > mkdir("sub"); > chroot("sub"); > chdir("./../../../../../../../.."); After you do a chroot(), you need to chdir *into* the root. The reason chroot() itself doesn't do that is simple: you may still be doing various setup stuff. But your example is just stupid. Yes, chroot'ed environments can generally be escaped, but your example escape is simply because you didn't use chroot() correctly. So learn this pattern: every time you use chroot, add a simple chdir("/"); immediately after the chroot call. Then, if you decide that you want to do some setup in between the two (like the interface allows), that's fine, but always start off with that "chroot+chdir" pattern. (Similarly, if it turns out that you want to chdir somewhere else, like "/home/user" after the chroot, then you can obviously remove the now superfluous chdir("/"), but you always conceptually start off with that chroot/chdir pair) Linus -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html