2019-04-25 22:54:48 +03:00
|
|
|
package caddytls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
|
2019-06-14 20:58:28 +03:00
|
|
|
"github.com/caddyserver/caddy"
|
2019-04-25 22:54:48 +03:00
|
|
|
)
|
|
|
|
|
2019-05-07 20:58:58 +03:00
|
|
|
// MatchServerName matches based on SNI.
|
|
|
|
type MatchServerName []string
|
2019-04-25 22:54:48 +03:00
|
|
|
|
|
|
|
func init() {
|
2019-06-14 20:58:28 +03:00
|
|
|
caddy.RegisterModule(caddy.Module{
|
2019-05-24 22:18:45 +03:00
|
|
|
Name: "tls.handshake_match.sni",
|
2019-05-21 23:22:21 +03:00
|
|
|
New: func() interface{} { return MatchServerName{} },
|
2019-04-25 22:54:48 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-26 21:35:39 +03:00
|
|
|
// Match matches hello based on SNI.
|
2019-04-25 22:54:48 +03: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-07 20:58:58 +03:00
|
|
|
// Interface guard
|
2019-06-18 20:13:12 +03:00
|
|
|
var _ ConnectionMatcher = (*MatchServerName)(nil)
|