lm_interface.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #ifndef __LM_INTERFACE_DOT_H__
  10. #define __LM_INTERFACE_DOT_H__
  11. typedef void (*lm_callback_t) (void *ptr, unsigned int type, void *data);
  12. /*
  13. * lm_mount() flags
  14. *
  15. * LM_MFLAG_SPECTATOR
  16. * GFS is asking to join the filesystem's lockspace, but it doesn't want to
  17. * modify the filesystem. The lock module shouldn't assign a journal to the FS
  18. * mount. It shouldn't send recovery callbacks to the FS mount. If the node
  19. * dies or withdraws, all locks can be wiped immediately.
  20. *
  21. * LM_MFLAG_CONV_NODROP
  22. * Do not allow the dlm to internally resolve conversion deadlocks by demoting
  23. * the lock to unlocked and then reacquiring it in the requested mode. Instead,
  24. * it should cancel the request and return LM_OUT_CONV_DEADLK.
  25. */
  26. #define LM_MFLAG_SPECTATOR 0x00000001
  27. #define LM_MFLAG_CONV_NODROP 0x00000002
  28. /*
  29. * lm_lockstruct flags
  30. *
  31. * LM_LSFLAG_LOCAL
  32. * The lock_nolock module returns LM_LSFLAG_LOCAL to GFS, indicating that GFS
  33. * can make single-node optimizations.
  34. */
  35. #define LM_LSFLAG_LOCAL 0x00000001
  36. /*
  37. * lm_lockname types
  38. */
  39. #define LM_TYPE_RESERVED 0x00
  40. #define LM_TYPE_NONDISK 0x01
  41. #define LM_TYPE_INODE 0x02
  42. #define LM_TYPE_RGRP 0x03
  43. #define LM_TYPE_META 0x04
  44. #define LM_TYPE_IOPEN 0x05
  45. #define LM_TYPE_FLOCK 0x06
  46. #define LM_TYPE_PLOCK 0x07
  47. #define LM_TYPE_QUOTA 0x08
  48. #define LM_TYPE_JOURNAL 0x09
  49. /*
  50. * lm_lock() states
  51. *
  52. * SHARED is compatible with SHARED, not with DEFERRED or EX.
  53. * DEFERRED is compatible with DEFERRED, not with SHARED or EX.
  54. */
  55. #define LM_ST_UNLOCKED 0
  56. #define LM_ST_EXCLUSIVE 1
  57. #define LM_ST_DEFERRED 2
  58. #define LM_ST_SHARED 3
  59. /*
  60. * lm_lock() flags
  61. *
  62. * LM_FLAG_TRY
  63. * Don't wait to acquire the lock if it can't be granted immediately.
  64. *
  65. * LM_FLAG_TRY_1CB
  66. * Send one blocking callback if TRY is set and the lock is not granted.
  67. *
  68. * LM_FLAG_NOEXP
  69. * GFS sets this flag on lock requests it makes while doing journal recovery.
  70. * These special requests should not be blocked due to the recovery like
  71. * ordinary locks would be.
  72. *
  73. * LM_FLAG_ANY
  74. * A SHARED request may also be granted in DEFERRED, or a DEFERRED request may
  75. * also be granted in SHARED. The preferred state is whichever is compatible
  76. * with other granted locks, or the specified state if no other locks exist.
  77. *
  78. * LM_FLAG_PRIORITY
  79. * Override fairness considerations. Suppose a lock is held in a shared state
  80. * and there is a pending request for the deferred state. A shared lock
  81. * request with the priority flag would be allowed to bypass the deferred
  82. * request and directly join the other shared lock. A shared lock request
  83. * without the priority flag might be forced to wait until the deferred
  84. * requested had acquired and released the lock.
  85. */
  86. #define LM_FLAG_TRY 0x00000001
  87. #define LM_FLAG_TRY_1CB 0x00000002
  88. #define LM_FLAG_NOEXP 0x00000004
  89. #define LM_FLAG_ANY 0x00000008
  90. #define LM_FLAG_PRIORITY 0x00000010
  91. /*
  92. * lm_lock() and lm_async_cb return flags
  93. *
  94. * LM_OUT_ST_MASK
  95. * Masks the lower two bits of lock state in the returned value.
  96. *
  97. * LM_OUT_CACHEABLE
  98. * The lock hasn't been released so GFS can continue to cache data for it.
  99. *
  100. * LM_OUT_CANCELED
  101. * The lock request was canceled.
  102. *
  103. * LM_OUT_ASYNC
  104. * The result of the request will be returned in an LM_CB_ASYNC callback.
  105. *
  106. * LM_OUT_CONV_DEADLK
  107. * The lock request was canceled do to a conversion deadlock.
  108. */
  109. #define LM_OUT_ST_MASK 0x00000003
  110. #define LM_OUT_CANCELED 0x00000008
  111. #define LM_OUT_ASYNC 0x00000080
  112. #define LM_OUT_ERROR 0x00000100
  113. /*
  114. * lm_callback_t types
  115. *
  116. * LM_CB_NEED_E LM_CB_NEED_D LM_CB_NEED_S
  117. * Blocking callback, a remote node is requesting the given lock in
  118. * EXCLUSIVE, DEFERRED, or SHARED.
  119. *
  120. * LM_CB_NEED_RECOVERY
  121. * The given journal needs to be recovered.
  122. *
  123. * LM_CB_ASYNC
  124. * The given lock has been granted.
  125. */
  126. #define LM_CB_NEED_E 257
  127. #define LM_CB_NEED_D 258
  128. #define LM_CB_NEED_S 259
  129. #define LM_CB_NEED_RECOVERY 260
  130. #define LM_CB_ASYNC 262
  131. /*
  132. * lm_recovery_done() messages
  133. */
  134. #define LM_RD_GAVEUP 308
  135. #define LM_RD_SUCCESS 309
  136. struct lm_lockname {
  137. u64 ln_number;
  138. unsigned int ln_type;
  139. };
  140. #define lm_name_equal(name1, name2) \
  141. (((name1)->ln_number == (name2)->ln_number) && \
  142. ((name1)->ln_type == (name2)->ln_type)) \
  143. struct lm_async_cb {
  144. struct lm_lockname lc_name;
  145. int lc_ret;
  146. };
  147. struct lm_lockstruct;
  148. struct lm_lockops {
  149. const char *lm_proto_name;
  150. /*
  151. * Mount/Unmount
  152. */
  153. int (*lm_mount) (char *table_name, char *host_data,
  154. lm_callback_t cb, void *cb_data,
  155. unsigned int min_lvb_size, int flags,
  156. struct lm_lockstruct *lockstruct,
  157. struct kobject *fskobj);
  158. void (*lm_others_may_mount) (void *lockspace);
  159. void (*lm_unmount) (void *lockspace);
  160. void (*lm_withdraw) (void *lockspace);
  161. /*
  162. * Lock oriented operations
  163. */
  164. int (*lm_get_lock) (void *lockspace, struct lm_lockname *name, void **lockp);
  165. void (*lm_put_lock) (void *lock);
  166. unsigned int (*lm_lock) (void *lock, unsigned int cur_state,
  167. unsigned int req_state, unsigned int flags);
  168. unsigned int (*lm_unlock) (void *lock, unsigned int cur_state);
  169. void (*lm_cancel) (void *lock);
  170. int (*lm_hold_lvb) (void *lock, char **lvbp);
  171. void (*lm_unhold_lvb) (void *lock, char *lvb);
  172. /*
  173. * Posix Lock oriented operations
  174. */
  175. int (*lm_plock_get) (void *lockspace, struct lm_lockname *name,
  176. struct file *file, struct file_lock *fl);
  177. int (*lm_plock) (void *lockspace, struct lm_lockname *name,
  178. struct file *file, int cmd, struct file_lock *fl);
  179. int (*lm_punlock) (void *lockspace, struct lm_lockname *name,
  180. struct file *file, struct file_lock *fl);
  181. /*
  182. * Client oriented operations
  183. */
  184. void (*lm_recovery_done) (void *lockspace, unsigned int jid,
  185. unsigned int message);
  186. struct module *lm_owner;
  187. };
  188. /*
  189. * lm_mount() return values
  190. *
  191. * ls_jid - the journal ID this node should use
  192. * ls_first - this node is the first to mount the file system
  193. * ls_lvb_size - size in bytes of lock value blocks
  194. * ls_lockspace - lock module's context for this file system
  195. * ls_ops - lock module's functions
  196. * ls_flags - lock module features
  197. */
  198. struct lm_lockstruct {
  199. unsigned int ls_jid;
  200. unsigned int ls_first;
  201. unsigned int ls_lvb_size;
  202. void *ls_lockspace;
  203. const struct lm_lockops *ls_ops;
  204. int ls_flags;
  205. };
  206. /*
  207. * Lock module bottom interface. A lock module makes itself available to GFS
  208. * with these functions.
  209. */
  210. int gfs2_register_lockproto(const struct lm_lockops *proto);
  211. void gfs2_unregister_lockproto(const struct lm_lockops *proto);
  212. /*
  213. * Lock module top interface. GFS calls these functions when mounting or
  214. * unmounting a file system.
  215. */
  216. int gfs2_mount_lockproto(char *proto_name, char *table_name, char *host_data,
  217. lm_callback_t cb, void *cb_data,
  218. unsigned int min_lvb_size, int flags,
  219. struct lm_lockstruct *lockstruct,
  220. struct kobject *fskobj);
  221. void gfs2_unmount_lockproto(struct lm_lockstruct *lockstruct);
  222. void gfs2_withdraw_lockproto(struct lm_lockstruct *lockstruct);
  223. #endif /* __LM_INTERFACE_DOT_H__ */