1 Star 0 Fork 0

lqinggang / psiphon-tunnel-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
udp.go 14.83 KB
一键复制 编辑 原始数据 按行查看 历史
Rod Hynes 提交于 2019-02-04 22:02 . Add blocklist functionality
/*
* Copyright (c) 2016, Psiphon Inc.
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package server
import (
"bytes"
"encoding/binary"
"errors"
"fmt"
"io"
"net"
"runtime/debug"
"sync"
"sync/atomic"
"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/crypto/ssh"
)
// handleUDPChannel implements UDP port forwarding. A single UDP
// SSH channel follows the udpgw protocol, which multiplexes many
// UDP port forwards.
//
// The udpgw protocol and original server implementation:
// Copyright (c) 2009, Ambroz Bizjak <ambrop7@gmail.com>
// https://github.com/ambrop72/badvpn
//
func (sshClient *sshClient) handleUDPChannel(newChannel ssh.NewChannel) {
// Accept this channel immediately. This channel will replace any
// previously existing UDP channel for this client.
sshChannel, requests, err := newChannel.Accept()
if err != nil {
if !isExpectedTunnelIOError(err) {
log.WithContextFields(LogFields{"error": err}).Warning("accept new channel failed")
}
return
}
go ssh.DiscardRequests(requests)
defer sshChannel.Close()
sshClient.setUDPChannel(sshChannel)
multiplexer := &udpPortForwardMultiplexer{
sshClient: sshClient,
sshChannel: sshChannel,
portForwards: make(map[uint16]*udpPortForward),
portForwardLRU: common.NewLRUConns(),
relayWaitGroup: new(sync.WaitGroup),
}
multiplexer.run()
}
type udpPortForwardMultiplexer struct {
sshClient *sshClient
sshChannelWriteMutex sync.Mutex
sshChannel ssh.Channel
portForwardsMutex sync.Mutex
portForwards map[uint16]*udpPortForward
portForwardLRU *common.LRUConns
relayWaitGroup *sync.WaitGroup
}
func (mux *udpPortForwardMultiplexer) run() {
// In a loop, read udpgw messages from the client to this channel. Each message is
// a UDP packet to send upstream either via a new port forward, or on an existing
// port forward.
//
// A goroutine is run to read downstream packets for each UDP port forward. All read
// packets are encapsulated in udpgw protocol and sent down the channel to the client.
//
// When the client disconnects or the server shuts down, the channel will close and
// readUdpgwMessage will exit with EOF.
// Recover from and log any unexpected panics caused by udpgw input handling bugs.
// Note: this covers the run() goroutine only and not relayDownstream() goroutines.
defer func() {
if e := recover(); e != nil {
err := common.ContextError(
fmt.Errorf(
"udpPortForwardMultiplexer panic: %s: %s", e, debug.Stack()))
log.WithContextFields(LogFields{"error": err}).Warning("run failed")
}
}()
buffer := make([]byte, udpgwProtocolMaxMessageSize)
for {
// Note: message.packet points to the reusable memory in "buffer".
// Each readUdpgwMessage call will overwrite the last message.packet.
message, err := readUdpgwMessage(mux.sshChannel, buffer)
if err != nil {
if err != io.EOF {
// Debug since I/O errors occur during normal operation
log.WithContextFields(LogFields{"error": err}).Debug("readUdpgwMessage failed")
}
break
}
mux.portForwardsMutex.Lock()
portForward := mux.portForwards[message.connID]
mux.portForwardsMutex.Unlock()
if portForward != nil && message.discardExistingConn {
// The port forward's goroutine will complete cleanup, including
// tallying stats and calling sshClient.closedPortForward.
// portForward.conn.Close() will signal this shutdown.
// TODO: wait for goroutine to exit before proceeding?
portForward.conn.Close()
portForward = nil
}
if portForward != nil {
// Verify that portForward remote address matches latest message
if 0 != bytes.Compare(portForward.remoteIP, message.remoteIP) ||
portForward.remotePort != message.remotePort {
log.WithContext().Warning("UDP port forward remote address mismatch")
continue
}
} else {
// Create a new port forward
dialIP := net.IP(message.remoteIP)
dialPort := int(message.remotePort)
if message.forwardDNS {
// Transparent DNS forwarding. In this case, traffic rules
// checks are bypassed, since DNS is essential.
dialIP = mux.sshClient.sshServer.support.DNSResolver.Get()
dialPort = DNS_RESOLVER_PORT
} else if !mux.sshClient.isPortForwardPermitted(
portForwardTypeUDP, dialIP, int(message.remotePort)) {
// The udpgw protocol has no error response, so
// we just discard the message and read another.
continue
}
// Note: UDP port forward counting has no dialing phase
// establishedPortForward increments the concurrent UDP port
// forward counter and closes the LRU existing UDP port forward
// when already at the limit.
mux.sshClient.establishedPortForward(portForwardTypeUDP, mux.portForwardLRU)
// Can't defer sshClient.closedPortForward() here;
// relayDownstream will call sshClient.closedPortForward()
log.WithContextFields(
LogFields{
"remoteAddr": fmt.Sprintf("%s:%d", dialIP.String(), dialPort),
"connID": message.connID}).Debug("dialing")
udpConn, err := net.DialUDP(
"udp", nil, &net.UDPAddr{IP: dialIP, Port: dialPort})
if err != nil {
mux.sshClient.closedPortForward(portForwardTypeUDP, 0, 0)
// Monitor for low resource error conditions
mux.sshClient.sshServer.monitorPortForwardDialError(err)
// Note: Debug level, as logMessage may contain user traffic destination address information
log.WithContextFields(LogFields{"error": err}).Debug("DialUDP failed")
continue
}
lruEntry := mux.portForwardLRU.Add(udpConn)
// Can't defer lruEntry.Remove() here;
// relayDownstream will call lruEntry.Remove()
// ActivityMonitoredConn monitors the TCP port forward I/O and updates
// its LRU status. ActivityMonitoredConn also times out I/O on the port
// forward if both reads and writes have been idle for the specified
// duration.
// Ensure nil interface if newClientSeedPortForward returns nil
var updater common.ActivityUpdater
seedUpdater := mux.sshClient.newClientSeedPortForward(dialIP)
if seedUpdater != nil {
updater = seedUpdater
}
conn, err := common.NewActivityMonitoredConn(
udpConn,
mux.sshClient.idleUDPPortForwardTimeout(),
true,
updater,
lruEntry)
if err != nil {
lruEntry.Remove()
mux.sshClient.closedPortForward(portForwardTypeUDP, 0, 0)
log.WithContextFields(LogFields{"error": err}).Error("NewActivityMonitoredConn failed")
continue
}
portForward = &udpPortForward{
connID: message.connID,
preambleSize: message.preambleSize,
remoteIP: message.remoteIP,
remotePort: message.remotePort,
conn: conn,
lruEntry: lruEntry,
bytesUp: 0,
bytesDown: 0,
mux: mux,
}
mux.portForwardsMutex.Lock()
mux.portForwards[portForward.connID] = portForward
mux.portForwardsMutex.Unlock()
mux.relayWaitGroup.Add(1)
go portForward.relayDownstream()
}
// Note: assumes UDP writes won't block (https://golang.org/pkg/net/#UDPConn.WriteToUDP)
_, err = portForward.conn.Write(message.packet)
if err != nil {
// Debug since errors such as "write: operation not permitted" occur during normal operation
log.WithContextFields(LogFields{"error": err}).Debug("upstream UDP relay failed")
// The port forward's goroutine will complete cleanup
portForward.conn.Close()
}
portForward.lruEntry.Touch()
atomic.AddInt64(&portForward.bytesUp, int64(len(message.packet)))
}
// Cleanup all UDP port forward workers when exiting
mux.portForwardsMutex.Lock()
for _, portForward := range mux.portForwards {
// The port forward's goroutine will complete cleanup
portForward.conn.Close()
}
mux.portForwardsMutex.Unlock()
mux.relayWaitGroup.Wait()
}
func (mux *udpPortForwardMultiplexer) removePortForward(connID uint16) {
mux.portForwardsMutex.Lock()
delete(mux.portForwards, connID)
mux.portForwardsMutex.Unlock()
}
type udpPortForward struct {
// Note: 64-bit ints used with atomic operations are placed
// at the start of struct to ensure 64-bit alignment.
// (https://golang.org/pkg/sync/atomic/#pkg-note-BUG)
bytesUp int64
bytesDown int64
connID uint16
preambleSize int
remoteIP []byte
remotePort uint16
conn net.Conn
lruEntry *common.LRUConnsEntry
mux *udpPortForwardMultiplexer
}
func (portForward *udpPortForward) relayDownstream() {
defer portForward.mux.relayWaitGroup.Done()
// Downstream UDP packets are read into the reusable memory
// in "buffer" starting at the offset past the udpgw message
// header and address, leaving enough space to write the udpgw
// values into the same buffer and use for writing to the ssh
// channel.
//
// Note: there is one downstream buffer per UDP port forward,
// while for upstream there is one buffer per client.
// TODO: is the buffer size larger than necessary?
buffer := make([]byte, udpgwProtocolMaxMessageSize)
packetBuffer := buffer[portForward.preambleSize:udpgwProtocolMaxMessageSize]
for {
// TODO: if read buffer is too small, excess bytes are discarded?
packetSize, err := portForward.conn.Read(packetBuffer)
if packetSize > udpgwProtocolMaxPayloadSize {
err = fmt.Errorf("unexpected packet size: %d", packetSize)
}
if err != nil {
if err != io.EOF {
// Debug since errors such as "use of closed network connection" occur during normal operation
log.WithContextFields(LogFields{"error": err}).Debug("downstream UDP relay failed")
}
break
}
err = writeUdpgwPreamble(
portForward.preambleSize,
0,
portForward.connID,
portForward.remoteIP,
portForward.remotePort,
uint16(packetSize),
buffer)
if err == nil {
// ssh.Channel.Write cannot be called concurrently.
// See: https://github.com/Psiphon-Inc/crypto/blob/82d98b4c7c05e81f92545f6fddb45d4541e6da00/ssh/channel.go#L272,
// https://codereview.appspot.com/136420043/diff/80002/ssh/channel.go
portForward.mux.sshChannelWriteMutex.Lock()
_, err = portForward.mux.sshChannel.Write(buffer[0 : portForward.preambleSize+packetSize])
portForward.mux.sshChannelWriteMutex.Unlock()
}
if err != nil {
// Close the channel, which will interrupt the main loop.
portForward.mux.sshChannel.Close()
log.WithContextFields(LogFields{"error": err}).Debug("downstream UDP relay failed")
break
}
portForward.lruEntry.Touch()
atomic.AddInt64(&portForward.bytesDown, int64(packetSize))
}
portForward.mux.removePortForward(portForward.connID)
portForward.lruEntry.Remove()
portForward.conn.Close()
bytesUp := atomic.LoadInt64(&portForward.bytesUp)
bytesDown := atomic.LoadInt64(&portForward.bytesDown)
portForward.mux.sshClient.closedPortForward(portForwardTypeUDP, bytesUp, bytesDown)
log.WithContextFields(
LogFields{
"remoteAddr": fmt.Sprintf("%s:%d",
net.IP(portForward.remoteIP).String(), portForward.remotePort),
"bytesUp": bytesUp,
"bytesDown": bytesDown,
"connID": portForward.connID}).Debug("exiting")
}
// TODO: express and/or calculate udpgwProtocolMaxPayloadSize as function of MTU?
const (
udpgwProtocolFlagKeepalive = 1 << 0
udpgwProtocolFlagRebind = 1 << 1
udpgwProtocolFlagDNS = 1 << 2
udpgwProtocolFlagIPv6 = 1 << 3
udpgwProtocolMaxPreambleSize = 23
udpgwProtocolMaxPayloadSize = 32768
udpgwProtocolMaxMessageSize = udpgwProtocolMaxPreambleSize + udpgwProtocolMaxPayloadSize
)
type udpgwProtocolMessage struct {
connID uint16
preambleSize int
remoteIP []byte
remotePort uint16
discardExistingConn bool
forwardDNS bool
packet []byte
}
func readUdpgwMessage(
reader io.Reader, buffer []byte) (*udpgwProtocolMessage, error) {
// udpgw message layout:
//
// | 2 byte size | 3 byte header | 6 or 18 byte address | variable length packet |
for {
// Read message
_, err := io.ReadFull(reader, buffer[0:2])
if err != nil {
if err != io.EOF {
err = common.ContextError(err)
}
return nil, err
}
size := binary.LittleEndian.Uint16(buffer[0:2])
if size < 3 || int(size) > len(buffer)-2 {
return nil, common.ContextError(errors.New("invalid udpgw message size"))
}
_, err = io.ReadFull(reader, buffer[2:2+size])
if err != nil {
if err != io.EOF {
err = common.ContextError(err)
}
return nil, err
}
flags := buffer[2]
connID := binary.LittleEndian.Uint16(buffer[3:5])
// Ignore udpgw keep-alive messages -- read another message
if flags&udpgwProtocolFlagKeepalive == udpgwProtocolFlagKeepalive {
continue
}
// Read address
var remoteIP []byte
var remotePort uint16
var packetStart, packetEnd int
if flags&udpgwProtocolFlagIPv6 == udpgwProtocolFlagIPv6 {
if size < 21 {
return nil, common.ContextError(errors.New("invalid udpgw message size"))
}
remoteIP = make([]byte, 16)
copy(remoteIP, buffer[5:21])
remotePort = binary.BigEndian.Uint16(buffer[21:23])
packetStart = 23
packetEnd = 23 + int(size) - 21
} else {
if size < 9 {
return nil, common.ContextError(errors.New("invalid udpgw message size"))
}
remoteIP = make([]byte, 4)
copy(remoteIP, buffer[5:9])
remotePort = binary.BigEndian.Uint16(buffer[9:11])
packetStart = 11
packetEnd = 11 + int(size) - 9
}
// Assemble message
// Note: udpgwProtocolMessage.packet references memory in the input buffer
message := &udpgwProtocolMessage{
connID: connID,
preambleSize: packetStart,
remoteIP: remoteIP,
remotePort: remotePort,
discardExistingConn: flags&udpgwProtocolFlagRebind == udpgwProtocolFlagRebind,
forwardDNS: flags&udpgwProtocolFlagDNS == udpgwProtocolFlagDNS,
packet: buffer[packetStart:packetEnd],
}
return message, nil
}
}
func writeUdpgwPreamble(
preambleSize int,
flags uint8,
connID uint16,
remoteIP []byte,
remotePort uint16,
packetSize uint16,
buffer []byte) error {
if preambleSize != 7+len(remoteIP) {
return common.ContextError(errors.New("invalid udpgw preamble size"))
}
size := uint16(preambleSize-2) + packetSize
// size
binary.LittleEndian.PutUint16(buffer[0:2], size)
// flags
buffer[2] = flags
// connID
binary.LittleEndian.PutUint16(buffer[3:5], connID)
// addr
copy(buffer[5:5+len(remoteIP)], remoteIP)
binary.BigEndian.PutUint16(buffer[5+len(remoteIP):7+len(remoteIP)], remotePort)
return nil
}
Go
1
https://gitee.com/lqinggang/psiphon-tunnel-core.git
git@gitee.com:lqinggang/psiphon-tunnel-core.git
lqinggang
psiphon-tunnel-core
psiphon-tunnel-core
v2.0.2

搜索帮助