xdr.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * include/linux/sunrpc/xdr.h
  3.  *
  4.  * Copyright (C) 1995-1997 Olaf Kirch <okir@monad.swb.de>
  5.  */
  6. #ifndef _SUNRPC_XDR_H_
  7. #define _SUNRPC_XDR_H_
  8. #ifdef __KERNEL__
  9. #include <linux/uio.h>
  10. /*
  11.  * Buffer adjustment
  12.  */
  13. #define XDR_QUADLEN(l) (((l) + 3) >> 2)
  14. /*
  15.  * Generic opaque `network object.' At the kernel level, this type
  16.  * is used only by lockd.
  17.  */
  18. #define XDR_MAX_NETOBJ 1024
  19. struct xdr_netobj {
  20. unsigned int len;
  21. u8 * data;
  22. };
  23. /*
  24.  * This is the generic XDR function. rqstp is either a rpc_rqst (client
  25.  * side) or svc_rqst pointer (server side).
  26.  * Encode functions always assume there's enough room in the buffer.
  27.  */
  28. typedef int (*kxdrproc_t)(void *rqstp, u32 *data, void *obj);
  29. /*
  30.  * pre-xdr'ed macros.
  31.  */
  32. #define xdr_zero __constant_htonl(0)
  33. #define xdr_one __constant_htonl(1)
  34. #define xdr_two __constant_htonl(2)
  35. #define rpc_success __constant_htonl(RPC_SUCCESS)
  36. #define rpc_prog_unavail __constant_htonl(RPC_PROG_UNAVAIL)
  37. #define rpc_prog_mismatch __constant_htonl(RPC_PROG_MISMATCH)
  38. #define rpc_proc_unavail __constant_htonl(RPC_PROC_UNAVAIL)
  39. #define rpc_garbage_args __constant_htonl(RPC_GARBAGE_ARGS)
  40. #define rpc_system_err __constant_htonl(RPC_SYSTEM_ERR)
  41. #define rpc_auth_ok __constant_htonl(RPC_AUTH_OK)
  42. #define rpc_autherr_badcred __constant_htonl(RPC_AUTH_BADCRED)
  43. #define rpc_autherr_rejectedcred __constant_htonl(RPC_AUTH_REJECTEDCRED)
  44. #define rpc_autherr_badverf __constant_htonl(RPC_AUTH_BADVERF)
  45. #define rpc_autherr_rejectedverf __constant_htonl(RPC_AUTH_REJECTEDVERF)
  46. #define rpc_autherr_tooweak __constant_htonl(RPC_AUTH_TOOWEAK)
  47. /*
  48.  * Miscellaneous XDR helper functions
  49.  */
  50. u32 * xdr_encode_array(u32 *p, const char *s, unsigned int len);
  51. u32 * xdr_encode_string(u32 *p, const char *s);
  52. u32 * xdr_decode_string(u32 *p, char **sp, int *lenp, int maxlen);
  53. u32 * xdr_decode_string_inplace(u32 *p, char **sp, int *lenp, int maxlen);
  54. u32 * xdr_encode_netobj(u32 *p, const struct xdr_netobj *);
  55. u32 * xdr_decode_netobj(u32 *p, struct xdr_netobj *);
  56. u32 * xdr_decode_netobj_fixed(u32 *p, void *obj, unsigned int len);
  57. /*
  58.  * Decode 64bit quantities (NFSv3 support)
  59.  */
  60. static inline u32 *
  61. xdr_encode_hyper(u32 *p, __u64 val)
  62. {
  63. *p++ = htonl(val >> 32);
  64. *p++ = htonl(val & 0xFFFFFFFF);
  65. return p;
  66. }
  67. static inline u32 *
  68. xdr_decode_hyper(u32 *p, __u64 *valp)
  69. {
  70. *valp  = ((__u64) ntohl(*p++)) << 32;
  71. *valp |= ntohl(*p++);
  72. return p;
  73. }
  74. /*
  75.  * Adjust iovec to reflect end of xdr'ed data (RPC client XDR)
  76.  */
  77. static inline int
  78. xdr_adjust_iovec(struct iovec *iov, u32 *p)
  79. {
  80. return iov->iov_len = ((u8 *) p - (u8 *) iov->iov_base);
  81. }
  82. void xdr_shift_iovec(struct iovec *, int, size_t);
  83. void xdr_zero_iovec(struct iovec *, int, size_t);
  84. #endif /* __KERNEL__ */
  85. #endif /* _SUNRPC_XDR_H_ */