1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // Copyright 2016 fatedier, fatedier@gmail.com
- //
- // 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.
- package vhost
- import (
- "crypto/tls"
- "io"
- "net"
- "time"
- gnet "github.com/fatedier/golib/net"
- )
- type HTTPSMuxer struct {
- *Muxer
- }
- func NewHTTPSMuxer(listener net.Listener, timeout time.Duration) (*HTTPSMuxer, error) {
- mux, err := NewMuxer(listener, GetHTTPSHostname, nil, nil, nil, timeout)
- return &HTTPSMuxer{mux}, err
- }
- func GetHTTPSHostname(c net.Conn) (_ net.Conn, _ map[string]string, err error) {
- reqInfoMap := make(map[string]string, 0)
- sc, rd := gnet.NewSharedConn(c)
- clientHello, err := readClientHello(rd)
- if err != nil {
- return nil, reqInfoMap, err
- }
- reqInfoMap["Host"] = clientHello.ServerName
- reqInfoMap["Scheme"] = "https"
- return sc, reqInfoMap, nil
- }
- func readClientHello(reader io.Reader) (*tls.ClientHelloInfo, error) {
- var hello *tls.ClientHelloInfo
- // Note that Handshake always fails because the readOnlyConn is not a real connection.
- // As long as the Client Hello is successfully read, the failure should only happen after GetConfigForClient is called,
- // so we only care about the error if hello was never set.
- err := tls.Server(readOnlyConn{reader: reader}, &tls.Config{
- GetConfigForClient: func(argHello *tls.ClientHelloInfo) (*tls.Config, error) {
- hello = &tls.ClientHelloInfo{}
- *hello = *argHello
- return nil, nil
- },
- }).Handshake()
- if hello == nil {
- return nil, err
- }
- return hello, nil
- }
- type readOnlyConn struct {
- reader io.Reader
- }
- func (conn readOnlyConn) Read(p []byte) (int, error) { return conn.reader.Read(p) }
- func (conn readOnlyConn) Write(p []byte) (int, error) { return 0, io.ErrClosedPipe }
- func (conn readOnlyConn) Close() error { return nil }
- func (conn readOnlyConn) LocalAddr() net.Addr { return nil }
- func (conn readOnlyConn) RemoteAddr() net.Addr { return nil }
- func (conn readOnlyConn) SetDeadline(t time.Time) error { return nil }
- func (conn readOnlyConn) SetReadDeadline(t time.Time) error { return nil }
- func (conn readOnlyConn) SetWriteDeadline(t time.Time) error { return nil }
|