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