]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-rm/main.go
Major namespace version was already updated
[nncp.git] / src / cmd / nncp-rm / 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 // Remove packet from the queue.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "path/filepath"
27         "regexp"
28         "strconv"
29         "strings"
30         "time"
31
32         "go.cypherpunks.ru/nncp/v6"
33 )
34
35 func usage() {
36         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
37         fmt.Fprintf(os.Stderr, "nncp-rm -- remove packet\n\n")
38         fmt.Fprintf(os.Stderr, "Usage: %s [options] -tmp\n", os.Args[0])
39         fmt.Fprintf(os.Stderr, "       %s [options] -lock\n", os.Args[0])
40         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -part\n", os.Args[0])
41         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -seen\n", os.Args[0])
42         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -nock\n", os.Args[0])
43         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -hdr\n", os.Args[0])
44         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE {-rx|-tx}\n", os.Args[0])
45         fmt.Fprintf(os.Stderr, "       %s [options] -node NODE -pkt PKT\n", os.Args[0])
46         fmt.Fprintln(os.Stderr, "-older option's time units are: (s)econds, (m)inutes, (h)ours, (d)ays")
47         fmt.Fprintln(os.Stderr, "Options:")
48         flag.PrintDefaults()
49 }
50
51 func main() {
52         var (
53                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
54                 doTmp     = flag.Bool("tmp", false, "Remove all temporary files")
55                 doHdr     = flag.Bool("hdr", false, "Remove all .hdr files")
56                 doLock    = flag.Bool("lock", false, "Remove all lock files")
57                 nodeRaw   = flag.String("node", "", "Node to remove files in")
58                 doRx      = flag.Bool("rx", false, "Process received packets")
59                 doTx      = flag.Bool("tx", false, "Process transfered packets")
60                 doPart    = flag.Bool("part", false, "Remove only .part files")
61                 doSeen    = flag.Bool("seen", false, "Remove only .seen files")
62                 doNoCK    = flag.Bool("nock", false, "Remove only .nock files")
63                 older     = flag.String("older", "", "XXX{smhd}: only older than XXX number of time units")
64                 dryRun    = flag.Bool("dryrun", false, "Do not actually remove files")
65                 pktRaw    = flag.String("pkt", "", "Packet to remove")
66                 spoolPath = flag.String("spool", "", "Override path to spool")
67                 quiet     = flag.Bool("quiet", false, "Print only errors")
68                 debug     = flag.Bool("debug", false, "Print debug messages")
69                 version   = flag.Bool("version", false, "Print version information")
70                 warranty  = flag.Bool("warranty", false, "Print warranty information")
71         )
72         flag.Usage = usage
73         flag.Parse()
74         if *warranty {
75                 fmt.Println(nncp.Warranty)
76                 return
77         }
78         if *version {
79                 fmt.Println(nncp.VersionGet())
80                 return
81         }
82
83         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, "", *quiet, false, false, *debug)
84         if err != nil {
85                 log.Fatalln("Error during initialization:", err)
86         }
87         ctx.Umask()
88
89         var oldBoundaryRaw int
90         if *older != "" {
91                 olderRe := regexp.MustCompile(`^(\d+)([smhd])$`)
92                 matches := olderRe.FindStringSubmatch(*older)
93                 if len(matches) != 1+2 {
94                         log.Fatalln("can not parse -older")
95                 }
96                 oldBoundaryRaw, err = strconv.Atoi(matches[1])
97                 if err != nil {
98                         log.Fatalln("can not parse -older:", err)
99                 }
100                 switch matches[2] {
101                 case "s":
102                         break
103                 case "m":
104                         oldBoundaryRaw *= 60
105                 case "h":
106                         oldBoundaryRaw *= 60 * 60
107                 case "d":
108                         oldBoundaryRaw *= 60 * 60 * 24
109                 }
110         }
111         oldBoundary := time.Second * time.Duration(oldBoundaryRaw)
112
113         now := time.Now()
114         if *doTmp {
115                 err = filepath.Walk(
116                         filepath.Join(ctx.Spool, "tmp"),
117                         func(path string, info os.FileInfo, err error) error {
118                                 if err != nil {
119                                         return err
120                                 }
121                                 if info.IsDir() {
122                                         return nil
123                                 }
124                                 if now.Sub(info.ModTime()) < oldBoundary {
125                                         ctx.LogD("nncp-rm", nncp.LEs{{K: "File", V: path}}, "too fresh, skipping")
126                                         return nil
127                                 }
128                                 ctx.LogI("nncp-rm", nncp.LEs{{K: "File", V: path}}, "")
129                                 if *dryRun {
130                                         return nil
131                                 }
132                                 return os.Remove(path)
133                         })
134                 if err != nil {
135                         log.Fatalln("Error during walking:", err)
136                 }
137                 return
138         }
139         if *doLock {
140                 err = filepath.Walk(ctx.Spool, func(path string, info os.FileInfo, err error) error {
141                         if err != nil {
142                                 return err
143                         }
144                         if info.IsDir() {
145                                 return nil
146                         }
147                         if strings.HasSuffix(info.Name(), ".lock") {
148                                 ctx.LogI("nncp-rm", nncp.LEs{{K: "File", V: path}}, "")
149                                 if *dryRun {
150                                         return nil
151                                 }
152                                 return os.Remove(path)
153                         }
154                         return nil
155                 })
156                 if err != nil {
157                         log.Fatalln("Error during walking:", err)
158                 }
159                 return
160         }
161         if *nodeRaw == "" {
162                 usage()
163                 os.Exit(1)
164         }
165         node, err := ctx.FindNode(*nodeRaw)
166         if err != nil {
167                 log.Fatalln("Invalid -node specified:", err)
168         }
169         remove := func(xx nncp.TRxTx) error {
170                 return filepath.Walk(
171                         filepath.Join(ctx.Spool, node.Id.String(), string(xx)),
172                         func(path string, info os.FileInfo, err error) error {
173                                 if err != nil {
174                                         return err
175                                 }
176                                 if info.IsDir() {
177                                         return nil
178                                 }
179                                 if now.Sub(info.ModTime()) < oldBoundary {
180                                         ctx.LogD("nncp-rm", nncp.LEs{{K: "File", V: path}}, "too fresh, skipping")
181                                         return nil
182                                 }
183                                 if (*doSeen && strings.HasSuffix(info.Name(), nncp.SeenSuffix)) ||
184                                         (*doNoCK && strings.HasSuffix(info.Name(), nncp.NoCKSuffix)) ||
185                                         (*doHdr && strings.HasSuffix(info.Name(), nncp.HdrSuffix)) ||
186                                         (*doPart && strings.HasSuffix(info.Name(), nncp.PartSuffix)) {
187                                         ctx.LogI("nncp-rm", nncp.LEs{{K: "File", V: path}}, "")
188                                         if *dryRun {
189                                                 return nil
190                                         }
191                                         return os.Remove(path)
192                                 }
193                                 if *pktRaw != "" && filepath.Base(info.Name()) == *pktRaw {
194                                         ctx.LogI("nncp-rm", nncp.LEs{{K: "File", V: path}}, "")
195                                         if *dryRun {
196                                                 return nil
197                                         }
198                                         return os.Remove(path)
199                                 }
200                                 if !*doSeen && !*doNoCK && !*doHdr && !*doPart &&
201                                         (*doRx || *doTx) &&
202                                         ((*doRx && xx == nncp.TRx) || (*doTx && xx == nncp.TTx)) {
203                                         ctx.LogI("nncp-rm", nncp.LEs{{K: "File", V: path}}, "")
204                                         if *dryRun {
205                                                 return nil
206                                         }
207                                         return os.Remove(path)
208                                 }
209                                 return nil
210                         })
211         }
212         if *pktRaw != "" || *doRx || *doSeen || *doNoCK || *doHdr || *doPart {
213                 if err = remove(nncp.TRx); err != nil {
214                         log.Fatalln("Can not remove:", err)
215                 }
216         }
217         if *pktRaw != "" || *doTx || *doHdr {
218                 if err = remove(nncp.TTx); err != nil {
219                         log.Fatalln("Can not remove:", err)
220                 }
221         }
222 }