diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-07-27 12:40:06 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-07-27 12:40:06 +0200 |
commit | 3078c9460c62d2acbcea9c9a5eab6d666fad79e9 (patch) | |
tree | 8d4095f11338ffb1637eb272a592e2d555724e31 /libnetfs | |
parent | 3834e9e19d0cf6ff5dfbaec9500308e4b79da23b (diff) | |
download | hurd-3078c9460c62d2acbcea9c9a5eab6d666fad79e9.tar.gz hurd-3078c9460c62d2acbcea9c9a5eab6d666fad79e9.tar.bz2 hurd-3078c9460c62d2acbcea9c9a5eab6d666fad79e9.zip |
Catch LFS64 inconsistencies in RPC server stubs
* libdiskfs/diskfs.h (protid_t): New type
(diskfs_S_io_write, diskfs_S_io_read, diskfs_S_io_seek,
diskfs_S_io_stat, diskfs_S_file_set_size,
diskfs_S_file_get_storage_info, diskfs_S_file_statfs): New prototypes.
* libnetfs/netfs.h (netfs_S_io_write, netfs_S_io_read, netfs_S_io_seek,
netfs_S_io_stat, netfs_S_file_set_size, netfs_S_file_get_storage_info,
netfs_S_file_statfs): New prototypes.
* libtrivfs/trivfs.h (trivfs_S_io_write, trivfs_S_io_read,
trivfs_S_io_seek, trivfs_S_io_stat, trivfs_S_file_set_size,
trivfs_S_file_get_storage_info, trivfs_S_file_statfs): New prototypes.
Diffstat (limited to 'libnetfs')
-rw-r--r-- | libnetfs/netfs.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libnetfs/netfs.h b/libnetfs/netfs.h index 3d51b74b..625aa963 100644 --- a/libnetfs/netfs.h +++ b/libnetfs/netfs.h @@ -482,5 +482,46 @@ extern auth_t netfs_auth_server_port; typedef struct protid *protid_t; typedef struct netfs_control *control_t; + +/* The following extracts from io_S.h and fs_S.h catch loff_t erroneously + written off_t and stat64 erroneously written stat, + or missing -D_FILE_OFFSET_BITS=64 build flag. */ + +kern_return_t netfs_S_io_write (protid_t io_object, + data_t data, + mach_msg_type_number_t dataCnt, + loff_t offset, + vm_size_t *amount); + +kern_return_t netfs_S_io_read (protid_t io_object, + data_t *data, + mach_msg_type_number_t *dataCnt, + loff_t offset, + vm_size_t amount); + +kern_return_t netfs_S_io_seek (protid_t io_object, + loff_t offset, + int whence, + loff_t *newp); + +kern_return_t netfs_S_io_stat (protid_t stat_object, + io_statbuf_t *stat_info); + +kern_return_t netfs_S_file_set_size (protid_t trunc_file, + loff_t new_size); + +kern_return_t netfs_S_file_get_storage_info (protid_t file, + portarray_t *ports, + mach_msg_type_name_t *portsPoly, + mach_msg_type_number_t *portsCnt, + intarray_t *ints, + mach_msg_type_number_t *intsCnt, + off_array_t *offsets, + mach_msg_type_number_t *offsetsCnt, + data_t *data, + mach_msg_type_number_t *dataCnt); + +kern_return_t netfs_S_file_statfs (protid_t file, + fsys_statfsbuf_t *info); #endif /* _HURD_NETFS_H_ */ |