libfuse
printcap.c
Go to the documentation of this file.
1 /*
2  FUSE: Filesystem in Userspace
3  Copyright (C) 2017 Nikolaus Rath <Nikolaus@rath.org>
4 
5  This program can be distributed under the terms of the GNU GPL.
6  See the file COPYING.
7 */
8 
22 #define FUSE_USE_VERSION 31
23 
24 #include <config.h>
25 
26 #include <fuse_lowlevel.h>
27 #include <stdio.h>
28 #include <unistd.h>
29 #include <string.h>
30 #include <stdlib.h>
31 
32 struct fuse_session *se;
33 
34 static void pc_init(void *userdata,
35  struct fuse_conn_info *conn)
36 {
37  (void) userdata;
38 
39  printf("Protocol version: %d.%d\n", conn->proto_major,
40  conn->proto_minor);
41  printf("Capabilities:\n");
43  printf("\tFUSE_CAP_WRITEBACK_CACHE\n");
44  if(conn->capable & FUSE_CAP_ASYNC_READ)
45  printf("\tFUSE_CAP_ASYNC_READ\n");
46  if(conn->capable & FUSE_CAP_POSIX_LOCKS)
47  printf("\tFUSE_CAP_POSIX_LOCKS\n");
49  printf("\tFUSE_CAP_ATOMIC_O_TRUNC\n");
51  printf("\tFUSE_CAP_EXPORT_SUPPORT\n");
52  if(conn->capable & FUSE_CAP_DONT_MASK)
53  printf("\tFUSE_CAP_DONT_MASK\n");
54  if(conn->capable & FUSE_CAP_SPLICE_MOVE)
55  printf("\tFUSE_CAP_SPLICE_MOVE\n");
56  if(conn->capable & FUSE_CAP_SPLICE_READ)
57  printf("\tFUSE_CAP_SPLICE_READ\n");
58  if(conn->capable & FUSE_CAP_SPLICE_WRITE)
59  printf("\tFUSE_CAP_SPLICE_WRITE\n");
60  if(conn->capable & FUSE_CAP_FLOCK_LOCKS)
61  printf("\tFUSE_CAP_FLOCK_LOCKS\n");
62  if(conn->capable & FUSE_CAP_IOCTL_DIR)
63  printf("\tFUSE_CAP_IOCTL_DIR\n");
65  printf("\tFUSE_CAP_AUTO_INVAL_DATA\n");
66  if(conn->capable & FUSE_CAP_READDIRPLUS)
67  printf("\tFUSE_CAP_READDIRPLUS\n");
69  printf("\tFUSE_CAP_READDIRPLUS_AUTO\n");
70  if(conn->capable & FUSE_CAP_ASYNC_DIO)
71  printf("\tFUSE_CAP_ASYNC_DIO\n");
73  printf("\tFUSE_CAP_WRITEBACK_CACHE\n");
75  printf("\tFUSE_CAP_NO_OPEN_SUPPORT\n");
77  printf("\tFUSE_CAP_PARALLEL_DIROPS\n");
78  if(conn->capable & FUSE_CAP_POSIX_ACL)
79  printf("\tFUSE_CAP_POSIX_ACL\n");
81 }
82 
83 
84 static struct fuse_lowlevel_ops pc_oper = {
85  .init = pc_init,
86 };
87 
88 int main(int argc, char **argv)
89 {
90  struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
91  char *mountpoint;
92  int ret = -1;
93 
94  mountpoint = strdup("/tmp/fuse_printcap_XXXXXX");
95  if(mkdtemp(mountpoint) == NULL) {
96  perror("mkdtemp");
97  return 1;
98  }
99 
100  printf("FUSE library version %s\n", fuse_pkgversion());
102 
103  se = fuse_session_new(&args, &pc_oper,
104  sizeof(pc_oper), NULL);
105  if (se == NULL)
106  goto err_out1;
107 
108  if (fuse_set_signal_handlers(se) != 0)
109  goto err_out2;
110 
111  if (fuse_session_mount(se, mountpoint) != 0)
112  goto err_out3;
113 
114  ret = fuse_session_loop(se);
115 
117 err_out3:
119 err_out2:
121 err_out1:
122  rmdir(mountpoint);
123  free(mountpoint);
124  fuse_opt_free_args(&args);
125 
126  return ret ? 1 : 0;
127 }
#define FUSE_CAP_ASYNC_DIO
Definition: fuse_common.h:246
unsigned capable
Definition: fuse_common.h:370
#define FUSE_CAP_DONT_MASK
Definition: fuse_common.h:152
#define FUSE_CAP_ATOMIC_O_TRUNC
Definition: fuse_common.h:137
#define FUSE_CAP_IOCTL_DIR
Definition: fuse_common.h:197
unsigned proto_minor
Definition: fuse_common.h:341
#define FUSE_CAP_POSIX_LOCKS
Definition: fuse_common.h:128
#define FUSE_CAP_READDIRPLUS
Definition: fuse_common.h:227
#define FUSE_CAP_PARALLEL_DIROPS
Definition: fuse_common.h:278
const char * fuse_pkgversion(void)
Definition: fuse.c:4926
#define FUSE_CAP_WRITEBACK_CACHE
Definition: fuse_common.h:255
void fuse_session_unmount(struct fuse_session *se)
#define FUSE_CAP_SPLICE_READ
Definition: fuse_common.h:177
#define FUSE_CAP_AUTO_INVAL_DATA
Definition: fuse_common.h:219
int fuse_session_loop(struct fuse_session *se)
Definition: fuse_loop.c:19
int fuse_session_mount(struct fuse_session *se, const char *mountpoint)
#define FUSE_CAP_FLOCK_LOCKS
Definition: fuse_common.h:190
#define FUSE_ARGS_INIT(argc, argv)
Definition: fuse_opt.h:123
#define FUSE_CAP_SPLICE_WRITE
Definition: fuse_common.h:160
#define FUSE_CAP_NO_OPEN_SUPPORT
Definition: fuse_common.h:268
int fuse_set_signal_handlers(struct fuse_session *se)
Definition: fuse_signals.c:62
void fuse_session_destroy(struct fuse_session *se)
#define FUSE_CAP_POSIX_ACL
Definition: fuse_common.h:297
void fuse_session_exit(struct fuse_session *se)
unsigned proto_major
Definition: fuse_common.h:336
void fuse_opt_free_args(struct fuse_args *args)
Definition: fuse_opt.c:33
struct fuse_session * fuse_session_new(struct fuse_args *args, const struct fuse_lowlevel_ops *op, size_t op_size, void *userdata)
void fuse_lowlevel_version(void)
#define FUSE_CAP_EXPORT_SUPPORT
Definition: fuse_common.h:144
#define FUSE_CAP_SPLICE_MOVE
Definition: fuse_common.h:168
void(* init)(void *userdata, struct fuse_conn_info *conn)
void fuse_remove_signal_handlers(struct fuse_session *se)
Definition: fuse_signals.c:79
#define FUSE_CAP_ASYNC_READ
Definition: fuse_common.h:120
#define FUSE_CAP_READDIRPLUS_AUTO
Definition: fuse_common.h:235