aboutsummaryrefslogtreecommitdiff
path: root/example/printcap.c
blob: 218b526b736d8fb23ef86245543206334d2492f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
  FUSE: Filesystem in Userspace
  Copyright (C) 2017 Nikolaus Rath <Nikolaus@rath.org>

  This program can be distributed under the terms of the GNU GPL.
  See the file COPYING.
*/

/** @file
 *
 * minimal example filesystem that prints out all capabilities
 * supported by the kernel and then exits.
 *
 * Compile with:
 *
 *     gcc -Wall protocol_info.c `pkg-config fuse3 --cflags --libs` -o protocol_info
 *
 * ## Source code ##
 * \include @file
 */

#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");
	if(conn->capable & FUSE_CAP_WRITEBACK_CACHE)
		printf("\tFUSE_CAP_WRITEBACK_CACHE\n");
	if(conn->capable & FUSE_CAP_ASYNC_READ)
			printf("\tFUSE_CAP_ASYNC_READ\n");
	if(conn->capable & FUSE_CAP_POSIX_LOCKS)
			printf("\tFUSE_CAP_POSIX_LOCKS\n");
	if(conn->capable & FUSE_CAP_ATOMIC_O_TRUNC)
			printf("\tFUSE_CAP_ATOMIC_O_TRUNC\n");
	if(conn->capable & FUSE_CAP_EXPORT_SUPPORT)
			printf("\tFUSE_CAP_EXPORT_SUPPORT\n");
	if(conn->capable & FUSE_CAP_DONT_MASK)
			printf("\tFUSE_CAP_DONT_MASK\n");
	if(conn->capable & FUSE_CAP_SPLICE_MOVE)
			printf("\tFUSE_CAP_SPLICE_MOVE\n");
	if(conn->capable & FUSE_CAP_SPLICE_READ)
			printf("\tFUSE_CAP_SPLICE_READ\n");
	if(conn->capable & FUSE_CAP_SPLICE_WRITE)
			printf("\tFUSE_CAP_SPLICE_WRITE\n");
	if(conn->capable & FUSE_CAP_FLOCK_LOCKS)
			printf("\tFUSE_CAP_FLOCK_LOCKS\n");
	if(conn->capable & FUSE_CAP_IOCTL_DIR)
			printf("\tFUSE_CAP_IOCTL_DIR\n");
	if(conn->capable & FUSE_CAP_AUTO_INVAL_DATA)
			printf("\tFUSE_CAP_AUTO_INVAL_DATA\n");
	if(conn->capable & FUSE_CAP_READDIRPLUS)
			printf("\tFUSE_CAP_READDIRPLUS\n");
	if(conn->capable & FUSE_CAP_READDIRPLUS_AUTO)
			printf("\tFUSE_CAP_READDIRPLUS_AUTO\n");
	if(conn->capable & FUSE_CAP_ASYNC_DIO)
			printf("\tFUSE_CAP_ASYNC_DIO\n");
	if(conn->capable & FUSE_CAP_WRITEBACK_CACHE)
			printf("\tFUSE_CAP_WRITEBACK_CACHE\n");
	if(conn->capable & FUSE_CAP_NO_OPEN_SUPPORT)
			printf("\tFUSE_CAP_NO_OPEN_SUPPORT\n");
	if(conn->capable & FUSE_CAP_PARALLEL_DIROPS)
			printf("\tFUSE_CAP_PARALLEL_DIROPS\n");
	if(conn->capable & FUSE_CAP_POSIX_ACL)
			printf("\tFUSE_CAP_POSIX_ACL\n");
	fuse_session_exit(se);
}


static 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;
	int fd;

	mountpoint = strdup("/tmp/fuse_printcap_XXXXXX");
	fd = mkstemp(mountpoint);
	if(fd == -1) {
		perror("mkstemp");
		return 1;
	}
	
	printf("FUSE library version %s\n", fuse_pkgversion());
	fuse_lowlevel_version();

	se = fuse_session_new(&args, &pc_oper,
			      sizeof(pc_oper), NULL);
	if (se == NULL)
	    goto err_out1;

	if (fuse_set_signal_handlers(se) != 0)
	    goto err_out2;

	if (fuse_session_mount(se, mountpoint) != 0)
	    goto err_out3;

	ret = fuse_session_loop(se);

	fuse_session_unmount(se);
err_out3:
	fuse_remove_signal_handlers(se);
err_out2:
	fuse_session_destroy(se);
err_out1:
	close(fd);
	unlink(mountpoint);
	free(mountpoint);
	fuse_opt_free_args(&args);

	return ret ? 1 : 0;
}