]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-exec/main.go
Forbid any later GNU GPL versions autousage
[nncp.git] / src / cypherpunks.ru / nncp / 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         "io/ioutil"
26         "log"
27         "os"
28
29         "cypherpunks.ru/nncp"
30 )
31
32 func usage() {
33         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
34         fmt.Fprintf(os.Stderr, "nncp-exec -- send execution command\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE HANDLE [ARG0 ARG1 ...]\nOptions:\n", os.Args[0])
36         flag.PrintDefaults()
37 }
38
39 func main() {
40         var (
41                 cfgPath      = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
42                 niceRaw      = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceExec), "Outbound packet niceness")
43                 replyNiceRaw = flag.String("replynice", nncp.NicenessFmt(nncp.DefaultNiceFile), "Possible reply packet niceness")
44                 minSize      = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
45                 viaOverride  = flag.String("via", "", "Override Via path to destination node")
46                 spoolPath    = flag.String("spool", "", "Override path to spool")
47                 logPath      = flag.String("log", "", "Override path to logfile")
48                 quiet        = flag.Bool("quiet", false, "Print only errors")
49                 debug        = flag.Bool("debug", false, "Print debug messages")
50                 version      = flag.Bool("version", false, "Print version information")
51                 warranty     = flag.Bool("warranty", false, "Print warranty information")
52         )
53         flag.Usage = usage
54         flag.Parse()
55         if *warranty {
56                 fmt.Println(nncp.Warranty)
57                 return
58         }
59         if *version {
60                 fmt.Println(nncp.VersionGet())
61                 return
62         }
63         if flag.NArg() < 2 {
64                 usage()
65                 os.Exit(1)
66         }
67         nice, err := nncp.NicenessParse(*niceRaw)
68         if err != nil {
69                 log.Fatalln(err)
70         }
71         replyNice, err := nncp.NicenessParse(*replyNiceRaw)
72         if err != nil {
73                 log.Fatalln(err)
74         }
75
76         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, *logPath, *quiet, *debug)
77         if err != nil {
78                 log.Fatalln("Error during initialization:", err)
79         }
80         if ctx.Self == nil {
81                 log.Fatalln("Config lacks private keys")
82         }
83
84         node, err := ctx.FindNode(flag.Arg(0))
85         if err != nil {
86                 log.Fatalln("Invalid NODE specified:", err)
87         }
88
89         nncp.ViaOverride(*viaOverride, ctx, node)
90
91         body, err := ioutil.ReadAll(bufio.NewReader(os.Stdin))
92         if err != nil {
93                 log.Fatalln("Can not read body from stdin:", err)
94         }
95
96         if err = ctx.TxExec(
97                 node,
98                 nice,
99                 replyNice,
100                 flag.Args()[1],
101                 flag.Args()[2:],
102                 body,
103                 int64(*minSize)*1024,
104         ); err != nil {
105                 log.Fatalln(err)
106         }
107 }