summaryrefslogtreecommitdiff
path: root/src/lib/rib.c
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2023-11-20 17:47:56 +0100
committerSander Vrijders <sander@ouroboros.rocks>2023-11-26 15:51:36 +0100
commit6952f971a8ad78d38b3c6b26b117bffbe55af8ee (patch)
tree496c1474aa688c67cdecc247c8101b3aae5db56e /src/lib/rib.c
parent02e0d64d5d18d9bfc370322e767bd31b4c8bb298 (diff)
downloadouroboros-6952f971a8ad78d38b3c6b26b117bffbe55af8ee.tar.gz
ouroboros-6952f971a8ad78d38b3c6b26b117bffbe55af8ee.zip
lib: Fix reading FUSE output on Raspbian
The previous patch only fixed listing the contents on the fuse filesystem. Apparently files with st_blocks = 0 as seen as empty on Raspbian, and the FUSE read() function isn't invoked for such files. Setting st_blocks to 1 fixes that, but st_blksize is ignored for fuse. So, on raspbian the filesize is now a huge number, but at least reading the fuse filesystem works. Corrected the filesystem attributes for the IPCP output for systems that don't rely on st_blocks to assess filesize. Also set the file mode to 0644 as these are not executables. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/lib/rib.c')
-rw-r--r--src/lib/rib.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/lib/rib.c b/src/lib/rib.c
index 78ae82ef..965e1077 100644
--- a/src/lib/rib.c
+++ b/src/lib/rib.c
@@ -207,12 +207,15 @@ static size_t __getattr(const char * path,
if (strcmp(comp, r->path) == 0) {
size_t ret = r->ops->getattr(path + 1, &attr);
pthread_rwlock_unlock(&rib.lock);
- st->st_mode = S_IFREG | 0755;
- st->st_nlink = 1;
- st->st_uid = getuid();
- st->st_gid = getgid();
- st->st_size = attr.size;
- st->st_mtime = attr.mtime;
+ st->st_mode = S_IFREG | 0644;
+ st->st_blocks = 1;
+ st->st_nlink = 1;
+ st->st_uid = getuid();
+ st->st_gid = getgid();
+ st->st_size = attr.size;
+ st->st_atime = attr.mtime;
+ st->st_mtime = attr.mtime;
+ st->st_ctime = attr.mtime;
return ret;
}
}
@@ -256,6 +259,8 @@ static int rib_getattr(const char * path,
st->st_uid = getuid();
st->st_gid = getgid();
st->st_mtime = now.tv_sec;
+ st->st_atime = now.tv_sec;
+ st->st_ctime = now.tv_sec;
return 0;
}