22c213
From e7c1ad608117b21f80c762f5505a66b21c56e9d3 Mon Sep 17 00:00:00 2001
22c213
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
Date: Mon, 27 Jan 2020 19:00:40 +0100
22c213
Subject: [PATCH 009/116] virtiofsd: Pull in kernel's fuse.h
22c213
MIME-Version: 1.0
22c213
Content-Type: text/plain; charset=UTF-8
22c213
Content-Transfer-Encoding: 8bit
22c213
22c213
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
Message-id: <20200127190227.40942-6-dgilbert@redhat.com>
22c213
Patchwork-id: 93460
22c213
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 005/112] virtiofsd: Pull in kernel's fuse.h
22c213
Bugzilla: 1694164
22c213
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
22c213
22c213
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
22c213
22c213
Update scripts/update-linux-headers.sh to add fuse.h and
22c213
use it to pull in fuse.h from the kernel; from v5.5-rc1
22c213
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
22c213
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
22c213
(cherry picked from commit a62a9e192bc5f0aa0bc076b51db5a069add87c78)
22c213
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
22c213
---
22c213
 include/standard-headers/linux/fuse.h | 891 ++++++++++++++++++++++++++++++++++
22c213
 scripts/update-linux-headers.sh       |   1 +
22c213
 2 files changed, 892 insertions(+)
22c213
 create mode 100644 include/standard-headers/linux/fuse.h
