libfuse
printcap.c File Reference
#include <config.h>
#include <fuse_lowlevel.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>

Go to the source code of this file.

Detailed Description

minimal example filesystem that prints out all capabilities supported by the kernel and then exits.

Compile with:

gcc -Wall printcap.c `pkg-config fuse3 --cflags --libs` -o printcap

Source code

/*
FUSE: Filesystem in Userspace
Copyright (C) 2017 Nikolaus Rath <Nikolaus@rath.org>
This program can be distributed under the terms of the GNU GPLv2.
See the file COPYING.
*/
#define FUSE_USE_VERSION 31
#include <config.h>
#include <fuse_lowlevel.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
struct fuse_session *se;
static void pc_init(void *userdata,
struct fuse_conn_info *conn)
{
(void) userdata;
printf("Protocol version: %d.%d\n", conn->proto_major,
conn->proto_minor);
printf("Capabilities:\n");
printf("\tFUSE_CAP_WRITEBACK_CACHE\n");
printf("\tFUSE_CAP_ASYNC_READ\n");
printf("\tFUSE_CAP_POSIX_LOCKS\n");
printf("\tFUSE_CAP_ATOMIC_O_TRUNC\n");
printf("\tFUSE_CAP_EXPORT_SUPPORT\n");
printf("\tFUSE_CAP_DONT_MASK\n");
printf("\tFUSE_CAP_SPLICE_MOVE\n");
printf("\tFUSE_CAP_SPLICE_READ\n");
printf("\tFUSE_CAP_SPLICE_WRITE\n");
printf("\tFUSE_CAP_FLOCK_LOCKS\n");
printf("\tFUSE_CAP_IOCTL_DIR\n");
printf("\tFUSE_CAP_AUTO_INVAL_DATA\n");
printf("\tFUSE_CAP_READDIRPLUS\n");
printf("\tFUSE_CAP_READDIRPLUS_AUTO\n");
printf("\tFUSE_CAP_ASYNC_DIO\n");
printf("\tFUSE_CAP_WRITEBACK_CACHE\n");
printf("\tFUSE_CAP_NO_OPEN_SUPPORT\n");
printf("\tFUSE_CAP_PARALLEL_DIROPS\n");
printf("\tFUSE_CAP_POSIX_ACL\n");
printf("\tFUSE_CAP_CACHE_SYMLINKS\n");
printf("\tFUSE_CAP_NO_OPENDIR_SUPPORT\n");
printf("\tFUSE_CAP_EXPLICIT_INVAL_DATA\n");
}
static const struct fuse_lowlevel_ops pc_oper = {
.init = pc_init,
};
int main(int argc, char **argv)
{
struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
char *mountpoint;
int ret = -1;
mountpoint = strdup("/tmp/fuse_printcap_XXXXXX");
if(mkdtemp(mountpoint) == NULL) {
perror("mkdtemp");
return 1;
}
printf("FUSE library version %s\n", fuse_pkgversion());
se = fuse_session_new(&args, &pc_oper,
sizeof(pc_oper), NULL);
if (se == NULL)
goto err_out1;
goto err_out2;
if (fuse_session_mount(se, mountpoint) != 0)
goto err_out3;
ret = fuse_session_loop(se);
err_out3:
err_out2:
err_out1:
rmdir(mountpoint);
free(mountpoint);
return ret ? 1 : 0;
}

Definition in file printcap.c.