forked from scionproto/scion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
180 lines (168 loc) · 4.46 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// Copyright 2017 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.
package main
import (
"flag"
"fmt"
_ "net/http/pprof"
"os"
"time"
"github.com/opentracing/opentracing-go"
"github.com/scionproto/scion/go/cert_srv/internal/config"
"github.com/scionproto/scion/go/cert_srv/internal/reiss"
"github.com/scionproto/scion/go/lib/common"
"github.com/scionproto/scion/go/lib/discovery"
"github.com/scionproto/scion/go/lib/env"
"github.com/scionproto/scion/go/lib/fatal"
"github.com/scionproto/scion/go/lib/infra"
"github.com/scionproto/scion/go/lib/infra/modules/idiscovery"
"github.com/scionproto/scion/go/lib/infra/modules/itopo"
"github.com/scionproto/scion/go/lib/infra/modules/trust/trustdb"
"github.com/scionproto/scion/go/lib/log"
"github.com/scionproto/scion/go/lib/periodic"
)
var (
cfg config.Config
state *config.State
reissRunner *periodic.Runner
discRunners idiscovery.Runners
corePusher *periodic.Runner
msgr infra.Messenger
trustDB trustdb.TrustDB
)
func init() {
flag.Usage = env.Usage
}
// main initializes the certificate server and starts the dispatcher.
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.CS, cfg.General.ID)
defer log.LogPanicAndExit()
// Setup the state and the messenger
if err := setup(); err != nil {
log.Crit("Setup failed", "err", err)
return 1
}
tracer, trCloser, err := cfg.Tracing.NewTracer(cfg.General.ID)
if err != nil {
log.Crit("Unable to create tracer", "err", err)
return 1
}
defer trCloser.Close()
opentracing.SetGlobalTracer(tracer)
// Start the periodic reissuance task.
startReissRunner()
// Start the periodic fetching from discovery service.
startDiscovery()
// Start the messenger.
go func() {
defer log.LogPanicAndExit()
msgr.ListenAndServe()
}()
// Cleanup when the CS exits.
defer stop()
cfg.Metrics.StartPrometheus()
select {
case <-fatal.ShutdownChan():
// Whenever we receive a SIGINT or SIGTERM we exit without an error.
return 0
case <-fatal.FatalChan():
return 1
}
}
// startReissRunner starts a periodic reissuance task. Core starts self-issuer.
// Non-core starts a requester.
func startReissRunner() {
if !cfg.CS.DisableCorePush {
corePusher = periodic.Start(
&reiss.CorePusher{
LocalIA: itopo.Get().ISD_AS,
TrustDB: state.TrustDB,
Msger: msgr,
},
time.Hour,
time.Minute,
)
corePusher.TriggerRun()
}
if !cfg.CS.AutomaticRenewal {
log.Info("Reissue disabled, not starting reiss task.")
return
}
if itopo.Get().Core {
log.Info("Starting periodic reiss.Self task")
reissRunner = periodic.Start(
&reiss.Self{
Msgr: msgr,
State: state,
IA: itopo.Get().ISD_AS,
IssTime: cfg.CS.IssuerReissueLeadTime.Duration,
LeafTime: cfg.CS.LeafReissueLeadTime.Duration,
CorePusher: corePusher,
Caller: "cs",
},
cfg.CS.ReissueRate.Duration,
cfg.CS.ReissueTimeout.Duration,
)
return
}
log.Info("Starting periodic reiss.Requester task")
reissRunner = periodic.Start(
&reiss.Requester{
Msgr: msgr,
State: state,
IA: itopo.Get().ISD_AS,
LeafTime: cfg.CS.LeafReissueLeadTime.Duration,
CorePusher: corePusher,
},
cfg.CS.ReissueRate.Duration,
cfg.CS.ReissueTimeout.Duration,
)
}
func startDiscovery() {
var err error
discRunners, err = idiscovery.StartRunners(cfg.Discovery, discovery.Full,
idiscovery.TopoHandlers{}, nil, "cs")
if err != nil {
fatal.Fatal(common.NewBasicError("Unable to start dynamic topology fetcher", err))
}
}
func stopReissRunner() {
if corePusher != nil {
corePusher.Kill()
}
if reissRunner != nil {
reissRunner.Stop()
}
}
func stop() {
stopReissRunner()
discRunners.Kill()
msgr.CloseServer()
trustDB.Close()
}