2019-04-26 03:54:48 +08:00
|
|
|
package caddytls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
|
2019-06-05 03:52:37 +08:00
|
|
|
"github.com/caddyserver/caddy2"
|
2019-04-26 03:54:48 +08:00
|
|
|
)
|
|
|
|
|
2019-05-08 01:58:58 +08:00
|
|
|
// MatchServerName matches based on SNI.
|
|
|
|
type MatchServerName []string
|
2019-04-26 03:54:48 +08:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
caddy2.RegisterModule(caddy2.Module{
|
2019-05-25 03:18:45 +08:00
|
|
|
Name: "tls.handshake_match.sni",
|
2019-05-22 04:22:21 +08:00
|
|
|
New: func() interface{} { return MatchServerName{} },
|
2019-04-26 03:54:48 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-27 02:35:39 +08:00
|
|
|
// Match matches hello based on SNI.
|
2019-04-26 03:54:48 +08:00
|
|
|
func (m MatchServerName) Match(hello *tls.ClientHelloInfo) bool {
|
|
|
|
for _, name := range m {
|
|
|
|
// TODO: support wildcards (and regex?)
|
|
|
|
if hello.ServerName == name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-05-08 01:58:58 +08:00
|
|
|
// Interface guard
|
|
|
|
var _ ConnectionMatcher = MatchServerName{}
|