| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 | package shadowsocksimport (	"v2ray.com/core/app"	"v2ray.com/core/common/buf"	"v2ray.com/core/common/bufio"	"v2ray.com/core/common/log"	v2net "v2ray.com/core/common/net"	"v2ray.com/core/common/protocol"	"v2ray.com/core/common/retry"	"v2ray.com/core/common/signal"	"v2ray.com/core/proxy"	"v2ray.com/core/transport/internet"	"v2ray.com/core/transport/ray")// Client is a inbound handler for Shadowsocks protocoltype Client struct {	serverPicker protocol.ServerPicker	meta         *proxy.OutboundHandlerMeta}// NewClient create a new Shadowsocks client.func NewClient(config *ClientConfig, space app.Space, meta *proxy.OutboundHandlerMeta) (*Client, error) {	serverList := protocol.NewServerList()	for _, rec := range config.Server {		serverList.AddServer(protocol.NewServerSpecFromPB(*rec))	}	client := &Client{		serverPicker: protocol.NewRoundRobinServerPicker(serverList),		meta:         meta,	}	return client, nil}// Dispatch implements OutboundHandler.Dispatch().func (v *Client) Dispatch(destination v2net.Destination, ray ray.OutboundRay) {	network := destination.Network	var server *protocol.ServerSpec	var conn internet.Connection	err := retry.ExponentialBackoff(5, 100).On(func() error {		server = v.serverPicker.PickServer()		dest := server.Destination()		dest.Network = network		rawConn, err := internet.Dial(v.meta.Address, dest, v.meta.GetDialerOptions())		if err != nil {			return err		}		conn = rawConn		return nil	})	if err != nil {		log.Warning("Shadowsocks|Client: Failed to find an available destination:", err)		return	}	log.Info("Shadowsocks|Client: Tunneling request to ", destination, " via ", server.Destination())	conn.SetReusable(false)	request := &protocol.RequestHeader{		Version: Version,		Address: destination.Address,		Port:    destination.Port,	}	if destination.Network == v2net.Network_TCP {		request.Command = protocol.RequestCommandTCP	} else {		request.Command = protocol.RequestCommandUDP	}	user := server.PickUser()	rawAccount, err := user.GetTypedAccount()	if err != nil {		log.Warning("Shadowsocks|Client: Failed to get a valid user account: ", err)		return	}	account := rawAccount.(*ShadowsocksAccount)	request.User = user	if account.OneTimeAuth == Account_Auto || account.OneTimeAuth == Account_Enabled {		request.Option |= RequestOptionOneTimeAuth	}	if request.Command == protocol.RequestCommandTCP {		bufferedWriter := bufio.NewWriter(conn)		bodyWriter, err := WriteTCPRequest(request, bufferedWriter)		if err != nil {			log.Info("Shadowsocks|Client: Failed to write request: ", err)			return		}		bufferedWriter.SetBuffered(false)		requestDone := signal.ExecuteAsync(func() error {			if err := buf.PipeUntilEOF(ray.OutboundInput(), bodyWriter); err != nil {				return err			}			return nil		})		responseDone := signal.ExecuteAsync(func() error {			defer ray.OutboundOutput().Close()			responseReader, err := ReadTCPResponse(user, conn)			if err != nil {				return err			}			if err := buf.PipeUntilEOF(responseReader, ray.OutboundOutput()); err != nil {				return err			}			return nil		})		if err := signal.ErrorOrFinish2(requestDone, responseDone); err != nil {			log.Info("Shadowsocks|Client: Connection ends with ", err)			ray.OutboundInput().CloseError()			ray.OutboundOutput().CloseError()		}	}	if request.Command == protocol.RequestCommandUDP {		writer := &UDPWriter{			Writer:  conn,			Request: request,		}		requestDone := signal.ExecuteAsync(func() error {			if err := buf.PipeUntilEOF(ray.OutboundInput(), writer); err != nil {				log.Info("Shadowsocks|Client: Failed to transport all UDP request: ", err)				return err			}			return nil		})		timedReader := v2net.NewTimeOutReader(16, conn)		responseDone := signal.ExecuteAsync(func() error {			defer ray.OutboundOutput().Close()			reader := &UDPReader{				Reader: timedReader,				User:   user,			}			if err := buf.PipeUntilEOF(reader, ray.OutboundOutput()); err != nil {				log.Info("Shadowsocks|Client: Failed to transport all UDP response: ", err)				return err			}			return nil		})		if err := signal.ErrorOrFinish2(requestDone, responseDone); err != nil {			log.Info("Shadowsocks|Client: Connection ends with ", err)			ray.OutboundInput().CloseError()			ray.OutboundOutput().CloseError()		}	}}// ClientFactory is a OutboundHandlerFactory.type ClientFactory struct{}// StreamCapability implements OutboundHandlerFactory.StreamCapability().func (ClientFactory) StreamCapability() v2net.NetworkList {	return v2net.NetworkList{		Network: []v2net.Network{v2net.Network_TCP},	}}// Create implements OutboundHandlerFactory.Create().func (ClientFactory) Create(space app.Space, rawConfig interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {	return NewClient(rawConfig.(*ClientConfig), space, meta)}
 |