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#ifndef _LINUX_FUSE_H
122#define _LINUX_FUSE_H
123
124#ifdef __KERNEL__
125#include <linux/types.h>
126#else
127#include <stdint.h>
128#endif
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151#define FUSE_KERNEL_VERSION 7
152
153
154#define FUSE_KERNEL_MINOR_VERSION 27
155
156
157#define FUSE_ROOT_ID 1
158
159
160
161
162struct fuse_attr {
163 uint64_t ino;
164 uint64_t size;
165 uint64_t blocks;
166 uint64_t atime;
167 uint64_t mtime;
168 uint64_t ctime;
169 uint32_t atimensec;
170 uint32_t mtimensec;
171 uint32_t ctimensec;
172 uint32_t mode;
173 uint32_t nlink;
174 uint32_t uid;
175 uint32_t gid;
176 uint32_t rdev;
177 uint32_t blksize;
178 uint32_t padding;
179};
180
181struct fuse_kstatfs {
182 uint64_t blocks;
183 uint64_t bfree;
184 uint64_t bavail;
185 uint64_t files;
186 uint64_t ffree;
187 uint32_t bsize;
188 uint32_t namelen;
189 uint32_t frsize;
190 uint32_t padding;
191 uint32_t spare[6];
192};
193
194struct fuse_file_lock {
195 uint64_t start;
196 uint64_t end;
197 uint32_t type;
198 uint32_t pid;
199};
200
201
202
203
204#define FATTR_MODE (1 << 0)
205#define FATTR_UID (1 << 1)
206#define FATTR_GID (1 << 2)
207#define FATTR_SIZE (1 << 3)
208#define FATTR_ATIME (1 << 4)
209#define FATTR_MTIME (1 << 5)
210#define FATTR_FH (1 << 6)
211#define FATTR_ATIME_NOW (1 << 7)
212#define FATTR_MTIME_NOW (1 << 8)
213#define FATTR_LOCKOWNER (1 << 9)
214#define FATTR_CTIME (1 << 10)
215
216
217
218
219
220
221
222
223#define FOPEN_DIRECT_IO (1 << 0)
224#define FOPEN_KEEP_CACHE (1 << 1)
225#define FOPEN_NONSEEKABLE (1 << 2)
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253#define FUSE_ASYNC_READ (1 << 0)
254#define FUSE_POSIX_LOCKS (1 << 1)
255#define FUSE_FILE_OPS (1 << 2)
256#define FUSE_ATOMIC_O_TRUNC (1 << 3)
257#define FUSE_EXPORT_SUPPORT (1 << 4)
258#define FUSE_BIG_WRITES (1 << 5)
259#define FUSE_DONT_MASK (1 << 6)
260#define FUSE_SPLICE_WRITE (1 << 7)
261#define FUSE_SPLICE_MOVE (1 << 8)
262#define FUSE_SPLICE_READ (1 << 9)
263#define FUSE_FLOCK_LOCKS (1 << 10)
264#define FUSE_HAS_IOCTL_DIR (1 << 11)
265#define FUSE_AUTO_INVAL_DATA (1 << 12)
266#define FUSE_DO_READDIRPLUS (1 << 13)
267#define FUSE_READDIRPLUS_AUTO (1 << 14)
268#define FUSE_ASYNC_DIO (1 << 15)
269#define FUSE_WRITEBACK_CACHE (1 << 16)
270#define FUSE_NO_OPEN_SUPPORT (1 << 17)
271#define FUSE_PARALLEL_DIROPS (1 << 18)
272#define FUSE_HANDLE_KILLPRIV (1 << 19)
273#define FUSE_POSIX_ACL (1 << 20)
274#define FUSE_ABORT_ERROR (1 << 21)
275
276
277
278
279
280
281#define CUSE_UNRESTRICTED_IOCTL (1 << 0)
282
283
284
285
286#define FUSE_RELEASE_FLUSH (1 << 0)
287#define FUSE_RELEASE_FLOCK_UNLOCK (1 << 1)
288
289
290
291
292#define FUSE_GETATTR_FH (1 << 0)
293
294
295
296
297#define FUSE_LK_FLOCK (1 << 0)
298
299
300
301
302
303
304
305#define FUSE_WRITE_CACHE (1 << 0)
306#define FUSE_WRITE_LOCKOWNER (1 << 1)
307
308
309
310
311#define FUSE_READ_LOCKOWNER (1 << 1)
312
313
314
315
316
317
318
319
320
321
322
323
324#define FUSE_IOCTL_COMPAT (1 << 0)
325#define FUSE_IOCTL_UNRESTRICTED (1 << 1)
326#define FUSE_IOCTL_RETRY (1 << 2)
327#define FUSE_IOCTL_32BIT (1 << 3)
328#define FUSE_IOCTL_DIR (1 << 4)
329
330#define FUSE_IOCTL_MAX_IOV 256
331
332
333
334
335
336
337#define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0)
338
339enum fuse_opcode {
340 FUSE_LOOKUP = 1,
341 FUSE_FORGET = 2,
342 FUSE_GETATTR = 3,
343 FUSE_SETATTR = 4,
344 FUSE_READLINK = 5,
345 FUSE_SYMLINK = 6,
346 FUSE_MKNOD = 8,
347 FUSE_MKDIR = 9,
348 FUSE_UNLINK = 10,
349 FUSE_RMDIR = 11,
350 FUSE_RENAME = 12,
351 FUSE_LINK = 13,
352 FUSE_OPEN = 14,
353 FUSE_READ = 15,
354 FUSE_WRITE = 16,
355 FUSE_STATFS = 17,
356 FUSE_RELEASE = 18,
357 FUSE_FSYNC = 20,
358 FUSE_SETXATTR = 21,
359 FUSE_GETXATTR = 22,
360 FUSE_LISTXATTR = 23,
361 FUSE_REMOVEXATTR = 24,
362 FUSE_FLUSH = 25,
363 FUSE_INIT = 26,
364 FUSE_OPENDIR = 27,
365 FUSE_READDIR = 28,
366 FUSE_RELEASEDIR = 29,
367 FUSE_FSYNCDIR = 30,
368 FUSE_GETLK = 31,
369 FUSE_SETLK = 32,
370 FUSE_SETLKW = 33,
371 FUSE_ACCESS = 34,
372 FUSE_CREATE = 35,
373 FUSE_INTERRUPT = 36,
374 FUSE_BMAP = 37,
375 FUSE_DESTROY = 38,
376 FUSE_IOCTL = 39,
377 FUSE_POLL = 40,
378 FUSE_NOTIFY_REPLY = 41,
379 FUSE_BATCH_FORGET = 42,
380 FUSE_FALLOCATE = 43,
381 FUSE_READDIRPLUS = 44,
382 FUSE_RENAME2 = 45,
383 FUSE_LSEEK = 46,
384
385
386 CUSE_INIT = 4096,
387};
388
389enum fuse_notify_code {
390 FUSE_NOTIFY_POLL = 1,
391 FUSE_NOTIFY_INVAL_INODE = 2,
392 FUSE_NOTIFY_INVAL_ENTRY = 3,
393 FUSE_NOTIFY_STORE = 4,
394 FUSE_NOTIFY_RETRIEVE = 5,
395 FUSE_NOTIFY_DELETE = 6,
396 FUSE_NOTIFY_CODE_MAX,
397};
398
399
400#define FUSE_MIN_READ_BUFFER 8192
401
402#define FUSE_COMPAT_ENTRY_OUT_SIZE 120
403
404struct fuse_entry_out {
405 uint64_t nodeid;
406 uint64_t generation;
407
408 uint64_t entry_valid;
409 uint64_t attr_valid;
410 uint32_t entry_valid_nsec;
411 uint32_t attr_valid_nsec;
412 struct fuse_attr attr;
413};
414
415struct fuse_forget_in {
416 uint64_t nlookup;
417};
418
419struct fuse_forget_one {
420 uint64_t nodeid;
421 uint64_t nlookup;
422};
423
424struct fuse_batch_forget_in {
425 uint32_t count;
426 uint32_t dummy;
427};
428
429struct fuse_getattr_in {
430 uint32_t getattr_flags;
431 uint32_t dummy;
432 uint64_t fh;
433};
434
435#define FUSE_COMPAT_ATTR_OUT_SIZE 96
436
437struct fuse_attr_out {
438 uint64_t attr_valid;
439 uint32_t attr_valid_nsec;
440 uint32_t dummy;
441 struct fuse_attr attr;
442};
443
444#define FUSE_COMPAT_MKNOD_IN_SIZE 8
445
446struct fuse_mknod_in {
447 uint32_t mode;
448 uint32_t rdev;
449 uint32_t umask;
450 uint32_t padding;
451};
452
453struct fuse_mkdir_in {
454 uint32_t mode;
455 uint32_t umask;
456};
457
458struct fuse_rename_in {
459 uint64_t newdir;
460};
461
462struct fuse_rename2_in {
463 uint64_t newdir;
464 uint32_t flags;
465 uint32_t padding;
466};
467
468struct fuse_link_in {
469 uint64_t oldnodeid;
470};
471
472struct fuse_setattr_in {
473 uint32_t valid;
474 uint32_t padding;
475 uint64_t fh;
476 uint64_t size;
477 uint64_t lock_owner;
478 uint64_t atime;
479 uint64_t mtime;
480 uint64_t ctime;
481 uint32_t atimensec;
482 uint32_t mtimensec;
483 uint32_t ctimensec;
484 uint32_t mode;
485 uint32_t unused4;
486 uint32_t uid;
487 uint32_t gid;
488 uint32_t unused5;
489};
490
491struct fuse_open_in {
492 uint32_t flags;
493 uint32_t unused;
494};
495
496struct fuse_create_in {
497 uint32_t flags;
498 uint32_t mode;
499 uint32_t umask;
500 uint32_t padding;
501};
502
503struct fuse_open_out {
504 uint64_t fh;
505 uint32_t open_flags;
506 uint32_t padding;
507};
508
509struct fuse_release_in {
510 uint64_t fh;
511 uint32_t flags;
512 uint32_t release_flags;
513 uint64_t lock_owner;
514};
515
516struct fuse_flush_in {
517 uint64_t fh;
518 uint32_t unused;
519 uint32_t padding;
520 uint64_t lock_owner;
521};
522
523struct fuse_read_in {
524 uint64_t fh;
525 uint64_t offset;
526 uint32_t size;
527 uint32_t read_flags;
528 uint64_t lock_owner;
529 uint32_t flags;
530 uint32_t padding;
531};
532
533#define FUSE_COMPAT_WRITE_IN_SIZE 24
534
535struct fuse_write_in {
536 uint64_t fh;
537 uint64_t offset;
538 uint32_t size;
539 uint32_t write_flags;
540 uint64_t lock_owner;
541 uint32_t flags;
542 uint32_t padding;
543};
544
545struct fuse_write_out {
546 uint32_t size;
547 uint32_t padding;
548};
549
550#define FUSE_COMPAT_STATFS_SIZE 48
551
552struct fuse_statfs_out {
553 struct fuse_kstatfs st;
554};
555
556struct fuse_fsync_in {
557 uint64_t fh;
558 uint32_t fsync_flags;
559 uint32_t padding;
560};
561
562struct fuse_setxattr_in {
563 uint32_t size;
564 uint32_t flags;
565};
566
567struct fuse_getxattr_in {
568 uint32_t size;
569 uint32_t padding;
570};
571
572struct fuse_getxattr_out {
573 uint32_t size;
574 uint32_t padding;
575};
576
577struct fuse_lk_in {
578 uint64_t fh;
579 uint64_t owner;
580 struct fuse_file_lock lk;
581 uint32_t lk_flags;
582 uint32_t padding;
583};
584
585struct fuse_lk_out {
586 struct fuse_file_lock lk;
587};
588
589struct fuse_access_in {
590 uint32_t mask;
591 uint32_t padding;
592};
593
594struct fuse_init_in {
595 uint32_t major;
596 uint32_t minor;
597 uint32_t max_readahead;
598 uint32_t flags;
599};
600
601#define FUSE_COMPAT_INIT_OUT_SIZE 8
602#define FUSE_COMPAT_22_INIT_OUT_SIZE 24
603
604struct fuse_init_out {
605 uint32_t major;
606 uint32_t minor;
607 uint32_t max_readahead;
608 uint32_t flags;
609 uint16_t max_background;
610 uint16_t congestion_threshold;
611 uint32_t max_write;
612 uint32_t time_gran;
613 uint32_t unused[9];
614};
615
616#define CUSE_INIT_INFO_MAX 4096
617
618struct cuse_init_in {
619 uint32_t major;
620 uint32_t minor;
621 uint32_t unused;
622 uint32_t flags;
623};
624
625struct cuse_init_out {
626 uint32_t major;
627 uint32_t minor;
628 uint32_t unused;
629 uint32_t flags;
630 uint32_t max_read;
631 uint32_t max_write;
632 uint32_t dev_major;
633 uint32_t dev_minor;
634 uint32_t spare[10];
635};
636
637struct fuse_interrupt_in {
638 uint64_t unique;
639};
640
641struct fuse_bmap_in {
642 uint64_t block;
643 uint32_t blocksize;
644 uint32_t padding;
645};
646
647struct fuse_bmap_out {
648 uint64_t block;
649};
650
651struct fuse_ioctl_in {
652 uint64_t fh;
653 uint32_t flags;
654 uint32_t cmd;
655 uint64_t arg;
656 uint32_t in_size;
657 uint32_t out_size;
658};
659
660struct fuse_ioctl_iovec {
661 uint64_t base;
662 uint64_t len;
663};
664
665struct fuse_ioctl_out {
666 int32_t result;
667 uint32_t flags;
668 uint32_t in_iovs;
669 uint32_t out_iovs;
670};
671
672struct fuse_poll_in {
673 uint64_t fh;
674 uint64_t kh;
675 uint32_t flags;
676 uint32_t events;
677};
678
679struct fuse_poll_out {
680 uint32_t revents;
681 uint32_t padding;
682};
683
684struct fuse_notify_poll_wakeup_out {
685 uint64_t kh;
686};
687
688struct fuse_fallocate_in {
689 uint64_t fh;
690 uint64_t offset;
691 uint64_t length;
692 uint32_t mode;
693 uint32_t padding;
694};
695
696struct fuse_in_header {
697 uint32_t len;
698 uint32_t opcode;
699 uint64_t unique;
700 uint64_t nodeid;
701 uint32_t uid;
702 uint32_t gid;
703 uint32_t pid;
704 uint32_t padding;
705};
706
707struct fuse_out_header {
708 uint32_t len;
709 int32_t error;
710 uint64_t unique;
711};
712
713struct fuse_dirent {
714 uint64_t ino;
715 uint64_t off;
716 uint32_t namelen;
717 uint32_t type;
718 char name[];
719};
720
721#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
722#define FUSE_DIRENT_ALIGN(x) \
723 (((x) + sizeof(uint64_t) - 1) & ~(sizeof(uint64_t) - 1))
724#define FUSE_DIRENT_SIZE(d) \
725 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)
726
727struct fuse_direntplus {
728 struct fuse_entry_out entry_out;
729 struct fuse_dirent dirent;
730};
731
732#define FUSE_NAME_OFFSET_DIRENTPLUS \
733 offsetof(struct fuse_direntplus, dirent.name)
734#define FUSE_DIRENTPLUS_SIZE(d) \
735 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET_DIRENTPLUS + (d)->dirent.namelen)
736
737struct fuse_notify_inval_inode_out {
738 uint64_t ino;
739 int64_t off;
740 int64_t len;
741};
742
743struct fuse_notify_inval_entry_out {
744 uint64_t parent;
745 uint32_t namelen;
746 uint32_t padding;
747};
748
749struct fuse_notify_delete_out {
750 uint64_t parent;
751 uint64_t child;
752 uint32_t namelen;
753 uint32_t padding;
754};
755
756struct fuse_notify_store_out {
757 uint64_t nodeid;
758 uint64_t offset;
759 uint32_t size;
760 uint32_t padding;
761};
762
763struct fuse_notify_retrieve_out {
764 uint64_t notify_unique;
765 uint64_t nodeid;
766 uint64_t offset;
767 uint32_t size;
768 uint32_t padding;
769};
770
771
772struct fuse_notify_retrieve_in {
773 uint64_t dummy1;
774 uint64_t offset;
775 uint32_t size;
776 uint32_t dummy2;
777 uint64_t dummy3;
778 uint64_t dummy4;
779};
780
781
782#define FUSE_DEV_IOC_CLONE _IOR(229, 0, uint32_t)
783
784struct fuse_lseek_in {
785 uint64_t fh;
786 uint64_t offset;
787 uint32_t whence;
788 uint32_t padding;
789};
790
791struct fuse_lseek_out {
792 uint64_t offset;
793};
794
795#endif
796