Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * include/linux/sunrpc/xdr.h |
| 3 | * |
| 4 | * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de> |
| 5 | */ |
| 6 | |
| 7 | #ifndef _SUNRPC_XDR_H_ |
| 8 | #define _SUNRPC_XDR_H_ |
| 9 | |
| 10 | #ifdef __KERNEL__ |
| 11 | |
| 12 | #include <linux/uio.h> |
| 13 | #include <asm/byteorder.h> |
| 14 | |
| 15 | /* |
| 16 | * Buffer adjustment |
| 17 | */ |
| 18 | #define XDR_QUADLEN(l) (((l) + 3) >> 2) |
| 19 | |
| 20 | /* |
| 21 | * Generic opaque `network object.' At the kernel level, this type |
| 22 | * is used only by lockd. |
| 23 | */ |
| 24 | #define XDR_MAX_NETOBJ 1024 |
| 25 | struct xdr_netobj { |
| 26 | unsigned int len; |
| 27 | u8 * data; |
| 28 | }; |
| 29 | |
| 30 | /* |
| 31 | * This is the generic XDR function. rqstp is either a rpc_rqst (client |
| 32 | * side) or svc_rqst pointer (server side). |
| 33 | * Encode functions always assume there's enough room in the buffer. |
| 34 | */ |
| 35 | typedef int (*kxdrproc_t)(void *rqstp, u32 *data, void *obj); |
| 36 | |
| 37 | /* |
| 38 | * Basic structure for transmission/reception of a client XDR message. |
| 39 | * Features a header (for a linear buffer containing RPC headers |
| 40 | * and the data payload for short messages), and then an array of |
| 41 | * pages. |
| 42 | * The tail iovec allows you to append data after the page array. Its |
| 43 | * main interest is for appending padding to the pages in order to |
| 44 | * satisfy the int_32-alignment requirements in RFC1832. |
| 45 | * |
| 46 | * For the future, we might want to string several of these together |
| 47 | * in a list if anybody wants to make use of NFSv4 COMPOUND |
| 48 | * operations and/or has a need for scatter/gather involving pages. |
| 49 | */ |
| 50 | struct xdr_buf { |
| 51 | struct kvec head[1], /* RPC header + non-page data */ |
| 52 | tail[1]; /* Appended after page data */ |
| 53 | |
| 54 | struct page ** pages; /* Array of contiguous pages */ |
| 55 | unsigned int page_base, /* Start of page data */ |
| 56 | page_len; /* Length of page data */ |
| 57 | |
| 58 | unsigned int buflen, /* Total length of storage buffer */ |
| 59 | len; /* Length of XDR encoded message */ |
| 60 | |
| 61 | }; |
| 62 | |
| 63 | /* |
| 64 | * pre-xdr'ed macros. |
| 65 | */ |
| 66 | |
| 67 | #define xdr_zero __constant_htonl(0) |
| 68 | #define xdr_one __constant_htonl(1) |
| 69 | #define xdr_two __constant_htonl(2) |
| 70 | |
| 71 | #define rpc_success __constant_htonl(RPC_SUCCESS) |
| 72 | #define rpc_prog_unavail __constant_htonl(RPC_PROG_UNAVAIL) |
| 73 | #define rpc_prog_mismatch __constant_htonl(RPC_PROG_MISMATCH) |
| 74 | #define rpc_proc_unavail __constant_htonl(RPC_PROC_UNAVAIL) |
| 75 | #define rpc_garbage_args __constant_htonl(RPC_GARBAGE_ARGS) |
| 76 | #define rpc_system_err __constant_htonl(RPC_SYSTEM_ERR) |
| 77 | |
| 78 | #define rpc_auth_ok __constant_htonl(RPC_AUTH_OK) |
| 79 | #define rpc_autherr_badcred __constant_htonl(RPC_AUTH_BADCRED) |
| 80 | #define rpc_autherr_rejectedcred __constant_htonl(RPC_AUTH_REJECTEDCRED) |
| 81 | #define rpc_autherr_badverf __constant_htonl(RPC_AUTH_BADVERF) |
| 82 | #define rpc_autherr_rejectedverf __constant_htonl(RPC_AUTH_REJECTEDVERF) |
| 83 | #define rpc_autherr_tooweak __constant_htonl(RPC_AUTH_TOOWEAK) |
| 84 | #define rpcsec_gsserr_credproblem __constant_htonl(RPCSEC_GSS_CREDPROBLEM) |
| 85 | #define rpcsec_gsserr_ctxproblem __constant_htonl(RPCSEC_GSS_CTXPROBLEM) |
| 86 | #define rpc_autherr_oldseqnum __constant_htonl(101) |
| 87 | |
| 88 | /* |
| 89 | * Miscellaneous XDR helper functions |
| 90 | */ |
| 91 | u32 * xdr_encode_opaque_fixed(u32 *p, const void *ptr, unsigned int len); |
| 92 | u32 * xdr_encode_opaque(u32 *p, const void *ptr, unsigned int len); |
| 93 | u32 * xdr_encode_string(u32 *p, const char *s); |
| 94 | u32 * xdr_decode_string(u32 *p, char **sp, int *lenp, int maxlen); |
| 95 | u32 * xdr_decode_string_inplace(u32 *p, char **sp, int *lenp, int maxlen); |
| 96 | u32 * xdr_encode_netobj(u32 *p, const struct xdr_netobj *); |
| 97 | u32 * xdr_decode_netobj(u32 *p, struct xdr_netobj *); |
| 98 | |
| 99 | void xdr_encode_pages(struct xdr_buf *, struct page **, unsigned int, |
| 100 | unsigned int); |
| 101 | void xdr_inline_pages(struct xdr_buf *, unsigned int, |
| 102 | struct page **, unsigned int, unsigned int); |
| 103 | |
| 104 | static inline u32 *xdr_encode_array(u32 *p, const void *s, unsigned int len) |
| 105 | { |
| 106 | return xdr_encode_opaque(p, s, len); |
| 107 | } |
| 108 | |
| 109 | /* |
| 110 | * Decode 64bit quantities (NFSv3 support) |
| 111 | */ |
| 112 | static inline u32 * |
| 113 | xdr_encode_hyper(u32 *p, __u64 val) |
| 114 | { |
| 115 | *p++ = htonl(val >> 32); |
| 116 | *p++ = htonl(val & 0xFFFFFFFF); |
| 117 | return p; |
| 118 | } |
| 119 | |
| 120 | static inline u32 * |
| 121 | xdr_decode_hyper(u32 *p, __u64 *valp) |
| 122 | { |
| 123 | *valp = ((__u64) ntohl(*p++)) << 32; |
| 124 | *valp |= ntohl(*p++); |
| 125 | return p; |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * Adjust kvec to reflect end of xdr'ed data (RPC client XDR) |
| 130 | */ |
| 131 | static inline int |
| 132 | xdr_adjust_iovec(struct kvec *iov, u32 *p) |
| 133 | { |
| 134 | return iov->iov_len = ((u8 *) p - (u8 *) iov->iov_base); |
| 135 | } |
| 136 | |
| 137 | /* |
| 138 | * Maximum number of iov's we use. |
| 139 | */ |
| 140 | #define MAX_IOVEC (12) |
| 141 | |
| 142 | /* |
| 143 | * XDR buffer helper functions |
| 144 | */ |
| 145 | extern void xdr_shift_buf(struct xdr_buf *, size_t); |
| 146 | extern void xdr_buf_from_iov(struct kvec *, struct xdr_buf *); |
| 147 | extern int xdr_buf_subsegment(struct xdr_buf *, struct xdr_buf *, int, int); |
| 148 | extern int xdr_buf_read_netobj(struct xdr_buf *, struct xdr_netobj *, int); |
Andreas Gruenbacher | bd8100e | 2005-06-22 17:16:24 +0000 | [diff] [blame] | 149 | extern int read_bytes_from_xdr_buf(struct xdr_buf *, int, void *, int); |
| 150 | extern int write_bytes_to_xdr_buf(struct xdr_buf *, int, void *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | /* |
| 153 | * Helper structure for copying from an sk_buff. |
| 154 | */ |
| 155 | typedef struct { |
| 156 | struct sk_buff *skb; |
| 157 | unsigned int offset; |
| 158 | size_t count; |
| 159 | unsigned int csum; |
| 160 | } skb_reader_t; |
| 161 | |
| 162 | typedef size_t (*skb_read_actor_t)(skb_reader_t *desc, void *to, size_t len); |
| 163 | |
Chuck Lever | 094bb20 | 2005-08-11 16:25:20 -0400 | [diff] [blame^] | 164 | extern int csum_partial_copy_to_xdr(struct xdr_buf *, struct sk_buff *); |
Trond Myklebust | 7e06b53 | 2005-06-22 17:16:24 +0000 | [diff] [blame] | 165 | extern ssize_t xdr_partial_copy_from_skb(struct xdr_buf *, unsigned int, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | skb_reader_t *, skb_read_actor_t); |
| 167 | |
| 168 | struct socket; |
| 169 | struct sockaddr; |
| 170 | extern int xdr_sendpages(struct socket *, struct sockaddr *, int, |
| 171 | struct xdr_buf *, unsigned int, int); |
| 172 | |
Andreas Gruenbacher | bd8100e | 2005-06-22 17:16:24 +0000 | [diff] [blame] | 173 | extern int xdr_encode_word(struct xdr_buf *, int, u32); |
| 174 | extern int xdr_decode_word(struct xdr_buf *, int, u32 *); |
| 175 | |
| 176 | struct xdr_array2_desc; |
| 177 | typedef int (*xdr_xcode_elem_t)(struct xdr_array2_desc *desc, void *elem); |
| 178 | struct xdr_array2_desc { |
| 179 | unsigned int elem_size; |
| 180 | unsigned int array_len; |
Trond Myklebust | 58fcb8d | 2005-08-10 18:15:12 -0400 | [diff] [blame] | 181 | unsigned int array_maxlen; |
Andreas Gruenbacher | bd8100e | 2005-06-22 17:16:24 +0000 | [diff] [blame] | 182 | xdr_xcode_elem_t xcode; |
| 183 | }; |
| 184 | |
| 185 | extern int xdr_decode_array2(struct xdr_buf *buf, unsigned int base, |
| 186 | struct xdr_array2_desc *desc); |
| 187 | extern int xdr_encode_array2(struct xdr_buf *buf, unsigned int base, |
| 188 | struct xdr_array2_desc *desc); |
| 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | /* |
| 191 | * Provide some simple tools for XDR buffer overflow-checking etc. |
| 192 | */ |
| 193 | struct xdr_stream { |
| 194 | uint32_t *p; /* start of available buffer */ |
| 195 | struct xdr_buf *buf; /* XDR buffer to read/write */ |
| 196 | |
| 197 | uint32_t *end; /* end of available buffer space */ |
| 198 | struct kvec *iov; /* pointer to the current kvec */ |
| 199 | }; |
| 200 | |
| 201 | extern void xdr_init_encode(struct xdr_stream *xdr, struct xdr_buf *buf, uint32_t *p); |
| 202 | extern uint32_t *xdr_reserve_space(struct xdr_stream *xdr, size_t nbytes); |
| 203 | extern void xdr_write_pages(struct xdr_stream *xdr, struct page **pages, |
| 204 | unsigned int base, unsigned int len); |
| 205 | extern void xdr_init_decode(struct xdr_stream *xdr, struct xdr_buf *buf, uint32_t *p); |
| 206 | extern uint32_t *xdr_inline_decode(struct xdr_stream *xdr, size_t nbytes); |
| 207 | extern void xdr_read_pages(struct xdr_stream *xdr, unsigned int len); |
| 208 | |
| 209 | #endif /* __KERNEL__ */ |
| 210 | |
| 211 | #endif /* _SUNRPC_XDR_H_ */ |