2015-10-30 14:56:46 +00:00
|
|
|
package dokodemo
|
|
|
|
|
|
|
|
import (
|
2017-01-12 23:56:21 +00:00
|
|
|
"context"
|
2015-10-30 14:56:46 +00:00
|
|
|
|
2016-08-20 18:55:45 +00:00
|
|
|
"v2ray.com/core/app"
|
|
|
|
"v2ray.com/core/app/dispatcher"
|
2016-12-27 23:53:29 +00:00
|
|
|
"v2ray.com/core/common"
|
2016-12-09 10:35:27 +00:00
|
|
|
"v2ray.com/core/common/buf"
|
2016-12-04 08:10:47 +00:00
|
|
|
"v2ray.com/core/common/errors"
|
2016-08-20 18:55:45 +00:00
|
|
|
"v2ray.com/core/common/log"
|
2017-01-13 22:42:39 +00:00
|
|
|
"v2ray.com/core/common/net"
|
2016-12-29 21:17:12 +00:00
|
|
|
"v2ray.com/core/common/signal"
|
2016-08-20 18:55:45 +00:00
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
"v2ray.com/core/transport/internet"
|
2015-10-30 14:56:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type DokodemoDoor struct {
|
2016-01-31 16:01:28 +00:00
|
|
|
config *Config
|
2017-01-13 22:42:39 +00:00
|
|
|
address net.Address
|
|
|
|
port net.Port
|
2017-01-13 12:53:44 +00:00
|
|
|
packetDispatcher dispatcher.Interface
|
2015-10-30 14:56:46 +00:00
|
|
|
}
|
|
|
|
|
2017-01-13 22:38:04 +00:00
|
|
|
func New(ctx context.Context, config *Config) (*DokodemoDoor, error) {
|
2017-01-12 23:56:21 +00:00
|
|
|
space := app.SpaceFromContext(ctx)
|
|
|
|
if space == nil {
|
|
|
|
return nil, errors.New("Dokodemo: No space in context.")
|
|
|
|
}
|
2017-01-14 23:57:06 +00:00
|
|
|
if config.NetworkList == nil || config.NetworkList.Size() == 0 {
|
|
|
|
return nil, errors.New("DokodemoDoor: No network specified.")
|
|
|
|
}
|
2016-05-22 17:32:37 +00:00
|
|
|
d := &DokodemoDoor{
|
2016-06-04 12:25:13 +00:00
|
|
|
config: config,
|
2016-09-22 14:49:20 +00:00
|
|
|
address: config.GetPredefinedAddress(),
|
2017-01-13 22:42:39 +00:00
|
|
|
port: net.Port(config.Port),
|
2015-10-30 14:56:46 +00:00
|
|
|
}
|
2017-01-06 14:32:36 +00:00
|
|
|
space.OnInitialize(func() error {
|
|
|
|
d.packetDispatcher = dispatcher.FromSpace(space)
|
|
|
|
if d.packetDispatcher == nil {
|
2016-11-21 20:13:01 +00:00
|
|
|
return errors.New("Dokodemo: Dispatcher is not found in the space.")
|
2016-05-22 17:32:37 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
2017-01-12 23:56:21 +00:00
|
|
|
return d, nil
|
2015-10-30 14:56:46 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
func (d *DokodemoDoor) Network() net.NetworkList {
|
|
|
|
return *(d.config.NetworkList)
|
2015-11-10 23:08:43 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
func (d *DokodemoDoor) Process(ctx context.Context, network net.Network, conn internet.Connection) error {
|
|
|
|
log.Debug("Dokodemo: processing connection from: ", conn.RemoteAddr())
|
2017-01-03 13:53:59 +00:00
|
|
|
conn.SetReusable(false)
|
2017-01-26 19:46:44 +00:00
|
|
|
ctx = proxy.ContextWithDestination(ctx, net.Destination{
|
|
|
|
Network: network,
|
|
|
|
Address: d.address,
|
|
|
|
Port: d.port,
|
2016-08-14 15:08:01 +00:00
|
|
|
})
|
2017-01-26 19:46:44 +00:00
|
|
|
inboundRay := d.packetDispatcher.DispatchToOutbound(ctx)
|
2016-05-04 22:24:18 +00:00
|
|
|
|
2016-12-29 21:17:12 +00:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
2017-01-26 19:46:44 +00:00
|
|
|
defer inboundRay.InboundInput().Close()
|
2016-12-29 21:17:12 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
timedReader := net.NewTimeOutReader(d.config.Timeout, conn)
|
|
|
|
chunkReader := buf.NewReader(timedReader)
|
2016-04-18 17:01:24 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
if err := buf.PipeUntilEOF(chunkReader, inboundRay.InboundInput()); err != nil {
|
|
|
|
log.Info("Dokodemo: Failed to transport request: ", err)
|
2016-12-29 21:17:12 +00:00
|
|
|
return err
|
2016-11-21 23:17:49 +00:00
|
|
|
}
|
2015-10-30 14:56:46 +00:00
|
|
|
|
2016-12-29 21:17:12 +00:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
2016-12-09 12:17:34 +00:00
|
|
|
v2writer := buf.NewWriter(conn)
|
2016-04-18 17:01:24 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
if err := buf.PipeUntilEOF(inboundRay.InboundOutput(), v2writer); err != nil {
|
|
|
|
log.Info("Dokodemo: Failed to transport response: ", err)
|
2016-12-29 21:17:12 +00:00
|
|
|
return err
|
2016-11-21 23:17:49 +00:00
|
|
|
}
|
2016-12-29 21:17:12 +00:00
|
|
|
return nil
|
|
|
|
})
|
2015-10-30 14:56:46 +00:00
|
|
|
|
2016-12-29 23:51:39 +00:00
|
|
|
if err := signal.ErrorOrFinish2(requestDone, responseDone); err != nil {
|
2017-01-26 19:46:44 +00:00
|
|
|
inboundRay.InboundInput().CloseError()
|
|
|
|
inboundRay.InboundOutput().CloseError()
|
2016-12-29 23:51:39 +00:00
|
|
|
log.Info("Dokodemo: Connection ends with ", err)
|
2017-01-26 19:46:44 +00:00
|
|
|
return err
|
2016-12-29 23:51:39 +00:00
|
|
|
}
|
2017-01-26 19:46:44 +00:00
|
|
|
|
|
|
|
return nil
|
2015-10-30 14:56:46 +00:00
|
|
|
}
|
2016-05-22 17:32:37 +00:00
|
|
|
|
|
|
|
func init() {
|
2017-01-12 23:56:21 +00:00
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
2017-01-13 22:38:04 +00:00
|
|
|
return New(ctx, config.(*Config))
|
2017-01-12 23:56:21 +00:00
|
|
|
}))
|
2016-05-22 17:32:37 +00:00
|
|
|
}
|