linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: serge@hallyn.com
To: "Leibowitz, Michael" <michael.leibowitz@intel.com>
Cc: serge@hallyn.com, linux-kernel@vger.kernel.org
Subject: Re: CLONE_NEWNS and bind mounts to make "chroot" jail
Date: Tue, 4 Mar 2008 15:45:00 -0600	[thread overview]
Message-ID: <20080304214500.GA7035@vino.hallyn.com> (raw)
In-Reply-To: <645B0EE4078B7C49A6C12F5E7B3B6C2603D3D7BF@orsmsx418.amr.corp.intel.com>

Quoting Leibowitz, Michael (michael.leibowitz@intel.com):
> If I understand correctly, the following should accomplish what I'm
> looking for.  However, pivot_root gives me EBUSY.  I played around with
> moving the mount --bind /jail /jail to before the unshared, as well as
> making old_root a bind mount to itself.  However, pivot_root always
> seems to fail.  Is there something obvious that I'm doing wrong?  The

Yes, you
	cd /jail
	mount --bind /jail /jail
	pivot_root . old_root

but . is now mounted over.

-serge

> following is my test code (error checking has been removed for clarity,
> except for pivot_root).  
> 
>   char *newargv[]= { "sh", NULL };
> 
>   chdir("/jail");
>   unshare(CLONE_NEWNS));
>   mount("/jail", "/jail", NULL, MS_BIND, NULL));
>   mount("/bin", "bin", NULL, MS_BIND, NULL));
>   mount("/usr", "usr", NULL, MS_BIND, NULL));
>   mount("/lib", "lib", NULL, MS_BIND, NULL));
>   if (pivot_root(".", "old_root")) perror("pivot_root . old_root");
>   exec("./bash-static"); /* copied to /jail prior to running */
> 
> Thanks. 
> 
> >Serge replies:
>  [snip...snip]
> >Try a few more things.  Since you had entered /jail, you can view '/'
> by
> >looking at .. .  But if you look at /, you dereference your
> >task->fsroot.  You never changed that, so it points to the original
> >mount.  If however you 'ls ..', you should see your 'jail' directory.
> >However it won't have the /bin and /lib mounted because you didn't
> >	mount --rbind /jail /
> >What you really want to do is
> >	mount --bind /jail /jail
> >to make sure it's a mountpoint, then set up the new /jail using bind
> >mounts like you're doing (and likely some rbinds in some places), then
> >use pivot_root() to change your root.  Then umount2("/old_root",
> >MNT_DETACH).
> >
> >-serge
> 
> --
> Michael Leibowitz
> Software Engineer, UMG
> Intel Corporation
> michael.leibowitz at intel.com
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

  reply	other threads:[~2008-03-04 21:48 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-01 17:05 CLONE_NEWNS and bind mounts to make "chroot" jail Leibowitz, Michael
2008-03-02  2:26 ` serge
2008-03-03  6:56   ` Leibowitz, Michael
2008-03-04 21:45     ` serge [this message]
2008-03-05  6:23       ` Leibowitz, Michael
     [not found] <a2DnP-4KR-9@gated-at.bofh.it>
     [not found] ` <a2M7M-1rM-5@gated-at.bofh.it>
     [not found]   ` <a3cOQ-1eQ-3@gated-at.bofh.it>
2008-03-03 15:54     ` Bodo Eggert

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=20080304214500.GA7035@vino.hallyn.com \
    --to=serge@hallyn.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michael.leibowitz@intel.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).