| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/fs/nfs/callback.h | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2004 Trond Myklebust | 
|  | 5 | * | 
|  | 6 | * NFSv4 callback definitions | 
|  | 7 | */ | 
|  | 8 | #ifndef __LINUX_FS_NFS_CALLBACK_H | 
|  | 9 | #define __LINUX_FS_NFS_CALLBACK_H | 
|  | 10 |  | 
|  | 11 | #define NFS4_CALLBACK 0x40000000 | 
|  | 12 | #define NFS4_CALLBACK_XDRSIZE 2048 | 
|  | 13 | #define NFS4_CALLBACK_BUFSIZE (1024 + NFS4_CALLBACK_XDRSIZE) | 
|  | 14 |  | 
|  | 15 | enum nfs4_callback_procnum { | 
|  | 16 | CB_NULL = 0, | 
|  | 17 | CB_COMPOUND = 1, | 
|  | 18 | }; | 
|  | 19 |  | 
|  | 20 | enum nfs4_callback_opnum { | 
|  | 21 | OP_CB_GETATTR = 3, | 
|  | 22 | OP_CB_RECALL  = 4, | 
| Benny Halevy | 45377b9 | 2009-04-01 09:23:21 -0400 | [diff] [blame] | 23 | /* Callback operations new to NFSv4.1 */ | 
|  | 24 | OP_CB_LAYOUTRECALL  = 5, | 
|  | 25 | OP_CB_NOTIFY        = 6, | 
|  | 26 | OP_CB_PUSH_DELEG    = 7, | 
|  | 27 | OP_CB_RECALL_ANY    = 8, | 
|  | 28 | OP_CB_RECALLABLE_OBJ_AVAIL = 9, | 
|  | 29 | OP_CB_RECALL_SLOT   = 10, | 
|  | 30 | OP_CB_SEQUENCE      = 11, | 
|  | 31 | OP_CB_WANTS_CANCELLED = 12, | 
|  | 32 | OP_CB_NOTIFY_LOCK   = 13, | 
| Benny Halevy | 34bc47c9 | 2009-04-01 09:23:22 -0400 | [diff] [blame] | 33 | OP_CB_NOTIFY_DEVICEID = 14, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | OP_CB_ILLEGAL = 10044, | 
|  | 35 | }; | 
|  | 36 |  | 
|  | 37 | struct cb_compound_hdr_arg { | 
| Trond Myklebust | 2e42c3e | 2007-05-14 17:20:41 -0400 | [diff] [blame] | 38 | unsigned int taglen; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | const char *tag; | 
| Benny Halevy | b8f2ef8 | 2009-04-01 09:23:19 -0400 | [diff] [blame] | 40 | unsigned int minorversion; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | unsigned nops; | 
|  | 42 | }; | 
|  | 43 |  | 
|  | 44 | struct cb_compound_hdr_res { | 
| Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 45 | __be32 *status; | 
| Trond Myklebust | 2e42c3e | 2007-05-14 17:20:41 -0400 | [diff] [blame] | 46 | unsigned int taglen; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | const char *tag; | 
| Al Viro | 5704fde | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 48 | __be32 *nops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | }; | 
|  | 50 |  | 
|  | 51 | struct cb_getattrargs { | 
| Chuck Lever | 671beed | 2007-12-10 14:58:22 -0500 | [diff] [blame] | 52 | struct sockaddr *addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | struct nfs_fh fh; | 
|  | 54 | uint32_t bitmap[2]; | 
|  | 55 | }; | 
|  | 56 |  | 
|  | 57 | struct cb_getattrres { | 
| Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 58 | __be32 status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | uint32_t bitmap[2]; | 
|  | 60 | uint64_t size; | 
|  | 61 | uint64_t change_attr; | 
|  | 62 | struct timespec ctime; | 
|  | 63 | struct timespec mtime; | 
|  | 64 | }; | 
|  | 65 |  | 
|  | 66 | struct cb_recallargs { | 
| Chuck Lever | c1d3586 | 2007-12-10 14:58:29 -0500 | [diff] [blame] | 67 | struct sockaddr *addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | struct nfs_fh fh; | 
|  | 69 | nfs4_stateid stateid; | 
|  | 70 | uint32_t truncate; | 
|  | 71 | }; | 
|  | 72 |  | 
| Benny Halevy | 2d9b9ec | 2009-04-01 09:23:24 -0400 | [diff] [blame] | 73 | #if defined(CONFIG_NFS_V4_1) | 
|  | 74 |  | 
|  | 75 | struct referring_call { | 
|  | 76 | uint32_t			rc_sequenceid; | 
|  | 77 | uint32_t			rc_slotid; | 
|  | 78 | }; | 
|  | 79 |  | 
|  | 80 | struct referring_call_list { | 
|  | 81 | struct nfs4_sessionid		rcl_sessionid; | 
|  | 82 | uint32_t			rcl_nrefcalls; | 
|  | 83 | struct referring_call 		*rcl_refcalls; | 
|  | 84 | }; | 
|  | 85 |  | 
|  | 86 | struct cb_sequenceargs { | 
| Ricardo Labiaga | 65fc64e | 2009-04-01 09:23:30 -0400 | [diff] [blame] | 87 | struct sockaddr			*csa_addr; | 
| Benny Halevy | 2d9b9ec | 2009-04-01 09:23:24 -0400 | [diff] [blame] | 88 | struct nfs4_sessionid		csa_sessionid; | 
|  | 89 | uint32_t			csa_sequenceid; | 
|  | 90 | uint32_t			csa_slotid; | 
|  | 91 | uint32_t			csa_highestslotid; | 
|  | 92 | uint32_t			csa_cachethis; | 
|  | 93 | uint32_t			csa_nrclists; | 
|  | 94 | struct referring_call_list	*csa_rclists; | 
|  | 95 | }; | 
|  | 96 |  | 
|  | 97 | struct cb_sequenceres { | 
| Ricardo Labiaga | 65fc64e | 2009-04-01 09:23:30 -0400 | [diff] [blame] | 98 | __be32				csr_status; | 
| Benny Halevy | 2d9b9ec | 2009-04-01 09:23:24 -0400 | [diff] [blame] | 99 | struct nfs4_sessionid		csr_sessionid; | 
|  | 100 | uint32_t			csr_sequenceid; | 
|  | 101 | uint32_t			csr_slotid; | 
|  | 102 | uint32_t			csr_highestslotid; | 
|  | 103 | uint32_t			csr_target_highestslotid; | 
|  | 104 | }; | 
|  | 105 |  | 
| Benny Halevy | d49433e | 2009-04-01 09:23:25 -0400 | [diff] [blame] | 106 | extern unsigned nfs4_callback_sequence(struct cb_sequenceargs *args, | 
|  | 107 | struct cb_sequenceres *res); | 
|  | 108 |  | 
| Benny Halevy | 2d9b9ec | 2009-04-01 09:23:24 -0400 | [diff] [blame] | 109 | #endif /* CONFIG_NFS_V4_1 */ | 
|  | 110 |  | 
| Al Viro | e6f684f | 2006-10-19 23:28:50 -0700 | [diff] [blame] | 111 | extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res); | 
|  | 112 | extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |  | 
| David Howells | 5ae1fbc | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 114 | #ifdef CONFIG_NFS_V4 | 
| Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 115 | extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt); | 
| Andy Adamson | e82dc22 | 2009-04-01 09:23:14 -0400 | [diff] [blame] | 116 | extern void nfs_callback_down(int minorversion); | 
|  | 117 | #endif /* CONFIG_NFS_V4 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 |  | 
| Ricardo Labiaga | a43cde9 | 2009-04-01 09:23:08 -0400 | [diff] [blame] | 119 | /* | 
|  | 120 | * nfs41: Callbacks are expected to not cause substantial latency, | 
|  | 121 | * so we limit their concurrency to 1 by setting up the maximum number | 
|  | 122 | * of slots for the backchannel. | 
|  | 123 | */ | 
|  | 124 | #define NFS41_BC_MIN_CALLBACKS 1 | 
| Benny Halevy | d49433e | 2009-04-01 09:23:25 -0400 | [diff] [blame] | 125 | #define NFS41_BC_MAX_CALLBACKS 1 | 
| Ricardo Labiaga | a43cde9 | 2009-04-01 09:23:08 -0400 | [diff] [blame] | 126 |  | 
| Trond Myklebust | a72b442 | 2006-01-03 09:55:41 +0100 | [diff] [blame] | 127 | extern unsigned int nfs_callback_set_tcpport; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | extern unsigned short nfs_callback_tcpport; | 
| Chuck Lever | f738f51 | 2009-03-18 20:48:06 -0400 | [diff] [blame] | 129 | extern unsigned short nfs_callback_tcpport6; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
|  | 131 | #endif /* __LINUX_FS_NFS_CALLBACK_H */ |