]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-exec/main.go
8e7aec62682a1e3002d2557145ee33144273b044
[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-2018 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, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 // Send execution command via NNCP
20 package main
21
22 import (
23         "bufio"
24         "flag"
25         "fmt"
26         "io/ioutil"
27         "log"
28         "os"
29         "strings"
30
31         "cypherpunks.ru/nncp"
32 )
33
34 func usage() {
35         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
36         fmt.Fprintf(os.Stderr, "nncp-exec -- send execution command\n\n")
37         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE HANDLE [ARG0 ARG1 ...]\nOptions:\n", os.Args[0])
38         flag.PrintDefaults()
39 }
40
41 func main() {
42         var (
43                 cfgPath      = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
44                 niceRaw      = flag.Int("nice", nncp.DefaultNiceExec, "Outbound packet niceness")
45                 replyNiceRaw = flag.Int("replynice", nncp.DefaultNiceFile, "Possible reply packet niceness")
46                 minSize      = flag.Uint64("minsize", 0, "Minimal required resulting packet size, in KiB")
47                 viaOverride  = flag.String("via", "", "Override Via path to destination node")
48                 spoolPath    = flag.String("spool", "", "Override path to spool")
49                 logPath      = flag.String("log", "", "Override path to logfile")
50                 quiet        = flag.Bool("quiet", false, "Print only errors")
51                 debug        = flag.Bool("debug", false, "Print debug messages")
52                 version      = flag.Bool("version", false, "Print version information")
53                 warranty     = flag.Bool("warranty", false, "Print warranty information")
54         )
55         flag.Usage = usage
56         flag.Parse()
57         if *warranty {
58                 fmt.Println(nncp.Warranty)
59                 return
60         }
61         if *version {
62                 fmt.Println(nncp.VersionGet())
63                 return
64         }
65         if flag.NArg() < 2 {
66                 usage()
67                 os.Exit(1)
68         }
69         if *niceRaw < 1 || *niceRaw > 255 {
70                 log.Fatalln("-nice must be between 1 and 255")
71         }
72         nice := uint8(*niceRaw)
73         if *replyNiceRaw < 1 || *replyNiceRaw > 255 {
74                 log.Fatalln("-replynice must be between 1 and 255")
75         }
76         replyNice := uint8(*replyNiceRaw)
77
78         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, *logPath, *quiet, *debug)
79         if err != nil {
80                 log.Fatalln("Error during initialization:", err)
81         }
82         if ctx.Self == nil {
83                 log.Fatalln("Config lacks private keys")
84         }
85
86         node, err := ctx.FindNode(flag.Arg(0))
87         if err != nil {
88                 log.Fatalln("Invalid NODE specified:", err)
89         }
90
91         if *viaOverride != "" {
92                 vias := make([]*nncp.NodeId, 0, strings.Count(*viaOverride, ",")+1)
93                 for _, via := range strings.Split(*viaOverride, ",") {
94                         foundNodeId, err := ctx.FindNode(via)
95                         if err != nil {
96                                 log.Fatalln("Invalid Via node specified:", err)
97                         }
98                         vias = append(vias, foundNodeId.Id)
99                 }
100                 node.Via = vias
101         }
102
103         body, err := ioutil.ReadAll(bufio.NewReader(os.Stdin))
104         if err != nil {
105                 log.Fatalln("Can not read body from stdin:", err)
106         }
107
108         if err = ctx.TxExec(
109                 node,
110                 nice,
111                 replyNice,
112                 flag.Args()[1],
113                 flag.Args()[2:],
114                 body,
115                 int64(*minSize)*1024,
116         ); err != nil {
117                 log.Fatalln(err)
118         }
119 }