lm_interface.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  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_CACHEABLE 0x00000004
  111. #define LM_OUT_CANCELED 0x00000008
  112. #define LM_OUT_ASYNC 0x00000080
  113. #define LM_OUT_ERROR 0x00000100
  114. #define LM_OUT_CONV_DEADLK 0x00000200
  115. /*
  116. * lm_callback_t types
  117. *
  118. * LM_CB_NEED_E LM_CB_NEED_D LM_CB_NEED_S
  119. * Blocking callback, a remote node is requesting the given lock in
  120. * EXCLUSIVE, DEFERRED, or SHARED.
  121. *
  122. * LM_CB_NEED_RECOVERY
  123. * The given journal needs to be recovered.
  124. *
  125. * LM_CB_DROPLOCKS
  126. * Reduce the number of cached locks.
  127. *
  128. * LM_CB_ASYNC
  129. * The given lock has been granted.
  130. */
  131. #define LM_CB_NEED_E 257
  132. #define LM_CB_NEED_D 258
  133. #define LM_CB_NEED_S 259
  134. #define LM_CB_NEED_RECOVERY 260
  135. #define LM_CB_DROPLOCKS 261
  136. #define LM_CB_ASYNC 262
  137. /*
  138. * lm_recovery_done() messages
  139. */
  140. #define LM_RD_GAVEUP 308
  141. #define LM_RD_SUCCESS 309
  142. struct lm_lockname {
  143. u64 ln_number;
  144. unsigned int ln_type;
  145. };
  146. #define lm_name_equal(name1, name2) \
  147. (((name1)->ln_number == (name2)->ln_number) && \
  148. ((name1)->ln_type == (name2)->ln_type)) \
  149. struct lm_async_cb {
  150. struct lm_lockname lc_name;
  151. int lc_ret;
  152. };
  153. struct lm_lockstruct;
  154. struct lm_lockops {
  155. const char *lm_proto_name;
  156. /*
  157. * Mount/Unmount
  158. */
  159. int (*lm_mount) (char *table_name, char *host_data,
  160. lm_callback_t cb, void *cb_data,
  161. unsigned int min_lvb_size, int flags,
  162. struct lm_lockstruct *lockstruct,
  163. struct kobject *fskobj);
  164. void (*lm_others_may_mount) (void *lockspace);
  165. void (*lm_unmount) (void *lockspace);
  166. void (*lm_withdraw) (void *lockspace);
  167. /*
  168. * Lock oriented operations
  169. */
  170. int (*lm_get_lock) (void *lockspace, struct lm_lockname *name, void **lockp);
  171. void (*lm_put_lock) (void *lock);
  172. unsigned int (*lm_lock) (void *lock, unsigned int cur_state,
  173. unsigned int req_state, unsigned int flags);
  174. unsigned int (*lm_unlock) (void *lock, unsigned int cur_state);
  175. void (*lm_cancel) (void *lock);
  176. int (*lm_hold_lvb) (void *lock, char **lvbp);
  177. void (*lm_unhold_lvb) (void *lock, char *lvb);
  178. /*
  179. * Posix Lock oriented operations
  180. */
  181. int (*lm_plock_get) (void *lockspace, struct lm_lockname *name,
  182. struct file *file, struct file_lock *fl);
  183. int (*lm_plock) (void *lockspace, struct lm_lockname *name,
  184. struct file *file, int cmd, struct file_lock *fl);
  185. int (*lm_punlock) (void *lockspace, struct lm_lockname *name,
  186. struct file *file, struct file_lock *fl);
  187. /*
  188. * Client oriented operations
  189. */
  190. void (*lm_recovery_done) (void *lockspace, unsigned int jid,
  191. unsigned int message);
  192. struct module *lm_owner;
  193. };
  194. /*
  195. * lm_mount() return values
  196. *
  197. * ls_jid - the journal ID this node should use
  198. * ls_first - this node is the first to mount the file system
  199. * ls_lvb_size - size in bytes of lock value blocks
  200. * ls_lockspace - lock module's context for this file system
  201. * ls_ops - lock module's functions
  202. * ls_flags - lock module features
  203. */
  204. struct lm_lockstruct {
  205. unsigned int ls_jid;
  206. unsigned int ls_first;
  207. unsigned int ls_lvb_size;
  208. void *ls_lockspace;
  209. const struct lm_lockops *ls_ops;
  210. int ls_flags;
  211. };
  212. /*
  213. * Lock module bottom interface. A lock module makes itself available to GFS
  214. * with these functions.
  215. */
  216. int gfs2_register_lockproto(const struct lm_lockops *proto);
  217. void gfs2_unregister_lockproto(const struct lm_lockops *proto);
  218. /*
  219. * Lock module top interface. GFS calls these functions when mounting or
  220. * unmounting a file system.
  221. */
  222. int gfs2_mount_lockproto(char *proto_name, char *table_name, char *host_data,
  223. lm_callback_t cb, void *cb_data,
  224. unsigned int min_lvb_size, int flags,
  225. struct lm_lockstruct *lockstruct,
  226. struct kobject *fskobj);
  227. void gfs2_unmount_lockproto(struct lm_lockstruct *lockstruct);
  228. void gfs2_withdraw_lockproto(struct lm_lockstruct *lockstruct);
  229. #endif /* __LM_INTERFACE_DOT_H__ */