feat: app sniff options

This commit is contained in:
Toby 2024-06-29 16:27:57 -07:00
parent 16bfdc7720
commit 3412368d20
4 changed files with 38 additions and 6 deletions

View file

@ -66,6 +66,7 @@ type serverConfig struct {
UDPIdleTimeout time.Duration `mapstructure:"udpIdleTimeout"` UDPIdleTimeout time.Duration `mapstructure:"udpIdleTimeout"`
Auth serverConfigAuth `mapstructure:"auth"` Auth serverConfigAuth `mapstructure:"auth"`
Resolver serverConfigResolver `mapstructure:"resolver"` Resolver serverConfigResolver `mapstructure:"resolver"`
Sniff serverConfigSniff `mapstructure:"sniff"`
ACL serverConfigACL `mapstructure:"acl"` ACL serverConfigACL `mapstructure:"acl"`
Outbounds []serverConfigOutboundEntry `mapstructure:"outbounds"` Outbounds []serverConfigOutboundEntry `mapstructure:"outbounds"`
TrafficStats serverConfigTrafficStats `mapstructure:"trafficStats"` TrafficStats serverConfigTrafficStats `mapstructure:"trafficStats"`
@ -181,6 +182,12 @@ type serverConfigResolver struct {
HTTPS serverConfigResolverHTTPS `mapstructure:"https"` HTTPS serverConfigResolverHTTPS `mapstructure:"https"`
} }
type serverConfigSniff struct {
Enable bool `mapstructure:"enable"`
Timeout time.Duration `mapstructure:"timeout"`
RewriteDomain bool `mapstructure:"rewriteDomain"`
}
type serverConfigACL struct { type serverConfigACL struct {
File string `mapstructure:"file"` File string `mapstructure:"file"`
Inline []string `mapstructure:"inline"` Inline []string `mapstructure:"inline"`
@ -543,6 +550,16 @@ func serverConfigOutboundHTTPToOutbound(c serverConfigOutboundHTTP) (outbounds.P
return outbounds.NewHTTPOutbound(c.URL, c.Insecure) return outbounds.NewHTTPOutbound(c.URL, c.Insecure)
} }
func (c *serverConfig) fillRequestHook(hyConfig *server.Config) error {
if c.Sniff.Enable {
hyConfig.RequestHook = &sniff.Sniffer{
Timeout: c.Sniff.Timeout,
RewriteDomain: c.Sniff.RewriteDomain,
}
}
return nil
}
func (c *serverConfig) fillOutboundConfig(hyConfig *server.Config) error { func (c *serverConfig) fillOutboundConfig(hyConfig *server.Config) error {
// Resolver, ACL, actual outbound are all implemented through the Outbound interface. // Resolver, ACL, actual outbound are all implemented through the Outbound interface.
// Depending on the config, we build a chain like this: // Depending on the config, we build a chain like this:
@ -823,6 +840,7 @@ func (c *serverConfig) Config() (*server.Config, error) {
c.fillConn, c.fillConn,
c.fillTLSConfig, c.fillTLSConfig,
c.fillQUICConfig, c.fillQUICConfig,
c.fillRequestHook,
c.fillOutboundConfig, c.fillOutboundConfig,
c.fillBandwidthConfig, c.fillBandwidthConfig,
c.fillIgnoreClientBandwidth, c.fillIgnoreClientBandwidth,
@ -857,11 +875,6 @@ func runServer(cmd *cobra.Command, args []string) {
logger.Fatal("failed to load server config", zap.Error(err)) logger.Fatal("failed to load server config", zap.Error(err))
} }
hyConfig.RequestHook = &sniff.Sniffer{
Timeout: 4 * time.Second,
RewriteDomain: false,
}
s, err := server.NewServer(hyConfig) s, err := server.NewServer(hyConfig)
if err != nil { if err != nil {
logger.Fatal("failed to initialize server", zap.Error(err)) logger.Fatal("failed to initialize server", zap.Error(err))

View file

@ -111,6 +111,11 @@ func TestServerConfig(t *testing.T) {
Insecure: true, Insecure: true,
}, },
}, },
Sniff: serverConfigSniff{
Enable: true,
Timeout: 1 * time.Second,
RewriteDomain: true,
},
ACL: serverConfigACL{ ACL: serverConfigACL{
File: "chnroute.txt", File: "chnroute.txt",
Inline: []string{ Inline: []string{

View file

@ -83,6 +83,11 @@ resolver:
sni: real.stuff.net sni: real.stuff.net
insecure: true insecure: true
sniff:
enable: true
timeout: 1s
rewriteDomain: true
acl: acl:
file: chnroute.txt file: chnroute.txt
inline: inline:

View file

@ -15,6 +15,10 @@ import (
quicInternal "github.com/apernet/hysteria/extras/v2/sniff/internal/quic" quicInternal "github.com/apernet/hysteria/extras/v2/sniff/internal/quic"
) )
const (
sniffDefaultTimeout = 4 * time.Second
)
var _ server.RequestHook = (*Sniffer)(nil) var _ server.RequestHook = (*Sniffer)(nil)
// Sniffer is a server core RequestHook that performs packet inspection and possibly // Sniffer is a server core RequestHook that performs packet inspection and possibly
@ -62,7 +66,12 @@ func (h *Sniffer) Check(isUDP bool, reqAddr string) bool {
} }
func (h *Sniffer) TCP(stream quic.Stream, reqAddr *string) ([]byte, error) { func (h *Sniffer) TCP(stream quic.Stream, reqAddr *string) ([]byte, error) {
err := stream.SetReadDeadline(time.Now().Add(h.Timeout)) var err error
if h.Timeout == 0 {
err = stream.SetReadDeadline(time.Now().Add(sniffDefaultTimeout))
} else {
err = stream.SetReadDeadline(time.Now().Add(h.Timeout))
}
if err != nil { if err != nil {
return nil, err return nil, err
} }