mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Get darwin local DNS server from libresolv
This commit is contained in:
parent
a3daf39877
commit
7347b930ea
7 changed files with 90 additions and 27 deletions
|
@ -27,6 +27,7 @@ var _ adapter.DNSTransport = (*Transport)(nil)
|
||||||
|
|
||||||
type Transport struct {
|
type Transport struct {
|
||||||
dns.TransportAdapter
|
dns.TransportAdapter
|
||||||
|
ctx context.Context
|
||||||
hosts *hosts.File
|
hosts *hosts.File
|
||||||
dialer N.Dialer
|
dialer N.Dialer
|
||||||
}
|
}
|
||||||
|
|
53
dns/transport/local/resolv_darwin_cgo.go
Normal file
53
dns/transport/local/resolv_darwin_cgo.go
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
//go:build darwin && cgo
|
||||||
|
|
||||||
|
package local
|
||||||
|
|
||||||
|
/*
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <resolv.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
*/
|
||||||
|
import "C"
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
|
E "github.com/sagernet/sing/common/exceptions"
|
||||||
|
|
||||||
|
"github.com/miekg/dns"
|
||||||
|
)
|
||||||
|
|
||||||
|
func dnsReadConfig(_ string) *dnsConfig {
|
||||||
|
if C.res_init() != 0 {
|
||||||
|
return &dnsConfig{
|
||||||
|
servers: defaultNS,
|
||||||
|
search: dnsDefaultSearch(),
|
||||||
|
ndots: 1,
|
||||||
|
timeout: 5 * time.Second,
|
||||||
|
attempts: 2,
|
||||||
|
err: E.New("libresolv initialization failed"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
conf := &dnsConfig{
|
||||||
|
ndots: 1,
|
||||||
|
timeout: 5 * time.Second,
|
||||||
|
attempts: int(C._res.retry),
|
||||||
|
}
|
||||||
|
for i := 0; i < int(C._res.nscount); i++ {
|
||||||
|
ns := C._res.nsaddr_list[i]
|
||||||
|
addr := C.inet_ntoa(ns.sin_addr)
|
||||||
|
if addr == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
conf.servers = append(conf.servers, C.GoString(addr))
|
||||||
|
}
|
||||||
|
for i := 0; ; i++ {
|
||||||
|
search := C._res.dnsrch[i]
|
||||||
|
if search == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
conf.search = append(conf.search, dns.Fqdn(C.GoString(search)))
|
||||||
|
}
|
||||||
|
return conf
|
||||||
|
}
|
23
dns/transport/local/resolv_default.go
Normal file
23
dns/transport/local/resolv_default.go
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
package local
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
_ "unsafe"
|
||||||
|
|
||||||
|
"github.com/miekg/dns"
|
||||||
|
)
|
||||||
|
|
||||||
|
//go:linkname defaultNS net.defaultNS
|
||||||
|
var defaultNS []string
|
||||||
|
|
||||||
|
func dnsDefaultSearch() []string {
|
||||||
|
hn, err := os.Hostname()
|
||||||
|
if err != nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
if i := strings.IndexRune(hn, '.'); i >= 0 && i < len(hn)-1 {
|
||||||
|
return []string{dns.Fqdn(hn[i+1:])}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !windows
|
//go:build !windows && !(darwin && cgo)
|
||||||
|
|
||||||
package local
|
package local
|
||||||
|
|
||||||
|
@ -9,7 +9,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
_ "unsafe"
|
|
||||||
|
"github.com/miekg/dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
func dnsReadConfig(name string) *dnsConfig {
|
func dnsReadConfig(name string) *dnsConfig {
|
||||||
|
@ -69,13 +70,13 @@ func dnsReadConfig(name string) *dnsConfig {
|
||||||
}
|
}
|
||||||
case "domain":
|
case "domain":
|
||||||
if len(f) > 1 {
|
if len(f) > 1 {
|
||||||
conf.search = []string{ensureRooted(f[1])}
|
conf.search = []string{dns.Fqdn(f[1])}
|
||||||
}
|
}
|
||||||
|
|
||||||
case "search":
|
case "search":
|
||||||
conf.search = make([]string, 0, len(f)-1)
|
conf.search = make([]string, 0, len(f)-1)
|
||||||
for i := 1; i < len(f); i++ {
|
for i := 1; i < len(f); i++ {
|
||||||
name := ensureRooted(f[i])
|
name := dns.Fqdn(f[i])
|
||||||
if name == "." {
|
if name == "." {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -137,27 +138,6 @@ func dnsReadConfig(name string) *dnsConfig {
|
||||||
return conf
|
return conf
|
||||||
}
|
}
|
||||||
|
|
||||||
//go:linkname defaultNS net.defaultNS
|
|
||||||
var defaultNS []string
|
|
||||||
|
|
||||||
func dnsDefaultSearch() []string {
|
|
||||||
hn, err := os.Hostname()
|
|
||||||
if err != nil {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
if i := strings.IndexRune(hn, '.'); i >= 0 && i < len(hn)-1 {
|
|
||||||
return []string{ensureRooted(hn[i+1:])}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func ensureRooted(s string) string {
|
|
||||||
if len(s) > 0 && s[len(s)-1] == '.' {
|
|
||||||
return s
|
|
||||||
}
|
|
||||||
return s + "."
|
|
||||||
}
|
|
||||||
|
|
||||||
const big = 0xFFFFFF
|
const big = 0xFFFFFF
|
||||||
|
|
||||||
func dtoi(s string) (n int, i int, ok bool) {
|
func dtoi(s string) (n int, i int, ok bool) {
|
||||||
|
|
|
@ -56,12 +56,12 @@ func (m *TransportManager) Start(stage adapter.StartStage) error {
|
||||||
}
|
}
|
||||||
m.started = true
|
m.started = true
|
||||||
m.stage = stage
|
m.stage = stage
|
||||||
outbounds := m.transports
|
transports := m.transports
|
||||||
m.access.Unlock()
|
m.access.Unlock()
|
||||||
if stage == adapter.StartStateStart {
|
if stage == adapter.StartStateStart {
|
||||||
return m.startTransports(m.transports)
|
return m.startTransports(m.transports)
|
||||||
} else {
|
} else {
|
||||||
for _, outbound := range outbounds {
|
for _, outbound := range transports {
|
||||||
err := adapter.LegacyStart(outbound, stage)
|
err := adapter.LegacyStart(outbound, stage)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return E.Cause(err, stage, " dns/", outbound.Type(), "[", outbound.Tag(), "]")
|
return E.Cause(err, stage, " dns/", outbound.Type(), "[", outbound.Tag(), "]")
|
||||||
|
|
3
protocol/tun/hook.go
Normal file
3
protocol/tun/hook.go
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
package tun
|
||||||
|
|
||||||
|
var HookBeforeCreatePlatformInterface func()
|
|
@ -361,6 +361,9 @@ func (t *Inbound) Start(stage adapter.StartStage) error {
|
||||||
if t.platformInterface != nil {
|
if t.platformInterface != nil {
|
||||||
tunInterface, err = t.platformInterface.OpenTun(&tunOptions, t.platformOptions)
|
tunInterface, err = t.platformInterface.OpenTun(&tunOptions, t.platformOptions)
|
||||||
} else {
|
} else {
|
||||||
|
if HookBeforeCreatePlatformInterface != nil {
|
||||||
|
HookBeforeCreatePlatformInterface()
|
||||||
|
}
|
||||||
tunInterface, err = tun.New(tunOptions)
|
tunInterface, err = tun.New(tunOptions)
|
||||||
}
|
}
|
||||||
monitor.Finish()
|
monitor.Finish()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue