callback.h 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * linux/fs/nfs/callback.h
 *
 * Copyright (C) 2004 Trond Myklebust
 *
 * NFSv4 callback definitions
 */
#ifndef __LINUX_FS_NFS_CALLBACK_H
#define __LINUX_FS_NFS_CALLBACK_H

#define NFS4_CALLBACK 0x40000000
#define NFS4_CALLBACK_XDRSIZE 2048
#define NFS4_CALLBACK_BUFSIZE (1024 + NFS4_CALLBACK_XDRSIZE)

enum nfs4_callback_procnum {
	CB_NULL = 0,
	CB_COMPOUND = 1,
};

enum nfs4_callback_opnum {
	OP_CB_GETATTR = 3,
	OP_CB_RECALL  = 4,
23 24 25 26 27 28 29 30 31 32
/* Callback operations new to NFSv4.1 */
	OP_CB_LAYOUTRECALL  = 5,
	OP_CB_NOTIFY        = 6,
	OP_CB_PUSH_DELEG    = 7,
	OP_CB_RECALL_ANY    = 8,
	OP_CB_RECALLABLE_OBJ_AVAIL = 9,
	OP_CB_RECALL_SLOT   = 10,
	OP_CB_SEQUENCE      = 11,
	OP_CB_WANTS_CANCELLED = 12,
	OP_CB_NOTIFY_LOCK   = 13,
33
	OP_CB_NOTIFY_DEVICEID = 14,
L
Linus Torvalds 已提交
34 35 36 37
	OP_CB_ILLEGAL = 10044,
};

struct cb_compound_hdr_arg {
T
Trond Myklebust 已提交
38
	unsigned int taglen;
L
Linus Torvalds 已提交
39
	const char *tag;
40
	unsigned int minorversion;
L
Linus Torvalds 已提交
41 42 43 44
	unsigned nops;
};

struct cb_compound_hdr_res {
45
	__be32 *status;
T
Trond Myklebust 已提交
46
	unsigned int taglen;
L
Linus Torvalds 已提交
47
	const char *tag;
48
	__be32 *nops;
L
Linus Torvalds 已提交
49 50 51
};

struct cb_getattrargs {
52
	struct sockaddr *addr;
L
Linus Torvalds 已提交
53 54 55 56 57
	struct nfs_fh fh;
	uint32_t bitmap[2];
};

struct cb_getattrres {
58
	__be32 status;
L
Linus Torvalds 已提交
59 60 61 62 63 64 65 66
	uint32_t bitmap[2];
	uint64_t size;
	uint64_t change_attr;
	struct timespec ctime;
	struct timespec mtime;
};

struct cb_recallargs {
67
	struct sockaddr *addr;
L
Linus Torvalds 已提交
68 69 70 71 72
	struct nfs_fh fh;
	nfs4_stateid stateid;
	uint32_t truncate;
};

73 74 75 76 77 78 79 80 81 82 83 84 85 86
#if defined(CONFIG_NFS_V4_1)

struct referring_call {
	uint32_t			rc_sequenceid;
	uint32_t			rc_slotid;
};

struct referring_call_list {
	struct nfs4_sessionid		rcl_sessionid;
	uint32_t			rcl_nrefcalls;
	struct referring_call 		*rcl_refcalls;
};

struct cb_sequenceargs {
87
	struct sockaddr			*csa_addr;
88 89 90 91 92 93 94 95 96 97
	struct nfs4_sessionid		csa_sessionid;
	uint32_t			csa_sequenceid;
	uint32_t			csa_slotid;
	uint32_t			csa_highestslotid;
	uint32_t			csa_cachethis;
	uint32_t			csa_nrclists;
	struct referring_call_list	*csa_rclists;
};

struct cb_sequenceres {
98
	__be32				csr_status;
99 100 101 102 103 104 105
	struct nfs4_sessionid		csr_sessionid;
	uint32_t			csr_sequenceid;
	uint32_t			csr_slotid;
	uint32_t			csr_highestslotid;
	uint32_t			csr_target_highestslotid;
};

106 107 108
extern unsigned nfs4_callback_sequence(struct cb_sequenceargs *args,
				       struct cb_sequenceres *res);

109 110
#endif /* CONFIG_NFS_V4_1 */

111 112
extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res);
extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy);
L
Linus Torvalds 已提交
113

114
#ifdef CONFIG_NFS_V4
115
extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt);
116 117
extern void nfs_callback_down(int minorversion);
#endif /* CONFIG_NFS_V4 */
L
Linus Torvalds 已提交
118

119 120 121 122 123 124
/*
 * nfs41: Callbacks are expected to not cause substantial latency,
 * so we limit their concurrency to 1 by setting up the maximum number
 * of slots for the backchannel.
 */
#define NFS41_BC_MIN_CALLBACKS 1
125
#define NFS41_BC_MAX_CALLBACKS 1
126

127
extern unsigned int nfs_callback_set_tcpport;
L
Linus Torvalds 已提交
128
extern unsigned short nfs_callback_tcpport;
129
extern unsigned short nfs_callback_tcpport6;
L
Linus Torvalds 已提交
130 131

#endif /* __LINUX_FS_NFS_CALLBACK_H */