2018-04-07 20:04:10 +00:00
|
|
|
// hkexsh client
|
|
|
|
//
|
|
|
|
// Copyright (c) 2017-2018 Russell Magee
|
|
|
|
// Licensed under the terms of the MIT license (see LICENSE.mit in this
|
|
|
|
// distribution)
|
|
|
|
//
|
|
|
|
// golang implementation by Russ Magee (rmagee_at_gmail.com)
|
2018-01-06 15:30:56 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-01-12 07:01:39 +00:00
|
|
|
"flag"
|
2018-01-06 15:30:56 +00:00
|
|
|
"fmt"
|
2018-01-13 06:47:57 +00:00
|
|
|
"io"
|
2018-01-18 05:27:00 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
2018-01-13 06:47:57 +00:00
|
|
|
"os"
|
2018-04-29 02:28:37 +00:00
|
|
|
"os/exec"
|
2018-01-21 23:46:40 +00:00
|
|
|
"os/user"
|
2018-05-05 06:25:26 +00:00
|
|
|
"runtime"
|
2018-01-21 23:46:40 +00:00
|
|
|
"strings"
|
2018-01-18 04:36:53 +00:00
|
|
|
"sync"
|
2018-08-25 01:50:45 +00:00
|
|
|
"syscall"
|
2018-01-06 20:26:08 +00:00
|
|
|
|
2018-04-28 23:05:33 +00:00
|
|
|
hkexsh "blitter.com/go/hkexsh"
|
2018-07-05 05:06:07 +00:00
|
|
|
"blitter.com/go/hkexsh/hkexnet"
|
2018-01-19 05:17:57 +00:00
|
|
|
isatty "github.com/mattn/go-isatty"
|
2018-01-06 15:30:56 +00:00
|
|
|
)
|
|
|
|
|
2018-01-21 04:37:27 +00:00
|
|
|
type cmdSpec struct {
|
|
|
|
op []byte
|
|
|
|
who []byte
|
|
|
|
cmd []byte
|
|
|
|
authCookie []byte
|
2018-08-06 04:43:21 +00:00
|
|
|
status int // UNIX exit status is uint8, but os.Exit() wants int
|
2018-01-21 04:37:27 +00:00
|
|
|
}
|
|
|
|
|
2018-05-26 20:43:09 +00:00
|
|
|
var (
|
2018-08-26 06:38:58 +00:00
|
|
|
wg sync.WaitGroup
|
2018-05-26 20:43:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Get terminal size using 'stty' command
|
|
|
|
func GetSize() (cols, rows int, err error) {
|
2018-04-29 02:28:37 +00:00
|
|
|
cmd := exec.Command("stty", "size")
|
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|
out, err := cmd.Output()
|
|
|
|
|
|
|
|
if err != nil {
|
2018-05-26 20:43:09 +00:00
|
|
|
log.Println(err)
|
2018-06-30 02:23:11 +00:00
|
|
|
cols, rows = 80, 24 //failsafe
|
2018-05-26 20:43:09 +00:00
|
|
|
} else {
|
|
|
|
fmt.Sscanf(string(out), "%d %d\n", &rows, &cols)
|
2018-04-29 02:28:37 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-26 06:38:58 +00:00
|
|
|
func parseNonSwitchArgs(a []string) (user, host, path string, isDest bool, otherArgs []string) {
|
2018-08-07 05:29:51 +00:00
|
|
|
// Whether fancyArg is src or dst file depends on flag.Args() index;
|
|
|
|
// fancyArg as last flag.Args() element denotes dstFile
|
|
|
|
// fancyArg as not-last flag.Args() element denotes srcFile
|
2018-08-26 06:38:58 +00:00
|
|
|
var fancyUser, fancyHost, fancyPath string
|
2018-07-29 19:47:44 +00:00
|
|
|
for i, arg := range a {
|
2018-07-29 07:48:42 +00:00
|
|
|
if strings.Contains(arg, ":") || strings.Contains(arg, "@") {
|
|
|
|
fancyArg := strings.Split(flag.Arg(i), "@")
|
2018-08-26 06:38:58 +00:00
|
|
|
var fancyHostPath []string
|
2018-07-29 07:48:42 +00:00
|
|
|
if len(fancyArg) < 2 {
|
|
|
|
//TODO: no user specified, use current
|
|
|
|
fancyUser = "[default:getUser]"
|
2018-08-26 06:38:58 +00:00
|
|
|
fancyHostPath = strings.Split(fancyArg[0], ":")
|
2018-07-29 07:48:42 +00:00
|
|
|
} else {
|
|
|
|
// user@....
|
|
|
|
fancyUser = fancyArg[0]
|
2018-08-26 06:38:58 +00:00
|
|
|
fancyHostPath = strings.Split(fancyArg[1], ":")
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-26 06:38:58 +00:00
|
|
|
// [...@]host[:path]
|
|
|
|
if len(fancyHostPath) > 1 {
|
|
|
|
fancyPath = fancyHostPath[1]
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
2018-08-26 06:38:58 +00:00
|
|
|
fancyHost = fancyHostPath[0]
|
2018-07-29 07:48:42 +00:00
|
|
|
|
2018-08-06 04:43:21 +00:00
|
|
|
//if fancyPath == "" {
|
|
|
|
// fancyPath = "."
|
|
|
|
//}
|
2018-07-29 07:48:42 +00:00
|
|
|
|
2018-07-29 19:47:44 +00:00
|
|
|
if i == len(a)-1 {
|
|
|
|
isDest = true
|
2018-08-06 04:43:21 +00:00
|
|
|
fmt.Println("remote path isDest")
|
2018-07-29 19:47:44 +00:00
|
|
|
}
|
2018-08-26 06:38:58 +00:00
|
|
|
fmt.Println("fancyArgs: user:", fancyUser, "host:", fancyHost, "path:", fancyPath)
|
2018-07-29 19:47:44 +00:00
|
|
|
} else {
|
|
|
|
otherArgs = append(otherArgs, a[i])
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-26 06:38:58 +00:00
|
|
|
return fancyUser, fancyHost, fancyPath, isDest, otherArgs
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-07 05:29:51 +00:00
|
|
|
// doCopyMode begins a secure hkexsh local<->remote file copy operation.
|
2018-08-26 06:51:11 +00:00
|
|
|
func doCopyMode(conn *hkexnet.Conn, remoteDest bool, files string, rec *cmdSpec) (err error, exitStatus int) {
|
2018-08-07 05:29:51 +00:00
|
|
|
if remoteDest {
|
|
|
|
fmt.Println("local files:", files, "remote filepath:", string(rec.cmd))
|
2018-08-25 01:50:45 +00:00
|
|
|
|
|
|
|
var c *exec.Cmd
|
|
|
|
|
|
|
|
//os.Clearenv()
|
|
|
|
//os.Setenv("HOME", u.HomeDir)
|
|
|
|
//os.Setenv("TERM", "vt102") // TODO: server or client option?
|
|
|
|
|
|
|
|
cmdName := "/bin/tar"
|
2018-08-26 06:38:58 +00:00
|
|
|
cmdArgs := []string{"-c", "-f", "/dev/stdout"}
|
|
|
|
files = strings.TrimSpace(files)
|
|
|
|
for _, v := range strings.Split(files, " ") {
|
|
|
|
cmdArgs = append(cmdArgs, v)
|
|
|
|
}
|
|
|
|
|
2018-08-25 01:50:45 +00:00
|
|
|
fmt.Printf("[%v %v]\n", cmdName, cmdArgs)
|
|
|
|
// NOTE the lack of quotes around --xform option's sed expression.
|
|
|
|
// When args are passed in exec() format, no quoting is required
|
|
|
|
// (as this isn't input from a shell) (right? -rlm 20180823)
|
|
|
|
//cmdArgs := []string{"-xvz", "-C", files, `--xform=s#.*/\(.*\)#\1#`}
|
|
|
|
c = exec.Command(cmdName, cmdArgs...)
|
2018-08-25 06:22:07 +00:00
|
|
|
c.Dir, _ = os.Getwd()
|
|
|
|
fmt.Println("[wd:", c.Dir, "]")
|
2018-08-25 01:50:45 +00:00
|
|
|
c.Stdout = conn
|
2018-08-26 06:38:58 +00:00
|
|
|
// Stderr sinkholing is important. Any extraneous output to tarpipe
|
|
|
|
// messes up remote side as it's expecting pure tar data.
|
|
|
|
// (For example, if user specifies abs paths, tar outputs
|
|
|
|
// "Removing leading '/' from path names")
|
|
|
|
c.Stderr = nil
|
2018-08-25 06:22:07 +00:00
|
|
|
|
2018-08-25 01:50:45 +00:00
|
|
|
// Start the command (no pty)
|
|
|
|
err = c.Start() // returns immediately
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
//log.Fatal(err)
|
|
|
|
} else {
|
|
|
|
if err = c.Wait(); err != nil {
|
|
|
|
if exiterr, ok := err.(*exec.ExitError); ok {
|
|
|
|
// The program has exited with an exit code != 0
|
|
|
|
|
|
|
|
// This works on both Unix and Windows. Although package
|
|
|
|
// syscall is generally platform dependent, WaitStatus is
|
|
|
|
// defined for both Unix and Windows and in both cases has
|
|
|
|
// an ExitStatus() method with the same signature.
|
|
|
|
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
|
|
|
|
exitStatus = status.ExitStatus()
|
|
|
|
log.Printf("Exit Status: %d", exitStatus)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fmt.Println("*** client->server cp finished ***")
|
|
|
|
}
|
2018-08-07 05:29:51 +00:00
|
|
|
} else {
|
|
|
|
fmt.Println("remote filepath:", string(rec.cmd), "local files:", files)
|
2018-08-25 01:50:45 +00:00
|
|
|
var c *exec.Cmd
|
|
|
|
|
|
|
|
//os.Clearenv()
|
|
|
|
//os.Setenv("HOME", u.HomeDir)
|
|
|
|
//os.Setenv("TERM", "vt102") // TODO: server or client option?
|
|
|
|
|
|
|
|
cmdName := "/bin/tar"
|
|
|
|
destPath := files
|
|
|
|
|
2018-08-25 06:22:07 +00:00
|
|
|
cmdArgs := []string{"-x", "-C", destPath}
|
2018-08-25 01:50:45 +00:00
|
|
|
fmt.Printf("[%v %v]\n", cmdName, cmdArgs)
|
|
|
|
// NOTE the lack of quotes around --xform option's sed expression.
|
|
|
|
// When args are passed in exec() format, no quoting is required
|
|
|
|
// (as this isn't input from a shell) (right? -rlm 20180823)
|
|
|
|
//cmdArgs := []string{"-xvz", "-C", destPath, `--xform=s#.*/\(.*\)#\1#`}
|
|
|
|
c = exec.Command(cmdName, cmdArgs...)
|
|
|
|
c.Stdin = conn
|
|
|
|
c.Stdout = os.Stdout
|
|
|
|
c.Stderr = os.Stderr
|
2018-08-25 06:22:07 +00:00
|
|
|
|
2018-08-25 01:50:45 +00:00
|
|
|
// Start the command (no pty)
|
|
|
|
err = c.Start() // returns immediately
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
//log.Fatal(err)
|
|
|
|
} else {
|
|
|
|
if err = c.Wait(); err != nil {
|
|
|
|
if exiterr, ok := err.(*exec.ExitError); ok {
|
|
|
|
// The program has exited with an exit code != 0
|
|
|
|
|
|
|
|
// This works on both Unix and Windows. Although package
|
|
|
|
// syscall is generally platform dependent, WaitStatus is
|
|
|
|
// defined for both Unix and Windows and in both cases has
|
|
|
|
// an ExitStatus() method with the same signature.
|
|
|
|
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
|
|
|
|
exitStatus = status.ExitStatus()
|
|
|
|
log.Printf("Exit Status: %d", exitStatus)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fmt.Println("*** server->client cp finished ***")
|
|
|
|
}
|
2018-08-07 05:29:51 +00:00
|
|
|
}
|
2018-08-25 01:50:45 +00:00
|
|
|
return
|
2018-08-07 05:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// doShellMode begins an hkexsh shell session (one-shot command or interactive).
|
|
|
|
func doShellMode(isInteractive bool, conn *hkexnet.Conn, oldState *hkexsh.State, rec *cmdSpec) {
|
|
|
|
//client reader (from server) goroutine
|
|
|
|
//Read remote end's stdout
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
// By deferring a call to wg.Done(),
|
|
|
|
// each goroutine guarantees that it marks
|
|
|
|
// its direction's stream as finished.
|
|
|
|
|
|
|
|
// io.Copy() expects EOF so normally this will
|
|
|
|
// exit with inerr == nil
|
|
|
|
_, inerr := io.Copy(os.Stdout, conn)
|
|
|
|
if inerr != nil {
|
|
|
|
fmt.Println(inerr)
|
|
|
|
_ = hkexsh.Restore(int(os.Stdin.Fd()), oldState) // Best effort.
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
rec.status = int(conn.GetStatus())
|
|
|
|
log.Println("rec.status:", rec.status)
|
|
|
|
|
|
|
|
if isInteractive {
|
|
|
|
log.Println("[* Got EOF *]")
|
|
|
|
_ = hkexsh.Restore(int(os.Stdin.Fd()), oldState) // Best effort.
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Only look for data from stdin to send to remote end
|
|
|
|
// for interactive sessions.
|
|
|
|
if isInteractive {
|
|
|
|
handleTermResizes(conn)
|
|
|
|
|
|
|
|
// client writer (to server) goroutine
|
|
|
|
// Write local stdin to remote end
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
//!defer wg.Done()
|
|
|
|
// Copy() expects EOF so this will
|
|
|
|
// exit with outerr == nil
|
|
|
|
//!_, outerr := io.Copy(conn, os.Stdin)
|
|
|
|
_, outerr := func(conn *hkexnet.Conn, r io.Reader) (w int64, e error) {
|
|
|
|
w, e = io.Copy(conn, r)
|
|
|
|
return w, e
|
|
|
|
}(conn, os.Stdin)
|
|
|
|
|
|
|
|
if outerr != nil {
|
|
|
|
log.Println(outerr)
|
|
|
|
fmt.Println(outerr)
|
|
|
|
_ = hkexsh.Restore(int(os.Stdin.Fd()), oldState) // Best effort.
|
|
|
|
os.Exit(255)
|
|
|
|
}
|
|
|
|
log.Println("[Sent EOF]")
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait until both stdin and stdout goroutines finish before returning
|
|
|
|
// (ensure client gets all data from server before closing)
|
|
|
|
wg.Wait()
|
|
|
|
}
|
|
|
|
|
2018-08-26 07:12:42 +00:00
|
|
|
func UsageShell() {
|
|
|
|
fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0])
|
|
|
|
fmt.Fprintf(os.Stderr, "%s [opts] [user]@server\n", os.Args[0])
|
|
|
|
flag.PrintDefaults()
|
|
|
|
}
|
|
|
|
|
|
|
|
func UsageCp() {
|
|
|
|
fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0])
|
|
|
|
fmt.Fprintf(os.Stderr, "%s [opts] srcFileOrDir [...] [user]@server[:dstpath]\n", os.Args[0])
|
|
|
|
fmt.Fprintf(os.Stderr, "%s [opts] [user]@server[:srcFileOrDir] dstPath\n", os.Args[0])
|
|
|
|
flag.PrintDefaults()
|
|
|
|
}
|
|
|
|
|
2018-08-07 05:29:51 +00:00
|
|
|
// hkexsh - a client for secure shell and file copy operations.
|
2018-01-13 18:01:27 +00:00
|
|
|
//
|
|
|
|
// While conforming to the basic net.Conn interface HKex.Conn has extra
|
|
|
|
// capabilities designed to allow apps to define connection options,
|
|
|
|
// encryption/hmac settings and operations across the encrypted channel.
|
|
|
|
//
|
|
|
|
// Initial setup is the same as using plain net.Dial(), but one may
|
|
|
|
// specify extra extension tags (strings) to set the cipher and hmac
|
|
|
|
// setting desired; as well as the intended operation mode for the
|
|
|
|
// connection (app-specific, passed through to the server to use or
|
|
|
|
// ignore at its discretion).
|
2018-01-06 15:30:56 +00:00
|
|
|
func main() {
|
2018-05-13 01:41:39 +00:00
|
|
|
version := "0.1pre (NO WARRANTY)"
|
|
|
|
var vopt bool
|
2018-01-21 23:46:40 +00:00
|
|
|
var dbg bool
|
2018-08-06 04:43:21 +00:00
|
|
|
var shellMode bool // if true act as shell, else file copier
|
2018-01-12 07:01:39 +00:00
|
|
|
var cAlg string
|
2018-01-13 06:13:01 +00:00
|
|
|
var hAlg string
|
2018-01-13 06:24:40 +00:00
|
|
|
var server string
|
2018-08-26 06:38:58 +00:00
|
|
|
var port uint
|
2018-01-21 23:46:40 +00:00
|
|
|
var cmdStr string
|
2018-07-19 05:32:49 +00:00
|
|
|
|
2018-07-29 20:22:35 +00:00
|
|
|
var copySrc []byte
|
2018-07-19 05:32:49 +00:00
|
|
|
var copyDst string
|
|
|
|
|
2018-01-22 06:02:08 +00:00
|
|
|
var authCookie string
|
2018-05-26 20:43:09 +00:00
|
|
|
var chaffEnabled bool
|
2018-05-07 00:41:09 +00:00
|
|
|
var chaffFreqMin uint
|
|
|
|
var chaffFreqMax uint
|
|
|
|
var chaffBytesMax uint
|
2018-05-07 01:20:12 +00:00
|
|
|
|
2018-07-19 05:32:49 +00:00
|
|
|
var op []byte
|
2018-01-19 05:17:57 +00:00
|
|
|
isInteractive := false
|
2018-01-13 06:47:57 +00:00
|
|
|
|
2018-05-13 01:41:39 +00:00
|
|
|
flag.BoolVar(&vopt, "v", false, "show version")
|
2018-07-19 05:32:49 +00:00
|
|
|
flag.BoolVar(&dbg, "d", false, "debug logging")
|
2018-08-26 06:51:11 +00:00
|
|
|
flag.StringVar(&cAlg, "c", "C_AES_256", "`cipher` [\"C_AES_256\" | \"C_TWOFISH_128\" | \"C_BLOWFISH_64\"]")
|
|
|
|
flag.StringVar(&hAlg, "m", "H_SHA256", "`hmac` [\"H_SHA256\"]")
|
|
|
|
flag.UintVar(&port, "p", 2000, "`port`")
|
2018-05-05 06:25:26 +00:00
|
|
|
flag.StringVar(&authCookie, "a", "", "auth cookie")
|
2018-07-19 05:32:49 +00:00
|
|
|
flag.BoolVar(&chaffEnabled, "e", true, "enabled chaff pkts (default true)")
|
2018-08-26 06:51:11 +00:00
|
|
|
flag.UintVar(&chaffFreqMin, "f", 100, "chaff pkt `freq` min (msecs)")
|
|
|
|
flag.UintVar(&chaffFreqMax, "F", 5000, "chaff pkt `freq` max (msecs)")
|
|
|
|
flag.UintVar(&chaffBytesMax, "B", 64, "chaff pkt `size` max (bytes)")
|
2018-07-29 07:48:42 +00:00
|
|
|
|
2018-07-19 05:32:49 +00:00
|
|
|
// Find out what program we are (shell or copier)
|
|
|
|
myPath := strings.Split(os.Args[0], string(os.PathSeparator))
|
2018-07-29 07:48:42 +00:00
|
|
|
if myPath[len(myPath)-1] != "hkexcp" && myPath[len(myPath)-1] != "hkexcp.exe" {
|
2018-07-19 05:32:49 +00:00
|
|
|
// hkexsh accepts a command (-x) but not
|
|
|
|
// a srcpath (-r) or dstpath (-t)
|
2018-08-26 06:51:11 +00:00
|
|
|
flag.StringVar(&cmdStr, "x", "", "`command` to run (if not specified run interactive shell)")
|
2018-08-06 04:43:21 +00:00
|
|
|
shellMode = true
|
2018-08-26 07:12:42 +00:00
|
|
|
flag.Usage = UsageShell
|
2018-08-07 05:29:51 +00:00
|
|
|
} else {
|
2018-08-26 07:12:42 +00:00
|
|
|
flag.Usage = UsageCp
|
2018-08-07 05:29:51 +00:00
|
|
|
}
|
2018-07-29 07:48:42 +00:00
|
|
|
flag.Parse()
|
|
|
|
|
2018-08-26 06:38:58 +00:00
|
|
|
remoteUser, tmpHost, tmpPath, pathIsDest, otherArgs :=
|
|
|
|
parseNonSwitchArgs(flag.Args())
|
2018-07-29 19:47:44 +00:00
|
|
|
fmt.Println("otherArgs:", otherArgs)
|
2018-08-26 06:38:58 +00:00
|
|
|
|
|
|
|
// Set defaults if user doesn't specify user, path or port
|
|
|
|
var uname string
|
|
|
|
if remoteUser == "" {
|
|
|
|
u, _ := user.Current()
|
|
|
|
uname = u.Username
|
|
|
|
} else {
|
|
|
|
uname = remoteUser
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
2018-08-26 06:38:58 +00:00
|
|
|
|
2018-08-06 04:43:21 +00:00
|
|
|
if tmpHost != "" {
|
2018-08-26 06:38:58 +00:00
|
|
|
server = tmpHost + ":" + fmt.Sprintf("%d", port)
|
|
|
|
}
|
|
|
|
if tmpPath == "" {
|
|
|
|
tmpPath = "."
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
2018-08-07 05:29:51 +00:00
|
|
|
|
|
|
|
var fileArgs string
|
2018-08-26 06:38:58 +00:00
|
|
|
if !shellMode /*&& tmpPath != ""*/ {
|
2018-07-29 20:22:35 +00:00
|
|
|
// -if pathIsSrc && len(otherArgs) > 1 ERROR
|
|
|
|
// -else flatten otherArgs into space-delim list => copySrc
|
2018-07-29 19:47:44 +00:00
|
|
|
if pathIsDest {
|
2018-08-07 05:29:51 +00:00
|
|
|
if len(otherArgs) == 0 {
|
2018-08-25 01:50:45 +00:00
|
|
|
log.Fatal("ERROR: Must specify at least one dest path for copy")
|
2018-08-07 05:29:51 +00:00
|
|
|
} else {
|
|
|
|
for _, v := range otherArgs {
|
|
|
|
copySrc = append(copySrc, ' ')
|
|
|
|
copySrc = append(copySrc, v...)
|
|
|
|
}
|
|
|
|
copyDst = tmpPath
|
|
|
|
fileArgs = string(copySrc)
|
2018-07-29 20:22:35 +00:00
|
|
|
}
|
2018-08-23 18:03:19 +00:00
|
|
|
} else {
|
2018-08-07 05:29:51 +00:00
|
|
|
if len(otherArgs) == 0 {
|
2018-08-25 01:50:45 +00:00
|
|
|
log.Fatal("ERROR: Must specify src path for copy")
|
2018-08-07 05:29:51 +00:00
|
|
|
} else if len(otherArgs) == 1 {
|
|
|
|
copyDst = otherArgs[0]
|
|
|
|
if strings.Contains(copyDst, "*") || strings.Contains(copyDst, "?") {
|
|
|
|
log.Fatal("ERROR: wildcards not allowed in dest path for copy")
|
|
|
|
}
|
|
|
|
} else {
|
2018-07-29 20:22:35 +00:00
|
|
|
log.Fatal("ERROR: cannot specify more than one dest path for copy")
|
|
|
|
}
|
2018-08-06 04:43:21 +00:00
|
|
|
copySrc = []byte(tmpPath)
|
2018-08-07 05:29:51 +00:00
|
|
|
fileArgs = copyDst
|
2018-07-29 19:47:44 +00:00
|
|
|
}
|
2018-07-29 07:48:42 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 04:43:21 +00:00
|
|
|
// Do some more option consistency checks
|
2018-07-19 05:32:49 +00:00
|
|
|
|
2018-08-06 04:43:21 +00:00
|
|
|
//fmt.Println("server finally is:", server)
|
2018-07-29 07:48:42 +00:00
|
|
|
if flag.NFlag() == 0 && server == "" {
|
2018-07-19 05:32:49 +00:00
|
|
|
flag.Usage()
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
2018-01-12 07:01:39 +00:00
|
|
|
|
2018-05-13 01:41:39 +00:00
|
|
|
if vopt {
|
|
|
|
fmt.Printf("version v%s\n", version)
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2018-07-19 05:32:49 +00:00
|
|
|
if len(cmdStr) != 0 && (len(copySrc) != 0 || len(copyDst) != 0) {
|
2018-07-29 20:22:35 +00:00
|
|
|
log.Fatal("incompatible options -- either cmd (-x) or copy ops but not both")
|
2018-07-19 05:32:49 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 04:43:21 +00:00
|
|
|
//-------------------------------------------------------------------
|
|
|
|
// Here we have parsed all options and can now carry out
|
|
|
|
// either the shell session or copy operation.
|
|
|
|
_ = shellMode
|
|
|
|
|
2018-01-21 23:46:40 +00:00
|
|
|
if dbg {
|
|
|
|
log.SetOutput(os.Stdout)
|
|
|
|
} else {
|
|
|
|
log.SetOutput(ioutil.Discard)
|
|
|
|
}
|
2018-01-18 05:27:00 +00:00
|
|
|
|
2018-08-07 05:29:51 +00:00
|
|
|
if shellMode {
|
|
|
|
// We must make the decision about interactivity before Dial()
|
|
|
|
// as it affects chaffing behaviour. 20180805
|
|
|
|
if len(cmdStr) == 0 {
|
|
|
|
op = []byte{'s'}
|
|
|
|
isInteractive = true
|
|
|
|
} else {
|
|
|
|
op = []byte{'c'}
|
|
|
|
// non-interactive cmds may complete quickly, so chaff earlier/faster
|
|
|
|
// to help ensure there's some cover to the brief traffic.
|
|
|
|
// (ignoring cmdline values)
|
|
|
|
chaffFreqMin = 2
|
|
|
|
chaffFreqMax = 10
|
|
|
|
}
|
2018-08-06 04:43:21 +00:00
|
|
|
} else {
|
2018-08-07 05:29:51 +00:00
|
|
|
// as copy mode is also non-interactive, set up chaffing
|
|
|
|
// just like the 'c' mode above
|
2018-08-06 04:43:21 +00:00
|
|
|
chaffFreqMin = 2
|
|
|
|
chaffFreqMax = 10
|
2018-08-07 05:29:51 +00:00
|
|
|
|
|
|
|
if pathIsDest {
|
|
|
|
// client->server file copy
|
|
|
|
// src file list is in copySrc
|
|
|
|
op = []byte{'D'}
|
|
|
|
fmt.Println("client->server copy:", string(copySrc), "->", copyDst)
|
|
|
|
cmdStr = copyDst
|
|
|
|
} else {
|
|
|
|
// server->client file copy
|
|
|
|
// remote src file(s) in copyDsr
|
|
|
|
op = []byte{'S'}
|
|
|
|
fmt.Println("server->client copy:", string(copySrc), "->", copyDst)
|
|
|
|
cmdStr = string(copySrc)
|
|
|
|
}
|
2018-08-06 04:43:21 +00:00
|
|
|
}
|
|
|
|
|
2018-07-05 05:06:07 +00:00
|
|
|
conn, err := hkexnet.Dial("tcp", server, cAlg, hAlg)
|
2018-01-06 15:30:56 +00:00
|
|
|
if err != nil {
|
2018-01-08 06:05:14 +00:00
|
|
|
fmt.Println("Err!")
|
2018-01-13 06:47:57 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
2018-01-18 04:36:53 +00:00
|
|
|
defer conn.Close()
|
2018-01-23 21:53:05 +00:00
|
|
|
// From this point on, conn is a secure encrypted channel
|
2018-01-18 04:36:53 +00:00
|
|
|
|
2018-01-19 05:17:57 +00:00
|
|
|
// Set stdin in raw mode if it's an interactive session
|
2018-01-21 23:46:40 +00:00
|
|
|
// TODO: send flag to server side indicating this
|
|
|
|
// affects shell command used
|
2018-04-15 19:58:24 +00:00
|
|
|
var oldState *hkexsh.State
|
2018-08-06 04:43:21 +00:00
|
|
|
if shellMode {
|
|
|
|
if isatty.IsTerminal(os.Stdin.Fd()) {
|
|
|
|
oldState, err = hkexsh.MakeRaw(int(os.Stdin.Fd()))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
defer func() { _ = hkexsh.Restore(int(os.Stdin.Fd()), oldState) }() // Best effort.
|
|
|
|
} else {
|
|
|
|
log.Println("NOT A TTY")
|
2018-01-19 05:17:57 +00:00
|
|
|
}
|
2018-01-19 02:57:37 +00:00
|
|
|
}
|
|
|
|
|
2018-01-22 06:02:08 +00:00
|
|
|
if len(authCookie) == 0 {
|
|
|
|
fmt.Printf("Gimme cookie:")
|
2018-04-04 22:43:27 +00:00
|
|
|
ab, err := hkexsh.ReadPassword(int(os.Stdin.Fd()))
|
2018-01-23 21:53:05 +00:00
|
|
|
fmt.Printf("\r\n")
|
2018-01-22 06:02:08 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
authCookie = string(ab)
|
2018-05-05 06:25:26 +00:00
|
|
|
// Security scrub
|
|
|
|
ab = nil
|
|
|
|
runtime.GC()
|
2018-01-22 06:02:08 +00:00
|
|
|
}
|
|
|
|
|
2018-01-21 23:46:40 +00:00
|
|
|
rec := &cmdSpec{
|
|
|
|
op: op,
|
|
|
|
who: []byte(uname),
|
|
|
|
cmd: []byte(cmdStr),
|
2018-01-22 06:02:08 +00:00
|
|
|
authCookie: []byte(authCookie),
|
2018-01-21 04:37:27 +00:00
|
|
|
status: 0}
|
|
|
|
|
2018-04-29 02:28:37 +00:00
|
|
|
_, err = fmt.Fprintf(conn, "%d %d %d %d\n",
|
|
|
|
len(rec.op), len(rec.who), len(rec.cmd), len(rec.authCookie))
|
|
|
|
|
2018-01-21 04:37:27 +00:00
|
|
|
_, err = conn.Write(rec.op)
|
|
|
|
_, err = conn.Write(rec.who)
|
|
|
|
_, err = conn.Write(rec.cmd)
|
|
|
|
_, err = conn.Write(rec.authCookie)
|
2018-03-26 02:58:04 +00:00
|
|
|
|
2018-05-07 01:20:12 +00:00
|
|
|
// Set up chaffing to server
|
2018-06-27 03:14:43 +00:00
|
|
|
conn.SetupChaff(chaffFreqMin, chaffFreqMax, chaffBytesMax) // enable client->server chaffing
|
2018-05-26 20:43:09 +00:00
|
|
|
if chaffEnabled {
|
|
|
|
conn.EnableChaff()
|
2018-08-06 07:06:09 +00:00
|
|
|
defer conn.DisableChaff()
|
|
|
|
defer conn.ShutdownChaff()
|
2018-05-26 20:43:09 +00:00
|
|
|
}
|
2018-06-30 02:23:11 +00:00
|
|
|
|
2018-08-07 05:29:51 +00:00
|
|
|
if shellMode {
|
|
|
|
doShellMode(isInteractive, conn, oldState, rec)
|
|
|
|
} else {
|
2018-08-26 06:51:11 +00:00
|
|
|
doCopyMode(conn, pathIsDest, fileArgs, rec)
|
2018-01-21 23:46:40 +00:00
|
|
|
}
|
2018-01-18 04:36:53 +00:00
|
|
|
|
2018-08-07 05:29:51 +00:00
|
|
|
if oldState != nil {
|
|
|
|
_ = hkexsh.Restore(int(os.Stdin.Fd()), oldState) // Best effort.
|
|
|
|
}
|
2018-08-06 07:06:09 +00:00
|
|
|
|
2018-06-30 02:23:11 +00:00
|
|
|
os.Exit(rec.status)
|
2018-01-06 15:30:56 +00:00
|
|
|
}
|