123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // Copyright 2019 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.
- //go:build !frps
- package plugin
- import (
- "context"
- "crypto/tls"
- "fmt"
- "io"
- stdlog "log"
- "net"
- "net/http"
- "net/http/httputil"
- "time"
- "github.com/fatedier/golib/pool"
- "github.com/samber/lo"
- v1 "github.com/fatedier/frp/pkg/config/v1"
- "github.com/fatedier/frp/pkg/transport"
- httppkg "github.com/fatedier/frp/pkg/util/http"
- "github.com/fatedier/frp/pkg/util/log"
- netpkg "github.com/fatedier/frp/pkg/util/net"
- )
- func init() {
- Register(v1.PluginHTTPS2HTTP, NewHTTPS2HTTPPlugin)
- }
- type HTTPS2HTTPPlugin struct {
- opts *v1.HTTPS2HTTPPluginOptions
- l *Listener
- s *http.Server
- }
- func NewHTTPS2HTTPPlugin(options v1.ClientPluginOptions) (Plugin, error) {
- opts := options.(*v1.HTTPS2HTTPPluginOptions)
- listener := NewProxyListener()
- p := &HTTPS2HTTPPlugin{
- opts: opts,
- l: listener,
- }
- rp := &httputil.ReverseProxy{
- Rewrite: func(r *httputil.ProxyRequest) {
- r.Out.Header["X-Forwarded-For"] = r.In.Header["X-Forwarded-For"]
- r.SetXForwarded()
- req := r.Out
- req.URL.Scheme = "http"
- req.URL.Host = p.opts.LocalAddr
- if p.opts.HostHeaderRewrite != "" {
- req.Host = p.opts.HostHeaderRewrite
- }
- for k, v := range p.opts.RequestHeaders.Set {
- req.Header.Set(k, v)
- }
- },
- BufferPool: pool.NewBuffer(32 * 1024),
- ErrorLog: stdlog.New(log.NewWriteLogger(log.WarnLevel, 2), "", 0),
- }
- handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- if r.TLS != nil {
- tlsServerName, _ := httppkg.CanonicalHost(r.TLS.ServerName)
- host, _ := httppkg.CanonicalHost(r.Host)
- if tlsServerName != "" && tlsServerName != host {
- w.WriteHeader(http.StatusMisdirectedRequest)
- return
- }
- }
- rp.ServeHTTP(w, r)
- })
- tlsConfig, err := transport.NewServerTLSConfig(p.opts.CrtPath, p.opts.KeyPath, "")
- if err != nil {
- return nil, fmt.Errorf("gen TLS config error: %v", err)
- }
- p.s = &http.Server{
- Handler: handler,
- ReadHeaderTimeout: 60 * time.Second,
- TLSConfig: tlsConfig,
- }
- if !lo.FromPtr(opts.EnableHTTP2) {
- p.s.TLSNextProto = make(map[string]func(*http.Server, *tls.Conn, http.Handler))
- }
- go func() {
- _ = p.s.ServeTLS(listener, "", "")
- }()
- return p, nil
- }
- func (p *HTTPS2HTTPPlugin) Handle(_ context.Context, conn io.ReadWriteCloser, realConn net.Conn, extra *ExtraInfo) {
- wrapConn := netpkg.WrapReadWriteCloserToConn(conn, realConn)
- if extra.SrcAddr != nil {
- wrapConn.SetRemoteAddr(extra.SrcAddr)
- }
- _ = p.l.PutConn(wrapConn)
- }
- func (p *HTTPS2HTTPPlugin) Name() string {
- return v1.PluginHTTPS2HTTP
- }
- func (p *HTTPS2HTTPPlugin) Close() error {
- return p.s.Close()
- }
|