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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/linux/lockd/lockd.h
  3.  *
  4.  * General-purpose lockd include file.
  5.  *
  6.  * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef LINUX_LOCKD_LOCKD_H
  9. #define LINUX_LOCKD_LOCKD_H
  10. #ifdef __KERNEL__
  11. #include <linux/config.h>
  12. #include <linux/in.h>
  13. #include <linux/fs.h>
  14. #include <linux/utsname.h>
  15. #include <linux/nfsd/nfsfh.h>
  16. #include <linux/lockd/bind.h>
  17. #include <linux/lockd/xdr.h>
  18. #ifdef CONFIG_LOCKD_V4
  19. #include <linux/lockd/xdr4.h>
  20. #endif
  21. #include <linux/lockd/debug.h>
  22. /*
  23.  * Version string
  24.  */
  25. #define LOCKD_VERSION "0.4"
  26. /*
  27.  * Default timeout for RPC calls (seconds)
  28.  */
  29. #define LOCKD_DFLT_TIMEO 10
  30. /*
  31.  * Lockd host handle (used both by the client and server personality).
  32.  */
  33. struct nlm_host {
  34. struct nlm_host * h_next; /* linked list (hash table) */
  35. struct sockaddr_in h_addr; /* peer address */
  36. struct svc_client * h_exportent; /* NFS client */
  37. struct rpc_clnt * h_rpcclnt; /* RPC client to talk to peer */
  38. char h_name[20]; /* remote hostname */
  39. u32 h_version; /* interface version */
  40. unsigned short h_proto; /* transport proto */
  41. unsigned short h_authflavor; /* RPC authentication type */
  42. unsigned short h_reclaiming : 1,
  43. h_inuse      : 1,
  44. h_killed     : 1,
  45. h_monitored  : 1;
  46. wait_queue_head_t h_gracewait; /* wait while reclaiming */
  47. u32 h_state; /* pseudo-state counter */
  48. u32 h_nsmstate; /* true remote NSM state */
  49. unsigned int h_count; /* reference count */
  50. struct semaphore h_sema; /* mutex for pmap binding */
  51. unsigned long h_nextrebind; /* next portmap call */
  52. unsigned long h_expires; /* eligible for GC */
  53. };
  54. /*
  55.  * Memory chunk for NLM client RPC request.
  56.  */
  57. #define NLMCLNT_OHSIZE (sizeof(system_utsname.nodename)+10)
  58. struct nlm_rqst {
  59. unsigned int a_flags; /* initial RPC task flags */
  60. struct nlm_host * a_host; /* host handle */
  61. struct nlm_args a_args; /* arguments */
  62. struct nlm_res a_res; /* result */
  63. char a_owner[NLMCLNT_OHSIZE];
  64. };
  65. /*
  66.  * This struct describes a file held open by lockd on behalf of
  67.  * an NFS client.
  68.  */
  69. struct nlm_file {
  70. struct nlm_file * f_next; /* linked list */
  71. struct nfs_fh f_handle; /* NFS file handle */
  72. struct file f_file; /* VFS file pointer */
  73. struct nlm_share * f_shares; /* DOS shares */
  74. struct nlm_block * f_blocks; /* blocked locks */
  75. unsigned int f_locks; /* guesstimate # of locks */
  76. unsigned int f_count; /* reference count */
  77. struct semaphore f_sema; /* avoid concurrent access */
  78. int         f_hash; /* hash of f_handle */
  79. };
  80. /*
  81.  * This is a server block (i.e. a lock requested by some client which
  82.  * couldn't be granted because of a conflicting lock).
  83.  */
  84. #define NLM_NEVER (~(unsigned long) 0)
  85. struct nlm_block {
  86. struct nlm_block * b_next; /* linked list (all blocks) */
  87. struct nlm_block * b_fnext; /* linked list (per file) */
  88. struct nlm_rqst b_call; /* RPC args & callback info */
  89. struct svc_serv * b_daemon; /* NLM service */
  90. struct nlm_host * b_host; /* host handle for RPC clnt */
  91. unsigned long b_when; /* next re-xmit */
  92. unsigned int b_id; /* block id */
  93. unsigned char b_queued; /* re-queued */
  94. unsigned char b_granted; /* VFS granted lock */
  95. unsigned char b_incall; /* doing callback */
  96. unsigned char b_done; /* callback complete */
  97. struct nlm_file * b_file; /* file in question */
  98. };
  99. /*
  100.  * Valid actions for nlmsvc_traverse_files
  101.  */
  102. #define NLM_ACT_CHECK 0 /* check for locks */
  103. #define NLM_ACT_MARK 1 /* mark & sweep */
  104. #define NLM_ACT_UNLOCK 2 /* release all locks */
  105. /*
  106.  * Global variables
  107.  */
  108. extern struct rpc_program nlm_program;
  109. extern struct svc_procedure nlmsvc_procedures[];
  110. #ifdef CONFIG_LOCKD_V4
  111. extern struct svc_procedure nlmsvc_procedures4[];
  112. #endif
  113. extern int nlmsvc_grace_period;
  114. extern unsigned long nlmsvc_timeout;
  115. /*
  116.  * Lockd client functions
  117.  */
  118. struct nlm_rqst * nlmclnt_alloc_call(void);
  119. int   nlmclnt_call(struct nlm_rqst *, u32);
  120. int   nlmclnt_async_call(struct nlm_rqst *, u32, rpc_action);
  121. int   nlmclnt_block(struct nlm_host *, struct file_lock *, u32 *);
  122. int   nlmclnt_cancel(struct nlm_host *, struct file_lock *);
  123. u32   nlmclnt_grant(struct nlm_lock *);
  124. void   nlmclnt_recovery(struct nlm_host *, u32);
  125. int   nlmclnt_reclaim(struct nlm_host *, struct file_lock *);
  126. int   nlmclnt_setgrantargs(struct nlm_rqst *, struct nlm_lock *);
  127. void   nlmclnt_freegrantargs(struct nlm_rqst *);
  128. /*
  129.  * Host cache
  130.  */
  131. struct nlm_host * nlmclnt_lookup_host(struct sockaddr_in *, int, int);
  132. struct nlm_host * nlmsvc_lookup_host(struct svc_rqst *);
  133. struct nlm_host * nlm_lookup_host(struct svc_client *,
  134. struct sockaddr_in *, int, int);
  135. struct rpc_clnt * nlm_bind_host(struct nlm_host *);
  136. void   nlm_rebind_host(struct nlm_host *);
  137. struct nlm_host * nlm_get_host(struct nlm_host *);
  138. void   nlm_release_host(struct nlm_host *);
  139. void   nlm_shutdown_hosts(void);
  140. /*
  141.  * Server-side lock handling
  142.  */
  143. int   nlmsvc_async_call(struct nlm_rqst *, u32, rpc_action);
  144. u32   nlmsvc_lock(struct svc_rqst *, struct nlm_file *,
  145. struct nlm_lock *, int, struct nlm_cookie *);
  146. u32   nlmsvc_unlock(struct nlm_file *, struct nlm_lock *);
  147. u32   nlmsvc_testlock(struct nlm_file *, struct nlm_lock *,
  148. struct nlm_lock *);
  149. u32   nlmsvc_cancel_blocked(struct nlm_file *, struct nlm_lock *);
  150. unsigned long   nlmsvc_retry_blocked(void);
  151. int   nlmsvc_traverse_blocks(struct nlm_host *, struct nlm_file *,
  152. int action);
  153. /*
  154.  * File handling for the server personality
  155.  */
  156. u32   nlm_lookup_file(struct svc_rqst *, struct nlm_file **,
  157. struct nfs_fh *);
  158. void   nlm_release_file(struct nlm_file *);
  159. void   nlmsvc_mark_resources(void);
  160. void   nlmsvc_free_host_resources(struct nlm_host *);
  161. static __inline__ struct inode *
  162. nlmsvc_file_inode(struct nlm_file *file)
  163. {
  164. return file->f_file.f_dentry->d_inode;
  165. }
  166. /*
  167.  * Compare two host addresses (needs modifying for ipv6)
  168.  */
  169. static __inline__ int
  170. nlm_cmp_addr(struct sockaddr_in *sin1, struct sockaddr_in *sin2)
  171. {
  172. return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr;
  173. }
  174. /*
  175.  * Compare two NLM locks.
  176.  * When the second lock is of type F_UNLCK, this acts like a wildcard.
  177.  */
  178. static __inline__ int
  179. nlm_compare_locks(struct file_lock *fl1, struct file_lock *fl2)
  180. {
  181. return fl1->fl_pid   == fl2->fl_pid
  182.      && fl1->fl_start == fl2->fl_start
  183.      && fl1->fl_end   == fl2->fl_end
  184.      &&(fl1->fl_type  == fl2->fl_type || fl2->fl_type == F_UNLCK);
  185. }
  186. #endif /* __KERNEL__ */
  187. #endif /* LINUX_LOCKD_LOCKD_H */