-
Notifications
You must be signed in to change notification settings - Fork 366
/
server.go
683 lines (622 loc) · 19.7 KB
/
server.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
package guerrilla
import (
"bytes"
"crypto/rand"
"crypto/tls"
"crypto/x509"
"fmt"
"github.com/sirupsen/logrus"
"io"
"io/ioutil"
"net"
"path/filepath"
"strings"
"sync"
"sync/atomic"
"time"
"github.com/flashmob/go-guerrilla/backends"
"github.com/flashmob/go-guerrilla/log"
"github.com/flashmob/go-guerrilla/mail"
"github.com/flashmob/go-guerrilla/mail/rfc5321"
"github.com/flashmob/go-guerrilla/response"
)
const (
CommandVerbMaxLength = 16
CommandLineMaxLength = 1024
// Number of allowed unrecognized commands before we terminate the connection
MaxUnrecognizedCommands = 5
)
const (
// server has just been created
ServerStateNew = iota
// Server has just been stopped
ServerStateStopped
// Server has been started and is running
ServerStateRunning
// Server could not start due to an error
ServerStateStartError
)
// Server listens for SMTP clients on the port specified in its config
type server struct {
configStore atomic.Value // stores guerrilla.ServerConfig
tlsConfigStore atomic.Value
timeout atomic.Value // stores time.Duration
listenInterface string
clientPool *Pool
wg sync.WaitGroup // for waiting to shutdown
listener net.Listener
closedListener chan bool
hosts allowedHosts // stores map[string]bool for faster lookup
state int
// If log changed after a config reload, newLogStore stores the value here until it's safe to change it
logStore atomic.Value
mainlogStore atomic.Value
backendStore atomic.Value
envelopePool *mail.Pool
}
type allowedHosts struct {
table map[string]bool // host lookup table
wildcards []string // host wildcard list (* is used as a wildcard)
sync.Mutex // guard access to the map
}
type command []byte
var (
cmdHELO command = []byte("HELO")
cmdEHLO command = []byte("EHLO")
cmdHELP command = []byte("HELP")
cmdXCLIENT command = []byte("XCLIENT")
cmdMAIL command = []byte("MAIL FROM:")
cmdRCPT command = []byte("RCPT TO:")
cmdRSET command = []byte("RSET")
cmdVRFY command = []byte("VRFY")
cmdNOOP command = []byte("NOOP")
cmdQUIT command = []byte("QUIT")
cmdDATA command = []byte("DATA")
cmdSTARTTLS command = []byte("STARTTLS")
)
func (c command) match(in []byte) bool {
return bytes.Index(in, []byte(c)) == 0
}
// Creates and returns a new ready-to-run Server from a ServerConfig configuration
func newServer(sc *ServerConfig, b backends.Backend, mainlog log.Logger) (*server, error) {
server := &server{
clientPool: NewPool(sc.MaxClients),
closedListener: make(chan bool, 1),
listenInterface: sc.ListenInterface,
state: ServerStateNew,
envelopePool: mail.NewPool(sc.MaxClients),
}
server.mainlogStore.Store(mainlog)
server.backendStore.Store(b)
if sc.LogFile == "" {
// none set, use the mainlog for the server log
server.logStore.Store(mainlog)
server.log().Info("server [" + sc.ListenInterface + "] did not configure a separate log file, so using the main log")
} else {
// set level to same level as mainlog level
if l, logOpenError := log.GetLogger(sc.LogFile, server.mainlog().GetLevel()); logOpenError != nil {
server.log().WithError(logOpenError).Errorf("Failed creating a logger for server [%s]", sc.ListenInterface)
return server, logOpenError
} else {
server.logStore.Store(l)
}
}
server.setConfig(sc)
server.setTimeout(sc.Timeout)
if err := server.configureTLS(); err != nil {
return server, err
}
return server, nil
}
func (s *server) configureTLS() error {
sConfig := s.configStore.Load().(ServerConfig)
if sConfig.TLS.AlwaysOn || sConfig.TLS.StartTLSOn {
cert, err := tls.LoadX509KeyPair(sConfig.TLS.PublicKeyFile, sConfig.TLS.PrivateKeyFile)
if err != nil {
return fmt.Errorf("error while loading the certificate: %s", err)
}
tlsConfig := &tls.Config{
Certificates: []tls.Certificate{cert},
ClientAuth: tls.VerifyClientCertIfGiven,
ServerName: sConfig.Hostname,
}
if len(sConfig.TLS.Protocols) > 0 {
if min, ok := TLSProtocols[sConfig.TLS.Protocols[0]]; ok {
tlsConfig.MinVersion = min
}
}
if len(sConfig.TLS.Protocols) > 1 {
if max, ok := TLSProtocols[sConfig.TLS.Protocols[1]]; ok {
tlsConfig.MaxVersion = max
}
}
if len(sConfig.TLS.Ciphers) > 0 {
for _, val := range sConfig.TLS.Ciphers {
if c, ok := TLSCiphers[val]; ok {
tlsConfig.CipherSuites = append(tlsConfig.CipherSuites, c)
}
}
}
if len(sConfig.TLS.Curves) > 0 {
for _, val := range sConfig.TLS.Curves {
if c, ok := TLSCurves[val]; ok {
tlsConfig.CurvePreferences = append(tlsConfig.CurvePreferences, c)
}
}
}
if len(sConfig.TLS.RootCAs) > 0 {
caCert, err := ioutil.ReadFile(sConfig.TLS.RootCAs)
if err != nil {
s.log().WithError(err).Errorf("failed opening TLSRootCAs file [%s]", sConfig.TLS.RootCAs)
} else {
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
tlsConfig.RootCAs = caCertPool
}
}
if len(sConfig.TLS.ClientAuthType) > 0 {
if ca, ok := TLSClientAuthTypes[sConfig.TLS.ClientAuthType]; ok {
tlsConfig.ClientAuth = ca
}
}
tlsConfig.PreferServerCipherSuites = sConfig.TLS.PreferServerCipherSuites
tlsConfig.Rand = rand.Reader
s.tlsConfigStore.Store(tlsConfig)
}
return nil
}
// setBackend sets the backend to use for processing email envelopes
func (s *server) setBackend(b backends.Backend) {
s.backendStore.Store(b)
}
// backend gets the backend used to process email envelopes
func (s *server) backend() backends.Backend {
if b, ok := s.backendStore.Load().(backends.Backend); ok {
return b
}
return nil
}
// Set the timeout for the server and all clients
func (s *server) setTimeout(seconds int) {
duration := time.Duration(int64(seconds))
s.clientPool.SetTimeout(duration)
s.timeout.Store(duration)
}
// goroutine safe config store
func (s *server) setConfig(sc *ServerConfig) {
s.configStore.Store(*sc)
}
// goroutine safe
func (s *server) isEnabled() bool {
sc := s.configStore.Load().(ServerConfig)
return sc.IsEnabled
}
// Set the allowed hosts for the server
func (s *server) setAllowedHosts(allowedHosts []string) {
s.hosts.Lock()
defer s.hosts.Unlock()
s.hosts.table = make(map[string]bool, len(allowedHosts))
s.hosts.wildcards = nil
for _, h := range allowedHosts {
if strings.Contains(h, "*") {
s.hosts.wildcards = append(s.hosts.wildcards, strings.ToLower(h))
} else if len(h) > 5 && h[0] == '[' && h[len(h)-1] == ']' {
if ip := net.ParseIP(h[1 : len(h)-1]); ip != nil {
// this will save the normalized ip, as ip.String always returns ipv6 in short form
s.hosts.table["["+ip.String()+"]"] = true
}
} else {
s.hosts.table[strings.ToLower(h)] = true
}
}
}
// Begin accepting SMTP clients. Will block unless there is an error or server.Shutdown() is called
func (s *server) Start(startWG *sync.WaitGroup) error {
var clientID uint64
clientID = 0
listener, err := net.Listen("tcp", s.listenInterface)
s.listener = listener
if err != nil {
startWG.Done() // don't wait for me
s.state = ServerStateStartError
return fmt.Errorf("[%s] Cannot listen on port: %s ", s.listenInterface, err.Error())
}
s.log().Infof("Listening on TCP %s", s.listenInterface)
s.state = ServerStateRunning
startWG.Done() // start successful, don't wait for me
for {
s.log().Debugf("[%s] Waiting for a new client. Next Client ID: %d", s.listenInterface, clientID+1)
conn, err := listener.Accept()
clientID++
if err != nil {
if e, ok := err.(net.Error); ok && !e.Temporary() {
s.log().Infof("Server [%s] has stopped accepting new clients", s.listenInterface)
// the listener has been closed, wait for clients to exit
s.log().Infof("shutting down pool [%s]", s.listenInterface)
s.clientPool.ShutdownState()
s.clientPool.ShutdownWait()
s.state = ServerStateStopped
s.closedListener <- true
return nil
}
s.mainlog().WithError(err).Info("Temporary error accepting client")
continue
}
go func(p Poolable, borrowErr error) {
c := p.(*client)
if borrowErr == nil {
s.handleClient(c)
s.envelopePool.Return(c.Envelope)
s.clientPool.Return(c)
} else {
s.log().WithError(borrowErr).Info("couldn't borrow a new client")
// we could not get a client, so close the connection.
_ = conn.Close()
}
// intentionally placed Borrow in args so that it's called in the
// same main goroutine.
}(s.clientPool.Borrow(conn, clientID, s.log(), s.envelopePool))
}
}
func (s *server) Shutdown() {
if s.listener != nil {
// This will cause Start function to return, by causing an error on listener.Accept
_ = s.listener.Close()
// wait for the listener to listener.Accept
<-s.closedListener
// At this point Start will exit and close down the pool
} else {
s.clientPool.ShutdownState()
// listener already closed, wait for clients to exit
s.clientPool.ShutdownWait()
s.state = ServerStateStopped
}
}
func (s *server) GetActiveClientsCount() int {
return s.clientPool.GetActiveClientsCount()
}
// Verifies that the host is a valid recipient.
// host checking turned off if there is a single entry and it's a dot.
func (s *server) allowsHost(host string) bool {
s.hosts.Lock()
defer s.hosts.Unlock()
// if hosts contains a single dot, further processing is skipped
if len(s.hosts.table) == 1 {
if _, ok := s.hosts.table["."]; ok {
return true
}
}
if _, ok := s.hosts.table[strings.ToLower(host)]; ok {
return true
}
// check the wildcards
for _, w := range s.hosts.wildcards {
if matched, err := filepath.Match(w, strings.ToLower(host)); matched && err == nil {
return true
}
}
return false
}
func (s *server) allowsIp(ip net.IP) bool {
ipStr := ip.String()
return s.allowsHost("[" + ipStr + "]")
}
const commandSuffix = "\r\n"
// Reads from the client until a \n terminator is encountered,
// or until a timeout occurs.
func (s *server) readCommand(client *client) ([]byte, error) {
//var input string
var err error
var bs []byte
// In command state, stop reading at line breaks
bs, err = client.bufin.ReadSlice('\n')
if err != nil {
return bs, err
} else if bytes.HasSuffix(bs, []byte(commandSuffix)) {
return bs[:len(bs)-2], err
}
return bs[:len(bs)-1], err
}
// flushResponse a response to the client. Flushes the client.bufout buffer to the connection
func (s *server) flushResponse(client *client) error {
if err := client.setTimeout(s.timeout.Load().(time.Duration)); err != nil {
return err
}
return client.bufout.Flush()
}
func (s *server) isShuttingDown() bool {
return s.clientPool.IsShuttingDown()
}
// Handles an entire client SMTP exchange
func (s *server) handleClient(client *client) {
defer client.closeConn()
sc := s.configStore.Load().(ServerConfig)
s.log().Infof("Handle client [%s], id: %d", client.RemoteIP, client.ID)
// Initial greeting
greeting := fmt.Sprintf("220 %s SMTP Guerrilla(%s) #%d (%d) %s",
sc.Hostname, Version, client.ID,
s.clientPool.GetActiveClientsCount(), time.Now().Format(time.RFC3339))
helo := fmt.Sprintf("250 %s Hello", sc.Hostname)
// ehlo is a multi-line reply and need additional \r\n at the end
ehlo := fmt.Sprintf("250-%s Hello\r\n", sc.Hostname)
// Extended feature advertisements
messageSize := fmt.Sprintf("250-SIZE %d\r\n", sc.MaxSize)
pipelining := "250-PIPELINING\r\n"
advertiseTLS := "250-STARTTLS\r\n"
advertiseEnhancedStatusCodes := "250-ENHANCEDSTATUSCODES\r\n"
// The last line doesn't need \r\n since string will be printed as a new line.
// Also, Last line has no dash -
help := "250 HELP"
if sc.TLS.AlwaysOn {
tlsConfig, ok := s.tlsConfigStore.Load().(*tls.Config)
if !ok {
s.mainlog().Error("Failed to load *tls.Config")
} else if err := client.upgradeToTLS(tlsConfig); err == nil {
advertiseTLS = ""
} else {
s.log().WithError(err).Warnf("[%s] Failed TLS handshake", client.RemoteIP)
// server requires TLS, but can't handshake
client.kill()
}
}
if !sc.TLS.StartTLSOn {
// STARTTLS turned off, don't advertise it
advertiseTLS = ""
}
r := response.Canned
for client.isAlive() {
switch client.state {
case ClientGreeting:
client.sendResponse(greeting)
client.state = ClientCmd
case ClientCmd:
client.bufin.setLimit(CommandLineMaxLength)
input, err := s.readCommand(client)
s.log().Debugf("Client sent: %s", input)
if err == io.EOF {
s.log().WithError(err).Warnf("Client closed the connection: %s", client.RemoteIP)
return
} else if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
s.log().WithError(err).Warnf("Timeout: %s", client.RemoteIP)
return
} else if err == LineLimitExceeded {
client.sendResponse(r.FailLineTooLong)
client.kill()
break
} else if err != nil {
s.log().WithError(err).Warnf("Read error: %s", client.RemoteIP)
client.kill()
break
}
if s.isShuttingDown() {
client.state = ClientShutdown
continue
}
cmdLen := len(input)
if cmdLen > CommandVerbMaxLength {
cmdLen = CommandVerbMaxLength
}
cmd := bytes.ToUpper(input[:cmdLen])
switch {
case cmdHELO.match(cmd):
if h, err := client.parser.Helo(input[4:]); err == nil {
client.Helo = h
} else {
s.log().WithFields(logrus.Fields{"helo": h, "client": client.ID}).Warn("invalid helo")
client.sendResponse(r.FailSyntaxError)
break
}
client.resetTransaction()
client.sendResponse(helo)
case cmdEHLO.match(cmd):
if h, _, err := client.parser.Ehlo(input[4:]); err == nil {
client.Helo = h
} else {
client.sendResponse(r.FailSyntaxError)
s.log().WithFields(logrus.Fields{"ehlo": h, "client": client.ID}).Warn("invalid ehlo")
client.sendResponse(r.FailSyntaxError)
break
}
client.ESMTP = true
client.resetTransaction()
client.sendResponse(ehlo,
messageSize,
pipelining,
advertiseTLS,
advertiseEnhancedStatusCodes,
help)
case cmdHELP.match(cmd):
quote := response.GetQuote()
client.sendResponse("214-OK\r\n", quote)
case sc.XClientOn && cmdXCLIENT.match(cmd):
if toks := bytes.Split(input[8:], []byte{' '}); len(toks) > 0 {
for i := range toks {
if vals := bytes.Split(toks[i], []byte{'='}); len(vals) == 2 {
if bytes.Equal(vals[1], []byte("[UNAVAILABLE]")) {
// skip
continue
}
if bytes.Equal(vals[0], []byte("ADDR")) {
client.RemoteIP = string(vals[1])
}
if bytes.Equal(vals[0], []byte("HELO")) {
client.Helo = string(vals[1])
}
}
}
}
client.sendResponse(r.SuccessMailCmd)
case cmdMAIL.match(cmd):
if client.isInTransaction() {
client.sendResponse(r.FailNestedMailCmd)
break
}
client.MailFrom, err = client.parsePath(input[10:], client.parser.MailFrom)
if err != nil {
s.log().WithError(err).Error("MAIL parse error", "["+string(input[10:])+"]")
client.sendResponse(err)
break
} else if client.parser.NullPath {
// bounce has empty from address
client.MailFrom = mail.Address{}
}
client.sendResponse(r.SuccessMailCmd)
case cmdRCPT.match(cmd):
if len(client.RcptTo) > rfc5321.LimitRecipients {
client.sendResponse(r.ErrorTooManyRecipients)
break
}
to, err := client.parsePath(input[8:], client.parser.RcptTo)
if err != nil {
s.log().WithError(err).Error("RCPT parse error", "["+string(input[8:])+"]")
client.sendResponse(err.Error())
break
}
s.defaultHost(&to)
if (to.IP != nil && !s.allowsIp(to.IP)) || (to.IP == nil && !s.allowsHost(to.Host)) {
client.sendResponse(r.ErrorRelayDenied, " ", to.Host)
} else {
client.PushRcpt(to)
rcptError := s.backend().ValidateRcpt(client.Envelope)
if rcptError != nil {
client.PopRcpt()
client.sendResponse(r.FailRcptCmd, " ", rcptError.Error())
} else {
client.sendResponse(r.SuccessRcptCmd)
}
}
case cmdRSET.match(cmd):
client.resetTransaction()
client.sendResponse(r.SuccessResetCmd)
case cmdVRFY.match(cmd):
client.sendResponse(r.SuccessVerifyCmd)
case cmdNOOP.match(cmd):
client.sendResponse(r.SuccessNoopCmd)
case cmdQUIT.match(cmd):
client.sendResponse(r.SuccessQuitCmd)
client.kill()
case cmdDATA.match(cmd):
if len(client.RcptTo) == 0 {
client.sendResponse(r.FailNoRecipientsDataCmd)
break
}
client.sendResponse(r.SuccessDataCmd)
client.state = ClientData
case sc.TLS.StartTLSOn && cmdSTARTTLS.match(cmd):
client.sendResponse(r.SuccessStartTLSCmd)
client.state = ClientStartTLS
default:
client.errors++
if client.errors >= MaxUnrecognizedCommands {
client.sendResponse(r.FailMaxUnrecognizedCmd)
client.kill()
} else {
client.sendResponse(r.FailUnrecognizedCmd)
}
}
case ClientData:
// intentionally placed the limit 1MB above so that reading does not return with an error
// if the client goes a little over. Anything above will err
client.bufin.setLimit(sc.MaxSize + 1024000) // This a hard limit.
n, err := client.Data.ReadFrom(client.smtpReader.DotReader())
if n > sc.MaxSize {
err = fmt.Errorf("maximum DATA size exceeded (%d)", sc.MaxSize)
}
if err != nil {
if err == LineLimitExceeded {
client.sendResponse(r.FailReadLimitExceededDataCmd, " ", LineLimitExceeded.Error())
client.kill()
} else if err == MessageSizeExceeded {
client.sendResponse(r.FailMessageSizeExceeded, " ", MessageSizeExceeded.Error())
client.kill()
} else {
client.sendResponse(r.FailReadErrorDataCmd, " ", err.Error())
client.kill()
}
s.log().WithError(err).Warn("Error reading data")
client.resetTransaction()
break
}
res := s.backend().Process(client.Envelope)
if res.Code() < 300 {
client.messagesSent++
}
client.sendResponse(res)
client.state = ClientCmd
if s.isShuttingDown() {
client.state = ClientShutdown
}
client.resetTransaction()
case ClientStartTLS:
if !client.TLS && sc.TLS.StartTLSOn {
tlsConfig, ok := s.tlsConfigStore.Load().(*tls.Config)
if !ok {
s.mainlog().Error("Failed to load *tls.Config")
} else if err := client.upgradeToTLS(tlsConfig); err == nil {
advertiseTLS = ""
client.resetTransaction()
} else {
s.log().WithError(err).Warnf("[%s] Failed TLS handshake", client.RemoteIP)
// Don't disconnect, let the client decide if it wants to continue
}
}
// change to command state
client.state = ClientCmd
case ClientShutdown:
// shutdown state
client.sendResponse(r.ErrorShutdown)
client.kill()
}
if client.bufErr != nil {
s.log().WithError(client.bufErr).Debug("client could not buffer a response")
return
}
// flush the response buffer
if client.bufout.Buffered() > 0 {
if s.log().IsDebug() {
s.log().Debugf("Writing response to client: \n%s", client.response.String())
}
err := s.flushResponse(client)
if err != nil {
s.log().WithError(err).Debug("error writing response")
return
}
}
}
}
func (s *server) log() log.Logger {
return s.loadLog(&s.logStore)
}
func (s *server) mainlog() log.Logger {
return s.loadLog(&s.mainlogStore)
}
func (s *server) loadLog(value *atomic.Value) log.Logger {
if l, ok := value.Load().(log.Logger); ok {
return l
}
out := log.OutputStderr.String()
level := log.InfoLevel.String()
if value == &s.logStore {
if sc, ok := s.configStore.Load().(ServerConfig); ok && sc.LogFile != "" {
out = sc.LogFile
}
level = s.mainlog().GetLevel()
}
l, err := log.GetLogger(out, level)
if err == nil {
value.Store(l)
}
return l
}
// defaultHost ensures that the host attribute is set, if addressed to Postmaster
func (s *server) defaultHost(a *mail.Address) {
if a.Host == "" && a.IsPostmaster() {
sc := s.configStore.Load().(ServerConfig)
a.Host = sc.Hostname
if !s.allowsHost(a.Host) {
s.log().WithFields(
logrus.Fields{"hostname": sc.Hostname}).
Warn("the hostname is not present in AllowedHosts config setting")
}
}
}