chiark / gitweb /
debug flag
[hippotat.git] / src / bin / client.rs
1 // Copyright 2021 Ian Jackson and contributors to Hippotat
2 // SPDX-License-Identifier: GPL-3.0-or-later
3 // There is NO WARRANTY.
4
5 use hippotat::prelude::*;
6 use hippotat_macros::into_crlfs;
7
8 #[derive(StructOpt,Debug)]
9 pub struct Opts {
10   /// Increase debug level
11   #[structopt(long, short="D", parse(from_occurrences))]
12   debug: usize,
13
14   #[structopt(flatten)]
15   config: config::Opts,
16 }
17
18 type OutstandingRequest<'r> = Pin<Box<
19     dyn Future<Output=Option<Bytes>> + Send + 'r
20     >>;
21
22 impl<T> HCC for T where
23         T: hyper::client::connect::Connect + Clone + Send + Sync + 'static { }
24 trait HCC: hyper::client::connect::Connect + Clone + Send + Sync + 'static { }
25
26 struct ClientContext<'c,C> {
27   ic: &'c InstanceConfig,
28   hclient: &'c Arc<hyper::Client<C>>,
29   reporter: &'c parking_lot::Mutex<Reporter<'c>>,
30 }
31
32 #[throws(AE)]
33 fn submit_request<'r, 'c:'r, C:HCC>(
34   c: &'c ClientContext<C>,
35   req_num: &mut ReqNum,
36   reqs: &mut Vec<OutstandingRequest<'r>>,
37   upbound: FramesData,
38 ) {
39   let show_timeout = c.ic.http_timeout
40     .saturating_add(Duration::from_nanos(999_999_999))
41     .as_secs();
42
43   let time_t = SystemTime::now()
44     .duration_since(UNIX_EPOCH)
45     .unwrap_or_else(|_| Duration::default()) // clock is being weird
46     .as_secs();
47   let time_t = format!("{:x}", time_t);
48   let hmac = token_hmac(c.ic.secret.0.as_bytes(), time_t.as_bytes());
49   let mut token = time_t;
50   write!(token, " ").unwrap();
51   base64::encode_config_buf(&hmac, BASE64_CONFIG, &mut token);
52
53   let req_num = { *req_num += 1; *req_num };
54
55   let prefix1 = format!(into_crlfs!(
56     r#"--b
57        Content-Type: text/plain; charset="utf-8"
58        Content-Disposition: form-data; name="m"
59
60        {}
61        {}
62        {}
63        {}"#),
64                        &c.ic.link.client,
65                        token,
66                        c.ic.target_requests_outstanding,
67                        show_timeout,
68   );
69
70   let prefix2 = format!(into_crlfs!(
71     r#"
72        --b
73        Content-Type: application/octet-stream
74        Content-Disposition: form-data; name="d"
75
76        "#),
77   );
78   let suffix = format!(into_crlfs!(
79     r#"
80        --b--
81        "#),
82   );
83
84   macro_rules! content { {
85     $out:ty,
86     $iter:ident,
87     $into:ident,
88   } => {
89     itertools::chain![
90       array::IntoIter::new([
91         prefix1.$into(),
92         prefix2.$into(),
93       ]).take(
94         if upbound.is_empty() { 1 } else { 2 }
95       ),
96       Itertools::intersperse(
97         upbound.$iter().map(|u| { let out: $out = u.$into(); out }),
98         SLIP_END_SLICE.$into()
99       ),
100       [ suffix.$into() ],
101     ]
102   }}
103
104   let body_len: usize = content!(
105     &[u8],
106     iter,
107     as_ref,
108   ).map(|b| b.len()).sum();
109
110   trace!("{} #{}: frames={} bytes={}",
111          &c.ic, req_num, upbound.len(), body_len);
112
113   let body = hyper::body::Body::wrap_stream(
114     futures::stream::iter(
115       content!(
116         Bytes,
117         into_iter,
118         into,
119       ).map(Ok::<Bytes,Void>)
120     )
121   );
122
123   let req = hyper::Request::post(&c.ic.url)
124     .header("Content-Type", r#"multipart/form-data; boundary="b""#)
125     .header("Content-Length", body_len)
126     .body(body)
127     .context("construct request")?;
128
129   let resp = c.hclient.request(req);
130   let fut = Box::pin(async move {
131     let r = async { tokio::time::timeout( c.ic.http_timeout, async {
132       let resp = resp.await.context("make request")?;
133       let status = resp.status();
134       let resp = resp.into_body();
135       // xxx: some size limit to avoid mallocing the universe
136       let resp = hyper::body::to_bytes(resp).await
137         .context("HTTP error fetching response body")?;
138
139       if ! status.is_success() {
140         // xxx get body and log it
141         throw!(anyhow!("HTTP error status={} body={:?}",
142                        &status, String::from_utf8_lossy(&resp)));
143       }
144
145       Ok::<_,AE>(resp)
146     }).await? }.await;
147
148     let r = c.reporter.lock().filter(Some(req_num), r);
149
150     if r.is_none() {
151       tokio::time::sleep(c.ic.http_retry).await;
152     }
153     r
154   });
155   reqs.push(fut);
156 }
157
158 #[allow(unused_variables)] // xxx
159 #[allow(unused_mut)] // xxx
160 #[allow(dead_code)] // xxx
161 async fn run_client<C:HCC>(
162   ic: InstanceConfig,
163   hclient: Arc<hyper::Client<C>>
164 ) -> Result<Void, AE>
165 {
166   debug!("{}: config: {:?}", &ic, &ic);
167
168   let reporter = parking_lot::Mutex::new(Reporter::new(&ic));
169
170   let c = ClientContext {
171     reporter: &reporter,
172     hclient: &hclient,
173     ic: &ic,
174   };
175
176   let mut ipif = tokio::process::Command::new("sh")
177     .args(&["-c", &ic.ipif])
178     .stdin (process::Stdio::piped())
179     .stdout(process::Stdio::piped())
180     .stderr(process::Stdio::piped())
181     .kill_on_drop(true)
182     .spawn().context("spawn ipif")?;
183   
184   let stderr = ipif.stderr.take().unwrap();
185   let ic_name = ic.to_string();
186   let _ = task::spawn(async move {
187     let mut stderr = tokio::io::BufReader::new(stderr).lines();
188     while let Some(l) = stderr.next_line().await? {
189       error!("{}: ipif stderr: {}", &ic_name, l.trim_end());
190     }
191     Ok::<_,io::Error>(())
192   });
193
194   let mut req_num: ReqNum = 0;
195
196   let tx_stream = ipif.stdout.take().unwrap();
197   let mut rx_stream = ipif.stdin .take().unwrap();
198
199   let mut tx_stream = tokio::io::BufReader::new(tx_stream).split(SLIP_END);
200   let mut packets: VecDeque<Box<[u8]>> = default();
201   let mut upbound = Frames::default();
202
203   let mut reqs: Vec<OutstandingRequest>
204     = Vec::with_capacity(ic.max_requests_outstanding.sat());
205
206   let mut rx_queue: FrameQueue = default();
207
208   // xxx check that ic settings are all honoured
209
210   async {
211     loop {
212       select! {
213         y = rx_stream.write_all_buf(&mut rx_queue),
214         if ! rx_queue.is_empty() =>
215         {
216           let () = y.context("write rx data to ipif")?;
217         },
218
219         data = tx_stream.next_segment(),
220         if packets.is_empty() =>
221         {
222           let data =
223             data.context("read from ipif")?
224             .ok_or_else(|| io::Error::from(io::ErrorKind::UnexpectedEof))?;
225           //eprintln!("data={:?}", DumpHex(&data));
226
227           match check1(Slip2Mime, ic.mtu, &data, |header| {
228             let addr = ip_packet_addr::<false>(header)?;
229             if addr != ic.link.client.0 { throw!(PE::Src(addr)) }
230             Ok(())
231           }) {
232             Ok(packet) => packets.push_back(packet),
233             Err(PE::Empty) => { },
234             Err(e@ PE::Src(_)) => debug!("{}: tx discarding: {}", &ic, e),
235             Err(e) => error!("{}: tx discarding: {}", &ic, e),
236           };
237         },
238
239         _ = async { },
240         if ! upbound.tried_full() &&
241            ! packets.is_empty() =>
242         {
243           while let Some(packet) = packets.pop_front() {
244             match upbound.add(ic.max_batch_up, packet.into()/*xxx*/) {
245               Err(packet) => { packets.push_front(packet.into()/*xxx*/); break; }
246               Ok(()) => { },
247             }
248           }
249         },
250
251         _ = async { },
252         if reporter.lock().filter(None, {
253           if rx_queue.remaining() < ic.max_batch_down.sat() * 3 /* xxx */ {
254             // xxx make this separate option ? docs say server only
255             Ok(())
256           } else {
257             Err(anyhow!("rx queue full"))
258           }
259         }).is_some() &&
260           (reqs.len() < ic.target_requests_outstanding.sat() ||
261            (reqs.len() < ic.max_requests_outstanding.sat() &&
262             ! upbound.is_empty()))
263           // xxx backpressure, if too much in rx_queue
264           =>
265         {
266           submit_request(&c, &mut req_num, &mut reqs,
267                          mem::take(&mut upbound).into())?;
268         },
269
270         (got, goti, _) = async { future::select_all(&mut reqs).await },
271           if ! reqs.is_empty() =>
272         {
273           reqs.swap_remove(goti);
274
275           if let Some(got) = got {
276             reporter.lock().success();
277             //eprintln!("got={:?}", DumpHex(&got));
278             checkn(SlipNoConv,ic.mtu, &got, &mut rx_queue, |header| {
279               let addr = ip_packet_addr::<true>(header)?;
280               if addr != ic.link.client.0 { throw!(PE::Dst(addr)) }
281               Ok(())
282             }, |e| error!("{} #{}: rx discarding: {}", &ic, req_num, e));
283           
284           }
285         }
286       }
287     }
288   }.await
289 }
290
291 #[tokio::main]
292 async fn main() -> Result<(), AE> {
293   let opts = Opts::from_args();
294
295   let ics = config::read(&opts.config, LinkEnd::Client)?;
296   if ics.is_empty() { throw!(anyhow!("no associations with server(s)")); }
297
298   {
299     let env = env_logger::Env::new()
300       .filter("HIPPOTAT_LOG")
301       .write_style("HIPPOTAT_LOG_STYLE");
302   
303     let mut logb = env_logger::Builder::new();
304     logb.filter(Some("hippotat"),
305                 *[ log::LevelFilter::Info,
306                    log::LevelFilter::Debug ]
307                 .get(opts.debug)
308                 .unwrap_or(
309                   &log::LevelFilter::Trace
310                 ));
311     logb.parse_env(env);
312     logb.init();
313   }
314
315   let https = HttpsConnector::new();
316   let hclient = hyper::Client::builder().build::<_, hyper::Body>(https);
317   let hclient = Arc::new(hclient);
318
319   info!("starting");
320   let () = future::select_all(
321     ics.into_iter().map(|ic| Box::pin(async {
322       let assocname = ic.to_string();
323       info!("{} starting", &assocname);
324       let hclient = hclient.clone();
325       let join = task::spawn(async {
326         run_client(ic, hclient).await.void_unwrap_err()
327       });
328       match join.await {
329         Ok(e) => {
330           error!("{} failed: {:?}", &assocname, e);
331         },
332         Err(je) => {
333           error!("{} panicked!", &assocname);
334           panic::resume_unwind(je.into_panic());
335         },
336       }
337     }))
338   ).await.0;
339
340   error!("quitting because one of your client connections crashed");
341   process::exit(16);
342 }