subnet 찾는 모드 추가
This commit is contained in:
parent
0fa916778d
commit
b82ad12387
|
@ -1,7 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
@ -14,7 +13,7 @@ import (
|
||||||
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
||||||
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
"gopkg.in/alecthomas/kingpin.v2"
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
|
|
||||||
"strconv"
|
"strconv"
|
||||||
|
@ -49,6 +48,7 @@ var (
|
||||||
verbosePtr = app.Flag("verbose", "Enable verbose mode.").Short('v').Bool()
|
verbosePtr = app.Flag("verbose", "Enable verbose mode.").Short('v').Bool()
|
||||||
clearPtr = app.Flag("clear", "clear os environment.").Short('p').Bool()
|
clearPtr = app.Flag("clear", "clear os environment.").Short('p').Bool()
|
||||||
ifBindTypePtr = app.Flag("if-bind-type", "choose virtual ethernet bind type(ipvlan,macvlan).").Default("ipvlan").Short('b').Enum("ipvlan", "macvlan")
|
ifBindTypePtr = app.Flag("if-bind-type", "choose virtual ethernet bind type(ipvlan,macvlan).").Default("ipvlan").Short('b').Enum("ipvlan", "macvlan")
|
||||||
|
isFindSubnetPtr = app.Flag("subnet-scan", "find subnet mode. if not specify, use default network scan mode.").Short('t').Default("false").Bool()
|
||||||
macAddrPtr = app.Flag("mac-address", "Specify MAC address of macvlan mode. if not specify, use random.").Short('a').String()
|
macAddrPtr = app.Flag("mac-address", "Specify MAC address of macvlan mode. if not specify, use random.").Short('a').String()
|
||||||
nspawnPathPtr = app.Flag("nspawn-path", "systemd-nspawn location.").Short('s').String()
|
nspawnPathPtr = app.Flag("nspawn-path", "systemd-nspawn location.").Short('s').String()
|
||||||
containerHomePtr = app.Flag("container-home", "container residence path").Default("/container").Short('d').String()
|
containerHomePtr = app.Flag("container-home", "container residence path").Default("/container").Short('d').String()
|
||||||
|
@ -64,7 +64,6 @@ type mountPoint struct {
|
||||||
Readonly bool `yaml:"readonly"`
|
Readonly bool `yaml:"readonly"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func (mp mountPoint) Option(nodePath string) (option string, err error) {
|
func (mp mountPoint) Option(nodePath string) (option string, err error) {
|
||||||
var mountPointPath string
|
var mountPointPath string
|
||||||
if filepath.IsAbs(mp.Name) {
|
if filepath.IsAbs(mp.Name) {
|
||||||
|
@ -128,6 +127,84 @@ func getIP(host string) (ip net.IP, err error) {
|
||||||
return addrs[0], nil
|
return addrs[0], nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getCidr(network net.IPNet) (cidr uint64, err error) {
|
||||||
|
netSlice := strings.Split(network.String(), "/")
|
||||||
|
if len(netSlice) < 2 {
|
||||||
|
err = errors.New("cannot get netmask")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
cidr, err = strconv.ParseUint(netSlice[len(netSlice)-1], 10, 64)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
func getSubnetIPInfo(ip net.IP, verbose bool) (gw net.IP, cidr uint64, linkname string, err error) {
|
||||||
|
// netlink.RouteList
|
||||||
|
var links []netlink.Link
|
||||||
|
links, err = netlink.LinkList()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if verbose {
|
||||||
|
fmt.Println("scan system network interfaces:")
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, link := range links {
|
||||||
|
attrs := link.Attrs()
|
||||||
|
|
||||||
|
if verbose {
|
||||||
|
fmt.Printf(" interface %s : ", attrs.Name)
|
||||||
|
}
|
||||||
|
if (attrs.Flags & net.FlagUp) == 0 {
|
||||||
|
if verbose {
|
||||||
|
fmt.Printf(" not up -- abandon!\n")
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
} else {
|
||||||
|
if verbose {
|
||||||
|
fmt.Printf(" up!\n")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if verbose {
|
||||||
|
fmt.Println(" getting routing tables ")
|
||||||
|
}
|
||||||
|
var routes []netlink.Route
|
||||||
|
routes, err = netlink.RouteList(link, netlink.FAMILY_V4)
|
||||||
|
if err != nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
var (
|
||||||
|
matchedRoute *netlink.Route
|
||||||
|
)
|
||||||
|
for _, route := range routes {
|
||||||
|
|
||||||
|
if verbose {
|
||||||
|
fmt.Printf(" routing table %s\n", route.String())
|
||||||
|
}
|
||||||
|
if route.Dst.Contains(ip) {
|
||||||
|
if verbose {
|
||||||
|
fmt.Printf(" - matched routing role : %s\n", route.String())
|
||||||
|
}
|
||||||
|
matchedRoute = &route
|
||||||
|
break
|
||||||
|
} else if verbose {
|
||||||
|
fmt.Printf(" - no subnet gateway\n")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if cidrData, err := getCidr(*matchedRoute.Dst); err == nil {
|
||||||
|
cidr = cidrData
|
||||||
|
if verbose {
|
||||||
|
fmt.Printf(" interface have a subnet routing rule. gateway: %s", matchedRoute)
|
||||||
|
fmt.Println(" ok! matched ")
|
||||||
|
}
|
||||||
|
gw, cidr, linkname = matchedRoute.Gw, cidrData, attrs.Name
|
||||||
|
} else if verbose {
|
||||||
|
fmt.Printf(" - cannot getting netmask : %s", err)
|
||||||
|
fmt.Println(" abandon this interface ")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
func getOutboundIPInfo(verbose bool) (gw net.IP, cidr uint64, linkname string, err error) {
|
func getOutboundIPInfo(verbose bool) (gw net.IP, cidr uint64, linkname string, err error) {
|
||||||
// netlink.RouteList
|
// netlink.RouteList
|
||||||
var links []netlink.Link
|
var links []netlink.Link
|
||||||
|
@ -210,14 +287,12 @@ func getOutboundIPInfo(verbose bool) (gw net.IP, cidr uint64, linkname string, e
|
||||||
if verbose {
|
if verbose {
|
||||||
fmt.Printf(" - default network\n")
|
fmt.Printf(" - default network\n")
|
||||||
}
|
}
|
||||||
netSlice := strings.Split(network.IPNet.String(), "/")
|
if cidrData, err := getCidr(*network.IPNet); err == nil {
|
||||||
if len(netSlice) < 2 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if cidrData, err := strconv.ParseUint(netSlice[len(netSlice)-1], 10, 64); err == nil {
|
|
||||||
matchedCidr = cidrData
|
matchedCidr = cidrData
|
||||||
cidrOk = true
|
cidrOk = true
|
||||||
break
|
break
|
||||||
|
} else if verbose {
|
||||||
|
fmt.Printf(" - cannot getting netmask : %s", err)
|
||||||
}
|
}
|
||||||
} else if verbose {
|
} else if verbose {
|
||||||
fmt.Printf(" - no default network\n")
|
fmt.Printf(" - no default network\n")
|
||||||
|
@ -318,6 +393,7 @@ func main() {
|
||||||
macAddr = strings.TrimSpace(*macAddrPtr)
|
macAddr = strings.TrimSpace(*macAddrPtr)
|
||||||
clear = *clearPtr
|
clear = *clearPtr
|
||||||
nodeName = *nodeNamePtr
|
nodeName = *nodeNamePtr
|
||||||
|
isFindSubnet = *isFindSubnetPtr
|
||||||
bindIfName = *bindIfNamePtr
|
bindIfName = *bindIfNamePtr
|
||||||
configFileName = *configFileNamePtr
|
configFileName = *configFileNamePtr
|
||||||
cmdListArgs = *cmdListArgsPtr
|
cmdListArgs = *cmdListArgsPtr
|
||||||
|
@ -389,9 +465,19 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
progress++
|
progress++
|
||||||
gw, cidr, linkname, err := getOutboundIPInfo(verbose)
|
var (
|
||||||
|
gw net.IP
|
||||||
|
cidr uint64
|
||||||
|
linkname string
|
||||||
|
)
|
||||||
|
if isFindSubnet {
|
||||||
|
gw, cidr, linkname, err = getSubnetIPInfo(nodeAddr, verbose)
|
||||||
|
} else {
|
||||||
|
gw, cidr, linkname, err = getOutboundIPInfo(verbose)
|
||||||
|
|
||||||
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(errs.Wrap(err, "error in getOutboundIPInfo"))
|
panic(errs.Wrap(err, "error in network info"))
|
||||||
}
|
}
|
||||||
|
|
||||||
if verbose {
|
if verbose {
|
||||||
|
@ -422,7 +508,8 @@ func main() {
|
||||||
option = append(option, fmt.Sprintf("--setenv=GATEWAY_ADDR=%s", gw.String()))
|
option = append(option, fmt.Sprintf("--setenv=GATEWAY_ADDR=%s", gw.String()))
|
||||||
option = append(option, fmt.Sprintf("--machine=%s", nodeName))
|
option = append(option, fmt.Sprintf("--machine=%s", nodeName))
|
||||||
option = append(option, fmt.Sprintf("--directory=%s", filepath.Join(nodePath, "merge")))
|
option = append(option, fmt.Sprintf("--directory=%s", filepath.Join(nodePath, "merge")))
|
||||||
option = append(option, "--keep-unit", "--register=no", "--settings=override")
|
// option = append(option, "--keep-unit", "--register=yes", "--settings=override", "--private-users=1354956800:65536", "--private-users-chown")
|
||||||
|
option = append(option, "--keep-unit", "--register=yes", "--settings=override")
|
||||||
|
|
||||||
for _, mountPoint := range config.MoundPoint {
|
for _, mountPoint := range config.MoundPoint {
|
||||||
if mountOption, err := mountPoint.Option(nodePath); err != nil {
|
if mountOption, err := mountPoint.Option(nodePath); err != nil {
|
||||||
|
@ -469,4 +556,3 @@ func main() {
|
||||||
panic(errs.Wrap(err, "error in systemd-nspawn execution"))
|
panic(errs.Wrap(err, "error in systemd-nspawn execution"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ After=pdnsd.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
ExecStartPre=/usr/bin/sleep 3s
|
ExecStartPre=/usr/bin/sleep 3s
|
||||||
ExecStart=/container/octopus-outside %I igb0 -v -b macvlan
|
ExecStart=/container/octopus-outside %I igb1 -v -b ipvlan -t
|
||||||
KillMode=mixed
|
KillMode=mixed
|
||||||
Type=notify
|
Type=notify
|
||||||
RestartForceExitStatus=133
|
RestartForceExitStatus=133
|
||||||
|
|
Loading…
Reference in New Issue