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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
// Copyright 2020 John Millikin and the rust-fuse contributors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0

use core::cmp::{max, min};

#[cfg(feature = "std")]
use std::sync::Arc;

use crate::channel::{self, ChannelError};
use crate::error::{Error, ErrorCode};
use crate::internal::fuse_io;
use crate::internal::fuse_kernel;
use crate::internal::types::ProtocolVersion;
use crate::protocol::common::{RequestHeader, UnknownRequest};

pub trait ServerChannel: channel::Channel {
	fn try_clone(&self) -> Result<Self, Self::Error>
	where
		Self: Sized;
}

pub struct ServerContext {
	header: fuse_kernel::fuse_in_header,
}

impl<'a> ServerContext {
	pub(crate) fn new(header: fuse_kernel::fuse_in_header) -> Self {
		Self { header }
	}

	pub fn request_header(&self) -> &RequestHeader {
		RequestHeader::new_ref(&self.header)
	}
}

#[allow(unused_variables)]
pub trait ServerHooks {
	fn request(&self, request_header: &RequestHeader) {}
	fn unknown_request(&self, request: &UnknownRequest) {}
	fn unhandled_request(&self, request_header: &RequestHeader) {}
	fn request_error(&self, request_header: &RequestHeader, err: Error) {}
	fn response_error(
		&self,
		request_header: &RequestHeader,
		code: Option<ErrorCode>,
	) {
	}
	fn async_channel_error(
		&self,
		request_header: &RequestHeader,
		code: Option<ErrorCode>,
	) {
	}
}

#[cfg_attr(not(feature = "std"), allow(dead_code))]
pub enum NoopServerHooks {}

impl ServerHooks for NoopServerHooks {}

// When calculating the header overhead, the Linux kernel is permissive
// (allowing overheads as small as `size(fuse_in_header + fuse_write_in`)
// but libfuse is conservative (reserving 4 KiB).
//
// This code follows libfuse because I don't understand why such a large
// value was chosen.
const HEADER_OVERHEAD: usize = 4096;

#[cfg_attr(not(feature = "std"), allow(dead_code))]
pub(crate) fn read_buf_size(max_write: u32) -> usize {
	let max_write = max_write as usize;

	// The read buffer is the maximum write size, plus a fixed overhead for
	// request headers.
	//
	max(
		HEADER_OVERHEAD + max_write,
		fuse_kernel::FUSE_MIN_READ_BUFFER,
	)
}

#[cfg(not(feature = "std"))]
pub(crate) const fn capped_max_write() -> u32 {
	// In no_std mode the read buffer has a fixed size of FUSE_MIN_READ_BUFFER
	// bytes, so init responses must have their max_write capped to a value such
	// that `read_buf_size(max_write) <= FUSE_MIN_READ_BUFFER`.
	return (fuse_kernel::FUSE_MIN_READ_BUFFER - HEADER_OVERHEAD) as u32;
}

pub(crate) fn negotiate_version(
	kernel: ProtocolVersion,
) -> Option<ProtocolVersion> {
	if kernel.major() != fuse_kernel::FUSE_KERNEL_VERSION {
		return None;
	}
	Some(ProtocolVersion::new(
		fuse_kernel::FUSE_KERNEL_VERSION,
		min(kernel.minor(), fuse_kernel::FUSE_KERNEL_MINOR_VERSION),
	))
}

pub(crate) fn main_loop<Buf, C, Cb>(
	channel: &C,
	read_buf: &mut Buf,
	fuse_version: ProtocolVersion,
	semantics: fuse_io::Semantics,
	cb: Cb,
) -> Result<(), C::Error>
where
	Buf: fuse_io::AlignedBuffer,
	C: channel::Channel,
	Cb: Fn(fuse_io::RequestDecoder) -> Result<(), C::Error>,
{
	loop {
		let request_size = match channel.receive(read_buf.get_mut()) {
			Err(err) => {
				if semantics == fuse_io::Semantics::FUSE {
					if err.error_code() == Some(ErrorCode::ENODEV) {
						return Ok(());
					}
				}
				return Err(err);
			},
			Ok(request_size) => request_size,
		};
		let request_buf = fuse_io::aligned_slice(read_buf, request_size);
		cb(fuse_io::RequestDecoder::new(
			request_buf,
			fuse_version,
			semantics,
		)?)?;
	}
}

