]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-call/main.go
a0875440114adfe04d779d6a29fdd15d6e0d7157
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-call / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2017 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 // Call NNCP TCP daemon
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "io/ioutil"
26         "log"
27         "os"
28         "strings"
29
30         "cypherpunks.ru/nncp"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintln(os.Stderr, "nncp-call -- call TCP daemon\n")
36         fmt.Fprintf(os.Stderr, "Usage: %s [options] NODE[:ADDR] [FORCEADDR]\n", os.Args[0])
37         fmt.Fprintln(os.Stderr, "Options:")
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", 255, "Minimal required niceness")
45                 rxOnly   = flag.Bool("rx", false, "Only receive packets")
46                 txOnly   = flag.Bool("tx", false, "Only transfer packets")
47                 quiet    = flag.Bool("quiet", false, "Print only errors")
48                 debug    = flag.Bool("debug", false, "Print debug messages")
49                 version  = flag.Bool("version", false, "Print version information")
50                 warranty = flag.Bool("warranty", false, "Print warranty information")
51
52                 onlineDeadline = flag.Int("onlinedeadline", 0, "Override onlinedeadline option")
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() < 1 {
65                 usage()
66                 os.Exit(1)
67         }
68         if *niceRaw < 1 || *niceRaw > 255 {
69                 log.Fatalln("-nice must be between 1 and 255")
70         }
71         nice := uint8(*niceRaw)
72         if *rxOnly && *txOnly {
73                 log.Fatalln("-rx and -tx can not be set simultaneously")
74         }
75
76         cfgRaw, err := ioutil.ReadFile(nncp.CfgPathFromEnv(cfgPath))
77         if err != nil {
78                 log.Fatalln("Can not read config:", err)
79         }
80         ctx, err := nncp.CfgParse(cfgRaw)
81         if err != nil {
82                 log.Fatalln("Can not parse config:", err)
83         }
84         ctx.Quiet = *quiet
85         ctx.Debug = *debug
86
87         splitted := strings.SplitN(flag.Arg(0), ":", 2)
88         node, err := ctx.FindNode(splitted[0])
89         if err != nil {
90                 log.Fatalln("Invalid NODE specified:", err)
91         }
92         if node.NoisePub == nil {
93                 log.Fatalln("Node does not have online communication capability")
94         }
95
96         if *onlineDeadline == 0 {
97                 onlineDeadline = &node.OnlineDeadline
98         }
99
100         var xxOnly nncp.TRxTx
101         if *rxOnly {
102                 xxOnly = nncp.TRx
103         } else if *txOnly {
104                 xxOnly = nncp.TTx
105         }
106
107         var addrs []string
108         if flag.NArg() == 2 {
109                 addrs = append(addrs, flag.Arg(1))
110         } else if len(splitted) == 2 {
111                 addr, known := ctx.Neigh[*node.Id].Addrs[splitted[1]]
112                 if !known {
113                         log.Fatalln("Unknown ADDR specified")
114                 }
115                 addrs = append(addrs, addr)
116         } else {
117                 for _, addr := range ctx.Neigh[*node.Id].Addrs {
118                         addrs = append(addrs, addr)
119                 }
120         }
121
122         if !ctx.CallNode(node, addrs, nice, &xxOnly, *onlineDeadline) {
123                 os.Exit(1)
124         }
125 }