1b3b94faaSDavid Teigland /* 2b3b94faaSDavid Teigland * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. 33a8a9a10SSteven Whitehouse * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. 4b3b94faaSDavid Teigland * 5b3b94faaSDavid Teigland * This copyrighted material is made available to anyone wishing to use, 6b3b94faaSDavid Teigland * modify, copy, or redistribute it subject to the terms and conditions 7e9fc2aa0SSteven Whitehouse * of the GNU General Public License version 2. 8b3b94faaSDavid Teigland */ 9b3b94faaSDavid Teigland 10b3b94faaSDavid Teigland #ifndef __GLOCK_DOT_H__ 11b3b94faaSDavid Teigland #define __GLOCK_DOT_H__ 12b3b94faaSDavid Teigland 13e8edc6e0SAlexey Dobriyan #include <linux/sched.h> 14f057f6cdSSteven Whitehouse #include <linux/parser.h> 15f2f7ba52SSteven Whitehouse #include "incore.h" 16f2f7ba52SSteven Whitehouse 17f057f6cdSSteven Whitehouse /* Options for hostdata parser */ 18f057f6cdSSteven Whitehouse 19f057f6cdSSteven Whitehouse enum { 20f057f6cdSSteven Whitehouse Opt_jid, 21f057f6cdSSteven Whitehouse Opt_id, 22f057f6cdSSteven Whitehouse Opt_first, 23f057f6cdSSteven Whitehouse Opt_nodir, 24f057f6cdSSteven Whitehouse Opt_err, 25f057f6cdSSteven Whitehouse }; 26f057f6cdSSteven Whitehouse 27f057f6cdSSteven Whitehouse /* 28f057f6cdSSteven Whitehouse * lm_lockname types 29f057f6cdSSteven Whitehouse */ 30f057f6cdSSteven Whitehouse 31f057f6cdSSteven Whitehouse #define LM_TYPE_RESERVED 0x00 32f057f6cdSSteven Whitehouse #define LM_TYPE_NONDISK 0x01 33f057f6cdSSteven Whitehouse #define LM_TYPE_INODE 0x02 34f057f6cdSSteven Whitehouse #define LM_TYPE_RGRP 0x03 35f057f6cdSSteven Whitehouse #define LM_TYPE_META 0x04 36f057f6cdSSteven Whitehouse #define LM_TYPE_IOPEN 0x05 37f057f6cdSSteven Whitehouse #define LM_TYPE_FLOCK 0x06 38f057f6cdSSteven Whitehouse #define LM_TYPE_PLOCK 0x07 39f057f6cdSSteven Whitehouse #define LM_TYPE_QUOTA 0x08 40f057f6cdSSteven Whitehouse #define LM_TYPE_JOURNAL 0x09 41f057f6cdSSteven Whitehouse 42f057f6cdSSteven Whitehouse /* 43f057f6cdSSteven Whitehouse * lm_lock() states 44f057f6cdSSteven Whitehouse * 45f057f6cdSSteven Whitehouse * SHARED is compatible with SHARED, not with DEFERRED or EX. 46f057f6cdSSteven Whitehouse * DEFERRED is compatible with DEFERRED, not with SHARED or EX. 47f057f6cdSSteven Whitehouse */ 48f057f6cdSSteven Whitehouse 49f057f6cdSSteven Whitehouse #define LM_ST_UNLOCKED 0 50f057f6cdSSteven Whitehouse #define LM_ST_EXCLUSIVE 1 51f057f6cdSSteven Whitehouse #define LM_ST_DEFERRED 2 52f057f6cdSSteven Whitehouse #define LM_ST_SHARED 3 53f057f6cdSSteven Whitehouse 54f057f6cdSSteven Whitehouse /* 55f057f6cdSSteven Whitehouse * lm_lock() flags 56f057f6cdSSteven Whitehouse * 57f057f6cdSSteven Whitehouse * LM_FLAG_TRY 58f057f6cdSSteven Whitehouse * Don't wait to acquire the lock if it can't be granted immediately. 59f057f6cdSSteven Whitehouse * 60f057f6cdSSteven Whitehouse * LM_FLAG_TRY_1CB 61f057f6cdSSteven Whitehouse * Send one blocking callback if TRY is set and the lock is not granted. 62f057f6cdSSteven Whitehouse * 63f057f6cdSSteven Whitehouse * LM_FLAG_NOEXP 64f057f6cdSSteven Whitehouse * GFS sets this flag on lock requests it makes while doing journal recovery. 65f057f6cdSSteven Whitehouse * These special requests should not be blocked due to the recovery like 66f057f6cdSSteven Whitehouse * ordinary locks would be. 67f057f6cdSSteven Whitehouse * 68f057f6cdSSteven Whitehouse * LM_FLAG_ANY 69f057f6cdSSteven Whitehouse * A SHARED request may also be granted in DEFERRED, or a DEFERRED request may 70f057f6cdSSteven Whitehouse * also be granted in SHARED. The preferred state is whichever is compatible 71f057f6cdSSteven Whitehouse * with other granted locks, or the specified state if no other locks exist. 72f057f6cdSSteven Whitehouse * 73f057f6cdSSteven Whitehouse * LM_FLAG_PRIORITY 74f057f6cdSSteven Whitehouse * Override fairness considerations. Suppose a lock is held in a shared state 75f057f6cdSSteven Whitehouse * and there is a pending request for the deferred state. A shared lock 76f057f6cdSSteven Whitehouse * request with the priority flag would be allowed to bypass the deferred 77f057f6cdSSteven Whitehouse * request and directly join the other shared lock. A shared lock request 78f057f6cdSSteven Whitehouse * without the priority flag might be forced to wait until the deferred 79f057f6cdSSteven Whitehouse * requested had acquired and released the lock. 80f057f6cdSSteven Whitehouse */ 81f057f6cdSSteven Whitehouse 82b58bf407SBob Peterson #define LM_FLAG_TRY 0x0001 83b58bf407SBob Peterson #define LM_FLAG_TRY_1CB 0x0002 84b58bf407SBob Peterson #define LM_FLAG_NOEXP 0x0004 85b58bf407SBob Peterson #define LM_FLAG_ANY 0x0008 86b58bf407SBob Peterson #define LM_FLAG_PRIORITY 0x0010 87b58bf407SBob Peterson #define GL_ASYNC 0x0040 88b58bf407SBob Peterson #define GL_EXACT 0x0080 89b58bf407SBob Peterson #define GL_SKIP 0x0100 90b58bf407SBob Peterson #define GL_NOCACHE 0x0400 91f057f6cdSSteven Whitehouse 92f057f6cdSSteven Whitehouse /* 93921169caSSteven Whitehouse * lm_async_cb return flags 94f057f6cdSSteven Whitehouse * 95f057f6cdSSteven Whitehouse * LM_OUT_ST_MASK 96f057f6cdSSteven Whitehouse * Masks the lower two bits of lock state in the returned value. 97f057f6cdSSteven Whitehouse * 98f057f6cdSSteven Whitehouse * LM_OUT_CANCELED 99f057f6cdSSteven Whitehouse * The lock request was canceled. 100f057f6cdSSteven Whitehouse * 101f057f6cdSSteven Whitehouse */ 102f057f6cdSSteven Whitehouse 103f057f6cdSSteven Whitehouse #define LM_OUT_ST_MASK 0x00000003 104f057f6cdSSteven Whitehouse #define LM_OUT_CANCELED 0x00000008 105921169caSSteven Whitehouse #define LM_OUT_ERROR 0x00000004 106f057f6cdSSteven Whitehouse 107f057f6cdSSteven Whitehouse /* 108f057f6cdSSteven Whitehouse * lm_recovery_done() messages 109f057f6cdSSteven Whitehouse */ 110f057f6cdSSteven Whitehouse 111f057f6cdSSteven Whitehouse #define LM_RD_GAVEUP 308 112f057f6cdSSteven Whitehouse #define LM_RD_SUCCESS 309 113f057f6cdSSteven Whitehouse 114f057f6cdSSteven Whitehouse #define GLR_TRYFAILED 13 115f057f6cdSSteven Whitehouse 1167cf8dcd3SBob Peterson #define GL_GLOCK_MAX_HOLD (long)(HZ / 5) 1177cf8dcd3SBob Peterson #define GL_GLOCK_DFT_HOLD (long)(HZ / 5) 1187cf8dcd3SBob Peterson #define GL_GLOCK_MIN_HOLD (long)(10) 1197cf8dcd3SBob Peterson #define GL_GLOCK_HOLD_INCR (long)(HZ / 20) 1207cf8dcd3SBob Peterson #define GL_GLOCK_HOLD_DECR (long)(HZ / 40) 1217cf8dcd3SBob Peterson 122f057f6cdSSteven Whitehouse struct lm_lockops { 123f057f6cdSSteven Whitehouse const char *lm_proto_name; 124e0c2a9aaSDavid Teigland int (*lm_mount) (struct gfs2_sbd *sdp, const char *table); 125e0c2a9aaSDavid Teigland void (*lm_first_done) (struct gfs2_sbd *sdp); 126e0c2a9aaSDavid Teigland void (*lm_recovery_result) (struct gfs2_sbd *sdp, unsigned int jid, 127e0c2a9aaSDavid Teigland unsigned int result); 128f057f6cdSSteven Whitehouse void (*lm_unmount) (struct gfs2_sbd *sdp); 129f057f6cdSSteven Whitehouse void (*lm_withdraw) (struct gfs2_sbd *sdp); 130bc015cb8SSteven Whitehouse void (*lm_put_lock) (struct gfs2_glock *gl); 131921169caSSteven Whitehouse int (*lm_lock) (struct gfs2_glock *gl, unsigned int req_state, 132921169caSSteven Whitehouse unsigned int flags); 133f057f6cdSSteven Whitehouse void (*lm_cancel) (struct gfs2_glock *gl); 134f057f6cdSSteven Whitehouse const match_table_t *lm_tokens; 135f057f6cdSSteven Whitehouse }; 136f057f6cdSSteven Whitehouse 137b94a170eSBenjamin Marzinski extern struct workqueue_struct *gfs2_delete_workqueue; 1387afd88d9SSteven Whitehouse static inline struct gfs2_holder *gfs2_glock_is_locked_by_me(struct gfs2_glock *gl) 139b3b94faaSDavid Teigland { 140b3b94faaSDavid Teigland struct gfs2_holder *gh; 141b1e058daSPavel Emelyanov struct pid *pid; 142b3b94faaSDavid Teigland 143b3b94faaSDavid Teigland /* Look in glock's list of holders for one with current task as owner */ 144f3dd1649SAndreas Gruenbacher spin_lock(&gl->gl_lockref.lock); 145b1e058daSPavel Emelyanov pid = task_pid(current); 146b3b94faaSDavid Teigland list_for_each_entry(gh, &gl->gl_holders, gh_list) { 1476802e340SSteven Whitehouse if (!test_bit(HIF_HOLDER, &gh->gh_iflags)) 1486802e340SSteven Whitehouse break; 1497afd88d9SSteven Whitehouse if (gh->gh_owner_pid == pid) 1507afd88d9SSteven Whitehouse goto out; 151b3b94faaSDavid Teigland } 1527afd88d9SSteven Whitehouse gh = NULL; 1537afd88d9SSteven Whitehouse out: 154f3dd1649SAndreas Gruenbacher spin_unlock(&gl->gl_lockref.lock); 155b3b94faaSDavid Teigland 1567afd88d9SSteven Whitehouse return gh; 157b3b94faaSDavid Teigland } 158b3b94faaSDavid Teigland 159b3b94faaSDavid Teigland static inline int gfs2_glock_is_held_excl(struct gfs2_glock *gl) 160b3b94faaSDavid Teigland { 16150299965SSteven Whitehouse return gl->gl_state == LM_ST_EXCLUSIVE; 162b3b94faaSDavid Teigland } 163b3b94faaSDavid Teigland 164b3b94faaSDavid Teigland static inline int gfs2_glock_is_held_dfrd(struct gfs2_glock *gl) 165b3b94faaSDavid Teigland { 16650299965SSteven Whitehouse return gl->gl_state == LM_ST_DEFERRED; 167b3b94faaSDavid Teigland } 168b3b94faaSDavid Teigland 169b3b94faaSDavid Teigland static inline int gfs2_glock_is_held_shrd(struct gfs2_glock *gl) 170b3b94faaSDavid Teigland { 17150299965SSteven Whitehouse return gl->gl_state == LM_ST_SHARED; 172b3b94faaSDavid Teigland } 173b3b94faaSDavid Teigland 174009d8518SSteven Whitehouse static inline struct address_space *gfs2_glock2aspace(struct gfs2_glock *gl) 175009d8518SSteven Whitehouse { 176009d8518SSteven Whitehouse if (gl->gl_ops->go_flags & GLOF_ASPACE) 177009d8518SSteven Whitehouse return (struct address_space *)(gl + 1); 178009d8518SSteven Whitehouse return NULL; 179009d8518SSteven Whitehouse } 180009d8518SSteven Whitehouse 1818eae1ca0SSteven Whitehouse extern int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, 1828eae1ca0SSteven Whitehouse const struct gfs2_glock_operations *glops, 183b3b94faaSDavid Teigland int create, struct gfs2_glock **glp); 1848eae1ca0SSteven Whitehouse extern void gfs2_glock_put(struct gfs2_glock *gl); 1858eae1ca0SSteven Whitehouse extern void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, 186b58bf407SBob Peterson u16 flags, struct gfs2_holder *gh); 187b58bf407SBob Peterson extern void gfs2_holder_reinit(unsigned int state, u16 flags, 188b3b94faaSDavid Teigland struct gfs2_holder *gh); 1898eae1ca0SSteven Whitehouse extern void gfs2_holder_uninit(struct gfs2_holder *gh); 1908eae1ca0SSteven Whitehouse extern int gfs2_glock_nq(struct gfs2_holder *gh); 1918eae1ca0SSteven Whitehouse extern int gfs2_glock_poll(struct gfs2_holder *gh); 1928eae1ca0SSteven Whitehouse extern int gfs2_glock_wait(struct gfs2_holder *gh); 1938eae1ca0SSteven Whitehouse extern void gfs2_glock_dq(struct gfs2_holder *gh); 1948eae1ca0SSteven Whitehouse extern void gfs2_glock_dq_wait(struct gfs2_holder *gh); 1958eae1ca0SSteven Whitehouse extern void gfs2_glock_dq_uninit(struct gfs2_holder *gh); 1968eae1ca0SSteven Whitehouse extern int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number, 1978eae1ca0SSteven Whitehouse const struct gfs2_glock_operations *glops, 198b58bf407SBob Peterson unsigned int state, u16 flags, 199190562bdSSteven Whitehouse struct gfs2_holder *gh); 2008eae1ca0SSteven Whitehouse extern int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs); 2018eae1ca0SSteven Whitehouse extern void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs); 202ac3beb6aSSteven Whitehouse extern void gfs2_dump_glock(struct seq_file *seq, const struct gfs2_glock *gl); 2038eae1ca0SSteven Whitehouse #define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { gfs2_dump_glock(NULL, gl); BUG(); } } while(0) 2048eae1ca0SSteven Whitehouse extern __printf(2, 3) 2056802e340SSteven Whitehouse void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...); 206b3b94faaSDavid Teigland 207d0dc80dbSSteven Whitehouse /** 20833027af6SAndrea Gelmini * gfs2_glock_nq_init - initialize a holder and enqueue it on a glock 209d0dc80dbSSteven Whitehouse * @gl: the glock 210d0dc80dbSSteven Whitehouse * @state: the state we're requesting 211d0dc80dbSSteven Whitehouse * @flags: the modifier flags 212d0dc80dbSSteven Whitehouse * @gh: the holder structure 213d0dc80dbSSteven Whitehouse * 214d0dc80dbSSteven Whitehouse * Returns: 0, GLR_*, or errno 215d0dc80dbSSteven Whitehouse */ 216d0dc80dbSSteven Whitehouse 217d0dc80dbSSteven Whitehouse static inline int gfs2_glock_nq_init(struct gfs2_glock *gl, 218b58bf407SBob Peterson unsigned int state, u16 flags, 219d0dc80dbSSteven Whitehouse struct gfs2_holder *gh) 220d0dc80dbSSteven Whitehouse { 221d0dc80dbSSteven Whitehouse int error; 222d0dc80dbSSteven Whitehouse 223d0dc80dbSSteven Whitehouse gfs2_holder_init(gl, state, flags, gh); 224d0dc80dbSSteven Whitehouse 225d0dc80dbSSteven Whitehouse error = gfs2_glock_nq(gh); 226d0dc80dbSSteven Whitehouse if (error) 227d0dc80dbSSteven Whitehouse gfs2_holder_uninit(gh); 228d0dc80dbSSteven Whitehouse 229d0dc80dbSSteven Whitehouse return error; 230d0dc80dbSSteven Whitehouse } 231d0dc80dbSSteven Whitehouse 232bc015cb8SSteven Whitehouse extern void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state); 233bc015cb8SSteven Whitehouse extern void gfs2_glock_complete(struct gfs2_glock *gl, int ret); 234bc015cb8SSteven Whitehouse extern void gfs2_gl_hash_clear(struct gfs2_sbd *sdp); 235bc015cb8SSteven Whitehouse extern void gfs2_glock_finish_truncate(struct gfs2_inode *ip); 236bc015cb8SSteven Whitehouse extern void gfs2_glock_thaw(struct gfs2_sbd *sdp); 23729687a2aSSteven Whitehouse extern void gfs2_glock_add_to_lru(struct gfs2_glock *gl); 238fc0e38daSSteven Whitehouse extern void gfs2_glock_free(struct gfs2_glock *gl); 239b3b94faaSDavid Teigland 240bc015cb8SSteven Whitehouse extern int __init gfs2_glock_init(void); 241bc015cb8SSteven Whitehouse extern void gfs2_glock_exit(void); 242b3b94faaSDavid Teigland 243bc015cb8SSteven Whitehouse extern int gfs2_create_debugfs_file(struct gfs2_sbd *sdp); 244bc015cb8SSteven Whitehouse extern void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp); 245bc015cb8SSteven Whitehouse extern int gfs2_register_debugfs(void); 246bc015cb8SSteven Whitehouse extern void gfs2_unregister_debugfs(void); 24785d1da67SSteven Whitehouse 248f057f6cdSSteven Whitehouse extern const struct lm_lockops gfs2_dlm_ops; 249f057f6cdSSteven Whitehouse 2506df9f9a2SAndreas Gruenbacher static inline void gfs2_holder_mark_uninitialized(struct gfs2_holder *gh) 2516df9f9a2SAndreas Gruenbacher { 2526df9f9a2SAndreas Gruenbacher gh->gh_gl = NULL; 2536df9f9a2SAndreas Gruenbacher } 2546df9f9a2SAndreas Gruenbacher 2556df9f9a2SAndreas Gruenbacher static inline bool gfs2_holder_initialized(struct gfs2_holder *gh) 2566df9f9a2SAndreas Gruenbacher { 2576df9f9a2SAndreas Gruenbacher return gh->gh_gl; 2586df9f9a2SAndreas Gruenbacher } 2596df9f9a2SAndreas Gruenbacher 2604fd1a579SAndreas Gruenbacher static inline void glock_set_object(struct gfs2_glock *gl, void *object) 2614fd1a579SAndreas Gruenbacher { 2624fd1a579SAndreas Gruenbacher spin_lock(&gl->gl_lockref.lock); 2634fd1a579SAndreas Gruenbacher gl->gl_object = object; 2644fd1a579SAndreas Gruenbacher spin_unlock(&gl->gl_lockref.lock); 2654fd1a579SAndreas Gruenbacher } 2664fd1a579SAndreas Gruenbacher 267b3b94faaSDavid Teigland #endif /* __GLOCK_DOT_H__ */ 268