xdr.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

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.  * Basic structure for transmission/reception of a client XDR message.
  31.  * Features a header (for a linear buffer containing RPC headers
  32.  * and the data payload for short messages), and then an array of
  33.  * pages.
  34.  * The tail iovec allows you to append data after the page array. Its
  35.  * main interest is for appending padding to the pages in order to
  36.  * satisfy the int_32-alignment requirements in RFC1832.
  37.  *
  38.  * For the future, we might want to string several of these together
  39.  * in a list if anybody wants to make use of NFSv4 COMPOUND
  40.  * operations and/or has a need for scatter/gather involving pages.
  41.  */
  42. struct xdr_buf {
  43. struct iovec head[1], /* RPC header + non-page data */
  44. tail[1]; /* Appended after page data */
  45. struct page ** pages; /* Array of contiguous pages */
  46. unsigned int page_base, /* Start of page data */
  47. page_len; /* Length of page data */
  48. unsigned int len; /* Total length of data */
  49. };
  50. /*
  51.  * pre-xdr'ed macros.
  52.  */
  53. #define xdr_zero __constant_htonl(0)
  54. #define xdr_one __constant_htonl(1)
  55. #define xdr_two __constant_htonl(2)
  56. #define rpc_success __constant_htonl(RPC_SUCCESS)
  57. #define rpc_prog_unavail __constant_htonl(RPC_PROG_UNAVAIL)
  58. #define rpc_prog_mismatch __constant_htonl(RPC_PROG_MISMATCH)
  59. #define rpc_proc_unavail __constant_htonl(RPC_PROC_UNAVAIL)
  60. #define rpc_garbage_args __constant_htonl(RPC_GARBAGE_ARGS)
  61. #define rpc_system_err __constant_htonl(RPC_SYSTEM_ERR)
  62. #define rpc_auth_ok __constant_htonl(RPC_AUTH_OK)
  63. #define rpc_autherr_badcred __constant_htonl(RPC_AUTH_BADCRED)
  64. #define rpc_autherr_rejectedcred __constant_htonl(RPC_AUTH_REJECTEDCRED)
  65. #define rpc_autherr_badverf __constant_htonl(RPC_AUTH_BADVERF)
  66. #define rpc_autherr_rejectedverf __constant_htonl(RPC_AUTH_REJECTEDVERF)
  67. #define rpc_autherr_tooweak __constant_htonl(RPC_AUTH_TOOWEAK)
  68. /*
  69.  * Miscellaneous XDR helper functions
  70.  */
  71. u32 * xdr_encode_array(u32 *p, const char *s, unsigned int len);
  72. u32 * xdr_encode_string(u32 *p, const char *s);
  73. u32 * xdr_decode_string(u32 *p, char **sp, int *lenp, int maxlen);
  74. u32 * xdr_decode_string_inplace(u32 *p, char **sp, int *lenp, int maxlen);
  75. u32 * xdr_encode_netobj(u32 *p, const struct xdr_netobj *);
  76. u32 * xdr_decode_netobj(u32 *p, struct xdr_netobj *);
  77. u32 * xdr_decode_netobj_fixed(u32 *p, void *obj, unsigned int len);
  78. void xdr_encode_pages(struct xdr_buf *, struct page **, unsigned int,
  79.  unsigned int);
  80. void xdr_inline_pages(struct xdr_buf *, unsigned int,
  81.  struct page **, unsigned int, unsigned int);
  82. /*
  83.  * Decode 64bit quantities (NFSv3 support)
  84.  */
  85. static inline u32 *
  86. xdr_encode_hyper(u32 *p, __u64 val)
  87. {
  88. *p++ = htonl(val >> 32);
  89. *p++ = htonl(val & 0xFFFFFFFF);
  90. return p;
  91. }
  92. static inline u32 *
  93. xdr_decode_hyper(u32 *p, __u64 *valp)
  94. {
  95. *valp  = ((__u64) ntohl(*p++)) << 32;
  96. *valp |= ntohl(*p++);
  97. return p;
  98. }
  99. /*
  100.  * Adjust iovec to reflect end of xdr'ed data (RPC client XDR)
  101.  */
  102. static inline int
  103. xdr_adjust_iovec(struct iovec *iov, u32 *p)
  104. {
  105. return iov->iov_len = ((u8 *) p - (u8 *) iov->iov_base);
  106. }
  107. void xdr_shift_iovec(struct iovec *, int, size_t);
  108. void xdr_zero_iovec(struct iovec *, int, size_t);
  109. /*
  110.  * Maximum number of iov's we use.
  111.  */
  112. #define MAX_IOVEC (12)
  113. /*
  114.  * XDR buffer helper functions
  115.  */
  116. extern int xdr_kmap(struct iovec *, struct xdr_buf *, unsigned int);
  117. extern void xdr_kunmap(struct xdr_buf *, unsigned int);
  118. extern void xdr_shift_buf(struct xdr_buf *, size_t);
  119. /*
  120.  * Helper structure for copying from an sk_buff.
  121.  */
  122. typedef struct {
  123. struct sk_buff *skb;
  124. unsigned int offset;
  125. size_t count;
  126. unsigned int csum;
  127. } skb_reader_t;
  128. typedef size_t (*skb_read_actor_t)(skb_reader_t *desc, void *to, size_t len);
  129. extern void xdr_partial_copy_from_skb(struct xdr_buf *, unsigned int,
  130. skb_reader_t *, skb_read_actor_t);
  131. extern int xdr_copy_skb(struct xdr_buf *xdr, unsigned int base,
  132. struct sk_buff *skb, unsigned int offset);
  133. extern int xdr_copy_and_csum_skb(struct xdr_buf *xdr, unsigned int base,
  134. struct sk_buff *skb, unsigned int offset, unsigned int csum);
  135. #endif /* __KERNEL__ */
  136. #endif /* _SUNRPC_XDR_H_ */