Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __CODA_PSDEV_H |
| 3 | #define __CODA_PSDEV_H |
| 4 | |
Jens Axboe | 33f60e9 | 2010-04-28 09:20:33 +0200 | [diff] [blame] | 5 | #include <linux/backing-dev.h> |
Jan Harkes | 6dc280e | 2019-07-16 16:28:51 -0700 | [diff] [blame] | 6 | #include <linux/magic.h> |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 7 | #include <linux/mutex.h> |
Jan Harkes | 6dc280e | 2019-07-16 16:28:51 -0700 | [diff] [blame] | 8 | |
| 9 | #define CODA_PSDEV_MAJOR 67 |
| 10 | #define MAX_CODADEVS 5 /* how many do we allow */ |
Jens Axboe | 33f60e9 | 2010-04-28 09:20:33 +0200 | [diff] [blame] | 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | struct kstatfs; |
| 13 | |
Mikko Rapeli | f90fb3c | 2019-07-16 16:28:10 -0700 | [diff] [blame] | 14 | /* messages between coda filesystem in kernel and Venus */ |
| 15 | struct upc_req { |
| 16 | struct list_head uc_chain; |
| 17 | caddr_t uc_data; |
| 18 | u_short uc_flags; |
| 19 | u_short uc_inSize; /* Size is at most 5000 bytes */ |
| 20 | u_short uc_outSize; |
| 21 | u_short uc_opcode; /* copied from data to save lookup */ |
| 22 | int uc_unique; |
| 23 | wait_queue_head_t uc_sleep; /* process' wait queue */ |
| 24 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Jan Harkes | 2fe7491 | 2019-07-16 16:28:26 -0700 | [diff] [blame] | 26 | #define CODA_REQ_ASYNC 0x1 |
| 27 | #define CODA_REQ_READ 0x2 |
| 28 | #define CODA_REQ_WRITE 0x4 |
| 29 | #define CODA_REQ_ABORT 0x8 |
| 30 | |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 31 | /* communication pending/processing queues */ |
| 32 | struct venus_comm { |
| 33 | u_long vc_seq; |
| 34 | wait_queue_head_t vc_waitq; /* Venus wait queue */ |
| 35 | struct list_head vc_pending; |
| 36 | struct list_head vc_processing; |
| 37 | int vc_inuse; |
| 38 | struct super_block *vc_sb; |
| 39 | struct mutex vc_mutex; |
| 40 | }; |
| 41 | |
Jan Harkes | a1b0aa8 | 2007-07-19 01:48:50 -0700 | [diff] [blame] | 42 | static inline struct venus_comm *coda_vcp(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Jan Harkes | a1b0aa8 | 2007-07-19 01:48:50 -0700 | [diff] [blame] | 44 | return (struct venus_comm *)((sb)->s_fs_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* upcalls */ |
| 48 | int venus_rootfid(struct super_block *sb, struct CodaFid *fidp); |
| 49 | int venus_getattr(struct super_block *sb, struct CodaFid *fid, |
| 50 | struct coda_vattr *attr); |
| 51 | int venus_setattr(struct super_block *, struct CodaFid *, struct coda_vattr *); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 52 | int venus_lookup(struct super_block *sb, struct CodaFid *fid, |
| 53 | const char *name, int length, int *type, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | struct CodaFid *resfid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | int venus_close(struct super_block *sb, struct CodaFid *fid, int flags, |
Eric W. Biederman | d83f590 | 2013-01-30 19:21:14 -0800 | [diff] [blame] | 56 | kuid_t uid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | int venus_open(struct super_block *sb, struct CodaFid *fid, int flags, |
| 58 | struct file **f); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 59 | int venus_mkdir(struct super_block *sb, struct CodaFid *dirfid, |
| 60 | const char *name, int length, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct CodaFid *newfid, struct coda_vattr *attrs); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 62 | int venus_create(struct super_block *sb, struct CodaFid *dirfid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | const char *name, int length, int excl, int mode, |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 64 | struct CodaFid *newfid, struct coda_vattr *attrs); |
| 65 | int venus_rmdir(struct super_block *sb, struct CodaFid *dirfid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | const char *name, int length); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 67 | int venus_remove(struct super_block *sb, struct CodaFid *dirfid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | const char *name, int length); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 69 | int venus_readlink(struct super_block *sb, struct CodaFid *fid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | char *buffer, int *length); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 71 | int venus_rename(struct super_block *sb, struct CodaFid *new_fid, |
| 72 | struct CodaFid *old_fid, size_t old_length, |
| 73 | size_t new_length, const char *old_name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | const char *new_name); |
David Howells | 8fc8b9d | 2019-07-16 16:28:47 -0700 | [diff] [blame] | 75 | int venus_link(struct super_block *sb, struct CodaFid *fid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | struct CodaFid *dirfid, const char *name, int len ); |
| 77 | int venus_symlink(struct super_block *sb, struct CodaFid *fid, |
| 78 | const char *name, int len, const char *symname, int symlen); |
| 79 | int venus_access(struct super_block *sb, struct CodaFid *fid, int mask); |
| 80 | int venus_pioctl(struct super_block *sb, struct CodaFid *fid, |
| 81 | unsigned int cmd, struct PioctlData *data); |
Jan Harkes | 6e51f8a | 2019-07-16 16:28:16 -0700 | [diff] [blame] | 82 | int coda_downcall(struct venus_comm *vcp, int opcode, union outputArgs *out, |
| 83 | size_t nbytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | int venus_fsync(struct super_block *sb, struct CodaFid *fid); |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 85 | int venus_statfs(struct dentry *dentry, struct kstatfs *sfs); |
Pedro Cuadra | a9fba24 | 2019-07-16 16:29:13 -0700 | [diff] [blame] | 86 | int venus_access_intent(struct super_block *sb, struct CodaFid *fid, |
| 87 | bool *access_intent_supported, |
| 88 | size_t count, loff_t ppos, int type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Jaswinder Singh Rajput | 7e7f4ea | 2009-02-02 21:40:10 +0530 | [diff] [blame] | 90 | /* |
| 91 | * Statistics |
| 92 | */ |
| 93 | |
| 94 | extern struct venus_comm coda_comms[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | #endif |