-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.go
139 lines (128 loc) · 2.94 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package main
import (
"fmt"
"os"
"strings"
"github.com/opencontainers/runtime-spec/specs-go"
"github.com/sirupsen/logrus"
"github.com/urfave/cli"
goruntime "runtime"
)
const (
specConfig = "config.json"
stateJSON = "state.json"
usage = "runu run [ -b bundle ] <container-id>"
arch = goruntime.GOARCH
pidFilePriv = "runu.pid"
pidFile9p = "runu-9p.pid"
)
var (
version = ""
)
func main() {
app := cli.NewApp()
app.Name = "runu"
app.Usage = usage
var v []string
v = append(v, version)
v = append(v, fmt.Sprintf("spec: %s", specs.Version))
app.Version = strings.Join(v, "\n")
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "debug",
Usage: "enable debug output for logging",
},
cli.StringFlag{
Name: "log",
Value: "/tmp/runu.log",
Usage: "set the log file path where internal debug information is written",
},
cli.StringFlag{
Name: "debug-log",
Usage: "set the log file path where debug information is written",
Value: "",
},
cli.StringFlag{
Name: "log-format",
Value: "text",
Usage: "set the format used by logs ('text' (default), or 'json')",
},
cli.StringFlag{
Name: "root",
Value: "/run/runu",
Usage: "root directory for storage of container state (this should be located in tmpfs)",
},
cli.StringFlag{
Name: "9ps",
Usage: "start 9pfs server",
Value: "",
},
cli.BoolFlag{
Name: "systemd-cgroup",
Usage: "unsupported flag",
},
}
app.Commands = []cli.Command{
createCommand,
runCommand,
specCommand,
startCommand,
stateCommand,
execCommand,
killCommand,
deleteCommand,
bootCommand,
}
app.Before = func(context *cli.Context) error {
if rootfs := context.GlobalString("9ps"); rootfs != "" {
logrus.Debugf("Runu called with args: %v\n", os.Args)
return start9pfsServer(rootfs)
}
if path := context.GlobalString("log"); path != "" {
f, err := os.OpenFile(path,
os.O_CREATE|os.O_WRONLY|os.O_APPEND|os.O_SYNC,
0666)
if err != nil {
fmt.Printf("%s\n", err)
return err
}
logrus.SetOutput(f)
}
if path := context.GlobalString("debug-log"); path != "" {
f, err := os.OpenFile(path,
os.O_CREATE|os.O_WRONLY|os.O_APPEND|os.O_SYNC,
0666)
if err != nil {
fmt.Printf("%s\n", err)
return err
}
logrus.SetLevel(logrus.DebugLevel)
logrus.SetOutput(f)
}
if context.GlobalBool("debug") {
logrus.SetLevel(logrus.DebugLevel)
logrus.SetOutput(os.Stdout)
}
if os.Getenv("DEBUG") != "" {
logrus.SetLevel(logrus.DebugLevel)
}
switch context.GlobalString("log-format") {
case "text":
// retain logrus's default.
case "json":
logrus.SetFormatter(new(logrus.JSONFormatter))
default:
return fmt.Errorf("unknown log-format %q",
context.GlobalString("log-format"))
}
err := handleSystemLog("", "")
if err != nil {
return err
}
logrus.Debugf("Runu called with args: %v", os.Args)
return nil
}
if err := app.Run(os.Args); err != nil {
panic(err)
}
}