blob: b678e3e15bd9f7de681f2925082035eb4bc0225f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
15enum nfs4_callback_procnum {
16 CB_NULL = 0,
17 CB_COMPOUND = 1,
18};
19
20enum nfs4_callback_opnum {
21 OP_CB_GETATTR = 3,
22 OP_CB_RECALL = 4,
Benny Halevy45377b92009-04-01 09:23:21 -040023/* 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 Halevy34bc47c92009-04-01 09:23:22 -040033 OP_CB_NOTIFY_DEVICEID = 14,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 OP_CB_ILLEGAL = 10044,
35};
36
Andy Adamsonc36fca52011-01-06 02:04:32 +000037struct cb_process_state {
38 __be32 drc_status;
39 struct nfs_client *clp;
40 struct nfs4_sessionid *svc_sid; /* v4.1 callback service sessionid */
41};
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043struct cb_compound_hdr_arg {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -040044 unsigned int taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 const char *tag;
Benny Halevyb8f2ef82009-04-01 09:23:19 -040046 unsigned int minorversion;
Andy Adamsonc36fca52011-01-06 02:04:32 +000047 unsigned int cb_ident; /* v4.0 callback identifier */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 unsigned nops;
49};
50
51struct cb_compound_hdr_res {
Al Viro5704fde2006-10-19 23:28:51 -070052 __be32 *status;
Trond Myklebust2e42c3e2007-05-14 17:20:41 -040053 unsigned int taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 const char *tag;
Al Viro5704fde2006-10-19 23:28:51 -070055 __be32 *nops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
58struct cb_getattrargs {
Chuck Lever671beed2007-12-10 14:58:22 -050059 struct sockaddr *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 struct nfs_fh fh;
61 uint32_t bitmap[2];
62};
63
64struct cb_getattrres {
Al Viroe6f684f2006-10-19 23:28:50 -070065 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 uint32_t bitmap[2];
67 uint64_t size;
68 uint64_t change_attr;
69 struct timespec ctime;
70 struct timespec mtime;
71};
72
73struct cb_recallargs {
Chuck Leverc1d35862007-12-10 14:58:29 -050074 struct sockaddr *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct nfs_fh fh;
76 nfs4_stateid stateid;
77 uint32_t truncate;
78};
79
Benny Halevy2d9b9ec2009-04-01 09:23:24 -040080#if defined(CONFIG_NFS_V4_1)
81
82struct referring_call {
83 uint32_t rc_sequenceid;
84 uint32_t rc_slotid;
85};
86
87struct referring_call_list {
88 struct nfs4_sessionid rcl_sessionid;
89 uint32_t rcl_nrefcalls;
90 struct referring_call *rcl_refcalls;
91};
92
93struct cb_sequenceargs {
Ricardo Labiaga65fc64e2009-04-01 09:23:30 -040094 struct sockaddr *csa_addr;
Benny Halevy2d9b9ec2009-04-01 09:23:24 -040095 struct nfs4_sessionid csa_sessionid;
96 uint32_t csa_sequenceid;
97 uint32_t csa_slotid;
98 uint32_t csa_highestslotid;
99 uint32_t csa_cachethis;
100 uint32_t csa_nrclists;
101 struct referring_call_list *csa_rclists;
102};
103
104struct cb_sequenceres {
Ricardo Labiaga65fc64e2009-04-01 09:23:30 -0400105 __be32 csr_status;
Benny Halevy2d9b9ec2009-04-01 09:23:24 -0400106 struct nfs4_sessionid csr_sessionid;
107 uint32_t csr_sequenceid;
108 uint32_t csr_slotid;
109 uint32_t csr_highestslotid;
110 uint32_t csr_target_highestslotid;
111};
112
Andy Adamsonc36fca52011-01-06 02:04:32 +0000113extern __be32 nfs4_callback_sequence(struct cb_sequenceargs *args,
114 struct cb_sequenceres *res,
115 struct cb_process_state *cps);
Benny Halevyd49433e2009-04-01 09:23:25 -0400116
Alexandros Batsakis25976412009-12-05 13:48:55 -0500117extern int nfs41_validate_delegation_stateid(struct nfs_delegation *delegation,
118 const nfs4_stateid *stateid);
Alexandros Batsakis31f09602009-12-05 13:27:02 -0500119
120#define RCA4_TYPE_MASK_RDATA_DLG 0
121#define RCA4_TYPE_MASK_WDATA_DLG 1
122
123struct cb_recallanyargs {
124 struct sockaddr *craa_addr;
125 uint32_t craa_objs_to_keep;
126 uint32_t craa_type_mask;
127};
128
Andy Adamsonc36fca52011-01-06 02:04:32 +0000129extern __be32 nfs4_callback_recallany(struct cb_recallanyargs *args,
130 void *dummy,
131 struct cb_process_state *cps);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500132
133struct cb_recallslotargs {
134 struct sockaddr *crsa_addr;
135 uint32_t crsa_target_max_slots;
136};
Andy Adamsonc36fca52011-01-06 02:04:32 +0000137extern __be32 nfs4_callback_recallslot(struct cb_recallslotargs *args,
138 void *dummy,
139 struct cb_process_state *cps);
Andy Adamsonb9efa1b2010-01-20 16:06:27 -0500140
Andy Adamson42acd022011-01-06 02:04:34 +0000141extern void nfs4_check_drain_bc_complete(struct nfs4_session *ses);
142extern void nfs4_cb_take_slot(struct nfs_client *clp);
Benny Halevy2d9b9ec2009-04-01 09:23:24 -0400143#endif /* CONFIG_NFS_V4_1 */
144
Andy Adamsonc36fca52011-01-06 02:04:32 +0000145extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args,
146 struct cb_getattrres *res,
147 struct cb_process_state *cps);
148extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy,
149 struct cb_process_state *cps);
David Howells5ae1fbc2006-08-22 20:06:08 -0400150#ifdef CONFIG_NFS_V4
Benny Halevy71468512009-04-01 09:22:56 -0400151extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt);
Andy Adamsone82dc222009-04-01 09:23:14 -0400152extern void nfs_callback_down(int minorversion);
Alexandros Batsakis25976412009-12-05 13:48:55 -0500153extern int nfs4_validate_delegation_stateid(struct nfs_delegation *delegation,
154 const nfs4_stateid *stateid);
Andy Adamson2c2618c2011-01-06 02:04:31 +0000155extern int nfs4_set_callback_sessionid(struct nfs_client *clp);
Andy Adamsone82dc222009-04-01 09:23:14 -0400156#endif /* CONFIG_NFS_V4 */
Ricardo Labiagaa43cde92009-04-01 09:23:08 -0400157/*
158 * nfs41: Callbacks are expected to not cause substantial latency,
159 * so we limit their concurrency to 1 by setting up the maximum number
160 * of slots for the backchannel.
161 */
162#define NFS41_BC_MIN_CALLBACKS 1
Benny Halevyd49433e2009-04-01 09:23:25 -0400163#define NFS41_BC_MAX_CALLBACKS 1
Ricardo Labiagaa43cde92009-04-01 09:23:08 -0400164
Trond Myklebusta72b4422006-01-03 09:55:41 +0100165extern unsigned int nfs_callback_set_tcpport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166extern unsigned short nfs_callback_tcpport;
Chuck Leverf738f512009-03-18 20:48:06 -0400167extern unsigned short nfs_callback_tcpport6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169#endif /* __LINUX_FS_NFS_CALLBACK_H */