]> Cypherpunks.ru repositories - nncp.git/blob - src/ctx.go
fb26185fbb3af9e4ee6024f8af805d1c2c2e7ee2
[nncp.git] / src / ctx.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 package nncp
19
20 import (
21         "errors"
22         "fmt"
23         "io/ioutil"
24         "log"
25         "os"
26         "path/filepath"
27
28         "syscall"
29
30         "golang.org/x/sys/unix"
31 )
32
33 type Ctx struct {
34         Self   *NodeOur
35         SelfId *NodeId
36         Neigh  map[NodeId]*Node
37         Alias  map[string]*NodeId
38
39         Spool      string
40         LogPath    string
41         UmaskForce *int
42         Quiet      bool
43         ShowPrgrs  bool
44         HdrUsage   bool
45         Debug      bool
46         NotifyFile *FromToJSON
47         NotifyFreq *FromToJSON
48         NotifyExec map[string]*FromToJSON
49
50         MCDRxIfis []string
51         MCDTxIfis map[string]int
52 }
53
54 func (ctx *Ctx) FindNode(id string) (*Node, error) {
55         nodeId, known := ctx.Alias[id]
56         if known {
57                 return ctx.Neigh[*nodeId], nil
58         }
59         nodeId, err := NodeIdFromString(id)
60         if err != nil {
61                 return nil, err
62         }
63         node, known := ctx.Neigh[*nodeId]
64         if !known {
65                 return nil, errors.New("Unknown node")
66         }
67         return node, nil
68 }
69
70 func (ctx *Ctx) ensureRxDir(nodeId *NodeId) error {
71         dirPath := filepath.Join(ctx.Spool, nodeId.String(), string(TRx))
72         logMsg := func(les LEs) string {
73                 return fmt.Sprintf("Ensuring directory %s existence", dirPath)
74         }
75         if err := os.MkdirAll(dirPath, os.FileMode(0777)); err != nil {
76                 ctx.LogE("dir-ensure-mkdir", LEs{{"Dir", dirPath}}, err, logMsg)
77                 return err
78         }
79         fd, err := os.Open(dirPath)
80         if err != nil {
81                 ctx.LogE("dir-ensure-open", LEs{{"Dir", dirPath}}, err, logMsg)
82                 return err
83         }
84         return fd.Close()
85 }
86
87 func CtxFromCmdline(
88         cfgPath,
89         spoolPath,
90         logPath string,
91         quiet, showPrgrs, omitPrgrs, debug bool,
92 ) (*Ctx, error) {
93         env := os.Getenv(CfgPathEnv)
94         if env != "" {
95                 cfgPath = env
96         }
97         if showPrgrs && omitPrgrs {
98                 return nil, errors.New("simultaneous -progress and -noprogress")
99         }
100         cfgRaw, err := ioutil.ReadFile(cfgPath)
101         if err != nil {
102                 return nil, err
103         }
104         ctx, err := CfgParse(cfgRaw)
105         if err != nil {
106                 return nil, err
107         }
108         if spoolPath == "" {
109                 env = os.Getenv(CfgSpoolEnv)
110                 if env != "" {
111                         ctx.Spool = env
112                 }
113         } else {
114                 ctx.Spool = spoolPath
115         }
116         if logPath == "" {
117                 env = os.Getenv(CfgLogEnv)
118                 if env != "" {
119                         ctx.LogPath = env
120                 }
121         } else {
122                 ctx.LogPath = logPath
123         }
124         if showPrgrs {
125                 ctx.ShowPrgrs = true
126         }
127         if quiet || omitPrgrs {
128                 ctx.ShowPrgrs = false
129         }
130         ctx.Quiet = quiet
131         ctx.Debug = debug
132         return ctx, nil
133 }
134
135 func (ctx *Ctx) IsEnoughSpace(want int64) bool {
136         var s unix.Statfs_t
137         if err := unix.Statfs(ctx.Spool, &s); err != nil {
138                 log.Fatalln(err)
139         }
140         return int64(s.Bavail)*int64(s.Bsize) > want
141 }
142
143 func (ctx *Ctx) Umask() {
144         if ctx.UmaskForce != nil {
145                 syscall.Umask(*ctx.UmaskForce)
146         }
147 }