]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-exec/main.go
Operations progress
[nncp.git] / src / cmd / nncp-exec / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2019 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // Send execution command via NNCP.
19 package main
20
21 import (
22         "bufio"
23         "flag"
24         "fmt"
25         "log"
26         "os"
27
28         "go.cypherpunks.ru/nncp/v5"
29 )
30
31 func usage() {
32         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
33         fmt.Fprintf(os.Stderr, "nncp-exec -- send execution command\n\n")
34         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE HANDLE [ARG0 ARG1 ...]\nOptions:\n", os.Args[0])
35         flag.PrintDefaults()
36 }
37
38 func main() {
39         var (
40                 cfgPath      = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
41                 niceRaw      = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceExec), "Outbound packet niceness")
42                 replyNiceRaw = flag.String("replynice", nncp.NicenessFmt(nncp.DefaultNiceFile), "Possible reply packet niceness")
43                 minSize      = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
44                 viaOverride  = flag.String("via", "", "Override Via path to destination node")
45                 spoolPath    = flag.String("spool", "", "Override path to spool")
46                 logPath      = flag.String("log", "", "Override path to logfile")
47                 quiet        = flag.Bool("quiet", false, "Print only errors")
48                 showPrgrs    = flag.Bool("progress", false, "Force progress showing")
49                 omitPrgrs    = flag.Bool("noprogress", false, "Omit progress showing")
50                 debug        = flag.Bool("debug", false, "Print debug messages")
51                 version      = flag.Bool("version", false, "Print version information")
52                 warranty     = flag.Bool("warranty", false, "Print warranty information")
53         )
54         flag.Usage = usage
55         flag.Parse()
56         if *warranty {
57                 fmt.Println(nncp.Warranty)
58                 return
59         }
60         if *version {
61                 fmt.Println(nncp.VersionGet())
62                 return
63         }
64         if flag.NArg() < 2 {
65                 usage()
66                 os.Exit(1)
67         }
68         nice, err := nncp.NicenessParse(*niceRaw)
69         if err != nil {
70                 log.Fatalln(err)
71         }
72         replyNice, err := nncp.NicenessParse(*replyNiceRaw)
73         if err != nil {
74                 log.Fatalln(err)
75         }
76
77         ctx, err := nncp.CtxFromCmdline(
78                 *cfgPath,
79                 *spoolPath,
80                 *logPath,
81                 *quiet,
82                 *showPrgrs,
83                 *omitPrgrs,
84                 *debug,
85         )
86         if err != nil {
87                 log.Fatalln("Error during initialization:", err)
88         }
89         if ctx.Self == nil {
90                 log.Fatalln("Config lacks private keys")
91         }
92
93         node, err := ctx.FindNode(flag.Arg(0))
94         if err != nil {
95                 log.Fatalln("Invalid NODE specified:", err)
96         }
97
98         nncp.ViaOverride(*viaOverride, ctx, node)
99         ctx.Umask()
100
101         if err = ctx.TxExec(
102                 node,
103                 nice,
104                 replyNice,
105                 flag.Args()[1],
106                 flag.Args()[2:],
107                 bufio.NewReader(os.Stdin),
108                 int64(*minSize)*1024,
109         ); err != nil {
110                 log.Fatalln(err)
111         }
112 }