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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/linux/lockd/xdr.h
  3.  *
  4.  * XDR types for the NLM protocol
  5.  *
  6.  * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef LOCKD_XDR_H
  9. #define LOCKD_XDR_H
  10. #include <linux/fs.h>
  11. #include <linux/nfs.h>
  12. #include <linux/sunrpc/xdr.h>
  13. #define NLM_MAXSTRLEN 1024
  14. #define QUADLEN(len) (((len) + 3) >> 2)
  15. #define nlm_granted __constant_htonl(NLM_LCK_GRANTED)
  16. #define nlm_lck_denied __constant_htonl(NLM_LCK_DENIED)
  17. #define nlm_lck_denied_nolocks __constant_htonl(NLM_LCK_DENIED_NOLOCKS)
  18. #define nlm_lck_blocked __constant_htonl(NLM_LCK_BLOCKED)
  19. #define nlm_lck_denied_grace_period __constant_htonl(NLM_LCK_DENIED_GRACE_PERIOD)
  20. /* Lock info passed via NLM */
  21. struct nlm_lock {
  22. char * caller;
  23. int len;  /* length of "caller" */
  24. struct nfs_fh fh;
  25. struct xdr_netobj oh;
  26. struct file_lock fl;
  27. };
  28. /*
  29.  * NLM cookies. Technically they can be 1K, Nobody uses over 8 bytes
  30.  * however.
  31.  */
  32.  
  33. struct nlm_cookie
  34. {
  35. unsigned char data[8];
  36. unsigned int len;
  37. };
  38. /*
  39.  * Generic lockd arguments for all but sm_notify
  40.  */
  41. struct nlm_args {
  42. struct nlm_cookie cookie;
  43. struct nlm_lock lock;
  44. u32 block;
  45. u32 reclaim;
  46. u32 state;
  47. u32 monitor;
  48. u32 fsm_access;
  49. u32 fsm_mode;
  50. };
  51. typedef struct nlm_args nlm_args;
  52. /*
  53.  * Generic lockd result
  54.  */
  55. struct nlm_res {
  56. struct nlm_cookie cookie;
  57. u32 status;
  58. struct nlm_lock lock;
  59. };
  60. /*
  61.  * statd callback when client has rebooted
  62.  */
  63. struct nlm_reboot {
  64. char * mon;
  65. int len;
  66. u32 state;
  67. u32 addr;
  68. };
  69. /*
  70.  * Contents of statd callback when monitored host rebooted
  71.  */
  72. #define NLMSVC_XDRSIZE sizeof(struct nlm_args)
  73. int nlmsvc_decode_testargs(struct svc_rqst *, u32 *, struct nlm_args *);
  74. int nlmsvc_encode_testres(struct svc_rqst *, u32 *, struct nlm_res *);
  75. int nlmsvc_decode_lockargs(struct svc_rqst *, u32 *, struct nlm_args *);
  76. int nlmsvc_decode_cancargs(struct svc_rqst *, u32 *, struct nlm_args *);
  77. int nlmsvc_decode_unlockargs(struct svc_rqst *, u32 *, struct nlm_args *);
  78. int nlmsvc_encode_res(struct svc_rqst *, u32 *, struct nlm_res *);
  79. int nlmsvc_decode_res(struct svc_rqst *, u32 *, struct nlm_res *);
  80. int nlmsvc_encode_void(struct svc_rqst *, u32 *, void *);
  81. int nlmsvc_decode_void(struct svc_rqst *, u32 *, void *);
  82. int nlmsvc_decode_shareargs(struct svc_rqst *, u32 *, struct nlm_args *);
  83. int nlmsvc_encode_shareres(struct svc_rqst *, u32 *, struct nlm_res *);
  84. int nlmsvc_decode_notify(struct svc_rqst *, u32 *, struct nlm_args *);
  85. int nlmsvc_decode_reboot(struct svc_rqst *, u32 *, struct nlm_reboot *);
  86. /*
  87. int nlmclt_encode_testargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  88. int nlmclt_encode_lockargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  89. int nlmclt_encode_cancargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  90. int nlmclt_encode_unlockargs(struct rpc_rqst *, u32 *, struct nlm_args *);
  91.  */
  92. #endif /* LOCKD_XDR_H */