update host file

master
兔子 5 months ago
parent 42ad19e798
commit 4190d59159

@ -1,213 +1,442 @@
package hosts package hosts
import ( import (
"bytes" "bufio"
"io/ioutil" "fmt"
"io"
"net"
"os"
"runtime" "runtime"
"strings"
"sync" "sync"
"b612.me/staros/sysconf"
) )
var hostsPath string func SystemHostpath() string {
var hostsCfg *sysconf.SysConf
var haveError error
var lock sync.Mutex
var reverse bool = false
func init() {
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
hostsPath = `C:\Windows\System32\drivers\etc\hosts` return `C:\Windows\System32\drivers\etc\hosts`
} else {
hostsPath = `/etc/hosts`
} }
return `/etc/hosts`
} }
func SetHostsPath(path string) { type HostNode struct {
hostsPath = path uid uint64
nextuid uint64
lastuid uint64
IP string
Host []string
Comment string
Original string
OnlyComment bool
Valid bool
} }
type Host struct {
func GetHostsPath() string { idx uint64
return hostsPath hostPath string
nextUid uint64
lastUid uint64
fulldata map[uint64]*HostNode
hostData map[string][]*HostNode
ipData map[string][]*HostNode
sync.RWMutex
} }
func Parse() error { func NewHosts() *Host {
hostsCfg = new(sysconf.SysConf) return &Host{
hostsCfg.EqualFlag = ` ` hostData: make(map[string][]*HostNode),
hostsCfg.HaveSegMent = false ipData: make(map[string][]*HostNode),
hostsCfg.CommentCR = true fulldata: make(map[uint64]*HostNode),
hostsCfg.CommentFlag = []string{"#"}
data, haveError := ioutil.ReadFile(hostsPath)
if haveError != nil {
return haveError
} }
data = bytes.ReplaceAll(data, []byte(` `), []byte(" "))
haveError = hostsCfg.Parse(data)
return haveError
} }
func GetIpByDomain(domainName string) []string { func (h *Host) Parse(hostPath string) error {
if haveError != nil { h.Lock()
return []string{} defer h.Unlock()
h.hostPath = hostPath
h.fulldata = make(map[uint64]*HostNode)
h.hostData = make(map[string][]*HostNode)
h.ipData = make(map[string][]*HostNode)
return h.parse()
}
func (h *Host) parse() error {
f, err := os.OpenFile(h.hostPath, os.O_RDONLY, 0666)
if err != nil {
return fmt.Errorf("open hosts file %s error: %s", h.hostPath, err)
} }
lock.Lock() defer f.Close()
defer lock.Unlock() buf := bufio.NewReader(f)
if !reverse { for {
hostsCfg.Reverse() line, err := buf.ReadString('\n')
reverse = !reverse if err == io.EOF {
if h.idx-1 >= 0 {
h.fulldata[h.idx].nextuid = 0
h.lastUid = h.idx
}
break
}
if err != nil {
return fmt.Errorf("read hosts file error: %s", err)
}
h.idx++
line = strings.TrimSpace(line)
data, _ := h.parseLine(line)
data.uid = h.idx
data.lastuid = h.idx - 1
data.nextuid = h.idx + 1
h.fulldata[data.uid] = &data
if h.nextUid == 0 {
h.nextUid = h.idx
}
if data.Valid {
for _, v := range data.Host {
h.hostData[v] = append(h.hostData[v], &data)
}
h.ipData[data.IP] = append(h.ipData[data.IP], &data)
}
} }
return hostsCfg.Data[0].GetAll(domainName)
return nil
} }
func GetDomainByIp(IpAddr string) []string { func (h *Host) parseLine(data string) (HostNode, error) {
if haveError != nil { var res = HostNode{
return []string{} Original: data,
}
if len(data) == 0 {
return res, fmt.Errorf("empty line")
} }
lock.Lock() if data[0] == '#' {
defer lock.Unlock() res.Comment = data
if reverse { res.OnlyComment = true
hostsCfg.Reverse() return res, nil
reverse = !reverse }
var dataArr []string
cache := ""
for k, v := range data {
if v == '#' {
if len(cache) > 0 {
dataArr = append(dataArr, cache)
cache = ""
}
dataArr = append(dataArr, data[k:])
break
}
if v == ' ' || v == '\t' {
if len(cache) > 0 {
dataArr = append(dataArr, cache)
cache = ""
}
continue
}
cache += string(v)
} }
return hostsCfg.Data[0].GetAll(IpAddr) if len(cache) > 0 {
dataArr = append(dataArr, cache)
}
if len(dataArr) < 2 {
return res, fmt.Errorf("invalid line")
}
if strings.HasPrefix(dataArr[1], "#") {
return res, fmt.Errorf("invalid line")
}
if net.ParseIP(dataArr[0]) == nil {
return res, fmt.Errorf("invalid ip address")
}
for k, v := range dataArr {
switch k {
case 0:
res.IP = v
default:
if strings.HasPrefix(v, "#") {
res.Comment = v
} else {
res.Host = append(res.Host, v)
}
}
}
res.Valid = true
return res, nil
} }
func AddHosts(ip, host string) { func (h *Host) List() []*HostNode {
lock.Lock() h.RLock()
defer lock.Unlock() defer h.RUnlock()
if reverse { var res []*HostNode
hostsCfg.Data[0].AddValue(host, ip, "") nextUid := h.nextUid
} else { for {
hostsCfg.Data[0].AddValue(ip, host, "") if nextUid == 0 {
break
}
res = append(res, h.fulldata[nextUid])
nextUid = h.fulldata[nextUid].nextuid
} }
return res
} }
func RemoveHost(ip, host string) { func (h *Host) ListByHost(host string) []*HostNode {
lock.Lock() h.RLock()
defer lock.Unlock() defer h.RUnlock()
if reverse { if h.hostData == nil {
hostsCfg.Data[0].DeleteValue(host, ip) return nil
} else {
hostsCfg.Data[0].DeleteValue(ip, host)
} }
return h.hostData[host]
} }
func RemoveHostbyIp(ip string) { func (h *Host) ListIPsByHost(host string) []string {
lock.Lock() h.RLock()
defer lock.Unlock() defer h.RUnlock()
if reverse { if h.hostData == nil {
hostsCfg.Reverse() return nil
reverse = !reverse }
var res []string
for _, v := range h.hostData[host] {
res = append(res, v.IP)
} }
hostsCfg.Data[0].Delete(ip) return res
} }
func RemoveHostbyHost(host string) { func (h *Host) ListFirstIPByHost(host string) string {
lock.Lock() h.RLock()
defer lock.Unlock() defer h.RUnlock()
if !reverse { if h.hostData == nil {
hostsCfg.Reverse() return ""
reverse = !reverse }
for _, v := range h.hostData[host] {
return v.IP
} }
hostsCfg.Data[0].Delete(host) return ""
} }
// SetHost 设定唯一的Host对应值一个host对应一个ip其余的删除 func (h *Host) ListByIP(ip string) []*HostNode {
func SetHost(ip, host string) { h.RLock()
lock.Lock() defer h.RUnlock()
defer lock.Unlock() if h.ipData == nil {
if !reverse { return nil
hostsCfg.Reverse()
reverse = !reverse
} }
hostsCfg.Data[0].Set(host, ip, "") return h.ipData[ip]
}
func (h *Host) ListHostsByIP(ip string) []string {
h.RLock()
return h.listHostsByIP(ip)
} }
func SetHostbyIp(ip, host string) { func (h *Host) listHostsByIP(ip string) []string {
lock.Lock() if h.ipData == nil {
defer lock.Unlock() return nil
if reverse { }
hostsCfg.Reverse() var res []string
reverse = !reverse for _, v := range h.ipData[ip] {
res = append(res, v.Host...)
} }
hostsCfg.Data[0].Set(ip, host, "") return res
} }
func Build() string { func (h *Host) ListFirstHostByIP(ip string) string {
if reverse { h.RLock()
hostsCfg.Reverse() defer h.RUnlock()
reverse = !reverse if h.ipData == nil {
return ""
} }
return string(hostsCfg.Build()) for _, v := range h.ipData[ip] {
if len(v.Host) > 0 {
return v.Host[0]
}
}
return ""
} }
func Write() error { func (h *Host) AddHosts(ip string, hosts ...string) error {
lock.Lock() return h.addHosts("", ip, hosts...)
defer lock.Unlock()
data := []byte(Build())
return ioutil.WriteFile(hostsPath, data, 0644)
} }
func GetHostList() []string { func (h *Host) AddHostsComment(comment string, ip string, hosts ...string) error {
var res []string return h.addHosts(comment, ip, hosts...)
lock.Lock() }
defer lock.Unlock()
if !reverse { func (h *Host) RemoveIPHosts(ip string, hosts ...string) error {
hostsCfg.Reverse() h.Lock()
reverse = !reverse defer h.Unlock()
if h.ipData == nil {
return fmt.Errorf("hosts data not initialized")
} }
for _, v := range hostsCfg.Data[0].NodeData { ipInfo := h.ipData[ip]
if v != nil { if len(ipInfo) == 0 {
res = append(res, v.Key) return nil
}
cntfor:
for _, v := range ipInfo {
for _, host := range hosts {
if len(v.Host) == 1 && v.Host[0] == host {
delete(h.ipData, ip)
if v.lastuid != 0 {
h.fulldata[v.lastuid].nextuid = v.nextuid
} else {
h.nextUid = v.nextuid
}
if v.nextuid != 0 {
h.fulldata[v.nextuid].lastuid = v.lastuid
} else {
h.lastUid = v.lastuid
}
var newHostData []*HostNode
for _, vv := range h.hostData[v.Host[0]] {
if vv.uid != v.uid {
newHostData = append(newHostData, vv)
}
}
h.hostData[host] = newHostData
delete(h.fulldata, v.uid)
v = nil
continue cntfor
}
if len(v.Host) > 1 {
var newHosts []string
for _, vv := range v.Host {
if vv != host {
newHosts = append(newHosts, vv)
}
}
v.Host = newHosts
var newHostData []*HostNode
for _, vv := range h.hostData[host] {
if vv.uid != v.uid {
newHostData = append(newHostData, vv)
}
}
h.hostData[host] = newHostData
}
} }
} }
return res return nil
} }
func GetIpList() []string { func (h *Host) RemoveIPs(ips ...string) error {
var res []string h.Lock()
lock.Lock() defer h.Unlock()
defer lock.Unlock() if h.ipData == nil {
if reverse { return fmt.Errorf("hosts data not initialized")
hostsCfg.Reverse()
reverse = !reverse
} }
for _, v := range hostsCfg.Data[0].NodeData { for _, ip := range ips {
if v != nil { ipInfo := h.ipData[ip]
res = append(res, v.Key) if len(ipInfo) == 0 {
continue
}
for _, v := range ipInfo {
delete(h.ipData, ip)
delete(h.fulldata, v.uid)
if v.lastuid != 0 {
h.fulldata[v.lastuid].nextuid = v.nextuid
} else {
h.nextUid = v.nextuid
}
if v.nextuid != 0 {
h.fulldata[v.nextuid].lastuid = v.lastuid
} else {
h.lastUid = v.lastuid
}
for _, host := range v.Host {
var newHostData []*HostNode
for _, vv := range h.hostData[host] {
if vv.uid != v.uid {
newHostData = append(newHostData, vv)
}
}
h.hostData[host] = newHostData
}
} }
} }
return res return nil
} }
func GetAllListbyHost() map[string][]string { func (h *Host) RemoveHosts(hosts ...string) error {
res := make(map[string][]string) h.Lock()
lock.Lock() defer h.Unlock()
defer lock.Unlock() if h.hostData == nil {
if !reverse { return fmt.Errorf("hosts data not initialized")
hostsCfg.Reverse()
reverse = !reverse
} }
for _, v := range hostsCfg.Data[0].NodeData { for _, host := range hosts {
if v != nil { hostInfo := h.hostData[host]
res[v.Key] = v.Value if len(hostInfo) == 0 {
continue
}
delete(h.hostData, host)
for _, v := range hostInfo {
var newHosts []string
for _, vv := range v.Host {
if vv != host {
newHosts = append(newHosts, vv)
}
}
v.Host = newHosts
if len(v.Host) == 0 {
delete(h.ipData, v.IP)
if v.lastuid != 0 {
h.fulldata[v.lastuid].nextuid = v.nextuid
} else {
h.nextUid = v.nextuid
}
if v.nextuid != 0 {
h.fulldata[v.nextuid].lastuid = v.lastuid
} else {
h.lastUid = v.lastuid
}
delete(h.fulldata, v.uid)
}
} }
} }
return res return nil
} }
func GetAllListbyIp() map[string][]string { func (h *Host) SetIPHosts(ip string, hosts ...string) error {
res := make(map[string][]string) err := h.RemoveIPs(ip)
lock.Lock() if err != nil {
defer lock.Unlock() return err
if reverse {
hostsCfg.Reverse()
reverse = !reverse
} }
for _, v := range hostsCfg.Data[0].NodeData { return h.AddHosts(ip, hosts...)
if v != nil { }
res[v.Key] = v.Value
func (h *Host) addHosts(comment string, ip string, hosts ...string) error {
h.Lock()
defer h.Unlock()
if h.hostData == nil {
return fmt.Errorf("hosts data not initialized")
}
ipInfo := h.listHostsByIP(ip)
var needAddHosts []string
for _, v := range hosts {
if !inArray(ipInfo, v) {
needAddHosts = append(needAddHosts, v)
} }
} }
return res if len(needAddHosts) == 0 {
return nil
}
hostNode := HostNode{
uid: h.idx + 1,
nextuid: 0,
lastuid: h.lastUid,
IP: ip,
Host: needAddHosts,
Valid: true,
Comment: comment,
}
h.idx++
h.fulldata[h.lastUid].nextuid = h.idx
h.lastUid = h.idx
h.fulldata[h.idx] = &hostNode
h.ipData[ip] = append(h.ipData[ip], &hostNode)
for _, v := range needAddHosts {
h.hostData[v] = append(h.hostData[v], &hostNode)
}
return nil
}
func inArray(arr []string, v string) bool {
for _, vv := range arr {
if v == vv {
return true
}
}
return false
} }

