David Teigland | 869d81d | 2006-01-17 08:47:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
| 3 | * Copyright (C) 2004-2005 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 |
Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame^] | 7 | * of the GNU General Public License version 2. |
David Teigland | 869d81d | 2006-01-17 08:47:12 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef LOCK_DLM_DOT_H |
| 11 | #define LOCK_DLM_DOT_H |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/spinlock.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/types.h> |
| 18 | #include <linux/string.h> |
| 19 | #include <linux/list.h> |
| 20 | #include <linux/socket.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/kthread.h> |
| 23 | #include <linux/kobject.h> |
| 24 | #include <linux/fcntl.h> |
| 25 | #include <linux/wait.h> |
| 26 | #include <net/sock.h> |
| 27 | |
| 28 | #include <linux/dlm.h> |
| 29 | #include "../../lm_interface.h" |
| 30 | |
| 31 | /* |
| 32 | * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a |
| 33 | * prefix of lock_dlm_ gets awkward. Externally, GFS refers to this module |
| 34 | * as "lock_dlm". |
| 35 | */ |
| 36 | |
| 37 | #define GDLM_STRNAME_BYTES 24 |
| 38 | #define GDLM_LVB_SIZE 32 |
| 39 | #define GDLM_DROP_COUNT 50000 |
| 40 | #define GDLM_DROP_PERIOD 60 |
| 41 | #define GDLM_NAME_LEN 128 |
| 42 | |
| 43 | /* GFS uses 12 bytes to identify a resource (32 bit type + 64 bit number). |
| 44 | We sprintf these numbers into a 24 byte string of hex values to make them |
| 45 | human-readable (to make debugging simpler.) */ |
| 46 | |
| 47 | struct gdlm_strname { |
| 48 | unsigned char name[GDLM_STRNAME_BYTES]; |
| 49 | unsigned short namelen; |
| 50 | }; |
| 51 | |
| 52 | enum { |
| 53 | DFL_BLOCK_LOCKS = 0, |
| 54 | DFL_SPECTATOR = 1, |
| 55 | DFL_WITHDRAW = 2, |
| 56 | }; |
| 57 | |
| 58 | struct gdlm_ls { |
| 59 | uint32_t id; |
| 60 | int jid; |
| 61 | int first; |
| 62 | int first_done; |
| 63 | unsigned long flags; |
| 64 | struct kobject kobj; |
| 65 | char clustername[GDLM_NAME_LEN]; |
| 66 | char fsname[GDLM_NAME_LEN]; |
| 67 | int fsflags; |
| 68 | dlm_lockspace_t *dlm_lockspace; |
| 69 | lm_callback_t fscb; |
| 70 | lm_fsdata_t *fsdata; |
| 71 | int recover_jid; |
| 72 | int recover_jid_done; |
David Teigland | 6bd70ab | 2006-04-26 15:56:35 -0400 | [diff] [blame] | 73 | int recover_jid_status; |
David Teigland | 869d81d | 2006-01-17 08:47:12 +0000 | [diff] [blame] | 74 | spinlock_t async_lock; |
| 75 | struct list_head complete; |
| 76 | struct list_head blocking; |
| 77 | struct list_head delayed; |
| 78 | struct list_head submit; |
| 79 | struct list_head all_locks; |
| 80 | uint32_t all_locks_count; |
| 81 | wait_queue_head_t wait_control; |
| 82 | struct task_struct *thread1; |
| 83 | struct task_struct *thread2; |
| 84 | wait_queue_head_t thread_wait; |
| 85 | unsigned long drop_time; |
| 86 | int drop_locks_count; |
| 87 | int drop_locks_period; |
| 88 | }; |
| 89 | |
| 90 | enum { |
| 91 | LFL_NOBLOCK = 0, |
| 92 | LFL_NOCACHE = 1, |
| 93 | LFL_DLM_UNLOCK = 2, |
| 94 | LFL_DLM_CANCEL = 3, |
| 95 | LFL_SYNC_LVB = 4, |
| 96 | LFL_FORCE_PROMOTE = 5, |
| 97 | LFL_REREQUEST = 6, |
| 98 | LFL_ACTIVE = 7, |
| 99 | LFL_INLOCK = 8, |
| 100 | LFL_CANCEL = 9, |
| 101 | LFL_NOBAST = 10, |
| 102 | LFL_HEADQUE = 11, |
| 103 | LFL_UNLOCK_DELETE = 12, |
| 104 | }; |
| 105 | |
| 106 | struct gdlm_lock { |
| 107 | struct gdlm_ls *ls; |
| 108 | struct lm_lockname lockname; |
| 109 | char *lvb; |
| 110 | struct dlm_lksb lksb; |
| 111 | |
| 112 | int16_t cur; |
| 113 | int16_t req; |
| 114 | int16_t prev_req; |
| 115 | uint32_t lkf; /* dlm flags DLM_LKF_ */ |
| 116 | unsigned long flags; /* lock_dlm flags LFL_ */ |
| 117 | |
| 118 | int bast_mode; /* protected by async_lock */ |
| 119 | struct completion ast_wait; |
| 120 | |
| 121 | struct list_head clist; /* complete */ |
| 122 | struct list_head blist; /* blocking */ |
| 123 | struct list_head delay_list; /* delayed */ |
| 124 | struct list_head all_list; /* all locks for the fs */ |
| 125 | struct gdlm_lock *hold_null; /* NL lock for hold_lvb */ |
| 126 | }; |
| 127 | |
| 128 | #define gdlm_assert(assertion, fmt, args...) \ |
| 129 | do { \ |
| 130 | if (unlikely(!(assertion))) { \ |
| 131 | printk(KERN_EMERG "lock_dlm: fatal assertion failed \"%s\"\n" \ |
| 132 | "lock_dlm: " fmt "\n", \ |
| 133 | #assertion, ##args); \ |
| 134 | BUG(); \ |
| 135 | } \ |
| 136 | } while (0) |
| 137 | |
| 138 | #define log_print(lev, fmt, arg...) printk(lev "lock_dlm: " fmt "\n" , ## arg) |
| 139 | #define log_info(fmt, arg...) log_print(KERN_INFO , fmt , ## arg) |
| 140 | #define log_error(fmt, arg...) log_print(KERN_ERR , fmt , ## arg) |
| 141 | #ifdef LOCK_DLM_LOG_DEBUG |
| 142 | #define log_debug(fmt, arg...) log_print(KERN_DEBUG , fmt , ## arg) |
| 143 | #else |
| 144 | #define log_debug(fmt, arg...) |
| 145 | #endif |
| 146 | |
| 147 | /* sysfs.c */ |
| 148 | |
| 149 | int gdlm_sysfs_init(void); |
| 150 | void gdlm_sysfs_exit(void); |
| 151 | int gdlm_kobject_setup(struct gdlm_ls *, struct kobject *); |
| 152 | void gdlm_kobject_release(struct gdlm_ls *); |
| 153 | |
| 154 | /* thread.c */ |
| 155 | |
| 156 | int gdlm_init_threads(struct gdlm_ls *); |
| 157 | void gdlm_release_threads(struct gdlm_ls *); |
| 158 | |
| 159 | /* lock.c */ |
| 160 | |
| 161 | int16_t gdlm_make_lmstate(int16_t); |
| 162 | void gdlm_queue_delayed(struct gdlm_lock *); |
| 163 | void gdlm_submit_delayed(struct gdlm_ls *); |
| 164 | int gdlm_release_all_locks(struct gdlm_ls *); |
David Teigland | 869d81d | 2006-01-17 08:47:12 +0000 | [diff] [blame] | 165 | void gdlm_delete_lp(struct gdlm_lock *); |
David Teigland | 8d3b35a | 2006-02-23 10:00:56 +0000 | [diff] [blame] | 166 | unsigned int gdlm_do_lock(struct gdlm_lock *); |
David Teigland | 869d81d | 2006-01-17 08:47:12 +0000 | [diff] [blame] | 167 | |
| 168 | int gdlm_get_lock(lm_lockspace_t *, struct lm_lockname *, lm_lock_t **); |
| 169 | void gdlm_put_lock(lm_lock_t *); |
| 170 | unsigned int gdlm_lock(lm_lock_t *, unsigned int, unsigned int, unsigned int); |
| 171 | unsigned int gdlm_unlock(lm_lock_t *, unsigned int); |
| 172 | void gdlm_cancel(lm_lock_t *); |
| 173 | int gdlm_hold_lvb(lm_lock_t *, char **); |
| 174 | void gdlm_unhold_lvb(lm_lock_t *, char *); |
| 175 | void gdlm_sync_lvb(lm_lock_t *, char *); |
| 176 | |
| 177 | /* plock.c */ |
| 178 | |
| 179 | int gdlm_plock_init(void); |
| 180 | void gdlm_plock_exit(void); |
| 181 | int gdlm_plock(lm_lockspace_t *, struct lm_lockname *, struct file *, int, |
| 182 | struct file_lock *); |
| 183 | int gdlm_plock_get(lm_lockspace_t *, struct lm_lockname *, struct file *, |
| 184 | struct file_lock *); |
| 185 | int gdlm_punlock(lm_lockspace_t *, struct lm_lockname *, struct file *, |
| 186 | struct file_lock *); |
| 187 | #endif |
| 188 | |