|
@@ -1,5 +1,10 @@
|
|
package main
|
|
package main
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+A Windows Door tester.
|
|
|
|
+
|
|
|
|
+*/
|
|
|
|
+
|
|
import (
|
|
import (
|
|
"flag"
|
|
"flag"
|
|
"fmt"
|
|
"fmt"
|
|
@@ -24,7 +29,7 @@ func main() {
|
|
flag.Parse()
|
|
flag.Parse()
|
|
|
|
|
|
if port == 0 && flag.NArg() != 1 {
|
|
if port == 0 && flag.NArg() != 1 {
|
|
- fmt.Println("I need a Port and a commandline to execute.")
|
|
|
|
|
|
+ fmt.Println("I need a Port and a door command line to execute.")
|
|
flag.PrintDefaults()
|
|
flag.PrintDefaults()
|
|
os.Exit(2)
|
|
os.Exit(2)
|
|
}
|
|
}
|
|
@@ -46,7 +51,7 @@ func main() {
|
|
fmt.Println("Client connected.")
|
|
fmt.Println("Client connected.")
|
|
fmt.Println("Client " + c.RemoteAddr().String() + " connected.")
|
|
fmt.Println("Client " + c.RemoteAddr().String() + " connected.")
|
|
|
|
|
|
- // fork goes here
|
|
|
|
|
|
+ // Handle the connection in the background...
|
|
go handleConnection(c, flag.Arg(0))
|
|
go handleConnection(c, flag.Arg(0))
|
|
c = nil
|
|
c = nil
|
|
}
|
|
}
|
|
@@ -82,6 +87,8 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
|
|
|
|
conn.Write([]byte("\xff\xfb\x01\xff\xfb\x03\xff\xfd\x10"))
|
|
conn.Write([]byte("\xff\xfb\x01\xff\xfb\x03\xff\xfd\x10"))
|
|
drain(conn)
|
|
drain(conn)
|
|
|
|
+ conn.Write([]byte("\n\rLaunching door\n\r"))
|
|
|
|
+ time.Sleep(time.Second)
|
|
|
|
|
|
fmt.Printf("%#v\n", conn)
|
|
fmt.Printf("%#v\n", conn)
|
|
tcp, _ := conn.(*net.TCPConn)
|
|
tcp, _ := conn.(*net.TCPConn)
|
|
@@ -89,6 +96,8 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
|
|
|
|
// https://github.com/golang/go/issues/10350
|
|
// https://github.com/golang/go/issues/10350
|
|
|
|
|
|
|
|
+ // Duplicate the handle for passing off to the door.
|
|
|
|
+
|
|
raw, err := tcp.SyscallConn()
|
|
raw, err := tcp.SyscallConn()
|
|
fmt.Printf("%#v, err: %#v\n", raw, err)
|
|
fmt.Printf("%#v, err: %#v\n", raw, err)
|
|
|
|
|
|
@@ -96,7 +105,7 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
raw.Control(func(fd uintptr) {
|
|
raw.Control(func(fd uintptr) {
|
|
socket_fd = fd
|
|
socket_fd = fd
|
|
})
|
|
})
|
|
- fmt.Printf("Socket: %#v\n", socket_fd)
|
|
|
|
|
|
+ fmt.Printf("Socket FD: %#v\n", socket_fd)
|
|
proc, _ := syscall.GetCurrentProcess()
|
|
proc, _ := syscall.GetCurrentProcess()
|
|
var dup_socket_fd syscall.Handle
|
|
var dup_socket_fd syscall.Handle
|
|
|
|
|
|
@@ -106,7 +115,7 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
fmt.Printf("ERR DuplicateHandle: %#v\n", err)
|
|
fmt.Printf("ERR DuplicateHandle: %#v\n", err)
|
|
}
|
|
}
|
|
|
|
|
|
- fmt.Printf("Dup: %#v\n", dup_socket_fd)
|
|
|
|
|
|
+ fmt.Printf("Dup FD: %#v\n", dup_socket_fd)
|
|
|
|
|
|
// windows: tcp.File() failes. net.OpError
|
|
// windows: tcp.File() failes. net.OpError
|
|
/*
|
|
/*
|
|
@@ -144,7 +153,7 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
|
|
|
|
err = syscall.CreateProcess(nil, argv, nil, nil, true, 0, nil, nil, &si, &pi)
|
|
err = syscall.CreateProcess(nil, argv, nil, nil, true, 0, nil, nil, &si, &pi)
|
|
|
|
|
|
- fmt.Printf("Return: %#v\n", err)
|
|
|
|
|
|
+ fmt.Printf("Door has launched. Return: %#v\n", err)
|
|
raw = nil
|
|
raw = nil
|
|
|
|
|
|
if err == nil {
|
|
if err == nil {
|
|
@@ -152,6 +161,11 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
fmt.Printf("Event %#v, err: %#v\n", event, e)
|
|
fmt.Printf("Event %#v, err: %#v\n", event, e)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ fmt.Println("Close Duplicate.")
|
|
|
|
+ // Close the duplicate...
|
|
|
|
+ syscall.CloseHandle(dup_socket_fd)
|
|
|
|
+ fmt.Println("Close Done.")
|
|
|
|
+
|
|
/*
|
|
/*
|
|
exec_cmd := exec.Command(parts[0], parts[1:]...)
|
|
exec_cmd := exec.Command(parts[0], parts[1:]...)
|
|
fmt.Printf("exec_cmd: %#v\n", exec_cmd)
|
|
fmt.Printf("exec_cmd: %#v\n", exec_cmd)
|
|
@@ -192,14 +206,20 @@ func handleConnection(conn net.Conn, cmd string) {
|
|
// fmt.Printf("Child started: %d\n", id)
|
|
// fmt.Printf("Child started: %d\n", id)
|
|
// return
|
|
// return
|
|
|
|
|
|
|
|
+ fmt.Println("Welcome caller back.")
|
|
|
|
+
|
|
conn.Write([]byte("Welcome back!\r\nSeeya!\r\n"))
|
|
conn.Write([]byte("Welcome back!\r\nSeeya!\r\n"))
|
|
|
|
|
|
|
|
+ fmt.Println("Ok, shut this connection down.")
|
|
|
|
+
|
|
// I can't seem to get this to close the connection. :(
|
|
// I can't seem to get this to close the connection. :(
|
|
conn.Close()
|
|
conn.Close()
|
|
syscall.CloseHandle(syscall.Handle(socket_fd))
|
|
syscall.CloseHandle(syscall.Handle(socket_fd))
|
|
tcp.SetLinger(0)
|
|
tcp.SetLinger(0)
|
|
tcp.Close()
|
|
tcp.Close()
|
|
|
|
|
|
|
|
+ fmt.Println("Closed.")
|
|
|
|
+
|
|
/*
|
|
/*
|
|
for {
|
|
for {
|
|
buffer, err := bufio.NewReader(conn).ReadBytes('\r') // HMM. \r ?
|
|
buffer, err := bufio.NewReader(conn).ReadBytes('\r') // HMM. \r ?
|