retina_core/runtime/
online.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
use crate::config::{ConnTrackConfig, OnlineConfig, RuntimeConfig};
use crate::dpdk;
use crate::filter::Filter;
use crate::lcore::monitor::Monitor;
use crate::lcore::rx_core::RxCore;
use crate::lcore::{CoreId, SocketId};
use crate::memory::mempool::Mempool;
use crate::port::*;
use crate::subscription::*;

use std::collections::BTreeMap;
use std::os::raw::{c_uint, c_void};
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
use std::time::Instant;

pub(crate) struct OnlineRuntime<S>
where
    S: Subscribable,
{
    ports: BTreeMap<PortId, Port>,
    rx_cores: BTreeMap<CoreId, RxCore<S>>,
    monitor: Option<Monitor>,
    filter: Filter,
    options: OnlineOptions,
}

impl<S> OnlineRuntime<S>
where
    S: Subscribable,
{
    pub(crate) fn new(
        config: &RuntimeConfig,
        options: OnlineOptions,
        mempools: &mut BTreeMap<SocketId, Mempool>,
        filter_str: String,
        subscription: Arc<Subscription<S>>,
    ) -> Self {
        let hw_filter = Filter::new(&filter_str).expect("Failed to parse collapsed filter");
        // Set up signal handler
        let is_running = Arc::new(AtomicBool::new(true));
        let r = Arc::clone(&is_running);
        ctrlc::set_handler(move || {
            r.store(false, Ordering::Relaxed);
        })
        .expect("Error setting Ctrl-C handler");

        log::info!("Initializing Ports...");
        let mut ports: BTreeMap<PortId, Port> = BTreeMap::new();
        for port_map in options.online.ports.iter() {
            let port = Port::new(port_map);
            let socket_id = port.id.socket_id();
            mempools.entry(socket_id).or_insert_with(|| {
                // Create a local mempool if user is not polling the port
                // from the same socket.
                let mtu = if let Some(online) = &config.online {
                    online.mtu
                } else {
                    Mempool::default_mtu()
                };
                Mempool::new(&config.mempool, socket_id, mtu)
                    .expect("Unable to initialize local mempool")
            });
            port.init(
                mempools,
                options.online.nb_rxd,
                options.online.mtu,
                options.online.promiscuous,
            )
            .expect("Failed to initialize port.");
            ports.insert(port.id, port);
        }

        log::info!("Initializing RX Cores...");
        let mut rx_cores: BTreeMap<CoreId, RxCore<S>> = BTreeMap::new();
        let mut core_map: BTreeMap<CoreId, Vec<RxQueue>> = BTreeMap::new();
        for (_port_id, port) in ports.iter() {
            for (rxqueue, core_id) in port.queue_map.iter() {
                core_map.entry(*core_id).or_default().push(*rxqueue);
            }
        }
        for (core_id, rxqueues) in core_map.into_iter() {
            let rx_core = RxCore::new(
                core_id,
                rxqueues,
                options.conntrack.clone(),
                #[cfg(feature = "prometheus")]
                options.online.prometheus.is_some(),
                Arc::clone(&subscription),
                Arc::clone(&is_running),
            );
            rx_cores.insert(core_id, rx_core);
        }

        let monitor = Some(Monitor::new(config, &ports, Arc::clone(&is_running)));

        OnlineRuntime {
            ports,
            rx_cores,
            monitor,
            filter: hw_filter,
            options,
        }
    }

    pub(crate) fn run(&mut self) {
        self.start_ports();

        log::info!("Launching RX cores...");
        for (core_id, _rx_core) in self.rx_cores.iter() {
            let role = unsafe { dpdk::rte_eal_lcore_role(core_id.raw()) };
            if role != dpdk::rte_lcore_role_t_ROLE_RTE {
                log::error!("Attempted to launch non-DPDK core");
                panic!();
            }

            let arg = &self.rx_cores as *const _ as *mut c_void;
            let ret = unsafe {
                dpdk::rte_eal_remote_launch(Some(launch_rx::<S>), arg, core_id.raw() as c_uint)
            };
            if ret != 0 {
                log::error!("RX Core {} busy, launch failed.", core_id);
                panic!();
            }
        }

        // run main thread
        self.run_main();
        unsafe { dpdk::rte_eal_mp_wait_lcore() };

        log::info!("Exiting loop...");
        self.stop_ports();
    }

    fn run_main(&mut self) {
        let id = unsafe { dpdk::rte_lcore_id() };
        log::info!("Running main on Core {}", id);
        let start = Instant::now();
        let tokio_runtime = tokio::runtime::Builder::new_current_thread() // Use a current-thread runtime
            .enable_all() // Enables all necessary features (I/O, time, etc.)
            .build()
            .expect("Failed to create Tokio runtime");
        let mut monitor = self.monitor.take().unwrap();
        tokio_runtime.block_on(async move {
            let jh1 = tokio::spawn(async move {
                monitor.run().await;
            });
            #[cfg(feature = "prometheus")]
            if let Some(prometheus) = self.options.online.prometheus {
                use hyper::service::service_fn;
                use hyper_util::rt::TokioIo;
                use tokio::net::TcpListener;
                tokio::spawn(async move {
                    let listener = TcpListener::bind((prometheus.ip, prometheus.port))
                        .await
                        .expect("failed to run prometheus server");
                    loop {
                        let Ok((socket, _)) = listener.accept().await else {
                            eprintln!("Prometheus server accept failed");
                            break;
                        };
                        let socket = TokioIo::new(socket);
                        tokio::spawn(async move {
                            if let Err(e) = hyper::server::conn::http1::Builder::new()
                                .serve_connection(socket, service_fn(crate::stats::serve_req))
                                .await
                            {
                                eprintln!("Prometheus server error: {}", e);
                            }
                        });
                    }
                });
            }
            jh1.await.unwrap();
        });
        println!("Main done. Ran for {:?}", start.elapsed());
    }

    fn start_ports(&self) {
        log::info!("Starting ports...");
        for port in self.ports.values() {
            port.start();

            if self.options.online.hardware_assist {
                log::info!("Applying hardware filters...");
                let res = self.filter.set_hardware_filter(port);
                match res {
                    Ok(_) => (),
                    Err(error) => {
                        log::warn!("Failed to apply some patterns, passing all traffic through Port {}. Reason: {}", port.id, error);
                    }
                }
            } else {
                log::info!("No hardware assist configured for port {}, passing all traffic through device.", port.id);
            }
        }
    }

    fn stop_ports(&self) {
        log::info!("Stopping ports...");
        for port in self.ports.values() {
            port.stop();
        }
    }
}

/// Read-only runtime options for the offline core
#[derive(Debug)]
pub(crate) struct OnlineOptions {
    pub(crate) online: OnlineConfig,
    pub(crate) conntrack: ConnTrackConfig,
}

extern "C" fn launch_rx<S>(arg: *mut c_void) -> i32
where
    S: Subscribable,
{
    // enforce that workers cores cannot mutate runtime
    // TODO: make this *const and use Mutex for interior mutability
    let rx_cores = arg as *const BTreeMap<CoreId, RxCore<S>>;
    let rx_cores = unsafe { &*rx_cores };

    let core_id = CoreId(unsafe { dpdk::rte_lcore_id() } as u32);
    let rx_core = rx_cores.get(&core_id).expect("Invalid Core");

    // TODO: slight optimization: even if filter is nonempty, if the hardware takes care of the
    // whole thing we can also run_rx with no filter
    rx_core.rx_loop();
    0
}