22c213
22c213
diff --git a/include/standard-headers/linux/fuse.h b/include/standard-headers/linux/fuse.h
22c213
new file mode 100644
22c213
index 0000000..f4df0a4
22c213
--- /dev/null
22c213
+++ b/include/standard-headers/linux/fuse.h
22c213
@@ -0,0 +1,891 @@
22c213
+/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) */
22c213
+/*
22c213
+    This file defines the kernel interface of FUSE
22c213
+    Copyright (C) 2001-2008  Miklos Szeredi <miklos@szeredi.hu>
22c213
+
22c213
+    This program can be distributed under the terms of the GNU GPL.
22c213
+    See the file COPYING.
22c213
+
22c213
+    This -- and only this -- header file may also be distributed under
22c213
+    the terms of the BSD Licence as follows:
22c213
+
22c213
+    Copyright (C) 2001-2007 Miklos Szeredi. All rights reserved.
22c213
+
22c213
+    Redistribution and use in source and binary forms, with or without
22c213
+    modification, are permitted provided that the following conditions
22c213
+    are met:
22c213
+    1. Redistributions of source code must retain the above copyright
22c213
+       notice, this list of conditions and the following disclaimer.
22c213
+    2. Redistributions in binary form must reproduce the above copyright
22c213
+       notice, this list of conditions and the following disclaimer in the
22c213
+       documentation and/or other materials provided with the distribution.
22c213
+
22c213
+    THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22c213
+    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22c213
+    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22c213
+    ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
22c213
+    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22c213
+    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22c213
+    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22c213
+    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22c213
+    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22c213
+    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
22c213
+    SUCH DAMAGE.
22c213
+*/
22c213
+
22c213
+/*
22c213
+ * This file defines the kernel interface of FUSE
22c213
+ *
22c213
+ * Protocol changelog:
22c213
+ *
22c213
+ * 7.1:
22c213
+ *  - add the following messages:
22c213
+ *      FUSE_SETATTR, FUSE_SYMLINK, FUSE_MKNOD, FUSE_MKDIR, FUSE_UNLINK,
22c213
+ *      FUSE_RMDIR, FUSE_RENAME, FUSE_LINK, FUSE_OPEN, FUSE_READ, FUSE_WRITE,
22c213
+ *      FUSE_RELEASE, FUSE_FSYNC, FUSE_FLUSH, FUSE_SETXATTR, FUSE_GETXATTR,
22c213
+ *      FUSE_LISTXATTR, FUSE_REMOVEXATTR, FUSE_OPENDIR, FUSE_READDIR,
22c213
+ *      FUSE_RELEASEDIR
22c213
+ *  - add padding to messages to accommodate 32-bit servers on 64-bit kernels
22c213
+ *
22c213
+ * 7.2:
22c213
+ *  - add FOPEN_DIRECT_IO and FOPEN_KEEP_CACHE flags
22c213
+ *  - add FUSE_FSYNCDIR message
22c213
+ *
22c213
+ * 7.3:
22c213
+ *  - add FUSE_ACCESS message
22c213
+ *  - add FUSE_CREATE message
22c213
+ *  - add filehandle to fuse_setattr_in
22c213
+ *
22c213
+ * 7.4:
22c213
+ *  - add frsize to fuse_kstatfs
22c213
+ *  - clean up request size limit checking
22c213
+ *
22c213
+ * 7.5:
22c213
+ *  - add flags and max_write to fuse_init_out
22c213
+ *
22c213
+ * 7.6:
22c213
+ *  - add max_readahead to fuse_init_in and fuse_init_out
22c213
+ *
22c213
+ * 7.7:
22c213
+ *  - add FUSE_INTERRUPT message
22c213
+ *  - add POSIX file lock support
22c213
+ *
22c213
+ * 7.8:
22c213
+ *  - add lock_owner and flags fields to fuse_release_in
22c213
+ *  - add FUSE_BMAP message
22c213
+ *  - add FUSE_DESTROY message
22c213
+ *
22c213
+ * 7.9:
22c213
+ *  - new fuse_getattr_in input argument of GETATTR
22c213
+ *  - add lk_flags in fuse_lk_in
22c213
+ *  - add lock_owner field to fuse_setattr_in, fuse_read_in and fuse_write_in
22c213
+ *  - add blksize field to fuse_attr
22c213
+ *  - add file flags field to fuse_read_in and fuse_write_in
22c213
+ *  - Add ATIME_NOW and MTIME_NOW flags to fuse_setattr_in
22c213
+ *
22c213
+ * 7.10
22c213
+ *  - add nonseekable open flag
22c213
+ *
22c213
+ * 7.11
22c213
+ *  - add IOCTL message
22c213
+ *  - add unsolicited notification support
22c213
+ *  - add POLL message and NOTIFY_POLL notification
22c213
+ *
22c213
+ * 7.12
22c213
+ *  - add umask flag to input argument of create, mknod and mkdir
22c213
+ *  - add notification messages for invalidation of inodes and
22c213
+ *    directory entries
22c213
+ *
22c213
+ * 7.13
22c213
+ *  - make max number of background requests and congestion threshold
22c213
+ *    tunables
22c213
+ *
22c213
+ * 7.14
22c213
+ *  - add splice support to fuse device
22c213
+ *
22c213
+ * 7.15
22c213
+ *  - add store notify
22c213
+ *  - add retrieve notify
22c213
+ *
22c213
+ * 7.16
22c213
+ *  - add BATCH_FORGET request
22c213
+ *  - FUSE_IOCTL_UNRESTRICTED shall now return with array of 'struct
22c213
+ *    fuse_ioctl_iovec' instead of ambiguous 'struct iovec'
22c213
+ *  - add FUSE_IOCTL_32BIT flag
22c213
+ *
22c213
+ * 7.17
22c213
+ *  - add FUSE_FLOCK_LOCKS and FUSE_RELEASE_FLOCK_UNLOCK
22c213
+ *
22c213
+ * 7.18
22c213
+ *  - add FUSE_IOCTL_DIR flag
22c213
+ *  - add FUSE_NOTIFY_DELETE
22c213
+ *
22c213
+ * 7.19
22c213
+ *  - add FUSE_FALLOCATE
22c213
+ *
22c213
+ * 7.20
22c213
+ *  - add FUSE_AUTO_INVAL_DATA
22c213
+ *
22c213
+ * 7.21
22c213
+ *  - add FUSE_READDIRPLUS
22c213
+ *  - send the requested events in POLL request
22c213
+ *
22c213
+ * 7.22
22c213
+ *  - add FUSE_ASYNC_DIO
22c213
+ *
22c213
+ * 7.23
22c213
+ *  - add FUSE_WRITEBACK_CACHE
22c213
+ *  - add time_gran to fuse_init_out
22c213
+ *  - add reserved space to fuse_init_out
22c213
+ *  - add FATTR_CTIME
22c213
+ *  - add ctime and ctimensec to fuse_setattr_in
22c213
+ *  - add FUSE_RENAME2 request
22c213
+ *  - add FUSE_NO_OPEN_SUPPORT flag
22c213
+ *
22c213
+ *  7.24
22c213
+ *  - add FUSE_LSEEK for SEEK_HOLE and SEEK_DATA support
22c213
+ *
22c213
+ *  7.25
22c213
+ *  - add FUSE_PARALLEL_DIROPS
22c213
+ *
22c213
+ *  7.26
22c213
+ *  - add FUSE_HANDLE_KILLPRIV
22c213
+ *  - add FUSE_POSIX_ACL
22c213
+ *
22c213
+ *  7.27
22c213
+ *  - add FUSE_ABORT_ERROR
22c213
+ *
22c213
+ *  7.28
22c213
+ *  - add FUSE_COPY_FILE_RANGE
22c213
+ *  - add FOPEN_CACHE_DIR
22c213
+ *  - add FUSE_MAX_PAGES, add max_pages to init_out
22c213
+ *  - add FUSE_CACHE_SYMLINKS
22c213
+ *
22c213
+ *  7.29
22c213
+ *  - add FUSE_NO_OPENDIR_SUPPORT flag
22c213
+ *
22c213
+ *  7.30
22c213
+ *  - add FUSE_EXPLICIT_INVAL_DATA
22c213
+ *  - add FUSE_IOCTL_COMPAT_X32
22c213
+ *
22c213
+ *  7.31
22c213
+ *  - add FUSE_WRITE_KILL_PRIV flag
22c213
+ *  - add FUSE_SETUPMAPPING and FUSE_REMOVEMAPPING
22c213
+ *  - add map_alignment to fuse_init_out, add FUSE_MAP_ALIGNMENT flag
22c213
+ */
22c213
+
22c213
+#ifndef _LINUX_FUSE_H
22c213
+#define _LINUX_FUSE_H
22c213
+
22c213
+#include <stdint.h>
22c213
+
22c213
+/*
22c213
+ * Version negotiation:
22c213
+ *
22c213
+ * Both the kernel and userspace send the version they support in the
22c213
+ * INIT request and reply respectively.
22c213
+ *
22c213
+ * If the major versions match then both shall use the smallest
22c213
+ * of the two minor versions for communication.
22c213
+ *
22c213
+ * If the kernel supports a larger major version, then userspace shall
22c213
+ * reply with the major version it supports, ignore the rest of the
22c213
+ * INIT message and expect a new INIT message from the kernel with a
22c213
+ * matching major version.
22c213
+ *
22c213
+ * If the library supports a larger major version, then it shall fall
22c213
+ * back to the major protocol version sent by the kernel for
22c213
+ * communication and reply with that major version (and an arbitrary
22c213
+ * supported minor version).
22c213
+ */
22c213
+
22c213
+/** Version number of this interface */
22c213
+#define FUSE_KERNEL_VERSION 7
22c213
+
22c213
+/** Minor version number of this interface */
22c213
+#define FUSE_KERNEL_MINOR_VERSION 31
22c213
+
22c213
+/** The node ID of the root inode */
22c213
+#define FUSE_ROOT_ID 1
22c213
+
22c213
+/* Make sure all structures are padded to 64bit boundary, so 32bit
22c213
+   userspace works under 64bit kernels */
22c213
+
22c213
+struct fuse_attr {
22c213
+	uint64_t	ino;
22c213
+	uint64_t	size;
22c213
+	uint64_t	blocks;
22c213
+	uint64_t	atime;
22c213
+	uint64_t	mtime;
22c213
+	uint64_t	ctime;
22c213
+	uint32_t	atimensec;
22c213
+	uint32_t	mtimensec;
22c213
+	uint32_t	ctimensec;
22c213
+	uint32_t	mode;
22c213
+	uint32_t	nlink;
22c213
+	uint32_t	uid;
22c213
+	uint32_t	gid;
22c213
+	uint32_t	rdev;
22c213
+	uint32_t	blksize;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_kstatfs {
22c213
+	uint64_t	blocks;
22c213
+	uint64_t	bfree;
22c213
+	uint64_t	bavail;
22c213
+	uint64_t	files;
22c213
+	uint64_t	ffree;
22c213
+	uint32_t	bsize;
22c213
+	uint32_t	namelen;
22c213
+	uint32_t	frsize;
22c213
+	uint32_t	padding;
22c213
+	uint32_t	spare[6];
22c213
+};
22c213
+
22c213
+struct fuse_file_lock {
22c213
+	uint64_t	start;
22c213
+	uint64_t	end;
22c213
+	uint32_t	type;
22c213
+	uint32_t	pid; /* tgid */
22c213
+};
22c213
+
22c213
+/**
22c213
+ * Bitmasks for fuse_setattr_in.valid
22c213
+ */
22c213
+#define FATTR_MODE	(1 << 0)
22c213
+#define FATTR_UID	(1 << 1)
22c213
+#define FATTR_GID	(1 << 2)
22c213
+#define FATTR_SIZE	(1 << 3)
22c213
+#define FATTR_ATIME	(1 << 4)
22c213
+#define FATTR_MTIME	(1 << 5)
22c213
+#define FATTR_FH	(1 << 6)
22c213
+#define FATTR_ATIME_NOW	(1 << 7)
22c213
+#define FATTR_MTIME_NOW	(1 << 8)
22c213
+#define FATTR_LOCKOWNER	(1 << 9)
22c213
+#define FATTR_CTIME	(1 << 10)
22c213
+
22c213
+/**
22c213
+ * Flags returned by the OPEN request
22c213
+ *
22c213
+ * FOPEN_DIRECT_IO: bypass page cache for this open file
22c213
+ * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
22c213
+ * FOPEN_NONSEEKABLE: the file is not seekable
22c213
+ * FOPEN_CACHE_DIR: allow caching this directory
22c213
+ * FOPEN_STREAM: the file is stream-like (no file position at all)
22c213
+ */
22c213
+#define FOPEN_DIRECT_IO		(1 << 0)
22c213
+#define FOPEN_KEEP_CACHE	(1 << 1)
22c213
+#define FOPEN_NONSEEKABLE	(1 << 2)
22c213
+#define FOPEN_CACHE_DIR		(1 << 3)
22c213
+#define FOPEN_STREAM		(1 << 4)
22c213
+
22c213
+/**
22c213
+ * INIT request/reply flags
22c213
+ *
22c213
+ * FUSE_ASYNC_READ: asynchronous read requests
22c213
+ * FUSE_POSIX_LOCKS: remote locking for POSIX file locks
22c213
+ * FUSE_FILE_OPS: kernel sends file handle for fstat, etc... (not yet supported)
22c213
+ * FUSE_ATOMIC_O_TRUNC: handles the O_TRUNC open flag in the filesystem
22c213
+ * FUSE_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
22c213
+ * FUSE_BIG_WRITES: filesystem can handle write size larger than 4kB
22c213
+ * FUSE_DONT_MASK: don't apply umask to file mode on create operations
22c213
+ * FUSE_SPLICE_WRITE: kernel supports splice write on the device
22c213
+ * FUSE_SPLICE_MOVE: kernel supports splice move on the device
22c213
+ * FUSE_SPLICE_READ: kernel supports splice read on the device
22c213
+ * FUSE_FLOCK_LOCKS: remote locking for BSD style file locks
22c213
+ * FUSE_HAS_IOCTL_DIR: kernel supports ioctl on directories
22c213
+ * FUSE_AUTO_INVAL_DATA: automatically invalidate cached pages
22c213
+ * FUSE_DO_READDIRPLUS: do READDIRPLUS (READDIR+LOOKUP in one)
22c213
+ * FUSE_READDIRPLUS_AUTO: adaptive readdirplus
22c213
+ * FUSE_ASYNC_DIO: asynchronous direct I/O submission
22c213
+ * FUSE_WRITEBACK_CACHE: use writeback cache for buffered writes
22c213
+ * FUSE_NO_OPEN_SUPPORT: kernel supports zero-message opens
22c213
+ * FUSE_PARALLEL_DIROPS: allow parallel lookups and readdir
22c213
+ * FUSE_HANDLE_KILLPRIV: fs handles killing suid/sgid/cap on write/chown/trunc
22c213
+ * FUSE_POSIX_ACL: filesystem supports posix acls
22c213
+ * FUSE_ABORT_ERROR: reading the device after abort returns ECONNABORTED
22c213
+ * FUSE_MAX_PAGES: init_out.max_pages contains the max number of req pages
22c213
+ * FUSE_CACHE_SYMLINKS: cache READLINK responses
22c213
+ * FUSE_NO_OPENDIR_SUPPORT: kernel supports zero-message opendir
22c213
+ * FUSE_EXPLICIT_INVAL_DATA: only invalidate cached pages on explicit request
22c213
+ * FUSE_MAP_ALIGNMENT: map_alignment field is valid
22c213
+ */
22c213
+#define FUSE_ASYNC_READ		(1 << 0)
22c213
+#define FUSE_POSIX_LOCKS	(1 << 1)
22c213
+#define FUSE_FILE_OPS		(1 << 2)
22c213
+#define FUSE_ATOMIC_O_TRUNC	(1 << 3)
22c213
+#define FUSE_EXPORT_SUPPORT	(1 << 4)
22c213
+#define FUSE_BIG_WRITES		(1 << 5)
22c213
+#define FUSE_DONT_MASK		(1 << 6)
22c213
+#define FUSE_SPLICE_WRITE	(1 << 7)
22c213
+#define FUSE_SPLICE_MOVE	(1 << 8)
22c213
+#define FUSE_SPLICE_READ	(1 << 9)
22c213
+#define FUSE_FLOCK_LOCKS	(1 << 10)
22c213
+#define FUSE_HAS_IOCTL_DIR	(1 << 11)
22c213
+#define FUSE_AUTO_INVAL_DATA	(1 << 12)
22c213
+#define FUSE_DO_READDIRPLUS	(1 << 13)
22c213
+#define FUSE_READDIRPLUS_AUTO	(1 << 14)
22c213
+#define FUSE_ASYNC_DIO		(1 << 15)
22c213
+#define FUSE_WRITEBACK_CACHE	(1 << 16)
22c213
+#define FUSE_NO_OPEN_SUPPORT	(1 << 17)
22c213
+#define FUSE_PARALLEL_DIROPS    (1 << 18)
22c213
+#define FUSE_HANDLE_KILLPRIV	(1 << 19)
22c213
+#define FUSE_POSIX_ACL		(1 << 20)
22c213
+#define FUSE_ABORT_ERROR	(1 << 21)
22c213
+#define FUSE_MAX_PAGES		(1 << 22)
22c213
+#define FUSE_CACHE_SYMLINKS	(1 << 23)
22c213
+#define FUSE_NO_OPENDIR_SUPPORT (1 << 24)
22c213
+#define FUSE_EXPLICIT_INVAL_DATA (1 << 25)
22c213
+#define FUSE_MAP_ALIGNMENT	(1 << 26)
22c213
+
22c213
+/**
22c213
+ * CUSE INIT request/reply flags
22c213
+ *
22c213
+ * CUSE_UNRESTRICTED_IOCTL:  use unrestricted ioctl
22c213
+ */
22c213
+#define CUSE_UNRESTRICTED_IOCTL	(1 << 0)
22c213
+
22c213
+/**
22c213
+ * Release flags
22c213
+ */
22c213
+#define FUSE_RELEASE_FLUSH	(1 << 0)
22c213
+#define FUSE_RELEASE_FLOCK_UNLOCK	(1 << 1)
22c213
+
22c213
+/**
22c213
+ * Getattr flags
22c213
+ */
22c213
+#define FUSE_GETATTR_FH		(1 << 0)
22c213
+
22c213
+/**
22c213
+ * Lock flags
22c213
+ */
22c213
+#define FUSE_LK_FLOCK		(1 << 0)
22c213
+
22c213
+/**
22c213
+ * WRITE flags
22c213
+ *
22c213
+ * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
22c213
+ * FUSE_WRITE_LOCKOWNER: lock_owner field is valid
22c213
+ * FUSE_WRITE_KILL_PRIV: kill suid and sgid bits
22c213
+ */
22c213
+#define FUSE_WRITE_CACHE	(1 << 0)
22c213
+#define FUSE_WRITE_LOCKOWNER	(1 << 1)
22c213
+#define FUSE_WRITE_KILL_PRIV	(1 << 2)
22c213
+
22c213
+/**
22c213
+ * Read flags
22c213
+ */
22c213
+#define FUSE_READ_LOCKOWNER	(1 << 1)
22c213
+
22c213
+/**
22c213
+ * Ioctl flags
22c213
+ *
22c213
+ * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine
22c213
+ * FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed
22c213
+ * FUSE_IOCTL_RETRY: retry with new iovecs
22c213
+ * FUSE_IOCTL_32BIT: 32bit ioctl
22c213
+ * FUSE_IOCTL_DIR: is a directory
22c213
+ * FUSE_IOCTL_COMPAT_X32: x32 compat ioctl on 64bit machine (64bit time_t)
22c213
+ *
22c213
+ * FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs
22c213
+ */
22c213
+#define FUSE_IOCTL_COMPAT	(1 << 0)
22c213
+#define FUSE_IOCTL_UNRESTRICTED	(1 << 1)
22c213
+#define FUSE_IOCTL_RETRY	(1 << 2)
22c213
+#define FUSE_IOCTL_32BIT	(1 << 3)
22c213
+#define FUSE_IOCTL_DIR		(1 << 4)
22c213
+#define FUSE_IOCTL_COMPAT_X32	(1 << 5)
22c213
+
22c213
+#define FUSE_IOCTL_MAX_IOV	256
22c213
+
22c213
+/**
22c213
+ * Poll flags
22c213
+ *
22c213
+ * FUSE_POLL_SCHEDULE_NOTIFY: request poll notify
22c213
+ */
22c213
+#define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0)
22c213
+
22c213
+/**
22c213
+ * Fsync flags
22c213
+ *
22c213
+ * FUSE_FSYNC_FDATASYNC: Sync data only, not metadata
22c213
+ */
22c213
+#define FUSE_FSYNC_FDATASYNC	(1 << 0)
22c213
+
22c213
+enum fuse_opcode {
22c213
+	FUSE_LOOKUP		= 1,
22c213
+	FUSE_FORGET		= 2,  /* no reply */
22c213
+	FUSE_GETATTR		= 3,
22c213
+	FUSE_SETATTR		= 4,
22c213
+	FUSE_READLINK		= 5,
22c213
+	FUSE_SYMLINK		= 6,
22c213
+	FUSE_MKNOD		= 8,
22c213
+	FUSE_MKDIR		= 9,
22c213
+	FUSE_UNLINK		= 10,
22c213
+	FUSE_RMDIR		= 11,
22c213
+	FUSE_RENAME		= 12,
22c213
+	FUSE_LINK		= 13,
22c213
+	FUSE_OPEN		= 14,
22c213
+	FUSE_READ		= 15,
22c213
+	FUSE_WRITE		= 16,
22c213
+	FUSE_STATFS		= 17,
22c213
+	FUSE_RELEASE		= 18,
22c213
+	FUSE_FSYNC		= 20,
22c213
+	FUSE_SETXATTR		= 21,
22c213
+	FUSE_GETXATTR		= 22,
22c213
+	FUSE_LISTXATTR		= 23,
22c213
+	FUSE_REMOVEXATTR	= 24,
22c213
+	FUSE_FLUSH		= 25,
22c213
+	FUSE_INIT		= 26,
22c213
+	FUSE_OPENDIR		= 27,
22c213
+	FUSE_READDIR		= 28,
22c213
+	FUSE_RELEASEDIR		= 29,
22c213
+	FUSE_FSYNCDIR		= 30,
22c213
+	FUSE_GETLK		= 31,
22c213
+	FUSE_SETLK		= 32,
22c213
+	FUSE_SETLKW		= 33,
22c213
+	FUSE_ACCESS		= 34,
22c213
+	FUSE_CREATE		= 35,
22c213
+	FUSE_INTERRUPT		= 36,
22c213
+	FUSE_BMAP		= 37,
22c213
+	FUSE_DESTROY		= 38,
22c213
+	FUSE_IOCTL		= 39,
22c213
+	FUSE_POLL		= 40,
22c213
+	FUSE_NOTIFY_REPLY	= 41,
22c213
+	FUSE_BATCH_FORGET	= 42,
22c213
+	FUSE_FALLOCATE		= 43,
22c213
+	FUSE_READDIRPLUS	= 44,
22c213
+	FUSE_RENAME2		= 45,
22c213
+	FUSE_LSEEK		= 46,
22c213
+	FUSE_COPY_FILE_RANGE	= 47,
22c213
+	FUSE_SETUPMAPPING	= 48,
22c213
+	FUSE_REMOVEMAPPING	= 49,
22c213
+
22c213
+	/* CUSE specific operations */
22c213
+	CUSE_INIT		= 4096,
22c213
+
22c213
+	/* Reserved opcodes: helpful to detect structure endian-ness */
22c213
+	CUSE_INIT_BSWAP_RESERVED	= 1048576,	/* CUSE_INIT << 8 */
22c213
+	FUSE_INIT_BSWAP_RESERVED	= 436207616,	/* FUSE_INIT << 24 */
22c213
+};
22c213
+
22c213
+enum fuse_notify_code {
22c213
+	FUSE_NOTIFY_POLL   = 1,
22c213
+	FUSE_NOTIFY_INVAL_INODE = 2,
22c213
+	FUSE_NOTIFY_INVAL_ENTRY = 3,
22c213
+	FUSE_NOTIFY_STORE = 4,
22c213
+	FUSE_NOTIFY_RETRIEVE = 5,
22c213
+	FUSE_NOTIFY_DELETE = 6,
22c213
+	FUSE_NOTIFY_CODE_MAX,
22c213
+};
22c213
+
22c213
+/* The read buffer is required to be at least 8k, but may be much larger */
22c213
+#define FUSE_MIN_READ_BUFFER 8192
22c213
+
22c213
+#define FUSE_COMPAT_ENTRY_OUT_SIZE 120
22c213
+
22c213
+struct fuse_entry_out {
22c213
+	uint64_t	nodeid;		/* Inode ID */
22c213
+	uint64_t	generation;	/* Inode generation: nodeid:gen must
22c213
+					   be unique for the fs's lifetime */
22c213
+	uint64_t	entry_valid;	/* Cache timeout for the name */
22c213
+	uint64_t	attr_valid;	/* Cache timeout for the attributes */
22c213
+	uint32_t	entry_valid_nsec;
22c213
+	uint32_t	attr_valid_nsec;
22c213
+	struct fuse_attr attr;
22c213
+};
22c213
+
22c213
+struct fuse_forget_in {
22c213
+	uint64_t	nlookup;
22c213
+};
22c213
+
22c213
+struct fuse_forget_one {
22c213
+	uint64_t	nodeid;
22c213
+	uint64_t	nlookup;
22c213
+};
22c213
+
22c213
+struct fuse_batch_forget_in {
22c213
+	uint32_t	count;
22c213
+	uint32_t	dummy;
22c213
+};
22c213
+
22c213
+struct fuse_getattr_in {
22c213
+	uint32_t	getattr_flags;
22c213
+	uint32_t	dummy;
22c213
+	uint64_t	fh;
22c213
+};
22c213
+
22c213
+#define FUSE_COMPAT_ATTR_OUT_SIZE 96
22c213
+
22c213
+struct fuse_attr_out {
22c213
+	uint64_t	attr_valid;	/* Cache timeout for the attributes */
22c213
+	uint32_t	attr_valid_nsec;
22c213
+	uint32_t	dummy;
22c213
+	struct fuse_attr attr;
22c213
+};
22c213
+
22c213
+#define FUSE_COMPAT_MKNOD_IN_SIZE 8
22c213
+
22c213
+struct fuse_mknod_in {
22c213
+	uint32_t	mode;
22c213
+	uint32_t	rdev;
22c213
+	uint32_t	umask;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_mkdir_in {
22c213
+	uint32_t	mode;
22c213
+	uint32_t	umask;
22c213
+};
22c213
+
22c213
+struct fuse_rename_in {
22c213
+	uint64_t	newdir;
22c213
+};
22c213
+
22c213
+struct fuse_rename2_in {
22c213
+	uint64_t	newdir;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_link_in {
22c213
+	uint64_t	oldnodeid;
22c213
+};
22c213
+
22c213
+struct fuse_setattr_in {
22c213
+	uint32_t	valid;
22c213
+	uint32_t	padding;
22c213
+	uint64_t	fh;
22c213
+	uint64_t	size;
22c213
+	uint64_t	lock_owner;
22c213
+	uint64_t	atime;
22c213
+	uint64_t	mtime;
22c213
+	uint64_t	ctime;
22c213
+	uint32_t	atimensec;
22c213
+	uint32_t	mtimensec;
22c213
+	uint32_t	ctimensec;
22c213
+	uint32_t	mode;
22c213
+	uint32_t	unused4;
22c213
+	uint32_t	uid;
22c213
+	uint32_t	gid;
22c213
+	uint32_t	unused5;
22c213
+};
22c213
+
22c213
+struct fuse_open_in {
22c213
+	uint32_t	flags;
22c213
+	uint32_t	unused;
22c213
+};
22c213
+
22c213
+struct fuse_create_in {
22c213
+	uint32_t	flags;
22c213
+	uint32_t	mode;
22c213
+	uint32_t	umask;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_open_out {
22c213
+	uint64_t	fh;
22c213
+	uint32_t	open_flags;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_release_in {
22c213
+	uint64_t	fh;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	release_flags;
22c213
+	uint64_t	lock_owner;
22c213
+};
22c213
+
22c213
+struct fuse_flush_in {
22c213
+	uint64_t	fh;
22c213
+	uint32_t	unused;
22c213
+	uint32_t	padding;
22c213
+	uint64_t	lock_owner;
22c213
+};
22c213
+
22c213
+struct fuse_read_in {
22c213
+	uint64_t	fh;
22c213
+	uint64_t	offset;
22c213
+	uint32_t	size;
22c213
+	uint32_t	read_flags;
22c213
+	uint64_t	lock_owner;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+#define FUSE_COMPAT_WRITE_IN_SIZE 24
22c213
+
22c213
+struct fuse_write_in {
22c213
+	uint64_t	fh;
22c213
+	uint64_t	offset;
22c213
+	uint32_t	size;
22c213
+	uint32_t	write_flags;
22c213
+	uint64_t	lock_owner;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_write_out {
22c213
+	uint32_t	size;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+#define FUSE_COMPAT_STATFS_SIZE 48
22c213
+
22c213
+struct fuse_statfs_out {
22c213
+	struct fuse_kstatfs st;
22c213
+};
22c213
+
22c213
+struct fuse_fsync_in {
22c213
+	uint64_t	fh;
22c213
+	uint32_t	fsync_flags;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_setxattr_in {
22c213
+	uint32_t	size;
22c213
+	uint32_t	flags;
22c213
+};
22c213
+
22c213
+struct fuse_getxattr_in {
22c213
+	uint32_t	size;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_getxattr_out {
22c213
+	uint32_t	size;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_lk_in {
22c213
+	uint64_t	fh;
22c213
+	uint64_t	owner;
22c213
+	struct fuse_file_lock lk;
22c213
+	uint32_t	lk_flags;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_lk_out {
22c213
+	struct fuse_file_lock lk;
22c213
+};
22c213
+
22c213
+struct fuse_access_in {
22c213
+	uint32_t	mask;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_init_in {
22c213
+	uint32_t	major;
22c213
+	uint32_t	minor;
22c213
+	uint32_t	max_readahead;
22c213
+	uint32_t	flags;
22c213
+};
22c213
+
22c213
+#define FUSE_COMPAT_INIT_OUT_SIZE 8
22c213
+#define FUSE_COMPAT_22_INIT_OUT_SIZE 24
22c213
+
22c213
+struct fuse_init_out {
22c213
+	uint32_t	major;
22c213
+	uint32_t	minor;
22c213
+	uint32_t	max_readahead;
22c213
+	uint32_t	flags;
22c213
+	uint16_t	max_background;
22c213
+	uint16_t	congestion_threshold;
22c213
+	uint32_t	max_write;
22c213
+	uint32_t	time_gran;
22c213
+	uint16_t	max_pages;
22c213
+	uint16_t	map_alignment;
22c213
+	uint32_t	unused[8];
22c213
+};
22c213
+
22c213
+#define CUSE_INIT_INFO_MAX 4096
22c213
+
22c213
+struct cuse_init_in {
22c213
+	uint32_t	major;
22c213
+	uint32_t	minor;
22c213
+	uint32_t	unused;
22c213
+	uint32_t	flags;
22c213
+};
22c213
+
22c213
+struct cuse_init_out {
22c213
+	uint32_t	major;
22c213
+	uint32_t	minor;
22c213
+	uint32_t	unused;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	max_read;
22c213
+	uint32_t	max_write;
22c213
+	uint32_t	dev_major;		/* chardev major */
22c213
+	uint32_t	dev_minor;		/* chardev minor */
22c213
+	uint32_t	spare[10];
22c213
+};
22c213
+
22c213
+struct fuse_interrupt_in {
22c213
+	uint64_t	unique;
22c213
+};
22c213
+
22c213
+struct fuse_bmap_in {
22c213
+	uint64_t	block;
22c213
+	uint32_t	blocksize;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_bmap_out {
22c213
+	uint64_t	block;
22c213
+};
22c213
+
22c213
+struct fuse_ioctl_in {
22c213
+	uint64_t	fh;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	cmd;
22c213
+	uint64_t	arg;
22c213
+	uint32_t	in_size;
22c213
+	uint32_t	out_size;
22c213
+};
22c213
+
22c213
+struct fuse_ioctl_iovec {
22c213
+	uint64_t	base;
22c213
+	uint64_t	len;
22c213
+};
22c213
+
22c213
+struct fuse_ioctl_out {
22c213
+	int32_t		result;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	in_iovs;
22c213
+	uint32_t	out_iovs;
22c213
+};
22c213
+
22c213
+struct fuse_poll_in {
22c213
+	uint64_t	fh;
22c213
+	uint64_t	kh;
22c213
+	uint32_t	flags;
22c213
+	uint32_t	events;
22c213
+};
22c213
+
22c213
+struct fuse_poll_out {
22c213
+	uint32_t	revents;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_notify_poll_wakeup_out {
22c213
+	uint64_t	kh;
22c213
+};
22c213
+
22c213
+struct fuse_fallocate_in {
22c213
+	uint64_t	fh;
22c213
+	uint64_t	offset;
22c213
+	uint64_t	length;
22c213
+	uint32_t	mode;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_in_header {
22c213
+	uint32_t	len;
22c213
+	uint32_t	opcode;
22c213
+	uint64_t	unique;
22c213
+	uint64_t	nodeid;
22c213
+	uint32_t	uid;
22c213
+	uint32_t	gid;
22c213
+	uint32_t	pid;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_out_header {
22c213
+	uint32_t	len;
22c213
+	int32_t		error;
22c213
+	uint64_t	unique;
22c213
+};
22c213
+
22c213
+struct fuse_dirent {
22c213
+	uint64_t	ino;
22c213
+	uint64_t	off;
22c213
+	uint32_t	namelen;
22c213
+	uint32_t	type;
22c213
+	char name[];
22c213
+};
22c213
+
22c213
+#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
22c213
+#define FUSE_DIRENT_ALIGN(x) \
22c213
+	(((x) + sizeof(uint64_t) - 1) & ~(sizeof(uint64_t) - 1))
22c213
+#define FUSE_DIRENT_SIZE(d) \
22c213
+	FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)
22c213
+
22c213
+struct fuse_direntplus {
22c213
+	struct fuse_entry_out entry_out;
22c213
+	struct fuse_dirent dirent;
22c213
+};
22c213
+
22c213
+#define FUSE_NAME_OFFSET_DIRENTPLUS \
22c213
+	offsetof(struct fuse_direntplus, dirent.name)
22c213
+#define FUSE_DIRENTPLUS_SIZE(d) \
22c213
+	FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET_DIRENTPLUS + (d)->dirent.namelen)
22c213
+
22c213
+struct fuse_notify_inval_inode_out {
22c213
+	uint64_t	ino;
22c213
+	int64_t		off;
22c213
+	int64_t		len;
22c213
+};
22c213
+
22c213
+struct fuse_notify_inval_entry_out {
22c213
+	uint64_t	parent;
22c213
+	uint32_t	namelen;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_notify_delete_out {
22c213
+	uint64_t	parent;
22c213
+	uint64_t	child;
22c213
+	uint32_t	namelen;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_notify_store_out {
22c213
+	uint64_t	nodeid;
22c213
+	uint64_t	offset;
22c213
+	uint32_t	size;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_notify_retrieve_out {
22c213
+	uint64_t	notify_unique;
22c213
+	uint64_t	nodeid;
22c213
+	uint64_t	offset;
22c213
+	uint32_t	size;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+/* Matches the size of fuse_write_in */
22c213
+struct fuse_notify_retrieve_in {
22c213
+	uint64_t	dummy1;
22c213
+	uint64_t	offset;
22c213
+	uint32_t	size;
22c213
+	uint32_t	dummy2;
22c213
+	uint64_t	dummy3;
22c213
+	uint64_t	dummy4;
22c213
+};
22c213
+
22c213
+/* Device ioctls: */
22c213
+#define FUSE_DEV_IOC_CLONE	_IOR(229, 0, uint32_t)
22c213
+
22c213
+struct fuse_lseek_in {
22c213
+	uint64_t	fh;
22c213
+	uint64_t	offset;
22c213
+	uint32_t	whence;
22c213
+	uint32_t	padding;
22c213
+};
22c213
+
22c213
+struct fuse_lseek_out {
22c213
+	uint64_t	offset;
22c213
+};
22c213
+
22c213
+struct fuse_copy_file_range_in {
22c213
+	uint64_t	fh_in;
22c213
+	uint64_t	off_in;
22c213
+	uint64_t	nodeid_out;
22c213
+	uint64_t	fh_out;
22c213
+	uint64_t	off_out;
22c213
+	uint64_t	len;
22c213
+	uint64_t	flags;
22c213
+};
22c213
+
22c213
+#endif /* _LINUX_FUSE_H */
22c213
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh
22c213
index f76d773..29c27f4 100755
22c213
--- a/scripts/update-linux-headers.sh
22c213
+++ b/scripts/update-linux-headers.sh
22c213
@@ -186,6 +186,7 @@ rm -rf "$output/include/standard-headers/linux"
22c213
 mkdir -p "$output/include/standard-headers/linux"
22c213
 for i in "$tmpdir"/include/linux/*virtio*.h \
22c213
          "$tmpdir/include/linux/qemu_fw_cfg.h" \
22c213
+         "$tmpdir/include/linux/fuse.h" \
22c213
          "$tmpdir/include/linux/input.h" \
22c213
          "$tmpdir/include/linux/input-event-codes.h" \
22c213
          "$tmpdir/include/linux/pci_regs.h" \
22c213
-- 
22c213
1.8.3.1
22c213