xdr.h 7.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * include/linux/sunrpc/xdr.h
 *
 * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
 */

#ifndef _SUNRPC_XDR_H_
#define _SUNRPC_XDR_H_

#ifdef __KERNEL__

#include <linux/uio.h>
#include <asm/byteorder.h>
O
Olga Kornievskaia 已提交
14
#include <linux/scatterlist.h>
15
#include <linux/smp_lock.h>
L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

/*
 * Buffer adjustment
 */
#define XDR_QUADLEN(l)		(((l) + 3) >> 2)

/*
 * Generic opaque `network object.' At the kernel level, this type
 * is used only by lockd.
 */
#define XDR_MAX_NETOBJ		1024
struct xdr_netobj {
	unsigned int		len;
	u8 *			data;
};

/*
 * This is the generic XDR function. rqstp is either a rpc_rqst (client
 * side) or svc_rqst pointer (server side).
 * Encode functions always assume there's enough room in the buffer.
 */
37
typedef int	(*kxdrproc_t)(void *rqstp, __be32 *data, void *obj);
L
Linus Torvalds 已提交
38

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
/*
 * We're still requiring the BKL in the xdr code until it's been
 * more carefully audited, at which point this wrapper will become
 * unnecessary.
 */
static inline int rpc_call_xdrproc(kxdrproc_t xdrproc, void *rqstp, __be32 *data, void *obj)
{
	int ret;

	lock_kernel();
	ret = xdrproc(rqstp, data, obj);
	unlock_kernel();
	return ret;
}

L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
/*
 * Basic structure for transmission/reception of a client XDR message.
 * Features a header (for a linear buffer containing RPC headers
 * and the data payload for short messages), and then an array of
 * pages.
 * The tail iovec allows you to append data after the page array. Its
 * main interest is for appending padding to the pages in order to
 * satisfy the int_32-alignment requirements in RFC1832.
 *
 * For the future, we might want to string several of these together
 * in a list if anybody wants to make use of NFSv4 COMPOUND
 * operations and/or has a need for scatter/gather involving pages.
 */
struct xdr_buf {
	struct kvec	head[1],	/* RPC header + non-page data */
			tail[1];	/* Appended after page data */

	struct page **	pages;		/* Array of contiguous pages */
	unsigned int	page_base,	/* Start of page data */
			page_len;	/* Length of page data */

	unsigned int	buflen,		/* Total length of storage buffer */
			len;		/* Length of XDR encoded message */

};

/*
 * pre-xdr'ed macros.
 */

#define	xdr_zero	__constant_htonl(0)
#define	xdr_one		__constant_htonl(1)
#define	xdr_two		__constant_htonl(2)

#define	rpc_success		__constant_htonl(RPC_SUCCESS)
#define	rpc_prog_unavail	__constant_htonl(RPC_PROG_UNAVAIL)
#define	rpc_prog_mismatch	__constant_htonl(RPC_PROG_MISMATCH)
#define	rpc_proc_unavail	__constant_htonl(RPC_PROC_UNAVAIL)
#define	rpc_garbage_args	__constant_htonl(RPC_GARBAGE_ARGS)
#define	rpc_system_err		__constant_htonl(RPC_SYSTEM_ERR)
94
#define	rpc_drop_reply		__constant_htonl(RPC_DROP_REPLY)
L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108

#define	rpc_auth_ok		__constant_htonl(RPC_AUTH_OK)
#define	rpc_autherr_badcred	__constant_htonl(RPC_AUTH_BADCRED)
#define	rpc_autherr_rejectedcred __constant_htonl(RPC_AUTH_REJECTEDCRED)
#define	rpc_autherr_badverf	__constant_htonl(RPC_AUTH_BADVERF)
#define	rpc_autherr_rejectedverf __constant_htonl(RPC_AUTH_REJECTEDVERF)
#define	rpc_autherr_tooweak	__constant_htonl(RPC_AUTH_TOOWEAK)
#define	rpcsec_gsserr_credproblem	__constant_htonl(RPCSEC_GSS_CREDPROBLEM)
#define	rpcsec_gsserr_ctxproblem	__constant_htonl(RPCSEC_GSS_CTXPROBLEM)
#define	rpc_autherr_oldseqnum	__constant_htonl(101)

/*
 * Miscellaneous XDR helper functions
 */
109 110 111 112 113 114
__be32 *xdr_encode_opaque_fixed(__be32 *p, const void *ptr, unsigned int len);
__be32 *xdr_encode_opaque(__be32 *p, const void *ptr, unsigned int len);
__be32 *xdr_encode_string(__be32 *p, const char *s);
__be32 *xdr_decode_string_inplace(__be32 *p, char **sp, int *lenp, int maxlen);
__be32 *xdr_encode_netobj(__be32 *p, const struct xdr_netobj *);
__be32 *xdr_decode_netobj(__be32 *p, struct xdr_netobj *);
L
Linus Torvalds 已提交
115 116 117 118 119 120

void	xdr_encode_pages(struct xdr_buf *, struct page **, unsigned int,
			 unsigned int);
