sing-box/option/inbound.go

119 lines
3.2 KiB
Go
Raw Normal View History

2022-07-02 06:07:50 +00:00
package option
2022-06-30 13:27:56 +00:00
import (
"encoding/json"
2022-07-02 17:57:04 +00:00
"github.com/sagernet/sing/common"
2022-06-30 13:27:56 +00:00
"github.com/sagernet/sing/common/auth"
E "github.com/sagernet/sing/common/exceptions"
)
type _Inbound struct {
2022-07-02 17:57:04 +00:00
Tag string `json:"tag,omitempty"`
Type string `json:"type"`
DirectOptions DirectInboundOptions `json:"-"`
SocksOptions SimpleInboundOptions `json:"-"`
HTTPOptions SimpleInboundOptions `json:"-"`
MixedOptions SimpleInboundOptions `json:"-"`
ShadowsocksOptions ShadowsocksInboundOptions `json:"-"`
2022-06-30 13:27:56 +00:00
}
type Inbound _Inbound
2022-07-02 19:42:57 +00:00
func (h Inbound) Equals(other Inbound) bool {
return h.Type == other.Type &&
h.Tag == other.Tag &&
common.Equals(h.DirectOptions, other.DirectOptions) &&
common.Equals(h.SocksOptions, other.SocksOptions) &&
common.Equals(h.HTTPOptions, other.HTTPOptions) &&
common.Equals(h.MixedOptions, other.MixedOptions) &&
common.Equals(h.ShadowsocksOptions, other.ShadowsocksOptions)
2022-07-02 17:57:04 +00:00
}
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-06-30 13:27:56 +00:00
case "direct":
2022-07-02 19:42:57 +00:00
v = h.DirectOptions
2022-06-30 13:27:56 +00:00
case "socks":
2022-07-02 19:42:57 +00:00
v = h.SocksOptions
2022-06-30 13:27:56 +00:00
case "http":
2022-07-02 19:42:57 +00:00
v = h.HTTPOptions
2022-06-30 13:27:56 +00:00
case "mixed":
2022-07-02 19:42:57 +00:00
v = h.MixedOptions
2022-06-30 13:27:56 +00:00
case "shadowsocks":
2022-07-02 19:42:57 +00:00
v = h.ShadowsocksOptions
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-06-30 13:27:56 +00:00
case "direct":
2022-07-02 19:42:57 +00:00
v = &h.DirectOptions
2022-06-30 13:27:56 +00:00
case "socks":
2022-07-02 19:42:57 +00:00
v = &h.SocksOptions
2022-06-30 13:27:56 +00:00
case "http":
2022-07-02 19:42:57 +00:00
v = &h.HTTPOptions
2022-06-30 13:27:56 +00:00
case "mixed":
2022-07-02 19:42:57 +00:00
v = &h.MixedOptions
2022-06-30 13:27:56 +00:00
case "shadowsocks":
2022-07-02 19:42:57 +00:00
v = &h.ShadowsocksOptions
2022-06-30 13:27:56 +00:00
default:
2022-07-02 17:57:04 +00:00
return nil
2022-06-30 13:27:56 +00:00
}
2022-07-02 17:57:04 +00:00
return json.Unmarshal(bytes, v)
2022-06-30 13:27:56 +00:00
}
type ListenOptions struct {
Listen ListenAddress `json:"listen"`
Port uint16 `json:"listen_port"`
2022-07-02 17:57:04 +00:00
TCPFastOpen bool `json:"tcp_fast_open,omitempty"`
UDPTimeout int64 `json:"udp_timeout,omitempty"`
2022-06-30 13:27:56 +00:00
}
type SimpleInboundOptions struct {
ListenOptions
Users []auth.User `json:"users,omitempty"`
}
2022-07-02 17:57:04 +00:00
func (o SimpleInboundOptions) Equals(other SimpleInboundOptions) bool {
return o.ListenOptions == other.ListenOptions &&
common.ComparableSliceEquals(o.Users, other.Users)
}
2022-06-30 13:27:56 +00:00
type DirectInboundOptions struct {
ListenOptions
Network NetworkList `json:"network,omitempty"`
2022-07-02 17:57:04 +00:00
OverrideAddress string `json:"override_address,omitempty"`
OverridePort uint16 `json:"override_port,omitempty"`
}
func (o DirectInboundOptions) Equals(other DirectInboundOptions) bool {
return o.ListenOptions == other.ListenOptions &&
common.ComparableSliceEquals(o.Network, other.Network) &&
o.OverrideAddress == other.OverrideAddress &&
o.OverridePort == other.OverridePort
2022-06-30 13:27:56 +00:00
}
type ShadowsocksInboundOptions struct {
ListenOptions
Network NetworkList `json:"network,omitempty"`
Method string `json:"method"`
Password string `json:"password"`
}
2022-07-02 17:57:04 +00:00
func (o ShadowsocksInboundOptions) Equals(other ShadowsocksInboundOptions) bool {
return o.ListenOptions == other.ListenOptions &&
common.ComparableSliceEquals(o.Network, other.Network) &&
o.Method == other.Method &&
o.Password == other.Password
}