1 /* 2 * Virtio 9p 3 * 4 * Copyright IBM, Corp. 2010 5 * 6 * Authors: 7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2. See 10 * the COPYING file in the top-level directory. 11 * 12 */ 13 #ifndef _FILEOP_H 14 #define _FILEOP_H 15 #include <sys/types.h> 16 #include <dirent.h> 17 #include <sys/time.h> 18 #include <utime.h> 19 #include <sys/stat.h> 20 #include <sys/uio.h> 21 #include <sys/vfs.h> 22 23 #define SM_LOCAL_MODE_BITS 0600 24 #define SM_LOCAL_DIR_MODE_BITS 0700 25 26 typedef struct FsCred 27 { 28 uid_t fc_uid; 29 gid_t fc_gid; 30 mode_t fc_mode; 31 dev_t fc_rdev; 32 } FsCred; 33 34 struct xattr_operations; 35 struct FsContext; 36 struct V9fsPath; 37 38 typedef struct extended_ops { 39 int (*get_st_gen)(struct FsContext *, struct V9fsPath *, 40 mode_t, uint64_t *); 41 } extended_ops; 42 43 /* export flags */ 44 #define V9FS_IMMEDIATE_WRITEOUT 0x00000001 45 #define V9FS_PATHNAME_FSCONTEXT 0x00000002 46 /* 47 * uid/gid set on fileserver files 48 */ 49 #define V9FS_SM_PASSTHROUGH 0x00000004 50 /* 51 * uid/gid part of xattr 52 */ 53 #define V9FS_SM_MAPPED 0x00000008 54 /* 55 * Server will try to set uid/gid. 56 * On failure ignore the error. 57 */ 58 #define V9FS_SM_NONE 0x00000010 59 60 61 #define V9FS_SEC_MASK 0x0000001C 62 63 typedef struct FsContext 64 { 65 uid_t uid; 66 char *fs_root; 67 int export_flags; 68 struct xattr_operations **xops; 69 struct extended_ops exops; 70 /* fs driver specific data */ 71 void *private; 72 } FsContext; 73 74 typedef struct V9fsPath { 75 int16_t size; 76 char *data; 77 } V9fsPath; 78 79 void cred_init(FsCred *); 80 81 typedef struct FileOperations 82 { 83 int (*init)(struct FsContext *); 84 int (*lstat)(FsContext *, V9fsPath *, struct stat *); 85 ssize_t (*readlink)(FsContext *, V9fsPath *, char *, size_t); 86 int (*chmod)(FsContext *, V9fsPath *, FsCred *); 87 int (*chown)(FsContext *, V9fsPath *, FsCred *); 88 int (*mknod)(FsContext *, V9fsPath *, const char *, FsCred *); 89 int (*utimensat)(FsContext *, V9fsPath *, const struct timespec *); 90 int (*remove)(FsContext *, const char *); 91 int (*symlink)(FsContext *, const char *, V9fsPath *, 92 const char *, FsCred *); 93 int (*link)(FsContext *, V9fsPath *, V9fsPath *, const char *); 94 int (*setuid)(FsContext *, uid_t); 95 int (*close)(FsContext *, int); 96 int (*closedir)(FsContext *, DIR *); 97 DIR *(*opendir)(FsContext *, V9fsPath *); 98 int (*open)(FsContext *, V9fsPath *, int); 99 int (*open2)(FsContext *, V9fsPath *, const char *, int, FsCred *); 100 void (*rewinddir)(FsContext *, DIR *); 101 off_t (*telldir)(FsContext *, DIR *); 102 int (*readdir_r)(FsContext *, DIR *, struct dirent *, struct dirent **); 103 void (*seekdir)(FsContext *, DIR *, off_t); 104 ssize_t (*preadv)(FsContext *, int, const struct iovec *, int, off_t); 105 ssize_t (*pwritev)(FsContext *, int, const struct iovec *, int, off_t); 106 int (*mkdir)(FsContext *, V9fsPath *, const char *, FsCred *); 107 int (*fstat)(FsContext *, int, struct stat *); 108 int (*rename)(FsContext *, const char *, const char *); 109 int (*truncate)(FsContext *, V9fsPath *, off_t); 110 int (*fsync)(FsContext *, int, int); 111 int (*statfs)(FsContext *s, V9fsPath *path, struct statfs *stbuf); 112 ssize_t (*lgetxattr)(FsContext *, V9fsPath *, 113 const char *, void *, size_t); 114 ssize_t (*llistxattr)(FsContext *, V9fsPath *, void *, size_t); 115 int (*lsetxattr)(FsContext *, V9fsPath *, 116 const char *, void *, size_t, int); 117 int (*lremovexattr)(FsContext *, V9fsPath *, const char *); 118 int (*name_to_path)(FsContext *, V9fsPath *, const char *, V9fsPath *); 119 int (*renameat)(FsContext *ctx, V9fsPath *olddir, const char *old_name, 120 V9fsPath *newdir, const char *new_name); 121 int (*unlinkat)(FsContext *ctx, V9fsPath *dir, const char *name, int flags); 122 void *opaque; 123 } FileOperations; 124 125 #endif 126