virtio-9p: Add P9_TREAD support
[qemu/aliguori-queue.git] / hw / file-op-9p.h
blobc1f5e45e2ba5d5ab6cbd56eeb499faf6546a4f9e
1 /*
2 * Virtio 9p
4 * Copyright IBM, Corp. 2010
6 * Authors:
7 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
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>
22 typedef struct FsContext
24 char *fs_root;
25 uid_t uid;
26 } FsContext;
28 typedef struct FileOperations
30 int (*lstat)(FsContext *, const char *, struct stat *);
31 ssize_t (*readlink)(FsContext *, const char *, char *, size_t);
32 int (*setuid)(FsContext *, uid_t);
33 int (*close)(FsContext *, int);
34 int (*closedir)(FsContext *, DIR *);
35 DIR *(*opendir)(FsContext *, const char *);
36 int (*open)(FsContext *, const char *, int);
37 void (*rewinddir)(FsContext *, DIR *);
38 off_t (*telldir)(FsContext *, DIR *);
39 struct dirent *(*readdir)(FsContext *, DIR *);
40 void (*seekdir)(FsContext *, DIR *, off_t);
41 ssize_t (*readv)(FsContext *, int, const struct iovec *, int);
42 off_t (*lseek)(FsContext *, int, off_t, int);
43 void *opaque;
44 } FileOperations;
45 #endif