void	xdr_inline_pages(struct xdr_buf *, unsigned int,
			 struct page **, unsigned int, unsigned int);

121
static inline __be32 *xdr_encode_array(__be32 *p, const void *s, unsigned int len)
L
Linus Torvalds 已提交
122 123 124 125 126 127 128
{
	return xdr_encode_opaque(p, s, len);
}

/*
 * Decode 64bit quantities (NFSv3 support)
 */
129 130
static inline __be32 *
xdr_encode_hyper(__be32 *p, __u64 val)
L
Linus Torvalds 已提交
131 132 133 134 135 136
{
	*p++ = htonl(val >> 32);
	*p++ = htonl(val & 0xFFFFFFFF);
	return p;
}

137 138
static inline __be32 *
xdr_decode_hyper(__be32 *p, __u64 *valp)
L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146 147 148
{
	*valp  = ((__u64) ntohl(*p++)) << 32;
	*valp |= ntohl(*p++);
	return p;
}

/*
 * Adjust kvec to reflect end of xdr'ed data (RPC client XDR)
 */
static inline int
149
xdr_adjust_iovec(struct kvec *iov, __be32 *p)
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158
{
	return iov->iov_len = ((u8 *) p - (u8 *) iov->iov_base);
}

/*
 * XDR buffer helper functions
 */
extern void xdr_shift_buf(struct xdr_buf *, size_t);
extern void xdr_buf_from_iov(struct kvec *, struct xdr_buf *);
159 160 161 162
extern int xdr_buf_subsegment(struct xdr_buf *, struct xdr_buf *, unsigned int, unsigned int);
extern int xdr_buf_read_netobj(struct xdr_buf *, struct xdr_netobj *, unsigned int);
extern int read_bytes_from_xdr_buf(struct xdr_buf *, unsigned int, void *, unsigned int);
extern int write_bytes_to_xdr_buf(struct xdr_buf *, unsigned int, void *, unsigned int);
L
Linus Torvalds 已提交
163 164 165 166

/*
 * Helper structure for copying from an sk_buff.
 */
167
struct xdr_skb_reader {
L
Linus Torvalds 已提交
168 169 170
	struct sk_buff	*skb;
	unsigned int	offset;
	size_t		count;
171
	__wsum		csum;
172
};
L
Linus Torvalds 已提交
173

174
typedef size_t (*xdr_skb_read_actor)(struct xdr_skb_reader *desc, void *to, size_t len);
L
Linus Torvalds 已提交
175

176
size_t xdr_skb_read_bits(struct xdr_skb_reader *desc, void *to, size_t len);
177
extern int csum_partial_copy_to_xdr(struct xdr_buf *, struct sk_buff *);
178
extern ssize_t xdr_partial_copy_from_skb(struct xdr_buf *, unsigned int,
179
		struct xdr_skb_reader *, xdr_skb_read_actor);
L
Linus Torvalds 已提交
180

181 182
extern int xdr_encode_word(struct xdr_buf *, unsigned int, u32);
extern int xdr_decode_word(struct xdr_buf *, unsigned int, u32 *);
183 184 185 186 187 188

struct xdr_array2_desc;
typedef int (*xdr_xcode_elem_t)(struct xdr_array2_desc *desc, void *elem);
struct xdr_array2_desc {
	unsigned int elem_size;
	unsigned int array_len;
189
	unsigned int array_maxlen;
190 191 192 193 194 195 196 197
	xdr_xcode_elem_t xcode;
};

extern int xdr_decode_array2(struct xdr_buf *buf, unsigned int base,
                             struct xdr_array2_desc *desc);
extern int xdr_encode_array2(struct xdr_buf *buf, unsigned int base,
			     struct xdr_array2_desc *desc);

L
Linus Torvalds 已提交
198 199 200 201
/*
 * Provide some simple tools for XDR buffer overflow-checking etc.
 */
struct xdr_stream {
202
	__be32 *p;		/* start of available buffer */
L
Linus Torvalds 已提交
203 204
	struct xdr_buf *buf;	/* XDR buffer to read/write */

205
	__be32 *end;		/* end of available buffer space */
L
Linus Torvalds 已提交
206 207 208
	struct kvec *iov;	/* pointer to the current kvec */
};

209 210
extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p);
extern __be32 *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes);
L
Linus Torvalds 已提交
211 212
extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages,
		unsigned int base, unsigned int len);
213 214
extern void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, __be32 *p);
extern __be32 *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes);
L
Linus Torvalds 已提交
215
extern void xdr_read_pages(struct xdr_stream *xdr, unsigned int len);
216
extern void xdr_enter_page(struct xdr_stream *xdr, unsigned int len);
O
Olga Kornievskaia 已提交
217
extern int xdr_process_buf(struct xdr_buf *buf, unsigned int offset, unsigned int len, int (*actor)(struct scatterlist *, void *), void *data);
L
Linus Torvalds 已提交
218 219 220 221

#endif /* __KERNEL__ */

#endif /* _SUNRPC_XDR_H_ */