2022-07-02 06:07:50 +00:00
|
|
|
package option
|
2022-06-30 13:27:56 +00:00
|
|
|
|
|
|
|
import (
|
2022-07-24 09:58:52 +00:00
|
|
|
"github.com/sagernet/sing-box/common/json"
|
2022-07-08 15:03:57 +00:00
|
|
|
C "github.com/sagernet/sing-box/constant"
|
2022-06-30 13:27:56 +00:00
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
)
|
|
|
|
|
|
|
|
type _Inbound struct {
|
2022-07-02 17:57:04 +00:00
|
|
|
Type string `json:"type"`
|
2022-07-03 15:23:18 +00:00
|
|
|
Tag string `json:"tag,omitempty"`
|
2022-07-18 04:32:31 +00:00
|
|
|
TunOptions TunInboundOptions `json:"-"`
|
|
|
|
RedirectOptions RedirectInboundOptions `json:"-"`
|
|
|
|
TProxyOptions TProxyInboundOptions `json:"-"`
|
2022-07-02 17:57:04 +00:00
|
|
|
DirectOptions DirectInboundOptions `json:"-"`
|
2022-07-14 06:04:57 +00:00
|
|
|
SocksOptions SocksInboundOptions `json:"-"`
|
|
|
|
HTTPOptions HTTPMixedInboundOptions `json:"-"`
|
|
|
|
MixedOptions HTTPMixedInboundOptions `json:"-"`
|
2022-07-02 17:57:04 +00:00
|
|
|
ShadowsocksOptions ShadowsocksInboundOptions `json:"-"`
|
2022-07-18 04:32:31 +00:00
|
|
|
VMessOptions VMessInboundOptions `json:"-"`
|
2022-08-08 00:56:04 +00:00
|
|
|
TrojanOptions TrojanInboundOptions `json:"-"`
|
2022-08-10 12:19:16 +00:00
|
|
|
NaiveOptions NaiveInboundOptions `json:"-"`
|
2022-08-19 07:42:57 +00:00
|
|
|
HysteriaOptions HysteriaInboundOptions `json:"-"`
|
2022-08-31 06:21:53 +00:00
|
|
|
ShadowTLSOptions ShadowTLSInboundOptions `json:"-"`
|
2023-02-25 08:24:08 +00:00
|
|
|
VLESSOptions VLESSInboundOptions `json:"-"`
|
2023-07-23 06:42:19 +00:00
|
|
|
TUICOptions TUICInboundOptions `json:"-"`
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Inbound _Inbound
|
|
|
|
|
2022-07-02 19:42:57 +00:00
|
|
|
func (h Inbound) MarshalJSON() ([]byte, error) {
|
2022-07-02 17:57:04 +00:00
|
|
|
var v any
|
2022-07-02 19:42:57 +00:00
|
|
|
switch h.Type {
|
2022-07-18 04:32:31 +00:00
|
|
|
case C.TypeTun:
|
|
|
|
v = h.TunOptions
|
|
|
|
case C.TypeRedirect:
|
|
|
|
v = h.RedirectOptions
|
|
|
|
case C.TypeTProxy:
|
|
|
|
v = h.TProxyOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeDirect:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = h.DirectOptions
|
2023-08-04 09:13:46 +00:00
|
|
|
case C.TypeSOCKS:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = h.SocksOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeHTTP:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = h.HTTPOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeMixed:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = h.MixedOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeShadowsocks:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = h.ShadowsocksOptions
|
2022-07-18 04:32:31 +00:00
|
|
|
case C.TypeVMess:
|
|
|
|
v = h.VMessOptions
|
2022-08-08 00:56:04 +00:00
|
|
|
case C.TypeTrojan:
|
|
|
|
v = h.TrojanOptions
|
2022-08-10 12:19:16 +00:00
|
|
|
case C.TypeNaive:
|
|
|
|
v = h.NaiveOptions
|
2022-08-19 07:42:57 +00:00
|
|
|
case C.TypeHysteria:
|
|
|
|
v = h.HysteriaOptions
|
2022-08-31 06:21:53 +00:00
|
|
|
case C.TypeShadowTLS:
|
|
|
|
v = h.ShadowTLSOptions
|
2023-02-25 08:24:08 +00:00
|
|
|
case C.TypeVLESS:
|
|
|
|
v = h.VLESSOptions
|
2023-07-23 06:42:19 +00:00
|
|
|
case C.TypeTUIC:
|
|
|
|
v = h.TUICOptions
|
2022-06-30 13:27:56 +00:00
|
|
|
default:
|
2022-07-02 19:42:57 +00:00
|
|
|
return nil, E.New("unknown inbound type: ", h.Type)
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
2022-07-02 19:42:57 +00:00
|
|
|
return MarshallObjects((_Inbound)(h), v)
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 19:42:57 +00:00
|
|
|
func (h *Inbound) UnmarshalJSON(bytes []byte) error {
|
|
|
|
err := json.Unmarshal(bytes, (*_Inbound)(h))
|
2022-06-30 13:27:56 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-07-02 17:57:04 +00:00
|
|
|
var v any
|
2022-07-02 19:42:57 +00:00
|
|
|
switch h.Type {
|
2022-07-18 04:32:31 +00:00
|
|
|
case C.TypeTun:
|
|
|
|
v = &h.TunOptions
|
|
|
|
case C.TypeRedirect:
|
|
|
|
v = &h.RedirectOptions
|
|
|
|
case C.TypeTProxy:
|
|
|
|
v = &h.TProxyOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeDirect:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = &h.DirectOptions
|
2023-08-04 09:13:46 +00:00
|
|
|
case C.TypeSOCKS:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = &h.SocksOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeHTTP:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = &h.HTTPOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeMixed:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = &h.MixedOptions
|
2022-07-03 15:23:18 +00:00
|
|
|
case C.TypeShadowsocks:
|
2022-07-02 19:42:57 +00:00
|
|
|
v = &h.ShadowsocksOptions
|
2022-07-18 04:32:31 +00:00
|
|
|
case C.TypeVMess:
|
|
|
|
v = &h.VMessOptions
|
2022-08-08 00:56:04 +00:00
|
|
|
case C.TypeTrojan:
|
|
|
|
v = &h.TrojanOptions
|
2022-08-10 12:19:16 +00:00
|
|
|
case C.TypeNaive:
|
|
|
|
v = &h.NaiveOptions
|
2022-08-19 07:42:57 +00:00
|
|
|
case C.TypeHysteria:
|
|
|
|
v = &h.HysteriaOptions
|
2022-08-31 06:21:53 +00:00
|
|
|
case C.TypeShadowTLS:
|
|
|
|
v = &h.ShadowTLSOptions
|
2023-02-25 08:24:08 +00:00
|
|
|
case C.TypeVLESS:
|
|
|
|
v = &h.VLESSOptions
|
2023-07-23 06:42:19 +00:00
|
|
|
case C.TypeTUIC:
|
|
|
|
v = &h.TUICOptions
|
2022-06-30 13:27:56 +00:00
|
|
|
default:
|
2022-07-18 04:32:31 +00:00
|
|
|
return E.New("unknown inbound type: ", h.Type)
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
2022-07-03 03:28:15 +00:00
|
|
|
err = UnmarshallExcluded(bytes, (*_Inbound)(h), v)
|
|
|
|
if err != nil {
|
|
|
|
return E.Cause(err, "inbound options")
|
|
|
|
}
|
|
|
|
return nil
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-10 00:18:52 +00:00
|
|
|
type InboundOptions struct {
|
2022-07-07 15:36:32 +00:00
|
|
|
SniffEnabled bool `json:"sniff,omitempty"`
|
|
|
|
SniffOverrideDestination bool `json:"sniff_override_destination,omitempty"`
|
2022-10-07 12:30:27 +00:00
|
|
|
SniffTimeout Duration `json:"sniff_timeout,omitempty"`
|
2022-07-07 15:36:32 +00:00
|
|
|
DomainStrategy DomainStrategy `json:"domain_strategy,omitempty"`
|
2022-06-30 13:27:56 +00:00
|
|
|
}
|
|
|
|
|
2022-07-10 00:18:52 +00:00
|
|
|
type ListenOptions struct {
|
2023-03-19 12:46:22 +00:00
|
|
|
Listen *ListenAddress `json:"listen,omitempty"`
|
|
|
|
ListenPort uint16 `json:"listen_port,omitempty"`
|
|
|
|
TCPFastOpen bool `json:"tcp_fast_open,omitempty"`
|
2023-08-08 08:14:03 +00:00
|
|
|
TCPMultiPath bool `json:"tcp_multi_path,omitempty"`
|
2023-03-19 12:46:22 +00:00
|
|
|
UDPFragment *bool `json:"udp_fragment,omitempty"`
|
|
|
|
UDPFragmentDefault bool `json:"-"`
|
|
|
|
UDPTimeout int64 `json:"udp_timeout,omitempty"`
|
|
|
|
ProxyProtocol bool `json:"proxy_protocol,omitempty"`
|
|
|
|
ProxyProtocolAcceptNoHeader bool `json:"proxy_protocol_accept_no_header,omitempty"`
|
|
|
|
Detour string `json:"detour,omitempty"`
|
2022-07-10 00:18:52 +00:00
|
|
|
InboundOptions
|
|
|
|
}
|