chiark / gitweb /
wip parsing, record loc
[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   Common,
66   Default,
67 }
68 pub use SectionName as SN;
69
70 type SectionMap = HashMap<String, (Option<String>, Arc<PathBuf>)>;
71
72 pub struct Config {
73   opts: Opts,
74 }
75
76 static OUTSIDE_SECTION: &str = "[";
77
78 #[derive(Default,Debug)]
79 struct Aggregate {
80   sections: HashMap<SectionName, SectionMap>,
81 }
82
83 type OkAnyway<'f,A> = &'f dyn Fn(ErrorKind) -> Option<A>;
84 #[ext]
85 impl<'f,A> OkAnyway<'f,A> {
86   fn ok<T>(self, r: &Result<T, io::Error>) -> Option<A> {
87     let e = r.as_ref().err()?;
88     let k = e.kind();
89     let a = self(k)?;
90     Some(a)
91   }
92 }
93
94 impl FromStr for SectionName {
95   type Err = AE;
96   #[throws(AE)]
97   fn from_str(s: &str) -> Self {
98     match s {
99       "COMMON" => return SN::Common,
100       "DEFAULT" => return SN::Default,
101       _ => { }
102     };
103     if let Ok(n@ ServerName(_)) = s.parse() { return SN::Server(n) }
104     if let Ok(n@ ClientName(_)) = s.parse() { return SN::Client(n) }
105     let (server, client) = s.split_ascii_whitespace().collect_tuple()
106       .ok_or_else(|| anyhow!(
107         "bad section name {:?} \
108          (must be COMMON, DEFAULT, <server>, <client>, or <server> <client>",
109         s
110       ))?;
111     let server = server.parse().context("server name in link section name")?;
112     let client = client.parse().context("client name in link section name")?;
113     SN::Link { server, client }
114   }
115 }
116
117 impl Aggregate {
118   #[throws(AE)] // AE does not include path
119   fn read_file<A>(&mut self, path: &Path, anyway: OkAnyway<A>) -> Option<A>
120   {
121     let f = fs::File::open(path);
122     if let Some(anyway) = anyway.ok(&f) { return Some(anyway) }
123     let mut f = f.context("open")?;
124
125     let mut s = String::new();
126     let y = f.read_to_string(&mut s);
127     if let Some(anyway) = anyway.ok(&y) { return Some(anyway) }
128     y.context("read")?;
129
130     let mut ini = Ini::new_cs();
131     ini.set_default_section(OUTSIDE_SECTION);
132     ini.read(s).map_err(|e| anyhow!("{}", e)).context("parse as INI")?;
133     let map = mem::take(ini.get_mut_map());
134     if map.get(OUTSIDE_SECTION).is_some() {
135       throw!(anyhow!("INI file contains settings outside a section"));
136     }
137
138     let loc = Arc::new(path.to_owned());
139
140     for (sn, vars) in map {
141       let sn = sn.parse().dcontext(&sn)?;
142         self.sections.entry(sn)
143         .or_default()
144         .extend(
145           vars.into_iter()
146             .map(|(k,v)| (k, (v, loc.clone())))
147         );
148     }
149     None
150   }
151
152   #[throws(AE)] // AE includes path
153   fn read_dir_d<A>(&mut self, path: &Path, anyway: OkAnyway<A>) -> Option<A>
154   {
155     let dir = fs::read_dir(path);
156     if let Some(anyway) = anyway.ok(&dir) { return Some(anyway) }
157     let dir = dir.context("open directory").dcontext(path)?;
158     for ent in dir {
159       let ent = ent.context("read directory").dcontext(path)?;
160       let leaf = ent.file_name();
161       let leaf = leaf.to_str();
162       let leaf = if let Some(leaf) = leaf { leaf } else { continue }; //utf8?
163       if leaf.len() == 0 { continue }
164       if ! leaf.chars().all(
165         |c| c=='-' || c=='_' || c.is_ascii_alphanumeric()
166       ) { continue }
167
168       // OK we want this one
169       let ent = ent.path();
170       self.read_file(&ent, &|_| None::<Void>).dcontext(&ent)?;
171     }
172     None
173   }
174
175   #[throws(AE)] // AE includes everything
176   fn read_toplevel(&mut self, toplevel: &Path) {
177     enum Anyway { None, Dir }
178     match self.read_file(toplevel, &|k| match k {
179       EK::NotFound => Some(Anyway::None),
180       EK::IsADirectory => Some(Anyway::Dir),
181       _ => None,
182     })
183       .dcontext(toplevel).context("top-level config directory (or file)")?
184     {
185       None | Some(Anyway::None) => { },
186
187       Some(Anyway::Dir) => {
188         struct AnywayNone;
189         let anyway_none = |k| match k {
190           EK::NotFound => Some(AnywayNone),
191           _ => None,
192         };
193
194         let mk = |leaf: &str| {
195           [ toplevel, &PathBuf::from(leaf) ]
196             .iter().collect::<PathBuf>()
197         };
198
199         for &(try_main, desc) in &[
200           ("main.cfg", "main config file"),
201           ("master.cfg", "obsolete-named main config file"),
202         ] {
203           let main = mk(try_main);
204
205           match self.read_file(&main, &anyway_none)
206             .dcontext(main).context(desc)?
207           {
208             None => break,
209             Some(AnywayNone) => { },
210           }
211         }
212
213         for &(try_dir, desc) in &[
214           ("config.d", "per-link config directory"),
215           ("secrets.d", "per-link secrets directory"),
216         ] {
217           let dir = mk(try_dir);
218           match self.read_dir_d(&dir, &anyway_none).context(desc)? {
219             None => { },
220             Some(AnywayNone) => { },
221           }
222         }
223       }
224     }
225   }
226
227   #[throws(AE)] // AE includes extra, but does that this is extra
228   fn read_extra(&mut self, extra: &Path) {
229     struct AnywayDir;
230
231     match self.read_file(extra, &|k| match k {
232       EK::IsADirectory => Some(AnywayDir),
233       _ => None,
234     })
235       .dcontext(extra)?
236     {
237       None => return,
238       Some(AnywayDir) => {
239         self.read_dir_d(extra, &|_| None::<Void>)?;
240       }
241     }
242
243   }
244 }
245
246
247 #[throws(AE)]
248 pub fn read() {
249   let opts = config::Opts::from_args();
250
251   (||{
252     let mut agg = Aggregate::default();
253
254     agg.read_toplevel(&opts.config)?;
255     for extra in &opts.extra_config {
256       agg.read_extra(extra).context("extra config")?;
257     }
258
259     eprintln!("GOT {:#?}", agg);
260
261     Ok::<_,AE>(())
262   })().context("read configuration")?;
263 }