blob: 7ba42b0d16c94382004b61073fbf20cb37cef7c0 [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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 OP_CB_ILLEGAL = 10044,
34};
35
36struct cb_compound_hdr_arg {
Trond Myklebust2e42c3e2007-05-14 17:20:41 -040037 unsigned int taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 const char *tag;
Benny Halevyb8f2ef82009-04-01 09:23:19 -040039 unsigned int minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 unsigned nops;
41};
42
43struct cb_compound_hdr_res {
Al Viro5704fde2006-10-19 23:28:51 -070044 __be32 *status;
Trond Myklebust2e42c3e2007-05-14 17:20:41 -040045 unsigned int taglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 const char *tag;
Al Viro5704fde2006-10-19 23:28:51 -070047 __be32 *nops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
50struct cb_getattrargs {
Chuck Lever671beed2007-12-10 14:58:22 -050051 struct sockaddr *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct nfs_fh fh;
53 uint32_t bitmap[2];
54};
55
56struct cb_getattrres {
Al Viroe6f684f2006-10-19 23:28:50 -070057 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 uint32_t bitmap[2];
59 uint64_t size;
60 uint64_t change_attr;
61 struct timespec ctime;
62 struct timespec mtime;
63};
64
65struct cb_recallargs {
Chuck Leverc1d35862007-12-10 14:58:29 -050066 struct sockaddr *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct nfs_fh fh;
68 nfs4_stateid stateid;
69 uint32_t truncate;
70};
71
Al Viroe6f684f2006-10-19 23:28:50 -070072extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res);
73extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
David Howells5ae1fbc2006-08-22 20:06:08 -040075#ifdef CONFIG_NFS_V4
Benny Halevy71468512009-04-01 09:22:56 -040076extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt);
Andy Adamsone82dc222009-04-01 09:23:14 -040077extern void nfs_callback_down(int minorversion);
78#endif /* CONFIG_NFS_V4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Ricardo Labiagaa43cde92009-04-01 09:23:08 -040080/*
81 * nfs41: Callbacks are expected to not cause substantial latency,
82 * so we limit their concurrency to 1 by setting up the maximum number
83 * of slots for the backchannel.
84 */
85#define NFS41_BC_MIN_CALLBACKS 1
86
Trond Myklebusta72b4422006-01-03 09:55:41 +010087extern unsigned int nfs_callback_set_tcpport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088extern unsigned short nfs_callback_tcpport;
Chuck Leverf738f512009-03-18 20:48:06 -040089extern unsigned short nfs_callback_tcpport6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#endif /* __LINUX_FS_NFS_CALLBACK_H */