caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Gerd Stolpmann <info@gerd-stolpmann.de>
To: Gregory Bellier <gregory.bellier@gmail.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] How does chroot work ?
Date: Sat, 18 Dec 2010 20:31:55 +0100	[thread overview]
Message-ID: <1292700715.22147.324.camel@thinkpad> (raw)
In-Reply-To: <AANLkTinTs+EVE-9GX2MHt23GpJNfigPCNXB=h7vfUVH6@mail.gmail.com>

Am Samstag, den 18.12.2010, 18:09 +0100 schrieb Gregory Bellier:
> Hi !
> 
> For security reasons, I would like to chroot a child process but I
> can't do it unless this process is root.
> How does it work exactly ?

If everybody could chroot it would be possible to change passwords and
do other privileged operations in the new chroot (it depends on the OS
how dangerous this really is, but POSIX assumes it is dangerous).
Because of this it is restricted to root.

Furthermore, chroot is not designed for enhancing the security. A root
process can undo chroot (look it up in the web, it's tricky but
possible). If a normal user could chroot, everybody could also break
out.

So, usually you would start a new process as root, establish the chroot
there, and setuid to a non-privileged user for doing the real work. If
you cannot start as root, you could alternatively also set the setuid
bit of the executable. However, running a process with setuid root adds
new security dangers, so it is questionable whether you can improve the
overall security by such means.

I'd advise not to use chroot unless you exactly understand what you are
doing.

Gerd

> Thanks in advance.
> Gregory.
> 
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
> 


-- 
------------------------------------------------------------
Gerd Stolpmann, Bad Nauheimer Str.3, 64289 Darmstadt,Germany 
gerd@gerd-stolpmann.de          http://www.gerd-stolpmann.de
Phone: +49-6151-153855                  Fax: +49-6151-997714
------------------------------------------------------------


  reply	other threads:[~2010-12-18 19:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-18 17:09 Gregory Bellier
2010-12-18 19:31 ` Gerd Stolpmann [this message]
2010-12-18 23:01   ` [Caml-list] " Gregory BELLIER

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1292700715.22147.324.camel@thinkpad \
    --to=info@gerd-stolpmann.de \
    --cc=caml-list@inria.fr \
    --cc=gregory.bellier@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).