Skip to content

Commit ae5cc8d

Browse files
committed
Remove file change detection logic
1 parent 3d7b634 commit ae5cc8d

File tree

5 files changed

+14
-195
lines changed

5 files changed

+14
-195
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ control.
3636
**Certificate hotswapping**: Ghostunnel can reload certificates at runtime
3737
without dropping existing connections. To trigger a reload, simply send
3838
`SIGUSR1` to the process (or set a time-based reloading interval). This will
39-
cause ghostunnel to reload the keystore files. Once successful, the reloaded
39+
cause ghostunnel to reload the certificate/key. Once successful, the reloaded
4040
certificate will be used for new connections going forward.
4141

4242
**Monitoring and metrics**: Ghostunnel has a built-in status feature that

main.go

+4-9
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ var exitFunc = os.Exit
121121

122122
// Context groups listening context data together
123123
type Context struct {
124-
watcher chan bool
125124
status *statusHandler
126125
statusHTTP *http.Server
127126
shutdownTimeout time.Duration
@@ -305,12 +304,6 @@ func run(args []string) error {
305304
}
306305
metrics := sqmetrics.NewMetrics(*metricsURL, *metricsPrefix, client, *metricsInterval, metrics.DefaultRegistry, logger)
307306

308-
// Set up file watchers (if requested)
309-
watcher := make(chan bool, 1)
310-
if *timedReload > 0 {
311-
go watchFiles([]string{*keystorePath}, *timedReload, watcher)
312-
}
313-
314307
cert, err := buildCertificate(*keystorePath, *keystorePass)
315308
if err != nil {
316309
fmt.Fprintf(os.Stderr, "error: unable to load certificates: %s\n", err)
@@ -332,7 +325,8 @@ func run(args []string) error {
332325
logger.Printf("using target address %s", *serverForwardAddress)
333326

334327
status := newStatusHandler(dial)
335-
context := &Context{watcher, status, nil, *shutdownTimeout, dial, metrics, cert}
328+
context := &Context{status, nil, *shutdownTimeout, dial, metrics, cert}
329+
go context.reloadHandler(*timedReload)
336330

337331
// Start listening
338332
err = serverListen(context)
@@ -361,7 +355,8 @@ func run(args []string) error {
361355
}
362356

363357
status := newStatusHandler(dial)
364-
context := &Context{watcher, status, nil, *shutdownTimeout, dial, metrics, cert}
358+
context := &Context{status, nil, *shutdownTimeout, dial, metrics, cert}
359+
go context.reloadHandler(*timedReload)
365360

366361
// Start listening
367362
err = clientListen(context)

signals.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,19 @@ func (context *Context) signalHandler(p *proxy.Proxy) {
7272

7373
logger.Printf("received %s, reloading certificates", sig.String())
7474
context.reload()
75-
case <-context.watcher:
76-
context.reload()
7775
}
7876
}
7977
}
8078

79+
func (context *Context) reloadHandler(interval time.Duration) {
80+
if interval == 0 {
81+
return
82+
}
83+
for range time.Tick(interval) {
84+
context.reload()
85+
}
86+
}
87+
8188
func (context *Context) reload() {
8289
context.status.Reloading()
8390
err := context.cert.Reload()

watcher.go

-100
This file was deleted.

watcher_test.go

-83
This file was deleted.

0 commit comments

Comments
 (0)