mirror of https://github.com/ginuerzh/gost
7 changed files with 135 additions and 56 deletions
@ -1,44 +0,0 @@ |
|||||
// +build darwin
|
|
||||
|
|
||||
package gost |
|
||||
|
|
||||
import ( |
|
||||
"net" |
|
||||
"os/exec" |
|
||||
"strconv" |
|
||||
|
|
||||
"github.com/songgao/water" |
|
||||
) |
|
||||
|
|
||||
func createTun(cfg TunConfig) (conn net.Conn, ipNet *net.IPNet, err error) { |
|
||||
ip, ipNet, err := net.ParseCIDR(cfg.Addr) |
|
||||
if err != nil { |
|
||||
return |
|
||||
} |
|
||||
|
|
||||
ifce, err := water.New(water.Config{ |
|
||||
DeviceType: water.TUN, |
|
||||
}) |
|
||||
if err != nil { |
|
||||
return |
|
||||
} |
|
||||
|
|
||||
mtu := cfg.MTU |
|
||||
if mtu <= 0 { |
|
||||
mtu = DefaultMTU |
|
||||
} |
|
||||
|
|
||||
if err = exec.Command( |
|
||||
"ifconfig", ifce.Name(), |
|
||||
"inet", cfg.Addr, |
|
||||
"mtu", strconv.Itoa(mtu), |
|
||||
"up").Run(); err != nil { |
|
||||
return |
|
||||
} |
|
||||
|
|
||||
conn = &tunConn{ |
|
||||
ifce: ifce, |
|
||||
addr: &net.IPAddr{IP: ip}, |
|
||||
} |
|
||||
return |
|
||||
} |
|
||||
@ -0,0 +1,70 @@ |
|||||
|
// +build !linux,!windows
|
||||
|
|
||||
|
package gost |
||||
|
|
||||
|
import ( |
||||
|
"fmt" |
||||
|
"net" |
||||
|
"os/exec" |
||||
|
"strconv" |
||||
|
|
||||
|
"github.com/go-log/log" |
||||
|
"github.com/songgao/water" |
||||
|
) |
||||
|
|
||||
|
func createTun(cfg TunConfig) (conn net.Conn, ipNet *net.IPNet, err error) { |
||||
|
ip, ipNet, err := net.ParseCIDR(cfg.Addr) |
||||
|
if err != nil { |
||||
|
return |
||||
|
} |
||||
|
|
||||
|
ifce, err := water.New(water.Config{ |
||||
|
DeviceType: water.TUN, |
||||
|
}) |
||||
|
if err != nil { |
||||
|
return |
||||
|
} |
||||
|
|
||||
|
mtu := cfg.MTU |
||||
|
if mtu <= 0 { |
||||
|
mtu = DefaultMTU |
||||
|
} |
||||
|
|
||||
|
cmd := fmt.Sprintf("ifconfig %s inet %s mtu %d up", ifce.Name(), cfg.Addr, mtu) |
||||
|
log.Log("[tun]", cmd) |
||||
|
if er := exec.Command( |
||||
|
"ifconfig", ifce.Name(), |
||||
|
"inet", cfg.Addr, |
||||
|
"mtu", strconv.Itoa(mtu), |
||||
|
"up").Run(); er != nil { |
||||
|
err = fmt.Errorf("%s: %v", cmd, er) |
||||
|
return |
||||
|
} |
||||
|
|
||||
|
if err = addRoutes(ifce.Name(), cfg.Routes...); err != nil { |
||||
|
return |
||||
|
} |
||||
|
|
||||
|
conn = &tunConn{ |
||||
|
ifce: ifce, |
||||
|
addr: &net.IPAddr{IP: ip}, |
||||
|
} |
||||
|
return |
||||
|
} |
||||
|
|
||||
|
func addRoutes(ifName string, routes ...string) error { |
||||
|
for _, route := range routes { |
||||
|
if route == "" { |
||||
|
continue |
||||
|
} |
||||
|
cmd := fmt.Sprintf("route add -net %s -interface %s", route, ifName) |
||||
|
log.Log("[tun]", cmd) |
||||
|
if er := exec.Command( |
||||
|
"route", "add", |
||||
|
"-net", route, |
||||
|
"-interface", ifName).Run(); er != nil { |
||||
|
return fmt.Errorf("%s: %v", cmd, er) |
||||
|
} |
||||
|
} |
||||
|
return nil |
||||
|
} |
||||
Loading…
Reference in new issue