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
440
441
442
443
444
445
// 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 std::ffi::CStr;
use std::io::{self, IoSlice, Read, Write};
use std::mem::{align_of, size_of};
use std::pin::Pin;

use crate::internal::fuse_kernel;

#[cfg(test)]
#[path = "fuse_io_test.rs"]
mod fuse_io_test;

pub(crate) trait Channel {
	fn read(&self, buf: &mut [u8]) -> io::Result<usize>;
	fn write(&self, buf: &[u8]) -> io::Result<()>;
	fn write_vectored(&self, bufs: &[io::IoSlice]) -> io::Result<()>;
}

pub(crate) struct FileChannel {
	file: std::fs::File,
}

impl FileChannel {
	pub(crate) fn new(file: std::fs::File) -> Self {
		Self { file }
	}

	pub(crate) fn try_clone(&self) -> io::Result<Self> {
		Ok(Self {
			file: self.file.try_clone()?,
		})
	}
}

impl Channel for FileChannel {
	fn read(&self, buf: &mut [u8]) -> io::Result<usize> {
		Read::read(&mut &self.file, buf)
	}

	fn write(&self, buf: &[u8]) -> io::Result<()> {
		let write_size = Write::write(&mut &self.file, buf)?;
		// TODO: check if write_size < buf.len()
		Ok(())
	}

	fn write_vectored(&self, bufs: &[io::IoSlice]) -> io::Result<()> {
		let write_size = Write::write_vectored(&mut &self.file, bufs)?;
		// TODO: check if write_size < bufs.sum(|x| x.len())
		Ok(())
	}
}

pub(crate) trait AlignedBuffer {
	fn get(&self) -> &[u8];
	fn get_mut(&mut self) -> &mut [u8];
}

pub(crate) fn aligned_slice<Buf: AlignedBuffer>(
	buf: &Buf,
	size: usize,
) -> AlignedSlice {
	// TODO: validate size
	AlignedSlice {
		buf: &buf.get()[0..size],
	}
}

pub(crate) struct MinReadBuffer {
	_align: [u64; 0],
	buf: [u8; fuse_kernel::FUSE_MIN_READ_BUFFER as usize],
}

impl MinReadBuffer {
	pub(crate) fn new() -> Self {
		Self {
			_align: [0; 0],
			buf: [0; fuse_kernel::FUSE_MIN_READ_BUFFER as usize],
		}
	}

	#[cfg(test)]
	pub(crate) fn borrow(&self) -> AlignedSlice {
		AlignedSlice { buf: &self.buf }
	}
}

impl AlignedBuffer for MinReadBuffer {
	fn get(&self) -> &[u8] {
		&self.buf
	}

	fn get_mut(&mut self) -> &mut [u8] {
		&mut self.buf
	}
}

pub(crate) struct AlignedSlice<'a> {
	buf: &'a [u8],
}

impl<'a> AlignedSlice<'a> {
	pub fn get(self) -> &'a [u8] {
		self.buf
	}
}

pub(crate) struct AlignedVec {
	pinned: Pin<Box<[u8]>>,
	offset: usize,
}

impl AlignedVec {
	pub(crate) fn new(size: usize) -> Self {
		let mut vec = Vec::with_capacity(size + 7);
		vec.resize(size + 7, 0u8);
		let pinned = Pin::new(vec.into_boxed_slice());
		let offset = pinned.as_ptr().align_offset(align_of::<u64>());
		Self { pinned, offset }
	}
}

impl AlignedBuffer for AlignedVec {
	fn get(&self) -> &[u8] {
		if self.offset == 0 {
			return &self.pinned;
		}
		let (_, aligned) = self.pinned.split_at(self.offset);
		aligned
	}

	fn get_mut(&mut self) -> &mut [u8] {
		if self.offset == 0 {
			return &mut self.pinned;
		}
		let (_, aligned) = self.pinned.split_at_mut(self.offset);
		aligned
	}
}

pub(crate) trait DecodeRequest<'a>: Sized {
	fn decode_request(decoder: RequestDecoder<'a>) -> io::Result<Self>;
}

pub(crate) struct RequestDecoder<'a> {
	buf: &'a [u8],
	header: &'a fuse_kernel::fuse_in_header,
	version: crate::ProtocolVersion,
	consumed: u32,
}

