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
|
// Copyright 2016 Google Inc.
//
// 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 (
"context"
"crypto/tls"
"net"
"time"
)
type acmeCacheEntry struct {
backend string
expires time.Time
}
// ACME locates backends that are attempting ACME SNI-based validation.
type ACME struct {
backends []string
// *.acme.invalid domain to cache entry
cache map[string]acmeCacheEntry
}
// Match returns the backend for hostname, if one is found.
func (s *ACME) Match(hostname string) string {
c := s.cache[hostname]
if time.Now().Before(c.expires) {
return c.backend
}
// Cache entry is either expired or invalid, need to figure out
// which backend is the right one.
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
ch := make(chan string, len(s.backends))
for _, backend := range s.backends {
go tryAcme(ctx, ch, backend, hostname)
}
for range s.backends {
backend := <-ch
if backend != "" {
s.cache[hostname] = acmeCacheEntry{backend, time.Now().Add(5 * time.Second)}
return backend
}
}
// No usable backends found :(
s.cache[hostname] = acmeCacheEntry{"", time.Now().Add(5 * time.Second)}
return ""
}
func tryAcme(ctx context.Context, ch chan string, backend, hostname string) {
var res string
var err error
defer func() { ch <- res }()
dialer := net.Dialer{Timeout: 10 * time.Second}
conn, err := dialer.DialContext(ctx, "tcp", backend)
if err != nil {
return
}
defer conn.Close()
deadline, ok := ctx.Deadline()
if ok {
conn.SetDeadline(deadline)
}
client := tls.Client(conn, &tls.Config{
ServerName: hostname,
InsecureSkipVerify: true,
})
if err != nil {
return
}
if err = client.Handshake(); err != nil {
return
}
certs := client.ConnectionState().PeerCertificates
if len(certs) == 0 {
return
}
if err = certs[0].VerifyHostname(hostname); err != nil {
return
}
res = backend
}
|