@ -6,7 +6,32 @@ import (
) )
func Test_Hosts(t *testing.T) { func Test_Hosts(t *testing.T) {
//RemoveHostbyIp("192.168.222.33") var h = NewHosts()
Parse() err := h.Parse("./test_hosts.txt")
fmt.Println(GetAllListbyIp()) if err != nil {
t.Error(err)
}
for _, v := range h.List() {
fmt.Printf("%+v\n", v)
}
fmt.Println(h.nextUid, h.lastUid)
fmt.Println("")
err = h.AddHosts("122.23.12.123", "b612.me", "ok.b612.me")
if err != nil {
t.Error(err)
}
for _, v := range h.List() {
fmt.Printf("%+v\n", v)
}
fmt.Println(h.nextUid, h.lastUid)
fmt.Println("")
err = h.RemoveIPHosts("11.22.33.44", "remove.b612.me", "test.dns.set.b612.me")
if err != nil {
t.Error(err)
}
for _, v := range h.List() {
fmt.Printf("%+v\n", v)
}
fmt.Println(h.nextUid, h.lastUid)
fmt.Println("")
} }

@ -0,0 +1,22 @@
#hosts This file describes a number of hostname-to-address
#mappings for the TCP/IP subsystem. It is mostly
#used at boot time, when no name servers are running.
#On small systems, this file can be used instead of a
#"named" name server.
#Syntax:
#IP-Address Full-Qualifie
#special IPv6 addre
127.0.0.1 localhost
127.0.0.1 b612
#special IPv6 addresses
::1 localhost ipv6-localhost ipv6-loopback
fe00::0 ipv6-localnet
ff00::0 ipv6-mcastprefix
ff02::1 ipv6-allnodes
ff02::2 ipv6-allrouters
ff02::3 ipv6-allhosts
1.2.3.4 ssh.b612.me
4.5.6.7 dns.b612.me
8.9.10.11 release-ftpd
11.22.33.44 test.dns.set.b612.me remove.b612.me
4.5.6.7 game.b612.me
Loading…
Cancel
Save