pub(crate) trait MaybeSendChannel {
	#[cfg(feature = "std")]
	type T: channel::Channel + Send + Sync + 'static;

	#[cfg(not(feature = "std"))]
	type T: channel::Channel;
}

#[cfg(feature = "std")]
impl<C> MaybeSendChannel for C
where
	C: channel::Channel + Send + Sync + 'static,
{
	type T = C;
}

#[cfg(not(feature = "std"))]
impl<C> MaybeSendChannel for C
where
	C: channel::Channel,
{
	type T = C;
}

pub(crate) trait MaybeSendHooks {
	#[cfg(feature = "std")]
	type T: ServerHooks + Send + Sync + 'static;

	#[cfg(not(feature = "std"))]
	type T: ServerHooks;
}

#[cfg(feature = "std")]
impl<H> MaybeSendHooks for H
where
	H: ServerHooks + Send + Sync + 'static,
{
	type T = H;
}

#[cfg(not(feature = "std"))]
impl<H> MaybeSendHooks for H
where
	H: ServerHooks,
{
	type T = H;
}

mod private {
	pub trait Respond {
		type Internal: RespondInternal<Self>;
	}

	pub trait RespondInternal<R: ?Sized> {
		fn unhandled_request(r: &R);
	}
}

pub(crate) fn unhandled_request<T, R: Respond<T>>(respond: R) {
	use private::RespondInternal;
	R::Internal::unhandled_request(&respond);
	respond.err(ErrorCode::ENOSYS)
}

/// **\[SEALED\]**
pub trait Respond<R>: private::Respond {
	fn ok(self, response: &R);
	fn err(self, err: ErrorCode);

	#[cfg(feature = "std")]
	#[cfg_attr(doc, doc(cfg(feature = "std")))]
	fn into_async(self) -> RespondAsync<R>;
}

pub(crate) struct RespondRef<'a, C, Hooks>
where
	C: channel::Channel,
{
	channel: &'a C,
	hooks: Option<&'a Hooks>,
	channel_err: &'a mut Result<(), C::Error>,
	header: &'a RequestHeader,
	fuse_version: ProtocolVersion,

	#[cfg(feature = "std")]
	channel_arc: &'a Arc<C>,

	#[cfg(feature = "std")]
	hooks_arc: Option<&'a Arc<Hooks>>,
}

impl<'a, C, Hooks> RespondRef<'a, C, Hooks>
where
	C: channel::Channel,
	Hooks: ServerHooks,
{
	pub(crate) fn new(
		channel: &'a C,
		hooks: Option<&'a Hooks>,
		channel_err: &'a mut Result<(), C::Error>,
		header: &'a RequestHeader,
		fuse_version: ProtocolVersion,
		#[cfg(feature = "std")] channel_arc: &'a Arc<C>,
		#[cfg(feature = "std")] hooks_arc: Option<&'a Arc<Hooks>>,
	) -> Self {
		Self {
			channel,
			hooks,
			channel_err,
			header,
			fuse_version,
			#[cfg(feature = "std")]
			channel_arc,
			#[cfg(feature = "std")]
			hooks_arc,
		}
	}

	pub(crate) fn encoder(&self) -> fuse_io::ResponseEncoder<C> {
		fuse_io::ResponseEncoder::new(
			self.channel,
			self.header.request_id(),
			self.fuse_version,
		)
	}

	fn ok_impl<R>(self, response: &R)
	where
		R: fuse_io::EncodeResponse,
	{
		if let Err(err) = response.encode_response(self.encoder()) {
			if let Some(hooks) = &self.hooks {
				hooks.response_error(self.header, err.error_code())
			}
			self.err_impl(ErrorCode::EIO);
		}
	}

	pub(crate) fn err_impl(self, err: ErrorCode) {
		*self.channel_err = self.encoder().encode_error(err);
	}
}

impl<C, Hooks> private::Respond for RespondRef<'_, C, Hooks>
where
	C: channel::Channel,
	Hooks: ServerHooks,
{
	type Internal = RespondRefInternal;
}

pub struct RespondRefInternal(());

