#include <stddef.h>
#include <unistd.h>
#include <pthread.h>
+#include <stdbool.h>
/* We can't actually tell the kernel that there is no
timeout, so we just send a big value */
received it back correctly (==2) */
static int retrieve_status = 0;
+static bool is_umount = false;
+
+/* updater thread tid */
+static pthread_t updater;
+
+
/* Command line parsing */
struct options {
int no_notify;
fuse_reply_none(req);
}
+static void tfs_destroy(void *userdata)
+{
+ (void)userdata;
+
+ is_umount = true;
+
+ pthread_join(updater, NULL);
+}
+
static const struct fuse_lowlevel_ops tfs_oper = {
.lookup = tfs_lookup,
.read = tfs_read,
.forget = tfs_forget,
.retrieve_reply = tfs_retrieve_reply,
+ .destroy = tfs_destroy,
};
static void update_fs(void) {
struct fuse_bufvec bufv;
int ret;
- while(1) {
+ while(!is_umount) {
update_fs();
if (!options.no_notify && lookup_cnt) {
/* Only send notification if the kernel
/* This shouldn't fail, but apparently it sometimes
does - see https://github.com/libfuse/libfuse/issues/105 */
ret = fuse_lowlevel_notify_store(se, FILE_INO, 0, &bufv, 0);
- if (-ret == ENODEV) {
- // File system was unmounted
- break;
- }
- else if (ret != 0) {
+ if (ret != 0 && !is_umount) {
fprintf(stderr, "ERROR: fuse_lowlevel_notify_store() failed with %s (%d)\n",
strerror(-ret), -ret);
abort();
kernel to send us back the stored data */
ret = fuse_lowlevel_notify_retrieve(se, FILE_INO, MAX_STR_LEN,
0, (void*) strdup(file_contents));
- if (-ret == ENODEV) { // File system was unmounted
- break;
- }
- assert(ret == 0);
+ assert(ret == 0 || is_umount);
if(retrieve_status == 0)
retrieve_status = 1;
}
struct fuse_session *se;
struct fuse_cmdline_opts opts;
struct fuse_loop_config config;
- pthread_t updater;
int ret = -1;
if (fuse_opt_parse(&args, &options, option_spec, NULL) == -1)