frp/server/proxy.go

469 lines
12 KiB
Go
Raw Normal View History

2017-03-23 02:01:25 +08:00
// Copyright 2017 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.
2017-03-09 02:03:47 +08:00
package server
import (
2017-03-13 02:44:47 +08:00
"context"
2017-03-09 02:03:47 +08:00
"fmt"
"io"
2017-03-13 02:44:47 +08:00
"net"
2017-04-25 00:34:14 +08:00
"sync"
2017-03-13 02:44:47 +08:00
"time"
2017-03-09 02:03:47 +08:00
"github.com/fatedier/frp/models/config"
"github.com/fatedier/frp/models/msg"
"github.com/fatedier/frp/models/proto/tcp"
2017-03-13 02:44:47 +08:00
"github.com/fatedier/frp/models/proto/udp"
"github.com/fatedier/frp/utils/errors"
2017-03-09 02:03:47 +08:00
"github.com/fatedier/frp/utils/log"
2017-03-13 02:44:47 +08:00
frpNet "github.com/fatedier/frp/utils/net"
2017-03-10 02:01:17 +08:00
"github.com/fatedier/frp/utils/vhost"
2017-03-09 02:03:47 +08:00
)
type Proxy interface {
Run() error
GetControl() *Control
GetName() string
GetConf() config.ProxyConf
2017-03-13 02:44:47 +08:00
GetWorkConnFromPool() (workConn frpNet.Conn, err error)
2017-03-09 02:03:47 +08:00
Close()
log.Logger
}
type BaseProxy struct {
name string
ctl *Control
2017-03-13 02:44:47 +08:00
listeners []frpNet.Listener
2017-04-25 00:34:14 +08:00
mu sync.RWMutex
2017-03-09 02:03:47 +08:00
log.Logger
}
func (pxy *BaseProxy) GetName() string {
return pxy.name
}
func (pxy *BaseProxy) GetControl() *Control {
return pxy.ctl
}
func (pxy *BaseProxy) Close() {
pxy.Info("proxy closing")
for _, l := range pxy.listeners {
l.Close()
}
}
2017-03-13 02:44:47 +08:00
func (pxy *BaseProxy) GetWorkConnFromPool() (workConn frpNet.Conn, err error) {
ctl := pxy.GetControl()
// try all connections from the pool
for i := 0; i < ctl.poolCount+1; i++ {
if workConn, err = ctl.GetWorkConn(); err != nil {
pxy.Warn("failed to get work connection: %v", err)
return
}
pxy.Info("get a new work connection: [%s]", workConn.RemoteAddr().String())
workConn.AddLogPrefix(pxy.GetName())
err := msg.WriteMsg(workConn, &msg.StartWorkConn{
ProxyName: pxy.GetName(),
})
if err != nil {
workConn.Warn("failed to send message to work connection from pool: %v, times: %d", err, i)
workConn.Close()
} else {
break
}
}
if err != nil {
pxy.Error("try to get work connection failed in the end")
return
}
return
}
2017-03-10 02:01:17 +08:00
// startListenHandler start a goroutine handler for each listener.
2017-03-13 02:44:47 +08:00
// p: p will just be passed to handler(Proxy, frpNet.Conn).
2017-03-10 02:01:17 +08:00
// handler: each proxy type can set different handler function to deal with connections accepted from listeners.
2017-03-13 02:44:47 +08:00
func (pxy *BaseProxy) startListenHandler(p Proxy, handler func(Proxy, frpNet.Conn)) {
2017-03-10 02:01:17 +08:00
for _, listener := range pxy.listeners {
2017-03-13 02:44:47 +08:00
go func(l frpNet.Listener) {
2017-03-10 02:01:17 +08:00
for {
// block
// if listener is closed, err returned
c, err := l.Accept()
if err != nil {
pxy.Info("listener is closed")
return
}
pxy.Debug("get a user connection [%s]", c.RemoteAddr().String())
go handler(p, c)
}
}(listener)
}
}
2017-03-09 02:03:47 +08:00
func NewProxy(ctl *Control, pxyConf config.ProxyConf) (pxy Proxy, err error) {
basePxy := BaseProxy{
name: pxyConf.GetName(),
ctl: ctl,
2017-03-13 02:44:47 +08:00
listeners: make([]frpNet.Listener, 0),
2017-03-09 02:03:47 +08:00
Logger: log.NewPrefixLogger(ctl.runId),
}
switch cfg := pxyConf.(type) {
case *config.TcpProxyConf:
pxy = &TcpProxy{
BaseProxy: basePxy,
cfg: cfg,
}
case *config.HttpProxyConf:
pxy = &HttpProxy{
BaseProxy: basePxy,
cfg: cfg,
}
case *config.HttpsProxyConf:
pxy = &HttpsProxy{
BaseProxy: basePxy,
cfg: cfg,
}
case *config.UdpProxyConf:
pxy = &UdpProxy{
BaseProxy: basePxy,
cfg: cfg,
}
default:
return pxy, fmt.Errorf("proxy type not support")
}
pxy.AddLogPrefix(pxy.GetName())
return
}
type TcpProxy struct {
BaseProxy
cfg *config.TcpProxyConf
}
func (pxy *TcpProxy) Run() error {
2017-03-13 02:44:47 +08:00
listener, err := frpNet.ListenTcp(config.ServerCommonCfg.BindAddr, pxy.cfg.RemotePort)
2017-03-09 02:03:47 +08:00
if err != nil {
return err
}
2017-03-12 02:03:24 +08:00
listener.AddLogPrefix(pxy.name)
2017-03-09 02:03:47 +08:00
pxy.listeners = append(pxy.listeners, listener)
2017-03-10 02:01:17 +08:00
pxy.Info("tcp proxy listen port [%d]", pxy.cfg.RemotePort)
2017-03-09 02:03:47 +08:00
2017-03-10 02:01:17 +08:00
pxy.startListenHandler(pxy, HandleUserTcpConnection)
2017-03-09 02:03:47 +08:00
return nil
}
func (pxy *TcpProxy) GetConf() config.ProxyConf {
return pxy.cfg
}
func (pxy *TcpProxy) Close() {
pxy.BaseProxy.Close()
}
type HttpProxy struct {
BaseProxy
cfg *config.HttpProxyConf
}
func (pxy *HttpProxy) Run() (err error) {
2017-03-10 02:01:17 +08:00
routeConfig := &vhost.VhostRouteConfig{
RewriteHost: pxy.cfg.HostHeaderRewrite,
Username: pxy.cfg.HttpUser,
Password: pxy.cfg.HttpPwd,
}
locations := pxy.cfg.Locations
if len(locations) == 0 {
locations = []string{""}
}
for _, domain := range pxy.cfg.CustomDomains {
routeConfig.Domain = domain
for _, location := range locations {
routeConfig.Location = location
l, err := pxy.ctl.svr.VhostHttpMuxer.Listen(routeConfig)
if err != nil {
return err
}
2017-03-12 02:03:24 +08:00
l.AddLogPrefix(pxy.name)
2017-03-10 02:01:17 +08:00
pxy.Info("http proxy listen for host [%s] location [%s]", routeConfig.Domain, routeConfig.Location)
pxy.listeners = append(pxy.listeners, l)
}
}
if pxy.cfg.SubDomain != "" {
routeConfig.Domain = pxy.cfg.SubDomain + "." + config.ServerCommonCfg.SubDomainHost
for _, location := range locations {
routeConfig.Location = location
l, err := pxy.ctl.svr.VhostHttpMuxer.Listen(routeConfig)
if err != nil {
return err
}
2017-03-12 02:03:24 +08:00
l.AddLogPrefix(pxy.name)
2017-03-10 02:01:17 +08:00
pxy.Info("http proxy listen for host [%s] location [%s]", routeConfig.Domain, routeConfig.Location)
pxy.listeners = append(pxy.listeners, l)
}
}
pxy.startListenHandler(pxy, HandleUserTcpConnection)
2017-03-09 02:03:47 +08:00
return
}
func (pxy *HttpProxy) GetConf() config.ProxyConf {
return pxy.cfg
}
func (pxy *HttpProxy) Close() {
pxy.BaseProxy.Close()
}
type HttpsProxy struct {
BaseProxy
cfg *config.HttpsProxyConf
}
func (pxy *HttpsProxy) Run() (err error) {
2017-03-10 02:01:17 +08:00
routeConfig := &vhost.VhostRouteConfig{}
for _, domain := range pxy.cfg.CustomDomains {
routeConfig.Domain = domain
l, err := pxy.ctl.svr.VhostHttpsMuxer.Listen(routeConfig)
if err != nil {
return err
}
2017-03-12 02:03:24 +08:00
l.AddLogPrefix(pxy.name)
2017-03-10 02:01:17 +08:00
pxy.Info("https proxy listen for host [%s]", routeConfig.Domain)
pxy.listeners = append(pxy.listeners, l)
}
if pxy.cfg.SubDomain != "" {
routeConfig.Domain = pxy.cfg.SubDomain + "." + config.ServerCommonCfg.SubDomainHost
l, err := pxy.ctl.svr.VhostHttpsMuxer.Listen(routeConfig)
if err != nil {
return err
}
2017-03-12 02:03:24 +08:00
l.AddLogPrefix(pxy.name)
2017-03-10 02:01:17 +08:00
pxy.Info("https proxy listen for host [%s]", routeConfig.Domain)
pxy.listeners = append(pxy.listeners, l)
}
pxy.startListenHandler(pxy, HandleUserTcpConnection)
2017-03-09 02:03:47 +08:00
return
}
func (pxy *HttpsProxy) GetConf() config.ProxyConf {
return pxy.cfg
}
func (pxy *HttpsProxy) Close() {
pxy.BaseProxy.Close()
}
type UdpProxy struct {
BaseProxy
cfg *config.UdpProxyConf
2017-03-13 02:44:47 +08:00
2017-04-25 00:34:14 +08:00
// udpConn is the listener of udp packages
udpConn *net.UDPConn
// there are always only one workConn at the same time
// get another one if it closed
workConn net.Conn
// sendCh is used for sending packages to workConn
sendCh chan *msg.UdpPacket
// readCh is used for reading packages from workConn
readCh chan *msg.UdpPacket
// checkCloseCh is used for watching if workConn is closed
2017-03-13 02:44:47 +08:00
checkCloseCh chan int
2017-04-25 00:34:14 +08:00
isClosed bool
2017-03-09 02:03:47 +08:00
}
func (pxy *UdpProxy) Run() (err error) {
2017-03-13 02:44:47 +08:00
addr, err := net.ResolveUDPAddr("udp", fmt.Sprintf("%s:%d", config.ServerCommonCfg.BindAddr, pxy.cfg.RemotePort))
if err != nil {
return err
}
udpConn, err := net.ListenUDP("udp", addr)
if err != nil {
pxy.Warn("listen udp port error: %v", err)
return err
}
pxy.Info("udp proxy listen port [%d]", pxy.cfg.RemotePort)
pxy.udpConn = udpConn
pxy.sendCh = make(chan *msg.UdpPacket, 64)
pxy.readCh = make(chan *msg.UdpPacket, 64)
pxy.checkCloseCh = make(chan int)
2017-04-25 00:34:14 +08:00
// read message from workConn, if it returns any error, notify proxy to start a new workConn
2017-03-13 02:44:47 +08:00
workConnReaderFn := func(conn net.Conn) {
for {
var udpMsg msg.UdpPacket
2017-04-25 00:34:14 +08:00
pxy.Trace("loop waiting message from udp workConn")
2017-03-13 02:44:47 +08:00
if errRet := msg.ReadMsgInto(conn, &udpMsg); errRet != nil {
pxy.Warn("read from workConn for udp error: %v", errRet)
conn.Close()
2017-03-27 01:39:05 +08:00
// notify proxy to start a new work connection
2017-04-25 00:34:14 +08:00
// ignore error here, it means the proxy is closed
2017-03-13 02:44:47 +08:00
errors.PanicToError(func() {
pxy.checkCloseCh <- 1
})
return
}
if errRet := errors.PanicToError(func() {
2017-04-25 00:34:14 +08:00
pxy.Trace("get udp message from workConn: %s", udpMsg.Content)
2017-03-13 02:44:47 +08:00
pxy.readCh <- &udpMsg
2017-03-27 01:39:05 +08:00
StatsAddTrafficOut(pxy.GetName(), int64(len(udpMsg.Content)))
2017-03-13 02:44:47 +08:00
}); errRet != nil {
2017-04-25 00:34:14 +08:00
conn.Close()
2017-03-13 02:44:47 +08:00
pxy.Info("reader goroutine for udp work connection closed")
return
}
}
}
2017-04-25 00:34:14 +08:00
// send message to workConn
2017-03-13 02:44:47 +08:00
workConnSenderFn := func(conn net.Conn, ctx context.Context) {
var errRet error
for {
select {
case udpMsg, ok := <-pxy.sendCh:
if !ok {
2017-04-25 00:34:14 +08:00
pxy.Info("sender goroutine for udp work condition closed")
2017-03-13 02:44:47 +08:00
return
}
if errRet = msg.WriteMsg(conn, udpMsg); errRet != nil {
pxy.Info("sender goroutine for udp work connection closed: %v", errRet)
2017-04-25 00:34:14 +08:00
conn.Close()
2017-03-13 02:44:47 +08:00
return
} else {
2017-04-25 00:34:14 +08:00
pxy.Trace("send message to udp workConn: %s", udpMsg.Content)
2017-03-27 01:39:05 +08:00
StatsAddTrafficIn(pxy.GetName(), int64(len(udpMsg.Content)))
2017-03-13 02:44:47 +08:00
continue
}
case <-ctx.Done():
pxy.Info("sender goroutine for udp work connection closed")
return
}
}
}
go func() {
2017-04-25 00:34:14 +08:00
// Sleep a while for waiting control send the NewProxyResp to client.
time.Sleep(500 * time.Millisecond)
2017-03-13 02:44:47 +08:00
for {
workConn, err := pxy.GetWorkConnFromPool()
if err != nil {
2017-04-25 00:34:14 +08:00
time.Sleep(1 * time.Second)
2017-03-13 02:44:47 +08:00
// check if proxy is closed
select {
case _, ok := <-pxy.checkCloseCh:
if !ok {
return
}
default:
}
continue
}
2017-04-25 00:34:14 +08:00
// close the old workConn and replac it with a new one
if pxy.workConn != nil {
pxy.workConn.Close()
}
2017-03-13 02:44:47 +08:00
pxy.workConn = workConn
ctx, cancel := context.WithCancel(context.Background())
go workConnReaderFn(workConn)
go workConnSenderFn(workConn, ctx)
_, ok := <-pxy.checkCloseCh
cancel()
if !ok {
return
}
}
}()
2017-04-25 00:34:14 +08:00
// Read from user connections and send wrapped udp message to sendCh (forwarded by workConn).
2017-03-13 02:44:47 +08:00
// Client will transfor udp message to local udp service and waiting for response for a while.
2017-04-25 00:34:14 +08:00
// Response will be wrapped to be forwarded by work connection to server.
// Close readCh and sendCh at the end.
go func() {
udp.ForwardUserConn(udpConn, pxy.readCh, pxy.sendCh)
pxy.Close()
}()
2017-03-13 02:44:47 +08:00
return nil
2017-03-09 02:03:47 +08:00
}
func (pxy *UdpProxy) GetConf() config.ProxyConf {
return pxy.cfg
}
func (pxy *UdpProxy) Close() {
2017-04-25 00:34:14 +08:00
pxy.mu.Lock()
defer pxy.mu.Unlock()
if !pxy.isClosed {
pxy.isClosed = true
pxy.BaseProxy.Close()
pxy.workConn.Close()
pxy.udpConn.Close()
// all channels only closed here
close(pxy.checkCloseCh)
close(pxy.readCh)
close(pxy.sendCh)
}
2017-03-09 02:03:47 +08:00
}
// HandleUserTcpConnection is used for incoming tcp user connections.
2017-03-10 01:42:06 +08:00
// It can be used for tcp, http, https type.
2017-03-13 02:44:47 +08:00
func HandleUserTcpConnection(pxy Proxy, userConn frpNet.Conn) {
2017-03-09 02:03:47 +08:00
defer userConn.Close()
2017-03-13 02:44:47 +08:00
// try all connections from the pool
workConn, err := pxy.GetWorkConnFromPool()
2017-03-09 02:03:47 +08:00
if err != nil {
return
}
2017-03-13 02:44:47 +08:00
defer workConn.Close()
2017-03-09 02:03:47 +08:00
2017-03-10 02:01:17 +08:00
var local io.ReadWriteCloser = workConn
2017-03-09 02:03:47 +08:00
cfg := pxy.GetConf().GetBaseInfo()
if cfg.UseEncryption {
local, err = tcp.WithEncryption(local, []byte(config.ServerCommonCfg.PrivilegeToken))
if err != nil {
pxy.Error("create encryption stream error: %v", err)
return
}
}
if cfg.UseCompression {
local = tcp.WithCompression(local)
}
2017-03-10 02:01:17 +08:00
pxy.Debug("join connections, workConn(l[%s] r[%s]) userConn(l[%s] r[%s])", workConn.LocalAddr().String(),
workConn.RemoteAddr().String(), userConn.LocalAddr().String(), userConn.RemoteAddr().String())
2017-03-23 02:01:25 +08:00
StatsOpenConnection(pxy.GetName())
inCount, outCount := tcp.Join(local, userConn)
StatsCloseConnection(pxy.GetName())
2017-03-27 01:39:05 +08:00
StatsAddTrafficIn(pxy.GetName(), inCount)
StatsAddTrafficOut(pxy.GetName(), outCount)
2017-03-10 02:01:17 +08:00
pxy.Debug("join connections closed")
2017-03-09 02:03:47 +08:00
}