1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
package main
import (
"flag"
"github.com/tonistiigi/units"
"io"
"net"
"os"
"git.samanthony.xyz/hose/handshake"
"git.samanthony.xyz/hose/util"
)
const (
port = "60321"
network = "tcp"
usage = "Usage: hose <-handshake <rhost> | -r | -s <rhost>>"
)
var (
handshakeHost = flag.String("handshake", "", "exchange public keys with remote host")
recvFlag = flag.Bool("r", false, "receive")
sendHost = flag.String("s", "", "send to remote host")
)
func main() {
flag.Parse()
if *handshakeHost != "" {
if err := handshake.Handshake(*handshakeHost); err != nil {
util.Eprintf("%v\n", err)
}
} else if *recvFlag {
if err := recv(); err != nil {
util.Eprintf("%v\n", err)
}
} else if *sendHost != "" {
if err := send(*sendHost); err != nil {
util.Eprintf("%v\n", err)
}
} else {
util.Logf("%s", usage)
flag.Usage()
os.Exit(1)
}
}
// recv pipes data from the remote host to stdout.
func recv() error {
laddr := net.JoinHostPort("", port)
ln, err := net.Listen(network, laddr)
if err != nil {
return err
}
defer ln.Close()
util.Logf("listening on %s", laddr)
conn, err := ln.Accept()
if err != nil {
return err
}
defer conn.Close()
util.Logf("accepted connection from %s", conn.RemoteAddr())
n, err := io.Copy(os.Stdout, conn)
util.Logf("received %.2f", units.Bytes(n)*units.B)
return err
}
// send pipes data from stdin to the remote host.
func send(rhost string) error {
raddr := net.JoinHostPort(rhost, port)
util.Logf("connecting to %s...", raddr)
conn, err := net.Dial(network, raddr)
if err != nil {
return err
}
defer conn.Close()
util.Logf("connected to %s", raddr)
n, err := io.Copy(conn, os.Stdin)
util.Logf("sent %.2f", units.Bytes(n)*units.B)
return err
}
|