2022-10-27 17:50:29 +08:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2022-11-07 23:55:58 +08:00
|
|
|
"context"
|
2022-11-14 21:44:39 +08:00
|
|
|
"fmt"
|
2022-10-27 17:50:29 +08:00
|
|
|
"log"
|
|
|
|
"net"
|
|
|
|
"time"
|
|
|
|
|
2022-10-27 19:50:06 +08:00
|
|
|
"github.com/gravitl/netmaker/nm-proxy/common"
|
|
|
|
"github.com/gravitl/netmaker/nm-proxy/packet"
|
2022-10-27 17:50:29 +08:00
|
|
|
)
|
|
|
|
|
2022-10-28 01:47:51 +08:00
|
|
|
var (
|
|
|
|
NmProxyServer = &ProxyServer{}
|
|
|
|
)
|
|
|
|
|
2022-10-27 17:50:29 +08:00
|
|
|
const (
|
|
|
|
defaultBodySize = 10000
|
2022-11-03 15:18:03 +08:00
|
|
|
defaultPort = common.NmProxyPort
|
2022-10-27 17:50:29 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2022-11-03 15:18:03 +08:00
|
|
|
Port int
|
|
|
|
BodySize int
|
2022-11-04 03:54:48 +08:00
|
|
|
IsRelay bool
|
2022-11-03 15:18:03 +08:00
|
|
|
Addr net.Addr
|
2022-10-27 17:50:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type ProxyServer struct {
|
|
|
|
Config Config
|
|
|
|
Server *net.UDPConn
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proxy.Listen - begins listening for packets
|
2022-11-07 23:55:58 +08:00
|
|
|
func (p *ProxyServer) Listen(ctx context.Context) {
|
2022-10-27 17:50:29 +08:00
|
|
|
|
|
|
|
// Buffer with indicated body size
|
2022-11-04 03:54:48 +08:00
|
|
|
buffer := make([]byte, 1532)
|
2022-10-27 17:50:29 +08:00
|
|
|
for {
|
2022-11-07 23:55:58 +08:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
log.Println("--------->### Shutting down Proxy.....")
|
|
|
|
// clean up proxy connections
|
|
|
|
for iface, peers := range common.WgIFaceMap {
|
|
|
|
log.Println("########------------> CLEANING UP: ", iface)
|
|
|
|
for _, peerI := range peers {
|
|
|
|
peerI.Proxy.Cancel()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// close server connection
|
|
|
|
NmProxyServer.Server.Close()
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
// Read Packet
|
|
|
|
n, source, err := p.Server.ReadFromUDP(buffer)
|
|
|
|
if err != nil { // in future log errors?
|
|
|
|
log.Println("RECV ERROR: ", err)
|
|
|
|
continue
|
|
|
|
}
|
2022-11-16 01:18:07 +08:00
|
|
|
go func() {
|
|
|
|
|
|
|
|
var srcPeerKeyHash, dstPeerKeyHash string
|
|
|
|
n, srcPeerKeyHash, dstPeerKeyHash = packet.ExtractInfo(buffer, n)
|
|
|
|
//log.Printf("--------> RECV PKT [DSTPORT: %d], [SRCKEYHASH: %s], SourceIP: [%s] \n", localWgPort, srcPeerKeyHash, source.IP.String())
|
|
|
|
if _, ok := common.WgIfaceKeyMap[dstPeerKeyHash]; !ok {
|
|
|
|
// if common.IsIngressGateway {
|
|
|
|
// log.Println("----> fowarding PKT to EXT client...")
|
|
|
|
// if val, ok := common.PeerKeyHashMap[dstPeerKeyHash]; ok && val.IsAttachedExtClient {
|
|
|
|
|
|
|
|
// log.Printf("-------->Forwarding the pkt to extClient [ SourceIP: %s ], [ SourceKeyHash: %s ], [ DstIP: %s ], [ DstHashKey: %s ] \n",
|
|
|
|
// source.String(), srcPeerKeyHash, val.Endpoint.String(), dstPeerKeyHash)
|
|
|
|
// _, err = NmProxyServer.Server.WriteToUDP(buffer[:n], val.Endpoint)
|
|
|
|
// if err != nil {
|
|
|
|
// log.Println("Failed to send to remote: ", err)
|
|
|
|
// }
|
|
|
|
// continue
|
|
|
|
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
if common.IsRelay {
|
|
|
|
|
|
|
|
log.Println("----------> Relaying######")
|
|
|
|
// check for routing map and forward to right proxy
|
|
|
|
if remoteMap, ok := common.RelayPeerMap[srcPeerKeyHash]; ok {
|
2022-11-07 23:55:58 +08:00
|
|
|
if conf, ok := remoteMap[dstPeerKeyHash]; ok {
|
2022-11-16 01:18:07 +08:00
|
|
|
log.Printf("--------> Relaying PKT [ SourceIP: %s:%d ], [ SourceKeyHash: %s ], [ DstIP: %s:%d ], [ DstHashKey: %s ] \n",
|
|
|
|
source.IP.String(), source.Port, srcPeerKeyHash, conf.Endpoint.String(), conf.Endpoint.Port, dstPeerKeyHash)
|
2022-11-07 23:55:58 +08:00
|
|
|
_, err = NmProxyServer.Server.WriteToUDP(buffer[:n+32], conf.Endpoint)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Failed to send to remote: ", err)
|
|
|
|
}
|
2022-11-16 01:18:07 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if remoteMap, ok := common.RelayPeerMap[dstPeerKeyHash]; ok {
|
|
|
|
if conf, ok := remoteMap[dstPeerKeyHash]; ok {
|
|
|
|
log.Printf("--------> Relaying BACK TO RELAYED NODE PKT [ SourceIP: %s ], [ SourceKeyHash: %s ], [ DstIP: %s ], [ DstHashKey: %s ] \n",
|
|
|
|
source.String(), srcPeerKeyHash, conf.Endpoint.String(), dstPeerKeyHash)
|
|
|
|
_, err = NmProxyServer.Server.WriteToUDP(buffer[:n+32], conf.Endpoint)
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Failed to send to remote: ", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2022-11-07 23:55:58 +08:00
|
|
|
}
|
2022-11-16 01:18:07 +08:00
|
|
|
|
2022-11-07 23:55:58 +08:00
|
|
|
}
|
2022-11-14 16:40:52 +08:00
|
|
|
|
2022-11-07 13:14:14 +08:00
|
|
|
}
|
2022-11-04 03:54:48 +08:00
|
|
|
|
2022-11-07 23:55:58 +08:00
|
|
|
}
|
2022-11-14 16:40:52 +08:00
|
|
|
|
2022-11-16 01:18:07 +08:00
|
|
|
if peerInfo, ok := common.PeerKeyHashMap[srcPeerKeyHash]; ok {
|
|
|
|
if peers, ok := common.WgIFaceMap[peerInfo.Interface]; ok {
|
|
|
|
if peerI, ok := peers[peerInfo.PeerKey]; ok {
|
|
|
|
log.Printf("PROXING TO LOCAL!!!---> %s <<<< %s <<<<<<<< %s [[ RECV PKT [SRCKEYHASH: %s], [DSTKEYHASH: %s], SourceIP: [%s] ]]\n",
|
|
|
|
peerI.Proxy.LocalConn.RemoteAddr(), peerI.Proxy.LocalConn.LocalAddr(),
|
|
|
|
fmt.Sprintf("%s:%d", source.IP.String(), source.Port), srcPeerKeyHash, dstPeerKeyHash, source.IP.String())
|
|
|
|
_, err = peerI.Proxy.LocalConn.Write(buffer[:n])
|
|
|
|
if err != nil {
|
|
|
|
log.Println("Failed to proxy to Wg local interface: ", err)
|
|
|
|
return
|
|
|
|
}
|
2022-11-04 03:54:48 +08:00
|
|
|
|
2022-11-07 23:55:58 +08:00
|
|
|
}
|
|
|
|
}
|
2022-11-16 01:18:07 +08:00
|
|
|
return
|
|
|
|
|
2022-10-27 17:50:29 +08:00
|
|
|
}
|
2022-11-16 01:18:07 +08:00
|
|
|
// // forward to all interfaces
|
|
|
|
// for _, ifaceCfg := range common.WgIfaceKeyMap {
|
|
|
|
// log.Println("###--------> Forwarding Unknown PKT to ", ifaceCfg.Interface)
|
|
|
|
// conn, err := net.DialUDP("udp", nil, ifaceCfg.Endpoint)
|
|
|
|
// if err == nil {
|
|
|
|
// _, err := conn.Write(buffer[:n])
|
|
|
|
// if err != nil {
|
|
|
|
// log.Println("Failed to forward the unknown pkt to ifcace: ", ifaceCfg.Interface, err)
|
|
|
|
// }
|
|
|
|
// conn.Close()
|
|
|
|
// }
|
2022-11-07 23:55:58 +08:00
|
|
|
|
2022-11-16 01:18:07 +08:00
|
|
|
// }
|
|
|
|
}()
|
2022-10-27 17:50:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create - creats a proxy listener
|
|
|
|
// port - port for proxy to listen on localhost
|
|
|
|
// bodySize - default 10000, leave 0 to use default
|
|
|
|
// addr - the address for proxy to listen on
|
|
|
|
// forwards - indicate address to forward to, {"<address:port>",...} format
|
2022-10-28 01:47:51 +08:00
|
|
|
func (p *ProxyServer) CreateProxyServer(port, bodySize int, addr string) (err error) {
|
2022-10-27 17:50:29 +08:00
|
|
|
if p == nil {
|
|
|
|
p = &ProxyServer{}
|
|
|
|
}
|
|
|
|
p.Config.Port = port
|
|
|
|
p.Config.BodySize = bodySize
|
|
|
|
p.setDefaults()
|
|
|
|
p.Server, err = net.ListenUDP("udp", &net.UDPAddr{
|
|
|
|
Port: p.Config.Port,
|
|
|
|
IP: net.ParseIP(addr),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *ProxyServer) KeepAlive(ip string, port int) {
|
|
|
|
for {
|
2022-11-04 03:54:48 +08:00
|
|
|
_, _ = p.Server.WriteToUDP([]byte("hello-proxy"), &net.UDPAddr{
|
|
|
|
IP: net.ParseIP(ip),
|
|
|
|
Port: port,
|
|
|
|
})
|
|
|
|
//log.Println("Sending MSg: ", ip, port, err)
|
|
|
|
time.Sleep(time.Second * 5)
|
2022-10-27 17:50:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proxy.setDefaults - sets all defaults of proxy listener
|
|
|
|
func (p *ProxyServer) setDefaults() {
|
|
|
|
p.setDefaultBodySize()
|
|
|
|
p.setDefaultPort()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proxy.setDefaultPort - sets default port of Proxy listener if 0
|
|
|
|
func (p *ProxyServer) setDefaultPort() {
|
|
|
|
if p.Config.Port == 0 {
|
|
|
|
p.Config.Port = defaultPort
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proxy.setDefaultBodySize - sets default body size of Proxy listener if 0
|
|
|
|
func (p *ProxyServer) setDefaultBodySize() {
|
|
|
|
if p.Config.BodySize == 0 {
|
|
|
|
p.Config.BodySize = defaultBodySize
|
|
|
|
}
|
|
|
|
}
|