Skip to content

Instantly share code, notes, and snippets.

@lizrice
Created August 25, 2016 10:02
Show Gist options
  • Star 31 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save lizrice/a5ef4d175fd0cd3491c7e8d716826d27 to your computer and use it in GitHub Desktop.
Save lizrice/a5ef4d175fd0cd3491c7e8d716826d27 to your computer and use it in GitHub Desktop.
Container from scratch
package main
// @lizrice, mostly copied from @doctor_julz: https://gist.github.com/julz/c0017fa7a40de0543001
import (
"fmt"
"os"
"os/exec"
"syscall"
)
// docker run <container> command args
// go run main.go run command args
func main() {
switch os.Args[1] {
case "run":
run()
case "child":
child()
default:
panic("what?")
}
}
func run() {
cmd := exec.Command("/proc/self/exe", append([]string{"child"}, os.Args[2:]...)...)
cmd.Stdin = os.Stdin
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
cmd.SysProcAttr = &syscall.SysProcAttr{
Cloneflags: syscall.CLONE_NEWUTS | syscall.CLONE_NEWPID | syscall.CLONE_NEWNS,
}
must(cmd.Run())
}
func child() {
fmt.Printf("running %v as pid %d\n", os.Args[2:], os.Getpid())
cmd := exec.Command(os.Args[2], os.Args[3:]...)
cmd.Stdin = os.Stdin
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
must(syscall.Chroot("/home/rootfs"))
must(os.Chdir("/"))
must(syscall.Mount("proc", "proc", "proc", 0, ""))
must(cmd.Run())
}
func must(err error) {
if err != nil {
panic(err)
}
}
@lizrice
Copy link
Author

lizrice commented Aug 25, 2016

Note that this expects to find a file system in /home/rootfs

@mark-kubacki
Copy link

-       Cloneflags: syscall.CLONE_NEWUTS | syscall.CLONE_NEWPID | syscall.CLONE_NEWNS,
+       Cloneflags: syscall.CLONE_NEWUSER | syscall.CLONE_NEWUTS |
+                         syscall.CLONE_NEWPID | syscall.CLONE_NEWNS,
+                 Credential:  &syscall.Credential{Uid: 0, Gid: 0},
+                 UidMappings: []syscall.SysProcIDMap{{ContainerID: 0, HostID: os.Getuid(), Size: 1}},
+                 GidMappings: []syscall.SysProcIDMap{{ContainerID: 0, HostID: os.Getgid(), Size: 1}},

@mikeschinkel
Copy link

Hi @lizrice,

Watching your presentation on video and following along I have run into an issue with none of syscall.CLONE_NEWUTS syscall.CLONE_NEWPID or syscall.CLONE_NEWNS being found. I am a Go newbie, using Go 1.10.3 and JetBrains GoLand. What am I missing, or has Go changed since your presentation?

Thanks in advance for your reply.

@mugli
Copy link

mugli commented Sep 9, 2018

@mikeschinkel Are you using Linux as your development machine?

@dennisberg13100
Copy link

@mikeschinkel I had a problem on the same part of the code, then I ran the command with sudo and it worked:
sudo go run main.go run /bin/bash

@mikeschinkel
Copy link

@mugli — Sorry I did not see your question when you originally posted it. My answer is:

"No, I was and still am running on Intel macOS."

@dennisberg13100 — Thanks for the comment. Unfortunately my comment was so long ago I've lost a bit of the plot.
But that's okay, I now realize that this was meant for running on Linux and not macOS as I am less of a Go/Linux newbie nowadays.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment