]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-trns/main.go
ed96f7321e275128515f5e50abb2d1af337bb8b9
[nncp.git] / src / cmd / nncp-trns / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2021 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 // Wrap existing encrypted packet to transition ones.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "io"
25         "log"
26         "os"
27         "path/filepath"
28         "strings"
29
30         "go.cypherpunks.ru/nncp/v8"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintf(os.Stderr, "nncp-trns -- transit existing encrypted packet\n\n")
36         fmt.Fprintf(os.Stderr, "Usage: %s [options] -via NODEx[,...] NODE:PKT\n", os.Args[0])
37         fmt.Fprintf(os.Stderr, "       (to transit SPOOL/NODE/tx/PKT)\n")
38         fmt.Fprintf(os.Stderr, "       %s [options] -via NODEx[,...] /path/to/PKT\nOptions:\n",
39                 os.Args[0])
40         flag.PrintDefaults()
41 }
42
43 func main() {
44         var (
45                 cfgPath     = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
46                 niceRaw     = flag.String("nice", nncp.NicenessFmt(nncp.DefaultNiceFile), "Outbound packet niceness")
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                 showPrgrs   = flag.Bool("progress", false, "Force progress showing")
52                 omitPrgrs   = flag.Bool("noprogress", false, "Omit progress showing")
53                 debug       = flag.Bool("debug", false, "Print debug messages")
54                 version     = flag.Bool("version", false, "Print version information")
55                 warranty    = flag.Bool("warranty", false, "Print warranty information")
56         )
57         log.SetFlags(log.Lshortfile)
58         flag.Usage = usage
59         flag.Parse()
60         if *warranty {
61                 fmt.Println(nncp.Warranty)
62                 return
63         }
64         if *version {
65                 fmt.Println(nncp.VersionGet())
66                 return
67         }
68         if flag.NArg() != 1 {
69                 usage()
70                 os.Exit(1)
71         }
72         nice, err := nncp.NicenessParse(*niceRaw)
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         ctx.Umask()
93
94         var pktPath string
95         var pktName string
96         if _, err = os.Stat(flag.Arg(0)); err == nil {
97                 pktPath = flag.Arg(0)
98                 pktName = filepath.Base(pktPath)
99         } else {
100                 splitted := strings.Split(flag.Arg(0), ":")
101                 if len(splitted) != 2 {
102                         log.Fatalln("Invalid NODE:PKT specification")
103                 }
104                 node, err := ctx.FindNode(splitted[0])
105                 if err != nil {
106                         log.Fatalln("Invalid NODE specified:", err)
107                 }
108                 pktPath = filepath.Join(
109                         ctx.Spool, node.Id.String(), string(nncp.TTx), splitted[1],
110                 )
111                 pktName = filepath.Base(splitted[1])
112         }
113
114         fd, err := os.Open(pktPath)
115         if err != nil {
116                 log.Fatalln(err)
117         }
118         fi, err := fd.Stat()
119         if err != nil {
120                 log.Fatalln(err)
121         }
122         pktEnc, _, err := ctx.HdrRead(fd)
123         if err != nil {
124                 log.Fatalln(err)
125         }
126         if _, err = fd.Seek(0, io.SeekStart); err != nil {
127                 log.Fatalln(err)
128         }
129
130         node := ctx.Neigh[*pktEnc.Recipient]
131         nncp.ViaOverride(*viaOverride, ctx, node)
132         via := node.Via[:len(node.Via)-1]
133         node = ctx.Neigh[*node.Via[len(node.Via)-1]]
134         node.Via = via
135
136         pktTrns, err := nncp.NewPkt(nncp.PktTypeTrns, 0, pktEnc.Recipient[:])
137         if err != nil {
138                 panic(err)
139         }
140         if _, _, err = ctx.Tx(
141                 node,
142                 pktTrns,
143                 nice,
144                 fi.Size(), 0, nncp.MaxFileSize,
145                 fd,
146                 pktName,
147                 nil,
148         ); err != nil {
149                 log.Fatalln(err)
150         }
151 }