2015-10-24 16:30:10 +08:00
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"bytes"
|
|
|
|
|
|
"crypto/md5"
|
|
|
|
|
|
"encoding/hex"
|
|
|
|
|
|
"github.com/TransX/log"
|
|
|
|
|
|
"github.com/TransX/tscipher"
|
|
|
|
|
|
"net"
|
|
|
|
|
|
"strconv"
|
|
|
|
|
|
"sync/atomic"
|
|
|
|
|
|
"time"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
var seed int32
|
|
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
|
seed = 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type Tunnel struct {
|
|
|
|
|
|
id string
|
|
|
|
|
|
src net.Conn
|
|
|
|
|
|
dest net.Conn
|
|
|
|
|
|
cipherDirection string
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func NewTunnel(src, dest net.Conn, cipherDirection string) *Tunnel {
|
|
|
|
|
|
return &Tunnel{
|
|
|
|
|
|
id: tunnelID(),
|
|
|
|
|
|
src: src,
|
|
|
|
|
|
dest: dest,
|
|
|
|
|
|
cipherDirection: cipherDirection,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (this *Tunnel) GetID(id string) string {
|
|
|
|
|
|
return this.id
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (this *Tunnel) SetID(id string) { //rarely used
|
|
|
|
|
|
this.id = id
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//tunnel model : [ -->>server ---- client -->> ](this is a tunnel)
|
|
|
|
|
|
func (this *Tunnel) run() { //单向的,从src发送到dest
|
|
|
|
|
|
src := this.src
|
|
|
|
|
|
dest := this.dest
|
|
|
|
|
|
cipherDirection := this.cipherDirection
|
|
|
|
|
|
id := this.id
|
|
|
|
|
|
defer func() {
|
|
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
|
|
if src != nil {
|
|
|
|
|
|
src.Close()
|
|
|
|
|
|
}
|
|
|
|
|
|
if dest != nil {
|
|
|
|
|
|
dest.Close()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}()
|
2015-10-31 22:51:29 +08:00
|
|
|
|
cache := make([]byte, 1024*32) //128kB
|
2015-10-26 23:07:08 +08:00
|
|
|
|
//构建Carrier
|
2015-10-31 22:51:29 +08:00
|
|
|
|
// revCarrier := &tscipher.Carrier{
|
|
|
|
|
|
// src,
|
|
|
|
|
|
// tscipher.NewCipher("XOR"),
|
|
|
|
|
|
// cache,
|
|
|
|
|
|
// this.id,
|
|
|
|
|
|
// }
|
|
|
|
|
|
revCarrier := tscipher.NewCarrier(src, tscipher.NewCipher("XOR"), cache, this.id)
|
|
|
|
|
|
// sendCarrier := &tscipher.Carrier{
|
|
|
|
|
|
// dest,
|
|
|
|
|
|
// tscipher.NewCipher("XOR"),
|
|
|
|
|
|
// cache, //TODO:危险,cache的容量容易被不小心修改
|
|
|
|
|
|
// this.id,
|
|
|
|
|
|
// }
|
|
|
|
|
|
sendCarrier := tscipher.NewCarrier(dest, tscipher.NewCipher("XOR"), cache, this.id)
|
2015-10-24 16:30:10 +08:00
|
|
|
|
for {
|
2015-10-26 23:07:08 +08:00
|
|
|
|
// log.Info("a loop Tunnel id %s", id)
|
|
|
|
|
|
var nByte int
|
2015-10-24 20:25:30 +08:00
|
|
|
|
// log.Debug("Encrypt Direction %s ID %s", cipherDirection, id)
|
2015-10-26 23:07:08 +08:00
|
|
|
|
var err error
|
2015-10-24 16:30:10 +08:00
|
|
|
|
if cipherDirection != "receive" {
|
|
|
|
|
|
revCarrier.Cipher = nil
|
2015-10-24 20:25:30 +08:00
|
|
|
|
// log.Debug("Read not crypted. Tunnel: %s", id)
|
2015-10-26 23:07:08 +08:00
|
|
|
|
nByte, err = tscipher.RowReceiveData(revCarrier)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
nByte, err = tscipher.ReceiveData(revCarrier)
|
2015-10-24 16:30:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
if err != nil {
|
2015-10-31 22:51:29 +08:00
|
|
|
|
log.Panic("Read panic. Tunnel id: %s. Remote Add: %s Local: %s. Err:%s", id, src.RemoteAddr().String(), src.LocalAddr().String(), err.Error())
|
2015-10-24 16:30:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
log.Info("Reived %d bytes from %s. Tunnel: id %s", nByte, src.RemoteAddr().String(), id)
|
|
|
|
|
|
if cipherDirection != "send" {
|
|
|
|
|
|
sendCarrier.Cipher = nil
|
2015-10-24 20:25:30 +08:00
|
|
|
|
// log.Debug("Write not crypted. Tunnel: %s", id)
|
2015-10-24 16:30:10 +08:00
|
|
|
|
}
|
2015-10-31 22:51:29 +08:00
|
|
|
|
// for {
|
2015-10-24 16:30:10 +08:00
|
|
|
|
n, err := tscipher.SendData(sendCarrier, nByte)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
log.Panic("Write panic. ID: %s, Err: %s, Remote Add: %s", id, err, dest.RemoteAddr().String())
|
|
|
|
|
|
}
|
2015-10-31 22:51:29 +08:00
|
|
|
|
log.Info("Write %d bytes from %s to %s. Tunnel: %s . 18 bytes", n, dest.LocalAddr(), dest.RemoteAddr().String(), id, string(sendCarrier.Cache[:18]))
|
|
|
|
|
|
// if n == 0 {
|
|
|
|
|
|
// log.Info("Retry Write id %s", id)
|
|
|
|
|
|
// continue
|
|
|
|
|
|
// }
|
|
|
|
|
|
// break
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
2015-10-24 16:30:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func tunnelID() string {
|
|
|
|
|
|
nowString := time.Now().String() + strconv.Itoa(int(seed))
|
|
|
|
|
|
atomic.AddInt32(&seed, 1) //避免多线程情况下获得的种子相同
|
|
|
|
|
|
md5Byte := md5.Sum(bytes.NewBufferString(nowString).Bytes())
|
|
|
|
|
|
return hex.EncodeToString(md5Byte[:])
|
|
|
|
|
|
}
|