chiark / gitweb /
some done todos
[hippotat.git] / server / slocal.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 super::*;
6
7 #[allow(dead_code)] // xxx
8 #[allow(unused_variables)] // xxx
9 pub async fn run(global: Arc<Global>,
10                  mut rx: mpsc::Receiver<RoutedPacket>,
11                  mut ipif: Ipif) -> Result<Void,AE> {
12   let r = async {
13     let mut goodness: i32 = 0;
14     const GOODNESS_SHIFT: u8 = 8;
15     const GOODNESS_MIN: i32 = -16;
16
17     loop {
18       select!{
19         biased;
20
21         data = rx.recv() =>
22         {
23           let data = data.ok_or_else(|| anyhow!("rx stream end!"))?;
24           let mut data = &*data.data;
25           let mut slip_end = &[SLIP_END][..];
26           let mut buf = Buf::chain(&mut data, &mut slip_end);
27           ipif.rx.write_all_buf(&mut buf).await
28             .context("write to ipif")?;
29         },
30
31         data = Ipif::next_frame(&mut ipif.tx) =>
32         {
33           let data = data?;
34           let may_route = MayRoute::came_from_outside_hippotatd();
35
36           goodness -= goodness >> GOODNESS_SHIFT;
37
38           match process1(SlipNoConv, global.config.mtu, &data, |header|{
39             let saddr = ip_packet_addr::<false>(header)?;
40             let daddr = ip_packet_addr::<true>(header)?;
41             Ok((saddr,daddr))
42           }) {
43             Err(PE::Empty) => { },
44
45             Err(pe) => {
46               goodness -= 1;
47               error!("[good={}] invalid data from local tx ipif {}",
48                      goodness, pe);
49               if goodness < GOODNESS_MIN {
50                 throw!(anyhow!("too many bad packets, too few good ones!"))
51               }
52             },
53
54             Ok((ref data, (ref saddr, ref daddr)))
55             if ! global.config.vnetwork.iter().any(|n| n.contains(saddr)) => {
56               // pretent as if this came from route
57               trace!(
58                 target: "hippotatd",
59  "discard to={:?} came=ipif user=local len={} outside-vnets: from={:?}",
60                 daddr, saddr, data.len());
61             },
62
63             Ok((data, (saddr, daddr))) => {
64               goodness += 1;
65               route_packet(
66                 &global, "ipif", None,
67                 data, daddr, may_route.clone()
68               ).await;
69             }
70           }
71         },
72       }
73     }
74   }.await;
75
76   ipif.quitting(None).await;
77   r
78 }