-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
61 lines (50 loc) · 1.44 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package main
import (
"os"
"os/exec"
"golang.org/x/sys/unix"
)
// コマンドライン引数の処理
// go run main.go run <cmd> <args>
func main() {
switch os.Args[1] {
case "run":
initialize(os.Args[2:]...)
case "child":
execute(os.Args[2], os.Args[3:]...)
default:
panic("コマンドライン引数が正しくありません。")
}
}
// Linux namespace を設定した子プロセスで、execute 関数を実行する
func initialize(args ...string) {
// このプログラム自身に引数 child <cmd> <args> を渡す
arg := append([]string{"child"}, args...)
command := exec.Command("/proc/self/exe", arg...)
command.Stdin = os.Stdin
command.Stdout = os.Stdout
command.Stderr = os.Stderr
command.SysProcAttr = &unix.SysProcAttr{
Cloneflags: unix.CLONE_NEWNS | unix.CLONE_NEWPID | unix.CLONE_NEWUTS,
}
must(command.Run())
}
// namespace 設定後の初期化処理と、ユーザー指定のコマンドを実行する
func execute(cmd string, args ...string) {
// ルートディレクトリとカレントディレクトリを ./rootfs に設定
must(unix.Chroot("./rootfs"))
must(unix.Chdir("/"))
must(unix.Mount("proc", "proc", "proc", 0, ""))
must(unix.Sethostname([]byte("my-container")))
command := exec.Command(cmd, args...)
command.Stdin = os.Stdin
command.Stdout = os.Stdout
command.Stderr = os.Stderr
must(command.Run())
}
// 雑にエラー処理
func must(err error) {
if err != nil {
panic(err)
}
}