1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package udp
- //#include "proxy.h"
- import "C"
- import (
- "net"
- "os"
- "reflect"
- "unsafe"
- log "github.com/coreos/flannel/Godeps/_workspace/src/github.com/golang/glog"
- "github.com/coreos/flannel/pkg/ip"
- )
- func runCProxy(tun *os.File, conn *net.UDPConn, ctl *os.File, tunIP ip.IP4, tunMTU int) {
- var log_errors int
- if log.V(1) {
- log_errors = 1
- }
- c, err := conn.File()
- if err != nil {
- log.Error("Converting UDPConn to File failed: ", err)
- return
- }
- defer c.Close()
- C.run_proxy(
- C.int(tun.Fd()),
- C.int(c.Fd()),
- C.int(ctl.Fd()),
- C.in_addr_t(tunIP.NetworkOrder()),
- C.size_t(tunMTU),
- C.int(log_errors),
- )
- }
- func writeCommand(f *os.File, cmd *C.command) {
- hdr := reflect.SliceHeader{
- Data: uintptr(unsafe.Pointer(cmd)),
- Len: int(unsafe.Sizeof(*cmd)),
- Cap: int(unsafe.Sizeof(*cmd)),
- }
- buf := *(*[]byte)(unsafe.Pointer(&hdr))
- f.Write(buf)
- }
- func setRoute(ctl *os.File, dst ip.IP4Net, nextHopIP ip.IP4, nextHopPort int) {
- cmd := C.command{
- cmd: C.CMD_SET_ROUTE,
- dest_net: C.in_addr_t(dst.IP.NetworkOrder()),
- dest_net_len: C.int(dst.PrefixLen),
- next_hop_ip: C.in_addr_t(nextHopIP.NetworkOrder()),
- next_hop_port: C.short(nextHopPort),
- }
- writeCommand(ctl, &cmd)
- }
- func removeRoute(ctl *os.File, dst ip.IP4Net) {
- cmd := C.command{
- cmd: C.CMD_DEL_ROUTE,
- dest_net: C.in_addr_t(dst.IP.NetworkOrder()),
- dest_net_len: C.int(dst.PrefixLen),
- }
- writeCommand(ctl, &cmd)
- }
- func stopProxy(ctl *os.File) {
- cmd := C.command{
- cmd: C.CMD_STOP,
- }
- writeCommand(ctl, &cmd)
- }
|