chiark / gitweb /
63665f96f15071be3f81fef558da536984388d18
[hippotat.git] / src / config.rs
1 // Copyright 2021 Ian Jackson and contributors to Hippotat
2 // SPDX-License-Identifier: AGPL-3.0-or-later
3 // There is NO WARRANTY.
4
5 use crate::prelude::*;
6
7 use configparser::ini::Ini;
8
9 #[derive(StructOpt,Debug)]
10 pub struct Opts {
11   /// Top-level config file or directory
12   ///
13   /// Look for `main.cfg`, `config.d` and `secrets.d` here.
14   ///
15   /// Or if this is a file, just read that file.
16   #[structopt(long, default_value="/etc/hippotat")]
17   pub config: PathBuf,
18   
19   /// Additional config files or dirs, which can override the others
20   #[structopt(long, multiple=true, number_of_values=1)]
21   pub extra_config: Vec<PathBuf>,
22 }
23
24 pub struct CidrString(pub String);
25
26 pub struct InstanceConfig {
27   // Exceptional settings
28   pub server:                       String,
29   pub secret:                       String,
30   pub ipif:                         String,
31
32   // Capped settings:
33   pub max_batch_down:               u32,
34   pub max_queue_time:               Duration,
35   pub http_timeout:                 Duration,
36
37   // Ordinary settings:
38   pub target_requests_outstanding:  u32,
39   pub addrs:                        Vec<IpAddr>,
40   pub vnetwork:                     Vec<CidrString>,
41   pub vaddr:                        Vec<IpAddr>,
42   pub vrelay:                       IpAddr,
43   pub port:                         u16,
44   pub mtu:                          u32,
45   pub ifname_server:                String,
46   pub ifname_client:                String,
47
48   // Ordinary settings, used by server only:
49   pub max_clock_skew:               Duration,
50
51   // Ordinary settings, used by client only:
52   pub http_timeout_grace:           Duration,
53   pub max_requests_outstanding:     u32,
54   pub max_batch_up:                 u32,
55   pub http_retry:                   Duration,
56   pub url:                          Uri,
57   pub vroutes:                      Vec<CidrString>,
58 }
59
60 #[derive(Debug,Clone,Hash,Eq,PartialEq)]
61 pub enum SectionName {
62   Link { server: ServerName, client: ClientName },
63   Client(ClientName),
64   Server(ServerName), // includes SERVER, which is slightly special
65   ServerLimit(ServerName),
66   GlobalLimit,
67   Common,
68   Default,
69 }
70 pub use SectionName as SN;
71
72 #[derive(Debug,Clone)]
73 struct RawVal { val: Option<String>, loc: Arc<PathBuf> }
74 type SectionMap = HashMap<String, RawVal>;
75
76 pub struct Config {
77   opts: Opts,
78 }
79
80 static OUTSIDE_SECTION: &str = "[";
81
82 #[derive(Default,Debug)]
83 struct Aggregate {
84   sections: HashMap<SectionName, SectionMap>,
85 }
86
87 type OkAnyway<'f,A> = &'f dyn Fn(ErrorKind) -> Option<A>;
88 #[ext]
89 impl<'f,A> OkAnyway<'f,A> {
90   fn ok<T>(self, r: &Result<T, io::Error>) -> Option<A> {
91     let e = r.as_ref().err()?;
92     let k = e.kind();
93     let a = self(k)?;
94     Some(a)
95   }
96 }
97
98 impl FromStr for SectionName {
99   type Err = AE;
100   #[throws(AE)]
101   fn from_str(s: &str) -> Self {
102     match s {
103       "COMMON" => return SN::Common,
104       "DEFAULT" => return SN::Default,
105       "LIMIT" => return SN::GlobalLimit,
106       _ => { }
107     };
108     if let Ok(n@ ServerName(_)) = s.parse() { return SN::Server(n) }
109     if let Ok(n@ ClientName(_)) = s.parse() { return SN::Client(n) }
110     let (server, client) = s.split_ascii_whitespace().collect_tuple()
111       .ok_or_else(|| anyhow!(
112         "bad section name {:?} \
113          (must be COMMON, DEFAULT, <server>, <client>, or <server> <client>",
114         s
115       ))?;
116     let server = server.parse().context("server name in link section name")?;
117     if client == "LIMIT" { return SN::ServerLimit(server) }
118     let client = client.parse().context("client name in link section name")?;
119     SN::Link { server, client }
120   }
121 }
122
123 impl Aggregate {
124   #[throws(AE)] // AE does not include path
125   fn read_file<A>(&mut self, path: &Path, anyway: OkAnyway<A>) -> Option<A>
126   {
127     let f = fs::File::open(path);
128     if let Some(anyway) = anyway.ok(&f) { return Some(anyway) }
129     let mut f = f.context("open")?;
130
131     let mut s = String::new();
132     let y = f.read_to_string(&mut s);
133     if let Some(anyway) = anyway.ok(&y) { return Some(anyway) }
134     y.context("read")?;
135
136     let mut ini = Ini::new_cs();
137     ini.set_default_section(OUTSIDE_SECTION);
138     ini.read(s).map_err(|e| anyhow!("{}", e)).context("parse as INI")?;
139     let map = mem::take(ini.get_mut_map());
140     if map.get(OUTSIDE_SECTION).is_some() {
141       throw!(anyhow!("INI file contains settings outside a section"));
142     }
143
144     let loc = Arc::new(path.to_owned());
145
146     for (sn, vars) in map {
147       let sn = sn.parse().dcontext(&sn)?;
148         self.sections.entry(sn)
149         .or_default()
150         .extend(
151           vars.into_iter()
152             .map(|(k,val)| {
153               (k.replace('-',"_"),
154                RawVal { val, loc: loc.clone() })
155             })
156         );
157     }
158     None
159   }
160
161   #[throws(AE)] // AE includes path
162   fn read_dir_d<A>(&mut self, path: &Path, anyway: OkAnyway<A>) -> Option<A>
163   {
164     let dir = fs::read_dir(path);
165     if let Some(anyway) = anyway.ok(&dir) { return Some(anyway) }
166     let dir = dir.context("open directory").dcontext(path)?;
167     for ent in dir {
168       let ent = ent.context("read directory").dcontext(path)?;
169       let leaf = ent.file_name();
170       let leaf = leaf.to_str();
171       let leaf = if let Some(leaf) = leaf { leaf } else { continue }; //utf8?
172       if leaf.len() == 0 { continue }
173       if ! leaf.chars().all(
174         |c| c=='-' || c=='_' || c.is_ascii_alphanumeric()
175       ) { continue }
176
177       // OK we want this one
178       let ent = ent.path();
179       self.read_file(&ent, &|_| None::<Void>).dcontext(&ent)?;
180     }
181     None
182   }
183
184   #[throws(AE)] // AE includes everything
185   fn read_toplevel(&mut self, toplevel: &Path) {
186     enum Anyway { None, Dir }
187     match self.read_file(toplevel, &|k| match k {
188       EK::NotFound => Some(Anyway::None),
189       EK::IsADirectory => Some(Anyway::Dir),
190       _ => None,
191     })
192       .dcontext(toplevel).context("top-level config directory (or file)")?
193     {
194       None | Some(Anyway::None) => { },
195
196       Some(Anyway::Dir) => {
197         struct AnywayNone;
198         let anyway_none = |k| match k {
199           EK::NotFound => Some(AnywayNone),
200           _ => None,
201         };
202
203         let mk = |leaf: &str| {
204           [ toplevel, &PathBuf::from(leaf) ]
205             .iter().collect::<PathBuf>()
206         };
207
208         for &(try_main, desc) in &[
209           ("main.cfg", "main config file"),
210           ("master.cfg", "obsolete-named main config file"),
211         ] {
212           let main = mk(try_main);
213
214           match self.read_file(&main, &anyway_none)
215             .dcontext(main).context(desc)?
216           {
217             None => break,
218             Some(AnywayNone) => { },
219           }
220         }
221
222         for &(try_dir, desc) in &[
223           ("config.d", "per-link config directory"),
224           ("secrets.d", "per-link secrets directory"),
225         ] {
226           let dir = mk(try_dir);
227           match self.read_dir_d(&dir, &anyway_none).context(desc)? {
228             None => { },
229             Some(AnywayNone) => { },
230           }
231         }
232       }
233     }
234   }
235
236   #[throws(AE)] // AE includes extra, but does that this is extra
237   fn read_extra(&mut self, extra: &Path) {
238     struct AnywayDir;
239
240     match self.read_file(extra, &|k| match k {
241       EK::IsADirectory => Some(AnywayDir),
242       _ => None,
243     })
244       .dcontext(extra)?
245     {
246       None => return,
247       Some(AnywayDir) => {
248         self.read_dir_d(extra, &|_| None::<Void>)?;
249       }
250     }
251
252   }
253 }
254
255
256 #[throws(AE)]
257 pub fn read() {
258   let opts = config::Opts::from_args();
259
260   (||{
261     let mut agg = Aggregate::default();
262
263     agg.read_toplevel(&opts.config)?;
264     for extra in &opts.extra_config {
265       agg.read_extra(extra).context("extra config")?;
266     }
267
268     eprintln!("GOT {:#?}", agg);
269
270     Ok::<_,AE>(())
271   })().context("read configuration")?;
272 }