impl<'a> RequestDecoder<'a> {
	pub(crate) fn new(
		buf: AlignedSlice<'a>,
		version: crate::ProtocolVersion,
	) -> io::Result<Self> {
		let buf = buf.get();
		if buf.len() < size_of::<fuse_kernel::fuse_in_header>() {
			return Err(io::ErrorKind::UnexpectedEof.into());
		}

		let header: &'a fuse_kernel::fuse_in_header =
			unsafe { &*(buf.as_ptr() as *const fuse_kernel::fuse_in_header) };

		let buf_len: u32;
		if size_of::<usize>() > size_of::<u32>() {
			if buf.len() > u32::MAX as usize {
				buf_len = u32::MAX;
			} else {
				buf_len = buf.len() as u32;
			}
		} else {
			buf_len = buf.len() as u32;
		}
		if buf_len < header.len {
			return Err(io::ErrorKind::UnexpectedEof.into());
		}

		Ok(RequestDecoder {
			buf,
			header,
			version,
			consumed: size_of::<fuse_kernel::fuse_in_header>() as u32,
		})
	}

	pub(crate) fn header(&self) -> &'a fuse_kernel::fuse_in_header {
		self.header
	}

	pub(crate) fn version(&self) -> crate::ProtocolVersion {
		self.version
	}

	fn consume(&self, len: u32) -> io::Result<u32> {
		let new_consumed: u32;
		let eof: bool;
		match self.consumed.checked_add(len) {
			Some(x) => {
				new_consumed = x;
				eof = new_consumed > self.header.len;
			},
			None => {
				new_consumed = 0;
				eof = true;
			},
		}
		if eof {
			return Err(io::ErrorKind::UnexpectedEof.into());
		}
		debug_assert!(new_consumed <= self.header.len);
		Ok(new_consumed)
	}

	pub(crate) fn peek_sized<T: Sized>(&self) -> io::Result<&'a T> {
		if size_of::<usize>() > size_of::<u32>() {
			debug_assert!(size_of::<T>() < u32::MAX as usize);
		}
		self.consume(size_of::<T>() as u32)?;
		let out: &'a T = unsafe {
			let out_p = self.buf.as_ptr().add(self.consumed as usize);
			&*(out_p as *const T)
		};
		Ok(out)
	}

	pub(crate) fn next_sized<T: Sized>(&mut self) -> io::Result<&'a T> {
		let out = self.peek_sized()?;
		self.consumed = self.consume(size_of::<T>() as u32)?;
		Ok(out)
	}

	pub(crate) fn next_bytes(&mut self, len: u32) -> io::Result<&'a [u8]> {
		let new_consumed = self.consume(len)?;
		let (_, start) = self.buf.split_at(self.consumed as usize);
		let (out, _) = start.split_at(len as usize);
		self.consumed = new_consumed;
		Ok(out)
	}

	pub(crate) fn next_cstr(&mut self) -> io::Result<&'a CStr> {
		for off in self.consumed..self.header.len {
			if self.buf[off as usize] == 0 {
				let len = off - self.consumed;
				let buf = self.next_bytes(len + 1)?;
				return Ok(unsafe { CStr::from_bytes_with_nul_unchecked(buf) });
			}
		}
		Err(io::ErrorKind::UnexpectedEof.into())
	}
}

pub(crate) trait EncodeResponse {
	fn encode_response<Chan: Channel>(
		&self,
		enc: ResponseEncoder<Chan>,
	) -> io::Result<()>;
}

pub(crate) struct ResponseEncoder<'a, Chan> {
	channel: &'a Chan,
	request_id: u64,
	version: crate::ProtocolVersion,
}

impl<'a, Chan> ResponseEncoder<'a, Chan> {
	pub(crate) fn new(
		channel: &'a Chan,
		request_id: u64,
		version: crate::ProtocolVersion,
	) -> Self {
		Self {
			channel,
			request_id,
			version,
		}
	}

	pub(crate) fn version(&self) -> crate::ProtocolVersion {
		self.version
	}
}

