2015-09-11 08:12:09 -04:00
|
|
|
package freedom
|
2015-09-09 11:39:06 -04:00
|
|
|
|
|
|
|
import (
|
2015-09-09 11:39:25 -04:00
|
|
|
"net"
|
2015-09-23 08:14:53 -04:00
|
|
|
"sync"
|
2015-09-09 18:50:21 -04:00
|
|
|
|
2015-09-19 18:50:21 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
2015-09-19 17:54:36 -04:00
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2015-10-14 08:51:19 -04:00
|
|
|
"github.com/v2ray/v2ray-core/transport/ray"
|
2015-09-09 11:39:06 -04:00
|
|
|
)
|
|
|
|
|
2015-09-12 16:11:54 -04:00
|
|
|
type FreedomConnection struct {
|
2015-09-09 11:39:06 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 18:30:44 -04:00
|
|
|
func NewFreedomConnection() *FreedomConnection {
|
|
|
|
return &FreedomConnection{}
|
2015-09-09 11:39:06 -04:00
|
|
|
}
|
|
|
|
|
2015-11-27 15:50:28 -05:00
|
|
|
func (this *FreedomConnection) Dispatch(firstPacket v2net.Packet, ray ray.OutboundRay) error {
|
2015-10-06 18:30:44 -04:00
|
|
|
conn, err := net.Dial(firstPacket.Destination().Network(), firstPacket.Destination().Address().String())
|
|
|
|
log.Info("Freedom: Opening connection to %s", firstPacket.Destination().String())
|
2015-09-09 11:39:25 -04:00
|
|
|
if err != nil {
|
2015-10-10 14:52:31 -04:00
|
|
|
close(ray.OutboundOutput())
|
2015-10-13 12:27:29 -04:00
|
|
|
log.Error("Freedom: Failed to open connection: %s : %v", firstPacket.Destination().String(), err)
|
|
|
|
return err
|
2015-09-22 08:45:03 -04:00
|
|
|
}
|
|
|
|
|
2015-10-02 09:32:26 -04:00
|
|
|
input := ray.OutboundInput()
|
|
|
|
output := ray.OutboundOutput()
|
|
|
|
var readMutex, writeMutex sync.Mutex
|
|
|
|
readMutex.Lock()
|
|
|
|
writeMutex.Lock()
|
|
|
|
|
2015-10-06 18:30:44 -04:00
|
|
|
if chunk := firstPacket.Chunk(); chunk != nil {
|
2015-10-08 08:46:18 -04:00
|
|
|
conn.Write(chunk.Value)
|
|
|
|
chunk.Release()
|
2015-09-09 11:39:25 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 18:30:44 -04:00
|
|
|
if !firstPacket.MoreChunks() {
|
2015-10-02 09:32:26 -04:00
|
|
|
writeMutex.Unlock()
|
|
|
|
} else {
|
2015-11-27 15:50:28 -05:00
|
|
|
go func() {
|
|
|
|
v2net.ChanToWriter(conn, input)
|
|
|
|
writeMutex.Unlock()
|
|
|
|
}()
|
2015-09-22 08:45:03 -04:00
|
|
|
}
|
|
|
|
|
2015-11-27 15:50:28 -05:00
|
|
|
go func() {
|
|
|
|
defer readMutex.Unlock()
|
|
|
|
defer close(output)
|
|
|
|
|
|
|
|
response, err := v2net.ReadFrom(conn, nil)
|
|
|
|
log.Info("Freedom receives %d bytes from %s", response.Len(), conn.RemoteAddr().String())
|
|
|
|
if response.Len() > 0 {
|
|
|
|
output <- response
|
|
|
|
} else {
|
|
|
|
response.Release()
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if firstPacket.Destination().IsUDP() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
v2net.ReaderToChan(output, conn)
|
|
|
|
}()
|
2015-09-22 12:31:06 -04:00
|
|
|
|
2015-10-09 19:25:12 -04:00
|
|
|
writeMutex.Lock()
|
|
|
|
if tcpConn, ok := conn.(*net.TCPConn); ok {
|
|
|
|
tcpConn.CloseWrite()
|
|
|
|
}
|
|
|
|
readMutex.Lock()
|
|
|
|
conn.Close()
|
2015-09-22 12:43:30 -04:00
|
|
|
|
2015-09-09 18:50:21 -04:00
|
|
|
return nil
|
2015-09-09 11:39:06 -04:00
|
|
|
}
|