2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2018-02-05 17:38:24 -05:00
|
|
|
package commander
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-02-08 09:39:46 -05:00
|
|
|
"sync"
|
2018-02-05 17:38:24 -05:00
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/signal/done"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport"
|
2018-02-05 17:38:24 -05:00
|
|
|
)
|
|
|
|
|
2018-04-14 07:09:58 -04:00
|
|
|
// OutboundListener is a net.Listener for listening gRPC connections.
|
2018-02-05 17:38:24 -05:00
|
|
|
type OutboundListener struct {
|
|
|
|
buffer chan net.Conn
|
2018-05-27 08:42:53 -04:00
|
|
|
done *done.Instance
|
2018-02-05 17:38:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (l *OutboundListener) add(conn net.Conn) {
|
|
|
|
select {
|
|
|
|
case l.buffer <- conn:
|
2018-04-15 14:40:47 -04:00
|
|
|
case <-l.done.Wait():
|
2020-10-11 07:22:46 -04:00
|
|
|
conn.Close()
|
2018-02-05 17:38:24 -05:00
|
|
|
default:
|
2020-10-11 07:22:46 -04:00
|
|
|
conn.Close()
|
2018-02-05 17:38:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-04 15:32:40 -04:00
|
|
|
// Accept implements net.Listener.
|
2018-02-05 17:38:24 -05:00
|
|
|
func (l *OutboundListener) Accept() (net.Conn, error) {
|
2018-02-08 17:37:47 -05:00
|
|
|
select {
|
2018-04-15 14:40:47 -04:00
|
|
|
case <-l.done.Wait():
|
2018-03-14 22:32:10 -04:00
|
|
|
return nil, newError("listen closed")
|
2018-02-08 17:37:47 -05:00
|
|
|
case c := <-l.buffer:
|
|
|
|
return c, nil
|
2018-02-05 17:38:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-04 15:32:40 -04:00
|
|
|
// Close implement net.Listener.
|
2018-02-05 17:38:24 -05:00
|
|
|
func (l *OutboundListener) Close() error {
|
2018-04-04 15:32:40 -04:00
|
|
|
common.Must(l.done.Close())
|
2018-02-08 17:37:47 -05:00
|
|
|
L:
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case c := <-l.buffer:
|
2020-10-11 07:22:46 -04:00
|
|
|
c.Close()
|
2018-02-08 17:37:47 -05:00
|
|
|
default:
|
|
|
|
break L
|
|
|
|
}
|
|
|
|
}
|
2018-02-05 17:38:24 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-04 15:32:40 -04:00
|
|
|
// Addr implements net.Listener.
|
2018-02-05 17:38:24 -05:00
|
|
|
func (l *OutboundListener) Addr() net.Addr {
|
|
|
|
return &net.TCPAddr{
|
|
|
|
IP: net.IP{0, 0, 0, 0},
|
|
|
|
Port: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:43:37 -04:00
|
|
|
// Outbound is a outbound.Handler that handles gRPC connections.
|
2018-04-04 15:32:40 -04:00
|
|
|
type Outbound struct {
|
2018-02-05 17:38:24 -05:00
|
|
|
tag string
|
|
|
|
listener *OutboundListener
|
2018-02-08 09:39:46 -05:00
|
|
|
access sync.RWMutex
|
|
|
|
closed bool
|
2018-02-05 17:38:24 -05:00
|
|
|
}
|
|
|
|
|
2018-10-11 14:43:37 -04:00
|
|
|
// Dispatch implements outbound.Handler.
|
2018-11-03 07:36:29 -04:00
|
|
|
func (co *Outbound) Dispatch(ctx context.Context, link *transport.Link) {
|
2018-02-08 09:39:46 -05:00
|
|
|
co.access.RLock()
|
|
|
|
|
|
|
|
if co.closed {
|
2018-12-31 15:25:10 -05:00
|
|
|
common.Interrupt(link.Reader)
|
|
|
|
common.Interrupt(link.Writer)
|
2018-02-08 09:39:46 -05:00
|
|
|
co.access.RUnlock()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-08 22:29:40 -04:00
|
|
|
closeSignal := done.New()
|
|
|
|
c := net.NewConnection(net.ConnectionInputMulti(link.Writer), net.ConnectionOutputMulti(link.Reader), net.ConnectionOnClose(closeSignal))
|
2018-02-05 17:38:24 -05:00
|
|
|
co.listener.add(c)
|
2018-02-08 09:39:46 -05:00
|
|
|
co.access.RUnlock()
|
2018-02-05 17:38:24 -05:00
|
|
|
<-closeSignal.Wait()
|
|
|
|
}
|
|
|
|
|
2018-10-11 14:43:37 -04:00
|
|
|
// Tag implements outbound.Handler.
|
2018-04-04 15:32:40 -04:00
|
|
|
func (co *Outbound) Tag() string {
|
2018-02-05 17:38:24 -05:00
|
|
|
return co.tag
|
|
|
|
}
|
|
|
|
|
2018-04-03 18:57:44 -04:00
|
|
|
// Start implements common.Runnable.
|
2018-04-04 15:32:40 -04:00
|
|
|
func (co *Outbound) Start() error {
|
2018-02-08 09:39:46 -05:00
|
|
|
co.access.Lock()
|
|
|
|
co.closed = false
|
|
|
|
co.access.Unlock()
|
2018-02-05 17:38:24 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-03 18:57:44 -04:00
|
|
|
// Close implements common.Closable.
|
2018-04-04 15:32:40 -04:00
|
|
|
func (co *Outbound) Close() error {
|
2018-02-08 09:39:46 -05:00
|
|
|
co.access.Lock()
|
2018-04-04 15:32:40 -04:00
|
|
|
defer co.access.Unlock()
|
2018-02-08 09:39:46 -05:00
|
|
|
|
2018-04-04 15:32:40 -04:00
|
|
|
co.closed = true
|
|
|
|
return co.listener.Close()
|
2018-02-08 09:39:46 -05:00
|
|
|
}
|