2018-12-05 21:13:29 +08:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import (
|
2019-06-28 12:29:08 +08:00
|
|
|
"crypto/tls"
|
2018-12-05 21:13:29 +08:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/Dreamacro/clash/common/cache"
|
|
|
|
"github.com/Dreamacro/clash/log"
|
|
|
|
yaml "gopkg.in/yaml.v2"
|
|
|
|
|
|
|
|
D "github.com/miekg/dns"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// EnhancedModeMapping is a mapping for EnhancedMode enum
|
|
|
|
EnhancedModeMapping = map[string]EnhancedMode{
|
2018-12-05 21:52:31 +08:00
|
|
|
NORMAL.String(): NORMAL,
|
2018-12-05 21:13:29 +08:00
|
|
|
FAKEIP.String(): FAKEIP,
|
|
|
|
MAPPING.String(): MAPPING,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-12-05 21:52:31 +08:00
|
|
|
NORMAL EnhancedMode = iota
|
|
|
|
FAKEIP
|
2018-12-05 21:13:29 +08:00
|
|
|
MAPPING
|
|
|
|
)
|
|
|
|
|
|
|
|
type EnhancedMode int
|
|
|
|
|
|
|
|
// UnmarshalYAML unserialize EnhancedMode with yaml
|
|
|
|
func (e *EnhancedMode) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
var tp string
|
|
|
|
if err := unmarshal(&tp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mode, exist := EnhancedModeMapping[tp]
|
|
|
|
if !exist {
|
|
|
|
return errors.New("invalid mode")
|
|
|
|
}
|
|
|
|
*e = mode
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalYAML serialize EnhancedMode with yaml
|
|
|
|
func (e EnhancedMode) MarshalYAML() ([]byte, error) {
|
|
|
|
return yaml.Marshal(e.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON unserialize EnhancedMode with json
|
|
|
|
func (e *EnhancedMode) UnmarshalJSON(data []byte) error {
|
|
|
|
var tp string
|
|
|
|
json.Unmarshal(data, &tp)
|
|
|
|
mode, exist := EnhancedModeMapping[tp]
|
|
|
|
if !exist {
|
|
|
|
return errors.New("invalid mode")
|
|
|
|
}
|
|
|
|
*e = mode
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON serialize EnhancedMode with json
|
|
|
|
func (e EnhancedMode) MarshalJSON() ([]byte, error) {
|
|
|
|
return json.Marshal(e.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e EnhancedMode) String() string {
|
|
|
|
switch e {
|
2018-12-05 21:52:31 +08:00
|
|
|
case NORMAL:
|
|
|
|
return "normal"
|
2018-12-05 21:13:29 +08:00
|
|
|
case FAKEIP:
|
2019-05-03 00:05:14 +08:00
|
|
|
return "fake-ip"
|
2018-12-05 21:13:29 +08:00
|
|
|
case MAPPING:
|
|
|
|
return "redir-host"
|
|
|
|
default:
|
|
|
|
return "unknown"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func putMsgToCache(c *cache.Cache, key string, msg *D.Msg) {
|
2019-02-23 20:31:59 +08:00
|
|
|
var ttl time.Duration
|
2019-10-14 17:13:23 +08:00
|
|
|
switch {
|
|
|
|
case len(msg.Answer) != 0:
|
2019-02-23 20:31:59 +08:00
|
|
|
ttl = time.Duration(msg.Answer[0].Header().Ttl) * time.Second
|
2019-10-14 17:13:23 +08:00
|
|
|
case len(msg.Ns) != 0:
|
2019-02-23 20:31:59 +08:00
|
|
|
ttl = time.Duration(msg.Ns[0].Header().Ttl) * time.Second
|
2019-10-14 17:13:23 +08:00
|
|
|
case len(msg.Extra) != 0:
|
2019-02-23 20:31:59 +08:00
|
|
|
ttl = time.Duration(msg.Extra[0].Header().Ttl) * time.Second
|
2019-10-14 17:13:23 +08:00
|
|
|
default:
|
2019-02-23 20:31:59 +08:00
|
|
|
log.Debugln("[DNS] response msg error: %#v", msg)
|
2018-12-05 21:13:29 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-23 20:31:59 +08:00
|
|
|
c.Put(key, msg.Copy(), ttl)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setMsgTTL(msg *D.Msg, ttl uint32) {
|
|
|
|
for _, answer := range msg.Answer {
|
|
|
|
answer.Header().Ttl = ttl
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ns := range msg.Ns {
|
|
|
|
ns.Header().Ttl = ttl
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, extra := range msg.Extra {
|
|
|
|
extra.Header().Ttl = ttl
|
|
|
|
}
|
2018-12-05 21:13:29 +08:00
|
|
|
}
|
2019-06-28 12:29:08 +08:00
|
|
|
|
|
|
|
func isIPRequest(q D.Question) bool {
|
|
|
|
if q.Qclass == D.ClassINET && (q.Qtype == D.TypeA || q.Qtype == D.TypeAAAA) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func transform(servers []NameServer) []resolver {
|
|
|
|
ret := []resolver{}
|
|
|
|
for _, s := range servers {
|
|
|
|
if s.Net == "https" {
|
|
|
|
ret = append(ret, &dohClient{url: s.Addr})
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = append(ret, &client{
|
|
|
|
Client: &D.Client{
|
|
|
|
Net: s.Net,
|
|
|
|
TLSConfig: &tls.Config{
|
|
|
|
ClientSessionCache: globalSessionCache,
|
|
|
|
// alpn identifier, see https://tools.ietf.org/html/draft-hoffman-dprive-dns-tls-alpn-00#page-6
|
|
|
|
NextProtos: []string{"dns"},
|
|
|
|
},
|
|
|
|
UDPSize: 4096,
|
|
|
|
},
|
|
|
|
Address: s.Addr,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|