2017-03-08 19:03:47 +01:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/fatedier/frp/models/config"
|
|
|
|
"github.com/fatedier/frp/models/msg"
|
|
|
|
"github.com/fatedier/frp/models/proto/tcp"
|
|
|
|
"github.com/fatedier/frp/utils/log"
|
|
|
|
"github.com/fatedier/frp/utils/net"
|
2017-03-09 19:01:17 +01:00
|
|
|
"github.com/fatedier/frp/utils/vhost"
|
2017-03-08 19:03:47 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Proxy interface {
|
|
|
|
Run() error
|
|
|
|
GetControl() *Control
|
|
|
|
GetName() string
|
|
|
|
GetConf() config.ProxyConf
|
|
|
|
Close()
|
|
|
|
log.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
type BaseProxy struct {
|
|
|
|
name string
|
|
|
|
ctl *Control
|
|
|
|
listeners []net.Listener
|
|
|
|
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-09 19:01:17 +01:00
|
|
|
// startListenHandler start a goroutine handler for each listener.
|
|
|
|
// p: p will just be passed to handler(Proxy, net.Conn).
|
|
|
|
// handler: each proxy type can set different handler function to deal with connections accepted from listeners.
|
|
|
|
func (pxy *BaseProxy) startListenHandler(p Proxy, handler func(Proxy, net.Conn)) {
|
|
|
|
for _, listener := range pxy.listeners {
|
|
|
|
go func(l net.Listener) {
|
|
|
|
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-08 19:03:47 +01:00
|
|
|
func NewProxy(ctl *Control, pxyConf config.ProxyConf) (pxy Proxy, err error) {
|
|
|
|
basePxy := BaseProxy{
|
|
|
|
name: pxyConf.GetName(),
|
|
|
|
ctl: ctl,
|
|
|
|
listeners: make([]net.Listener, 0),
|
|
|
|
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-09 19:01:17 +01:00
|
|
|
listener, err := net.ListenTcp(config.ServerCommonCfg.BindAddr, pxy.cfg.RemotePort)
|
2017-03-08 19:03:47 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-03-11 19:03:24 +01:00
|
|
|
listener.AddLogPrefix(pxy.name)
|
2017-03-08 19:03:47 +01:00
|
|
|
pxy.listeners = append(pxy.listeners, listener)
|
2017-03-09 19:01:17 +01:00
|
|
|
pxy.Info("tcp proxy listen port [%d]", pxy.cfg.RemotePort)
|
2017-03-08 19:03:47 +01:00
|
|
|
|
2017-03-09 19:01:17 +01:00
|
|
|
pxy.startListenHandler(pxy, HandleUserTcpConnection)
|
2017-03-08 19:03:47 +01: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-09 19:01:17 +01: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-11 19:03:24 +01:00
|
|
|
l.AddLogPrefix(pxy.name)
|
2017-03-09 19:01:17 +01: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-11 19:03:24 +01:00
|
|
|
l.AddLogPrefix(pxy.name)
|
2017-03-09 19:01:17 +01: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-08 19:03:47 +01: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-09 19:01:17 +01: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-11 19:03:24 +01:00
|
|
|
l.AddLogPrefix(pxy.name)
|
2017-03-09 19:01:17 +01: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-11 19:03:24 +01:00
|
|
|
l.AddLogPrefix(pxy.name)
|
2017-03-09 19:01:17 +01:00
|
|
|
pxy.Info("https proxy listen for host [%s]", routeConfig.Domain)
|
|
|
|
pxy.listeners = append(pxy.listeners, l)
|
|
|
|
}
|
|
|
|
|
|
|
|
pxy.startListenHandler(pxy, HandleUserTcpConnection)
|
2017-03-08 19:03:47 +01: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
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *UdpProxy) Run() (err error) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *UdpProxy) GetConf() config.ProxyConf {
|
|
|
|
return pxy.cfg
|
|
|
|
}
|
|
|
|
|
|
|
|
func (pxy *UdpProxy) Close() {
|
|
|
|
pxy.BaseProxy.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
// HandleUserTcpConnection is used for incoming tcp user connections.
|
2017-03-09 18:42:06 +01:00
|
|
|
// It can be used for tcp, http, https type.
|
2017-03-08 19:03:47 +01:00
|
|
|
func HandleUserTcpConnection(pxy Proxy, userConn net.Conn) {
|
|
|
|
defer userConn.Close()
|
|
|
|
ctl := pxy.GetControl()
|
|
|
|
var (
|
|
|
|
workConn net.Conn
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
defer workConn.Close()
|
2017-03-09 19:01:17 +01:00
|
|
|
pxy.Info("get a new work connection: [%s]", workConn.RemoteAddr().String())
|
2017-03-08 19:03:47 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-03-09 19:01:17 +01:00
|
|
|
var local io.ReadWriteCloser = workConn
|
2017-03-08 19:03:47 +01: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-09 19:01:17 +01: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())
|
|
|
|
tcp.Join(local, userConn)
|
|
|
|
pxy.Debug("join connections closed")
|
2017-03-08 19:03:47 +01:00
|
|
|
}
|