2015-10-30 10:56:46 -04:00
|
|
|
package dokodemo
|
|
|
|
|
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
2017-01-31 06:42:05 -05:00
|
|
|
"runtime"
|
|
|
|
"time"
|
2015-10-30 10:56:46 -04:00
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/app"
|
|
|
|
"v2ray.com/core/app/dispatcher"
|
2017-02-03 16:35:09 -05:00
|
|
|
"v2ray.com/core/app/log"
|
2016-12-27 18:53:29 -05:00
|
|
|
"v2ray.com/core/common"
|
2016-12-09 05:35:27 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2016-12-04 03:10:47 -05:00
|
|
|
"v2ray.com/core/common/errors"
|
2017-01-13 17:42:39 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2016-12-29 16:17:12 -05:00
|
|
|
"v2ray.com/core/common/signal"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/proxy"
|
|
|
|
"v2ray.com/core/transport/internet"
|
2015-10-30 10:56:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type DokodemoDoor struct {
|
2017-02-03 16:35:09 -05:00
|
|
|
config *Config
|
|
|
|
address net.Address
|
|
|
|
port net.Port
|
2015-10-30 10:56:46 -04:00
|
|
|
}
|
|
|
|
|
2017-01-13 17:38:04 -05:00
|
|
|
func New(ctx context.Context, config *Config) (*DokodemoDoor, error) {
|
2017-01-12 18:56:21 -05:00
|
|
|
space := app.SpaceFromContext(ctx)
|
|
|
|
if space == nil {
|
|
|
|
return nil, errors.New("Dokodemo: No space in context.")
|
|
|
|
}
|
2017-01-14 18:57:06 -05:00
|
|
|
if config.NetworkList == nil || config.NetworkList.Size() == 0 {
|
|
|
|
return nil, errors.New("DokodemoDoor: No network specified.")
|
|
|
|
}
|
2016-05-22 13:32:37 -04:00
|
|
|
d := &DokodemoDoor{
|
2016-06-04 08:25:13 -04:00
|
|
|
config: config,
|
2016-09-22 10:49:20 -04:00
|
|
|
address: config.GetPredefinedAddress(),
|
2017-01-13 17:42:39 -05:00
|
|
|
port: net.Port(config.Port),
|
2015-10-30 10:56:46 -04:00
|
|
|
}
|
2017-01-12 18:56:21 -05:00
|
|
|
return d, nil
|
2015-10-30 10:56:46 -04:00
|
|
|
}
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
func (d *DokodemoDoor) Network() net.NetworkList {
|
|
|
|
return *(d.config.NetworkList)
|
2015-11-10 18:08:43 -05:00
|
|
|
}
|
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
func (d *DokodemoDoor) Process(ctx context.Context, network net.Network, conn internet.Connection, dispatcher dispatcher.Interface) error {
|
2017-04-06 15:13:17 -04:00
|
|
|
log.Trace(errors.New("Dokodemo: processing connection from: ", conn.RemoteAddr()).AtDebug())
|
2017-01-31 06:42:05 -05:00
|
|
|
dest := net.Destination{
|
2017-01-26 14:46:44 -05:00
|
|
|
Network: network,
|
|
|
|
Address: d.address,
|
|
|
|
Port: d.port,
|
2017-01-31 06:42:05 -05:00
|
|
|
}
|
|
|
|
if d.config.FollowRedirect {
|
2017-02-09 16:49:38 -05:00
|
|
|
if origDest, ok := proxy.OriginalTargetFromContext(ctx); ok {
|
2017-01-31 06:42:05 -05:00
|
|
|
dest = origDest
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !dest.IsValid() || dest.Address == nil {
|
2017-04-06 15:13:17 -04:00
|
|
|
return errors.New("unable to get destination").Path("Proxy", "Dokodemo")
|
2017-01-31 06:42:05 -05:00
|
|
|
}
|
2017-03-31 15:10:33 -04:00
|
|
|
|
2017-01-31 10:49:59 -05:00
|
|
|
timeout := time.Second * time.Duration(d.config.Timeout)
|
|
|
|
if timeout == 0 {
|
|
|
|
timeout = time.Minute * 2
|
|
|
|
}
|
2017-03-31 15:45:43 -04:00
|
|
|
ctx, timer := signal.CancelAfterInactivity(ctx, timeout)
|
2017-01-31 06:42:05 -05:00
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
inboundRay, err := dispatcher.Dispatch(ctx, dest)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2016-05-04 18:24:18 -04:00
|
|
|
|
2016-12-29 16:17:12 -05:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
2017-01-26 14:46:44 -05:00
|
|
|
defer inboundRay.InboundInput().Close()
|
2016-12-29 16:17:12 -05:00
|
|
|
|
2017-01-31 10:49:59 -05:00
|
|
|
chunkReader := buf.NewReader(conn)
|
2016-04-18 13:01:24 -04:00
|
|
|
|
2017-01-31 06:42:05 -05:00
|
|
|
if err := buf.PipeUntilEOF(timer, chunkReader, inboundRay.InboundInput()); err != nil {
|
2017-04-06 15:13:17 -04:00
|
|
|
return errors.New("failed to transport request").Base(err).Path("Proxy", "Dokodemo")
|
2016-11-21 18:17:49 -05:00
|
|
|
}
|
2015-10-30 10:56:46 -04:00
|
|
|
|
2016-12-29 16:17:12 -05:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
2016-12-09 07:17:34 -05:00
|
|
|
v2writer := buf.NewWriter(conn)
|
2016-04-18 13:01:24 -04:00
|
|
|
|
2017-01-31 06:42:05 -05:00
|
|
|
if err := buf.PipeUntilEOF(timer, inboundRay.InboundOutput(), v2writer); err != nil {
|
2017-04-06 15:13:17 -04:00
|
|
|
return errors.New("failed to transport response").Base(err).Path("Proxy", "Dokodemo")
|
2016-11-21 18:17:49 -05:00
|
|
|
}
|
2016-12-29 16:17:12 -05:00
|
|
|
return nil
|
|
|
|
})
|
2015-10-30 10:56:46 -04:00
|
|
|
|
2017-01-28 15:24:46 -05:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-01-26 14:46:44 -05:00
|
|
|
inboundRay.InboundInput().CloseError()
|
|
|
|
inboundRay.InboundOutput().CloseError()
|
2017-04-06 15:13:17 -04:00
|
|
|
return errors.New("connection ends").Base(err).Path("Proxy", "Dokodemo")
|
2016-12-29 18:51:39 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-01-31 06:42:05 -05:00
|
|
|
runtime.KeepAlive(timer)
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
return nil
|
2015-10-30 10:56:46 -04:00
|
|
|
}
|
2016-05-22 13:32:37 -04:00
|
|
|
|
|
|
|
func init() {
|
2017-01-12 18:56:21 -05:00
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
2017-01-13 17:38:04 -05:00
|
|
|
return New(ctx, config.(*Config))
|
2017-01-12 18:56:21 -05:00
|
|
|
}))
|
2016-05-22 13:32:37 -04:00
|
|
|
}
|