1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-14 15:03:39 -04:00
v2fly/transport/internet/internal/connection.go

182 lines
3.7 KiB
Go
Raw Normal View History

2017-01-04 07:29:41 -05:00
package internal
2016-04-27 17:01:31 -04:00
import (
2016-06-14 16:54:08 -04:00
"io"
2016-04-27 17:01:31 -04:00
"net"
2017-01-02 01:43:02 -05:00
"sync"
2016-04-27 17:01:31 -04:00
"time"
2017-01-04 07:29:41 -05:00
v2net "v2ray.com/core/common/net"
2016-06-11 19:30:56 -04:00
)
2017-01-04 07:29:41 -05:00
// ConnectionID is the ID of a connection.
type ConnectionID struct {
Local v2net.Address
Remote v2net.Address
RemotePort v2net.Port
}
// NewConnectionID creates a new ConnectionId.
func NewConnectionID(source v2net.Address, dest v2net.Destination) ConnectionID {
return ConnectionID{
Local: source,
Remote: dest.Address,
RemotePort: dest.Port,
}
}
2017-01-05 06:14:48 -05:00
// Reuser determines whether a connection can be reused or not.
2017-01-04 07:29:41 -05:00
type Reuser struct {
2017-01-05 06:14:48 -05:00
// userEnabled indicates connection-reuse enabled by user.
2017-01-04 07:29:41 -05:00
userEnabled bool
2017-01-05 06:14:48 -05:00
// appEnabled indicates connection-reuse enabled by app.
appEnabled bool
2017-01-04 07:29:41 -05:00
}
2017-01-05 06:14:48 -05:00
// ReuseConnection returns a tracker for tracking connection reusability.
2017-01-04 07:29:41 -05:00
func ReuseConnection(reuse bool) *Reuser {
return &Reuser{
userEnabled: reuse,
2017-01-05 06:14:48 -05:00
appEnabled: reuse,
2017-01-04 07:29:41 -05:00
}
}
// Connection is an implementation of net.Conn with re-usability.
2016-05-02 17:53:16 -04:00
type Connection struct {
2017-01-02 01:43:02 -05:00
sync.RWMutex
2017-01-04 07:29:41 -05:00
id ConnectionID
2016-05-02 17:53:16 -04:00
conn net.Conn
2017-01-04 07:29:41 -05:00
listener ConnectionRecyler
reuser *Reuser
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// NewConnection creates a new connection.
2017-01-04 07:29:41 -05:00
func NewConnection(id ConnectionID, conn net.Conn, manager ConnectionRecyler, reuser *Reuser) *Connection {
2016-06-14 16:54:08 -04:00
return &Connection{
2016-11-24 17:16:05 -05:00
id: id,
2016-06-14 16:54:08 -04:00
conn: conn,
listener: manager,
2017-01-04 07:29:41 -05:00
reuser: reuser,
2016-06-14 16:54:08 -04:00
}
}
2017-01-05 06:14:48 -05:00
// Read implements net.Conn.Read().
2016-11-27 15:39:09 -05:00
func (v *Connection) Read(b []byte) (int, error) {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
2016-06-14 16:54:08 -04:00
return 0, io.EOF
2016-04-27 17:01:31 -04:00
}
2017-01-02 01:43:02 -05:00
return conn.Read(b)
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// Write implement net.Conn.Write().
2016-11-27 15:39:09 -05:00
func (v *Connection) Write(b []byte) (int, error) {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
2016-06-14 16:54:08 -04:00
return 0, io.ErrClosedPipe
2016-04-27 17:01:31 -04:00
}
2017-01-02 01:43:02 -05:00
return conn.Write(b)
2016-04-27 17:01:31 -04:00
}
2017-01-04 07:29:41 -05:00
// Close implements net.Conn.Close(). If the connection is reusable, the underlying connection will be recycled.
2016-11-27 15:39:09 -05:00
func (v *Connection) Close() error {
2017-01-02 01:43:02 -05:00
if v == nil {
return io.ErrClosedPipe
}
v.Lock()
defer v.Unlock()
if v.conn == nil {
2016-06-14 16:54:08 -04:00
return io.ErrClosedPipe
2016-04-27 17:01:31 -04:00
}
2016-11-27 15:39:09 -05:00
if v.Reusable() {
v.listener.Put(v.id, v.conn)
2016-05-29 16:33:04 -04:00
return nil
}
2016-11-27 15:39:09 -05:00
err := v.conn.Close()
v.conn = nil
2016-06-14 16:54:08 -04:00
return err
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// LocalAddr implements net.Conn.LocalAddr().
2016-11-27 15:39:09 -05:00
func (v *Connection) LocalAddr() net.Addr {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
return nil
}
return conn.LocalAddr()
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// RemoteAddr implements net.Conn.RemoteAddr().
2016-11-27 15:39:09 -05:00
func (v *Connection) RemoteAddr() net.Addr {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
return nil
}
return conn.RemoteAddr()
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// SetDeadline implements net.Conn.SetDeadline().
2016-11-27 15:39:09 -05:00
func (v *Connection) SetDeadline(t time.Time) error {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
return nil
}
return conn.SetDeadline(t)
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// SetReadDeadline implements net.Conn.SetReadDeadline().
2016-11-27 15:39:09 -05:00
func (v *Connection) SetReadDeadline(t time.Time) error {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
return nil
}
return conn.SetReadDeadline(t)
2016-04-27 17:01:31 -04:00
}
2017-01-05 06:14:48 -05:00
// SetWriteDeadline implements net.Conn.SetWriteDeadline().
2016-11-27 15:39:09 -05:00
func (v *Connection) SetWriteDeadline(t time.Time) error {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
return nil
}
return conn.SetWriteDeadline(t)
2016-04-27 17:01:31 -04:00
}
2016-05-29 16:33:04 -04:00
2017-01-05 06:14:48 -05:00
// SetReusable implements internet.Reusable.SetReusable().
2016-11-27 15:39:09 -05:00
func (v *Connection) SetReusable(reusable bool) {
2017-01-02 01:43:02 -05:00
if v == nil {
return
}
2017-01-05 06:14:48 -05:00
v.reuser.appEnabled = reusable
2016-05-29 16:33:04 -04:00
}
2017-01-05 06:14:48 -05:00
// Reusable implements internet.Reusable.Reusable().
2016-11-27 15:39:09 -05:00
func (v *Connection) Reusable() bool {
2017-01-02 01:43:02 -05:00
if v == nil {
return false
}
2017-01-05 06:14:48 -05:00
return v.reuser.userEnabled && v.reuser.appEnabled
2016-05-29 16:33:04 -04:00
}
2016-06-11 19:30:56 -04:00
2017-01-05 06:14:48 -05:00
// SysFd implement internet.SysFd.SysFd().
2016-11-27 15:39:09 -05:00
func (v *Connection) SysFd() (int, error) {
2017-01-02 01:43:02 -05:00
conn := v.underlyingConn()
if conn == nil {
return 0, io.ErrClosedPipe
}
2017-01-04 07:29:41 -05:00
return GetSysFd(conn)
2017-01-02 01:43:02 -05:00
}
func (v *Connection) underlyingConn() net.Conn {
if v == nil {
return nil
}
v.RLock()
defer v.RUnlock()
return v.conn
2016-06-11 19:30:56 -04:00
}