forked from scionproto/scion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
140 lines (128 loc) · 3.33 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
140
// Copyright 2016 ETH Zurich
// Copyright 2018 ETH Zurich, Anapaya Systems
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// This file takes care of parsing command-line flags, setting up logging and
// signal handling, setting resource limits, and starting a new Router
// instance.
package main
import (
"flag"
"fmt"
_ "net/http/pprof"
"os"
"os/user"
"github.com/BurntSushi/toml"
"github.com/scionproto/scion/go/border/brconf"
"github.com/scionproto/scion/go/lib/assert"
"github.com/scionproto/scion/go/lib/common"
"github.com/scionproto/scion/go/lib/env"
"github.com/scionproto/scion/go/lib/fatal"
"github.com/scionproto/scion/go/lib/log"
"github.com/scionproto/scion/go/lib/profile"
"github.com/scionproto/scion/go/lib/prom"
"github.com/scionproto/scion/go/lib/serrors"
)
var (
cfg brconf.Config
r *Router
)
func init() {
flag.Usage = env.Usage
}
func main() {
os.Exit(realMain())
}
func realMain() int {
fatal.Init()
env.AddFlags()
flag.Parse()
if v, ok := env.CheckFlags(&cfg); !ok {
return v
}
if err := setupBasic(); err != nil {
fmt.Fprintln(os.Stderr, err)
return 1
}
defer log.Flush()
defer env.LogAppStopped(common.BR, cfg.General.ID)
defer log.LogPanicAndExit()
if err := setup(); err != nil {
log.Crit("Setup failed", "err", err)
return 1
}
if err := checkPerms(); err != nil {
log.Crit("Permissions checks failed", "err", err)
return 1
}
if cfg.BR.Profile {
// Start profiling if requested.
profile.Start(cfg.General.ID)
}
var err error
if r, err = NewRouter(cfg.General.ID, cfg.General.ConfigDir); err != nil {
log.Crit("Startup failed", "err", err)
return 1
}
if assert.On {
log.Info("Router was built with assertions ON.")
} else {
log.Info("Router was built with assertions OFF.")
}
r.Start()
select {
case <-fatal.ShutdownChan():
// Whenever we receive a SIGINT or SIGTERM we exit without an error.
return 0
case <-fatal.FatalChan():
return 1
}
}
func setupBasic() error {
if _, err := toml.DecodeFile(env.ConfigFile(), &cfg); err != nil {
return err
}
cfg.InitDefaults()
if err := env.InitLogging(&cfg.Logging); err != nil {
return err
}
prom.ExportElementID(cfg.General.ID)
return env.LogAppStarted(common.BR, cfg.General.ID)
}
func setup() error {
if err := cfg.Validate(); err != nil {
return common.NewBasicError("Unable to validate config", err)
}
env.SetupEnv(func() {
if r == nil {
log.Error("Unable to reload config", "err", "router not set")
return
}
if err := r.ReloadConfig(); err != nil {
log.Error("Unable to reload config", "err", err)
return
}
log.Info("Config reloaded")
})
return nil
}
func checkPerms() error {
u, err := user.Current()
if err != nil {
return common.NewBasicError("Error retrieving user", err)
}
if u.Uid == "0" {
return serrors.New("Running as root is not allowed for security reasons")
}
return nil
}