2019-07-01 06:07:58 +08:00
|
|
|
// Copyright 2015 Matthew Holt and The Caddy Authors
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2019-04-26 03:54:48 +08:00
|
|
|
package caddytls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
|
2019-06-15 01:58:28 +08:00
|
|
|
"github.com/caddyserver/caddy"
|
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() {
|
2019-06-15 01:58:28 +08:00
|
|
|
caddy.RegisterModule(caddy.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
|
2019-06-19 01:13:12 +08:00
|
|
|
var _ ConnectionMatcher = (*MatchServerName)(nil)
|