Line data Source code
1 : //! [`super::VirtualFile`] supports different IO engines.
2 : //!
3 : //! The [`IoEngineKind`] enum identifies them.
4 : //!
5 : //! The choice of IO engine is global.
6 : //! Initialize using [`init`].
7 : //!
8 : //! Then use [`get`] and [`super::OpenOptions`].
9 : //!
10 : //!
11 :
12 : #[cfg(target_os = "linux")]
13 : pub(super) mod tokio_epoll_uring_ext;
14 :
15 : use tokio_epoll_uring::IoBuf;
16 : use tracing::Instrument;
17 :
18 : pub(crate) use super::api::IoEngineKind;
19 : #[derive(Clone, Copy)]
20 : #[repr(u8)]
21 : pub(crate) enum IoEngine {
22 : NotSet,
23 : StdFs,
24 : #[cfg(target_os = "linux")]
25 : TokioEpollUring,
26 : }
27 :
28 : impl From<IoEngineKind> for IoEngine {
29 202 : fn from(value: IoEngineKind) -> Self {
30 202 : match value {
31 101 : IoEngineKind::StdFs => IoEngine::StdFs,
32 : #[cfg(target_os = "linux")]
33 101 : IoEngineKind::TokioEpollUring => IoEngine::TokioEpollUring,
34 : }
35 202 : }
36 : }
37 :
38 : impl TryFrom<u8> for IoEngine {
39 : type Error = u8;
40 :
41 1913913 : fn try_from(value: u8) -> Result<Self, Self::Error> {
42 1913913 : Ok(match value {
43 1913913 : v if v == (IoEngine::NotSet as u8) => IoEngine::NotSet,
44 1913711 : v if v == (IoEngine::StdFs as u8) => IoEngine::StdFs,
45 : #[cfg(target_os = "linux")]
46 956798 : v if v == (IoEngine::TokioEpollUring as u8) => IoEngine::TokioEpollUring,
47 0 : x => return Err(x),
48 : })
49 1913913 : }
50 : }
51 :
52 : static IO_ENGINE: AtomicU8 = AtomicU8::new(IoEngine::NotSet as u8);
53 :
54 202 : pub(crate) fn set(engine_kind: IoEngineKind) {
55 202 : let engine: IoEngine = engine_kind.into();
56 202 : IO_ENGINE.store(engine as u8, std::sync::atomic::Ordering::Relaxed);
57 202 : #[cfg(not(test))]
58 202 : {
59 202 : let metric = &crate::metrics::virtual_file_io_engine::KIND;
60 202 : metric.reset();
61 202 : metric
62 202 : .with_label_values(&[&format!("{engine_kind}")])
63 202 : .set(1);
64 202 : }
65 202 : }
66 :
67 : #[cfg(not(test))]
68 0 : pub(super) fn init(engine_kind: IoEngineKind) {
69 0 : set(engine_kind);
70 0 : }
71 :
72 : /// Longer-term, this API should only be used by [`super::VirtualFile`].
73 1913913 : pub(crate) fn get() -> IoEngine {
74 1913913 : let cur = IoEngine::try_from(IO_ENGINE.load(Ordering::Relaxed)).unwrap();
75 1913913 : if cfg!(test) {
76 1913913 : let env_var_name = "NEON_PAGESERVER_UNIT_TEST_VIRTUAL_FILE_IOENGINE";
77 1913913 : match cur {
78 : IoEngine::NotSet => {
79 202 : let kind = match std::env::var(env_var_name) {
80 202 : Ok(v) => match v.parse::<IoEngineKind>() {
81 202 : Ok(engine_kind) => engine_kind,
82 0 : Err(e) => {
83 0 : panic!("invalid VirtualFile io engine for env var {env_var_name}: {e:#}: {v:?}")
84 : }
85 : },
86 : Err(std::env::VarError::NotPresent) => {
87 : #[cfg(target_os = "linux")]
88 : {
89 0 : IoEngineKind::TokioEpollUring
90 : }
91 : #[cfg(not(target_os = "linux"))]
92 : {
93 : IoEngineKind::StdFs
94 : }
95 : }
96 : Err(std::env::VarError::NotUnicode(_)) => {
97 0 : panic!("env var {env_var_name} is not unicode");
98 : }
99 : };
100 202 : self::set(kind);
101 202 : self::get()
102 : }
103 1913711 : x => x,
104 : }
105 : } else {
106 0 : cur
107 : }
108 1913913 : }
109 :
110 : use std::{
111 : os::unix::prelude::FileExt,
112 : sync::atomic::{AtomicU8, Ordering},
113 : };
114 :
115 : use super::{
116 : owned_buffers_io::{io_buf_ext::FullSlice, slice::SliceMutExt},
117 : FileGuard, Metadata,
118 : };
119 :
120 : #[cfg(target_os = "linux")]
121 2 : fn epoll_uring_error_to_std(e: tokio_epoll_uring::Error<std::io::Error>) -> std::io::Error {
122 2 : match e {
123 2 : tokio_epoll_uring::Error::Op(e) => e,
124 0 : tokio_epoll_uring::Error::System(system) => {
125 0 : std::io::Error::new(std::io::ErrorKind::Other, system)
126 : }
127 : }
128 2 : }
129 :
130 : impl IoEngine {
131 766007 : pub(super) async fn read_at<Buf>(
132 766007 : &self,
133 766007 : file_guard: FileGuard,
134 766007 : offset: u64,
135 766007 : mut slice: tokio_epoll_uring::Slice<Buf>,
136 766007 : ) -> (
137 766007 : (FileGuard, tokio_epoll_uring::Slice<Buf>),
138 766007 : std::io::Result<usize>,
139 766007 : )
140 766007 : where
141 766007 : Buf: tokio_epoll_uring::IoBufMut + Send,
142 766007 : {
143 766007 : match self {
144 0 : IoEngine::NotSet => panic!("not initialized"),
145 : IoEngine::StdFs => {
146 383066 : let rust_slice = slice.as_mut_rust_slice_full_zeroed();
147 383066 : let res = file_guard.with_std_file(|std_file| std_file.read_at(rust_slice, offset));
148 383066 : ((file_guard, slice), res)
149 : }
150 : #[cfg(target_os = "linux")]
151 : IoEngine::TokioEpollUring => {
152 382941 : let system = tokio_epoll_uring_ext::thread_local_system().await;
153 382954 : let (resources, res) = system.read(file_guard, offset, slice).await;
154 382941 : (resources, res.map_err(epoll_uring_error_to_std))
155 : }
156 : }
157 766007 : }
158 2733 : pub(super) async fn sync_all(&self, file_guard: FileGuard) -> (FileGuard, std::io::Result<()>) {
159 2733 : match self {
160 0 : IoEngine::NotSet => panic!("not initialized"),
161 : IoEngine::StdFs => {
162 1365 : let res = file_guard.with_std_file(|std_file| std_file.sync_all());
163 1365 : (file_guard, res)
164 : }
165 : #[cfg(target_os = "linux")]
166 : IoEngine::TokioEpollUring => {
167 1368 : let system = tokio_epoll_uring_ext::thread_local_system().await;
168 1368 : let (resources, res) = system.fsync(file_guard).await;
169 1368 : (resources, res.map_err(epoll_uring_error_to_std))
170 : }
171 : }
172 2733 : }
173 0 : pub(super) async fn sync_data(
174 0 : &self,
175 0 : file_guard: FileGuard,
176 0 : ) -> (FileGuard, std::io::Result<()>) {
177 0 : match self {
178 0 : IoEngine::NotSet => panic!("not initialized"),
179 : IoEngine::StdFs => {
180 0 : let res = file_guard.with_std_file(|std_file| std_file.sync_data());
181 0 : (file_guard, res)
182 : }
183 : #[cfg(target_os = "linux")]
184 : IoEngine::TokioEpollUring => {
185 0 : let system = tokio_epoll_uring_ext::thread_local_system().await;
186 0 : let (resources, res) = system.fdatasync(file_guard).await;
187 0 : (resources, res.map_err(epoll_uring_error_to_std))
188 : }
189 : }
190 0 : }
191 1730 : pub(super) async fn metadata(
192 1730 : &self,
193 1730 : file_guard: FileGuard,
194 1730 : ) -> (FileGuard, std::io::Result<Metadata>) {
195 1730 : match self {
196 0 : IoEngine::NotSet => panic!("not initialized"),
197 : IoEngine::StdFs => {
198 865 : let res =
199 865 : file_guard.with_std_file(|std_file| std_file.metadata().map(Metadata::from));
200 865 : (file_guard, res)
201 : }
202 : #[cfg(target_os = "linux")]
203 : IoEngine::TokioEpollUring => {
204 865 : let system = tokio_epoll_uring_ext::thread_local_system().await;
205 865 : let (resources, res) = system.statx(file_guard).await;
206 865 : (
207 865 : resources,
208 865 : res.map_err(epoll_uring_error_to_std).map(Metadata::from),
209 865 : )
210 : }
211 : }
212 1730 : }
213 1136142 : pub(super) async fn write_at<B: IoBuf + Send>(
214 1136142 : &self,
215 1136142 : file_guard: FileGuard,
216 1136142 : offset: u64,
217 1136142 : buf: FullSlice<B>,
218 1136142 : ) -> ((FileGuard, FullSlice<B>), std::io::Result<usize>) {
219 1136142 : match self {
220 0 : IoEngine::NotSet => panic!("not initialized"),
221 : IoEngine::StdFs => {
222 568069 : let result = file_guard.with_std_file(|std_file| std_file.write_at(&buf, offset));
223 568069 : ((file_guard, buf), result)
224 : }
225 : #[cfg(target_os = "linux")]
226 : IoEngine::TokioEpollUring => {
227 568073 : let system = tokio_epoll_uring_ext::thread_local_system().await;
228 568073 : let ((file_guard, slice), res) =
229 568075 : system.write(file_guard, offset, buf.into_raw_slice()).await;
230 568073 : (
231 568073 : (file_guard, FullSlice::must_new(slice)),
232 568073 : res.map_err(epoll_uring_error_to_std),
233 568073 : )
234 : }
235 : }
236 1136142 : }
237 :
238 : /// If we switch a user of [`tokio::fs`] to use [`super::io_engine`],
239 : /// they'd start blocking the executor thread if [`IoEngine::StdFs`] is configured
240 : /// whereas before the switch to [`super::io_engine`], that wasn't the case.
241 : /// This method helps avoid such a regression.
242 : ///
243 : /// Panics if the `spawn_blocking` fails, see [`tokio::task::JoinError`] for reasons why that can happen.
244 6 : pub(crate) async fn spawn_blocking_and_block_on_if_std<Fut, R>(&self, work: Fut) -> R
245 6 : where
246 6 : Fut: 'static + Send + std::future::Future<Output = R>,
247 6 : R: 'static + Send,
248 6 : {
249 6 : match self {
250 0 : IoEngine::NotSet => panic!("not initialized"),
251 : IoEngine::StdFs => {
252 3 : let span = tracing::info_span!("spawn_blocking_block_on_if_std");
253 3 : tokio::task::spawn_blocking({
254 3 : move || tokio::runtime::Handle::current().block_on(work.instrument(span))
255 3 : })
256 3 : .await
257 3 : .expect("failed to join blocking code most likely it panicked, panicking as well")
258 : }
259 : #[cfg(target_os = "linux")]
260 6 : IoEngine::TokioEpollUring => work.await,
261 : }
262 6 : }
263 : }
264 :
265 : pub enum FeatureTestResult {
266 : PlatformPreferred(IoEngineKind),
267 : Worse {
268 : engine: IoEngineKind,
269 : remark: String,
270 : },
271 : }
272 :
273 : impl FeatureTestResult {
274 : #[cfg(target_os = "linux")]
275 : const PLATFORM_PREFERRED: IoEngineKind = IoEngineKind::TokioEpollUring;
276 : #[cfg(not(target_os = "linux"))]
277 : const PLATFORM_PREFERRED: IoEngineKind = IoEngineKind::StdFs;
278 : }
279 :
280 : impl From<FeatureTestResult> for IoEngineKind {
281 0 : fn from(val: FeatureTestResult) -> Self {
282 0 : match val {
283 0 : FeatureTestResult::PlatformPreferred(e) => e,
284 0 : FeatureTestResult::Worse { engine, .. } => engine,
285 : }
286 0 : }
287 : }
288 :
289 : /// Somewhat costly under the hood, do only once.
290 : /// Panics if we can't set up the feature test.
291 208 : pub fn feature_test() -> anyhow::Result<FeatureTestResult> {
292 208 : std::thread::spawn(|| {
293 208 :
294 208 : #[cfg(not(target_os = "linux"))]
295 208 : {
296 208 : Ok(FeatureTestResult::PlatformPreferred(
297 208 : FeatureTestResult::PLATFORM_PREFERRED,
298 208 : ))
299 208 : }
300 208 : #[cfg(target_os = "linux")]
301 208 : {
302 208 : let rt = tokio::runtime::Builder::new_current_thread()
303 208 : .enable_all()
304 208 : .build()
305 208 : .unwrap();
306 208 : Ok(match rt.block_on(tokio_epoll_uring::System::launch()) {
307 : Ok(_) => FeatureTestResult::PlatformPreferred({
308 208 : assert!(matches!(
309 208 : IoEngineKind::TokioEpollUring,
310 : FeatureTestResult::PLATFORM_PREFERRED
311 : ));
312 208 : FeatureTestResult::PLATFORM_PREFERRED
313 : }),
314 0 : Err(tokio_epoll_uring::LaunchResult::IoUringBuild(e)) => {
315 0 : let remark = match e.raw_os_error() {
316 : Some(nix::libc::EPERM) => {
317 : // fall back
318 0 : "creating tokio-epoll-uring fails with EPERM, assuming it's admin-disabled "
319 0 : .to_string()
320 : }
321 : Some(nix::libc::EFAULT) => {
322 : // fail feature test
323 0 : anyhow::bail!(
324 0 : "creating tokio-epoll-uring fails with EFAULT, might have corrupted memory"
325 0 : );
326 : }
327 : Some(_) | None => {
328 : // fall back
329 0 : format!("creating tokio-epoll-uring fails with error: {e:#}")
330 : }
331 : };
332 0 : FeatureTestResult::Worse {
333 0 : engine: IoEngineKind::StdFs,
334 0 : remark,
335 0 : }
336 : }
337 : })
338 : }
339 208 : })
340 208 : .join()
341 208 : .unwrap()
342 208 : }
343 :
344 : /// For use in benchmark binaries only.
345 : ///
346 : /// Benchmarks which initialize `virtual_file` need to know what engine to use, but we also
347 : /// don't want to silently fall back to slower I/O engines in a benchmark: this could waste
348 : /// developer time trying to figure out why it's slow.
349 : ///
350 : /// In practice, this method will either return IoEngineKind::TokioEpollUring, or panic.
351 0 : pub fn io_engine_for_bench() -> IoEngineKind {
352 0 : #[cfg(not(target_os = "linux"))]
353 0 : {
354 0 : panic!("This benchmark does I/O and can only give a representative result on Linux");
355 0 : }
356 0 : #[cfg(target_os = "linux")]
357 0 : {
358 0 : match feature_test().unwrap() {
359 0 : FeatureTestResult::PlatformPreferred(engine) => engine,
360 : FeatureTestResult::Worse {
361 0 : engine: _engine,
362 0 : remark,
363 0 : } => {
364 0 : panic!("This benchmark does I/O can requires the preferred I/O engine: {remark}");
365 : }
366 : }
367 : }
368 0 : }
|