impl<C, Hooks> private::RespondInternal<RespondRef<'_, C, Hooks>>
	for RespondRefInternal
where
	C: channel::Channel,
	Hooks: ServerHooks,
{
	fn unhandled_request(r: &RespondRef<C, Hooks>) {
		if let Some(hooks) = r.hooks {
			hooks.unhandled_request(r.header);
		}
	}
}

#[cfg(feature = "std")]
impl<C, Hooks, R> Respond<R> for RespondRef<'_, C, Hooks>
where
	C: channel::Channel + Send + Sync + 'static,
	Hooks: ServerHooks + Send + Sync + 'static,
	R: fuse_io::EncodeResponse,
{
	fn ok(self, response: &R) {
		self.ok_impl(response)
	}

	fn err(self, err: ErrorCode) {
		self.err_impl(err)
	}

	fn into_async(self) -> RespondAsync<R> {
		self.new_respond_async()
	}
}

#[cfg(not(feature = "std"))]
impl<C, Hooks, R> Respond<R> for RespondRef<'_, C, Hooks>
where
	C: channel::Channel,
	Hooks: ServerHooks,
	R: fuse_io::EncodeResponse,
{
	fn ok(self, response: &R) {
		self.ok_impl(response)
	}

	fn err(self, err: ErrorCode) {
		self.err_impl(err)
	}
}

#[cfg(feature = "std")]
#[cfg_attr(doc, doc(cfg(feature = "std")))]
pub struct RespondAsync<R>(Box<dyn RespondAsyncInner<R> + 'static>);

#[cfg(feature = "std")]
impl<R> RespondAsync<R> {
	pub fn ok(self, response: &R) {
		self.0.ok(response)
	}
	pub fn err(self, err: ErrorCode) {
		self.0.err(err)
	}
}

#[cfg(feature = "std")]
trait RespondAsyncInner<R>: Send + Sync {
	fn ok(&self, response: &R);
	fn err(&self, err: ErrorCode);
}

#[cfg(feature = "std")]
struct RespondAsyncInnerImpl<C, Hooks> {
	channel: Arc<C>,
	hooks: Option<Arc<Hooks>>,
	header: RequestHeader,
	fuse_version: ProtocolVersion,
}

#[cfg(feature = "std")]
impl<C, Hooks> RespondAsyncInnerImpl<C, Hooks>
where
	C: channel::Channel,
	Hooks: ServerHooks,
{
	fn encoder(&self) -> fuse_io::ResponseEncoder<C> {
		fuse_io::ResponseEncoder::new(
			self.channel.as_ref(),
			self.header.request_id(),
			self.fuse_version,
		)
	}

	fn err_impl(&self, err: ErrorCode) {
		if let Err(err) = self.encoder().encode_error(err) {
			if let Some(hooks) = &self.hooks {
				hooks.async_channel_error(&self.header, err.error_code())
			}
		}
	}
}

#[cfg(feature = "std")]
impl<C, Hooks, R> RespondAsyncInner<R> for RespondAsyncInnerImpl<C, Hooks>
where
	C: channel::Channel + Send + Sync,
	Hooks: ServerHooks + Send + Sync,
	R: fuse_io::EncodeResponse,
{
	fn ok(&self, response: &R) {
		if let Err(err) = response.encode_response(self.encoder()) {
			if let Some(hooks) = &self.hooks {
				hooks.response_error(&self.header, err.error_code())
			}
			self.err_impl(ErrorCode::EIO)
		}
	}

	fn err(&self, err: ErrorCode) {
		self.err_impl(err)
	}
}

#[cfg(feature = "std")]
impl<'a, C, Hooks> RespondRef<'a, C, Hooks>
where
	C: channel::Channel + Send + Sync + 'static,
	Hooks: ServerHooks + Send + Sync + 'static,
{
	fn new_respond_async<R>(self) -> RespondAsync<R>
	where
		R: fuse_io::EncodeResponse,
	{
		RespondAsync(Box::new(RespondAsyncInnerImpl {
			channel: self.channel_arc.clone(),
			hooks: self.hooks_arc.map(|h| h.clone()),
			header: self.header.clone(),
			fuse_version: self.fuse_version,
		}))
	}
}