impl<Chan: Channel> ResponseEncoder<'_, Chan> {
	pub(crate) fn encode_error(self, error_code: i32) -> io::Result<()> {
		let len = size_of::<fuse_kernel::fuse_out_header>();
		let out_hdr = fuse_kernel::fuse_out_header {
			len: len as u32,
			error: error_code,
			unique: self.request_id,
		};
		let out_hdr_buf: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(&out_hdr as *const fuse_kernel::fuse_out_header) as *const u8,
				size_of::<fuse_kernel::fuse_out_header>(),
			)
		};

		self.channel.write(out_hdr_buf)
	}

	pub(crate) fn encode_sized<T: Sized>(self, t: &T) -> io::Result<()> {
		let bytes: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(t as *const T) as *const u8,
				size_of::<T>(),
			)
		};
		self.encode_bytes(bytes)
	}

	pub(crate) fn encode_sized_bytes<T: Sized>(
		self,
		bytes_1: &[u8],
		t: &T,
	) -> io::Result<()> {
		let bytes_2: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(t as *const T) as *const u8,
				size_of::<T>(),
			)
		};
		self.encode_bytes_2(bytes_1, bytes_2)
	}

	pub(crate) fn encode_sized_sized<T1: Sized, T2: Sized>(
		self,
		t_1: &T1,
		t_2: &T2,
	) -> io::Result<()> {
		let bytes_1: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(t_1 as *const T1) as *const u8,
				size_of::<T1>(),
			)
		};
		let bytes_2: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(t_2 as *const T2) as *const u8,
				size_of::<T2>(),
			)
		};
		self.encode_bytes_2(bytes_1, bytes_2)
	}

	pub(crate) fn encode_header_only(self) -> io::Result<()> {
		let len = size_of::<fuse_kernel::fuse_out_header>();
		let out_hdr = fuse_kernel::fuse_out_header {
			len: len as u32,
			error: 0,
			unique: self.request_id,
		};
		let out_hdr_buf: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(&out_hdr as *const fuse_kernel::fuse_out_header) as *const u8,
				size_of::<fuse_kernel::fuse_out_header>(),
			)
		};

		self.channel.write(out_hdr_buf)
	}

	pub(crate) fn encode_bytes(self, bytes: &[u8]) -> io::Result<()> {
		let mut len = size_of::<fuse_kernel::fuse_out_header>();

		match len.checked_add(bytes.len()) {
			Some(x) => len = x,
			None => panic!("{} + {} overflows usize", len, bytes.len()),
		}

		if size_of::<usize>() > size_of::<u32>() {
			if len > u32::MAX as usize {
				panic!("{} overflows u32", len);
			}
		}

		let out_hdr = fuse_kernel::fuse_out_header {
			len: len as u32,
			error: 0,
			unique: self.request_id,
		};
		let out_hdr_buf: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(&out_hdr as *const fuse_kernel::fuse_out_header) as *const u8,
				size_of::<fuse_kernel::fuse_out_header>(),
			)
		};
		self.channel
			.write_vectored(&[IoSlice::new(out_hdr_buf), IoSlice::new(bytes)])
	}

	pub(crate) fn encode_bytes_2(
		self,
		bytes_1: &[u8],
		bytes_2: &[u8],
	) -> io::Result<()> {
		let mut len = size_of::<fuse_kernel::fuse_out_header>();

		match len.checked_add(bytes_1.len()) {
			Some(x) => len = x,
			None => panic!("{} + {} overflows usize", len, bytes_1.len()),
		}
		match len.checked_add(bytes_2.len()) {
			Some(x) => len = x,
			None => panic!("{} + {} overflows usize", len, bytes_2.len()),
		}

		if size_of::<usize>() > size_of::<u32>() {
			if len > u32::MAX as usize {
				panic!("{} overflows u32", len);
			}
		}

		let out_hdr = fuse_kernel::fuse_out_header {
			len: len as u32,
			error: 0,
			unique: self.request_id,
		};
		let out_hdr_buf: &[u8] = unsafe {
			std::slice::from_raw_parts(
				(&out_hdr as *const fuse_kernel::fuse_out_header) as *const u8,
				size_of::<fuse_kernel::fuse_out_header>(),
			)
		};
		self.channel.write_vectored(&[
			IoSlice::new(out_hdr_buf),
			IoSlice::new(bytes_1),
			IoSlice::new(bytes_2),
		])
	}
}