8
8
use std:: ffi:: { CStr , CString } ;
9
9
use std:: fs:: File ;
10
10
use std:: io;
11
- use std:: mem:: { self , size_of, ManuallyDrop , MaybeUninit } ;
11
+ #[ cfg( target_os = "linux" ) ]
12
+ use std:: mem:: size_of;
13
+ use std:: mem:: { self , ManuallyDrop , MaybeUninit } ;
12
14
use std:: os:: unix:: io:: { AsRawFd , FromRawFd , RawFd } ;
13
15
use std:: sync:: atomic:: Ordering ;
14
16
use std:: sync:: Arc ;
@@ -19,9 +21,9 @@ use super::os_compat::LinuxDirent64;
19
21
#[ cfg( target_os = "linux" ) ]
20
22
use super :: util:: stat_fd;
21
23
use super :: * ;
24
+ use crate :: abi:: fuse_abi:: { CreateIn , Opcode } ;
22
25
#[ cfg( target_os = "linux" ) ]
23
- use crate :: abi:: fuse_abi:: WRITE_KILL_PRIV ;
24
- use crate :: abi:: fuse_abi:: { CreateIn , Opcode , FOPEN_IN_KILL_SUIDGID } ;
26
+ use crate :: abi:: fuse_abi:: { FOPEN_IN_KILL_SUIDGID , WRITE_KILL_PRIV } ;
25
27
#[ cfg( any( feature = "vhost-user-fs" , feature = "virtiofs" ) ) ]
26
28
use crate :: abi:: virtio_fs;
27
29
use crate :: api:: filesystem:: {
@@ -224,7 +226,10 @@ impl<S: BitmapSlice + Send + Sync> PassthroughFs<S> {
224
226
add_entry (
225
227
DirEntry {
226
228
ino : dirent. d_ino ,
229
+ #[ cfg( target_os = "linux" ) ]
227
230
offset : dirent. d_seekoff as u64 ,
231
+ #[ cfg( target_os = "macos" ) ]
232
+ offset : dirent. d_seekoff ,
228
233
type_ : dirent. d_type as u32 ,
229
234
name,
230
235
} ,
@@ -252,7 +257,8 @@ impl<S: BitmapSlice + Send + Sync> PassthroughFs<S> {
252
257
& self ,
253
258
inode : Inode ,
254
259
flags : u32 ,
255
- fuse_flags : u32 ,
260
+ #[ cfg( target_os = "linux" ) ] fuse_flags : u32 ,
261
+ #[ cfg( target_os = "macos" ) ] _fuse_flags : u32 ,
256
262
) -> io:: Result < ( Option < Handle > , OpenOptions , Option < u32 > ) > {
257
263
#[ cfg( target_os = "linux" ) ]
258
264
let killpriv = if self . killpriv_v2 . load ( Ordering :: Relaxed )
@@ -392,52 +398,58 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
392
398
type Inode = Inode ;
393
399
type Handle = Handle ;
394
400
401
+ #[ cfg( target_os = "linux" ) ]
395
402
fn init ( & self , capable : FsOptions ) -> io:: Result < FsOptions > {
396
403
if self . cfg . do_import {
397
404
self . import ( ) ?;
398
405
}
399
406
400
- #[ cfg( target_os = "linux" ) ]
401
407
let mut opts = FsOptions :: DO_READDIRPLUS | FsOptions :: READDIRPLUS_AUTO ;
402
408
// !cfg.do_import means we are under vfs, in which case capable is already
403
409
// negotiated and must be honored.
404
- #[ cfg( target_os = "linux" ) ]
410
+
411
+ if ( !self . cfg . do_import || self . cfg . writeback )
412
+ && capable. contains ( FsOptions :: WRITEBACK_CACHE )
405
413
{
406
- if ( !self . cfg . do_import || self . cfg . writeback )
407
- && capable. contains ( FsOptions :: WRITEBACK_CACHE )
408
- {
409
- opts |= FsOptions :: WRITEBACK_CACHE ;
410
- self . writeback . store ( true , Ordering :: Relaxed ) ;
411
- }
412
- if ( !self . cfg . do_import || self . cfg . no_open )
413
- && capable. contains ( FsOptions :: ZERO_MESSAGE_OPEN )
414
- {
415
- opts |= FsOptions :: ZERO_MESSAGE_OPEN ;
416
- // We can't support FUSE_ATOMIC_O_TRUNC with no_open
417
- opts. remove ( FsOptions :: ATOMIC_O_TRUNC ) ;
418
- self . no_open . store ( true , Ordering :: Relaxed ) ;
419
- }
420
- if ( !self . cfg . do_import || self . cfg . no_opendir )
421
- && capable. contains ( FsOptions :: ZERO_MESSAGE_OPENDIR )
422
- {
423
- opts |= FsOptions :: ZERO_MESSAGE_OPENDIR ;
424
- self . no_opendir . store ( true , Ordering :: Relaxed ) ;
425
- }
426
- if ( !self . cfg . do_import || self . cfg . killpriv_v2 )
427
- && capable. contains ( FsOptions :: HANDLE_KILLPRIV_V2 )
428
- {
429
- opts |= FsOptions :: HANDLE_KILLPRIV_V2 ;
430
- self . killpriv_v2 . store ( true , Ordering :: Relaxed ) ;
431
- }
414
+ opts |= FsOptions :: WRITEBACK_CACHE ;
415
+ self . writeback . store ( true , Ordering :: Relaxed ) ;
416
+ }
417
+ if ( !self . cfg . do_import || self . cfg . no_open )
418
+ && capable. contains ( FsOptions :: ZERO_MESSAGE_OPEN )
419
+ {
420
+ opts |= FsOptions :: ZERO_MESSAGE_OPEN ;
421
+ // We can't support FUSE_ATOMIC_O_TRUNC with no_open
422
+ opts. remove ( FsOptions :: ATOMIC_O_TRUNC ) ;
423
+ self . no_open . store ( true , Ordering :: Relaxed ) ;
424
+ }
425
+ if ( !self . cfg . do_import || self . cfg . no_opendir )
426
+ && capable. contains ( FsOptions :: ZERO_MESSAGE_OPENDIR )
427
+ {
428
+ opts |= FsOptions :: ZERO_MESSAGE_OPENDIR ;
429
+ self . no_opendir . store ( true , Ordering :: Relaxed ) ;
430
+ }
431
+ if ( !self . cfg . do_import || self . cfg . killpriv_v2 )
432
+ && capable. contains ( FsOptions :: HANDLE_KILLPRIV_V2 )
433
+ {
434
+ opts |= FsOptions :: HANDLE_KILLPRIV_V2 ;
435
+ self . killpriv_v2 . store ( true , Ordering :: Relaxed ) ;
436
+ }
432
437
433
- if capable. contains ( FsOptions :: PERFILE_DAX ) {
434
- opts |= FsOptions :: PERFILE_DAX ;
435
- self . perfile_dax . store ( true , Ordering :: Relaxed ) ;
436
- }
438
+ if capable. contains ( FsOptions :: PERFILE_DAX ) {
439
+ opts |= FsOptions :: PERFILE_DAX ;
440
+ self . perfile_dax . store ( true , Ordering :: Relaxed ) ;
437
441
}
438
442
439
- #[ cfg( target_os = "macos" ) ]
440
- let mut opts = FsOptions :: FILE_OPS ;
443
+ Ok ( opts)
444
+ }
445
+
446
+ #[ cfg( target_os = "macos" ) ]
447
+ fn init ( & self , _capable : FsOptions ) -> io:: Result < FsOptions > {
448
+ if self . cfg . do_import {
449
+ self . import ( ) ?;
450
+ }
451
+
452
+ let opts = FsOptions :: FILE_OPS ;
441
453
442
454
Ok ( opts)
443
455
}
@@ -803,7 +815,8 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
803
815
_lock_owner : Option < u64 > ,
804
816
_delayed_write : bool ,
805
817
flags : u32 ,
806
- fuse_flags : u32 ,
818
+ #[ cfg( target_os = "linux" ) ] fuse_flags : u32 ,
819
+ #[ cfg( target_os = "macos" ) ] _fuse_flags : u32 ,
807
820
) -> io:: Result < usize > {
808
821
let data = self . get_data ( handle, inode, libc:: O_RDWR ) ?;
809
822
@@ -1051,7 +1064,8 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1051
1064
oldname : & CStr ,
1052
1065
newdir : Inode ,
1053
1066
newname : & CStr ,
1054
- flags : u32 ,
1067
+ #[ cfg( target_os = "linux" ) ] flags : u32 ,
1068
+ #[ cfg( target_os = "macos" ) ] _flags : u32 ,
1055
1069
) -> io:: Result < ( ) > {
1056
1070
self . validate_path_component ( oldname) ?;
1057
1071
self . validate_path_component ( newname) ?;
@@ -1104,7 +1118,9 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1104
1118
self . validate_path_component ( name) ?;
1105
1119
1106
1120
let data = self . inode_map . get ( parent) ?;
1121
+ #[ cfg( target_os = "linux" ) ]
1107
1122
let file = data. get_file ( ) ?;
1123
+ #[ cfg( target_os = "macos" ) ]
1108
1124
let pathname = data. get_path ( ) ?;
1109
1125
1110
1126
let res = {
@@ -1266,7 +1282,8 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1266
1282
& self ,
1267
1283
_ctx : & Context ,
1268
1284
inode : Inode ,
1269
- datasync : bool ,
1285
+ #[ cfg( target_os = "linux" ) ] datasync : bool ,
1286
+ #[ cfg( target_os = "macos" ) ] _datasync : bool ,
1270
1287
handle : Handle ,
1271
1288
) -> io:: Result < ( ) > {
1272
1289
let data = self . get_data ( handle, inode, libc:: O_RDONLY ) ?;
@@ -1358,6 +1375,7 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1358
1375
}
1359
1376
1360
1377
let data = self . inode_map . get ( inode) ?;
1378
+ #[ cfg( target_os = "linux" ) ]
1361
1379
let file = data. get_file ( ) ?;
1362
1380
#[ cfg( target_os = "linux" ) ]
1363
1381
let pathname = CString :: new ( format ! ( "/proc/self/fd/{}" , file. as_raw_fd( ) ) )
@@ -1409,6 +1427,7 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1409
1427
}
1410
1428
1411
1429
let data = self . inode_map . get ( inode) ?;
1430
+ #[ cfg( target_os = "linux" ) ]
1412
1431
let file = data. get_file ( ) ?;
1413
1432
let mut buf = Vec :: < u8 > :: with_capacity ( size as usize ) ;
1414
1433
#[ cfg( target_os = "linux" ) ]
@@ -1460,6 +1479,7 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1460
1479
}
1461
1480
1462
1481
let data = self . inode_map . get ( inode) ?;
1482
+ #[ cfg( target_os = "linux" ) ]
1463
1483
let file = data. get_file ( ) ?;
1464
1484
let mut buf = Vec :: < u8 > :: with_capacity ( size as usize ) ;
1465
1485
#[ cfg( target_os = "linux" ) ]
@@ -1508,6 +1528,7 @@ impl<S: BitmapSlice + Send + Sync> FileSystem for PassthroughFs<S> {
1508
1528
}
1509
1529
1510
1530
let data = self . inode_map . get ( inode) ?;
1531
+ #[ cfg( target_os = "linux" ) ]
1511
1532
let file = data. get_file ( ) ?;
1512
1533
#[ cfg( target_os = "linux" ) ]
1513
1534
let pathname = CString :: new ( format ! ( "/proc/self/fd/{}" , file. as_raw_fd( ) ) )
0 commit comments