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"
|
2020-03-21 05:51:37 +08:00
|
|
|
"strings"
|
2019-04-26 03:54:48 +08:00
|
|
|
|
2019-07-03 02:37:06 +08:00
|
|
|
"github.com/caddyserver/caddy/v2"
|
2019-04-26 03:54:48 +08:00
|
|
|
)
|
|
|
|
|
2019-08-22 00:46:35 +08:00
|
|
|
func init() {
|
|
|
|
caddy.RegisterModule(MatchServerName{})
|
|
|
|
}
|
|
|
|
|
2020-03-21 05:51:37 +08:00
|
|
|
// MatchServerName matches based on SNI. Names in
|
|
|
|
// this list may use left-most-label wildcards,
|
|
|
|
// similar to wildcard certificates.
|
2019-05-08 01:58:58 +08:00
|
|
|
type MatchServerName []string
|
2019-04-26 03:54:48 +08:00
|
|
|
|
2019-08-22 00:46:35 +08:00
|
|
|
// CaddyModule returns the Caddy module information.
|
|
|
|
func (MatchServerName) CaddyModule() caddy.ModuleInfo {
|
|
|
|
return caddy.ModuleInfo{
|
2019-12-11 04:36:46 +08:00
|
|
|
ID: "tls.handshake_match.sni",
|
|
|
|
New: func() caddy.Module { return new(MatchServerName) },
|
2019-08-22 00:46:35 +08:00
|
|
|
}
|
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 {
|
|
|
|
if hello.ServerName == name {
|
|
|
|
return true
|
|
|
|
}
|
2020-03-21 05:51:37 +08:00
|
|
|
|
|
|
|
// check for wildcard match on this name, but only
|
|
|
|
// bother if there is even a wildcard character
|
|
|
|
if !strings.Contains(name, "*") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
labels := strings.Split(hello.ServerName, ".")
|
|
|
|
for i := range labels {
|
|
|
|
labels[i] = "*"
|
|
|
|
candidate := strings.Join(labels, ".")
|
|
|
|
if candidate == name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2019-04-26 03:54:48 +08:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-05-08 01:58:58 +08:00
|
|
|
// Interface guard
|
2019-06-19 01:13:12 +08:00
|
|
|
var _ ConnectionMatcher = (*MatchServerName)(nil)
|