Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * dlmglue.c |
| 5 | * |
| 6 | * Code which implements an OCFS2 specific interface to our DLM. |
| 7 | * |
| 8 | * Copyright (C) 2003, 2004 Oracle. All rights reserved. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public |
| 12 | * License as published by the Free Software Foundation; either |
| 13 | * version 2 of the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public |
| 21 | * License along with this program; if not, write to the |
| 22 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 23 | * Boston, MA 021110-1307, USA. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/types.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/highmem.h> |
| 29 | #include <linux/mm.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 30 | #include <linux/kthread.h> |
| 31 | #include <linux/pagemap.h> |
| 32 | #include <linux/debugfs.h> |
| 33 | #include <linux/seq_file.h> |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 34 | #include <linux/time.h> |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 35 | #include <linux/quotaops.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 36 | #include <linux/sched/signal.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 37 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 38 | #define MLOG_MASK_PREFIX ML_DLM_GLUE |
| 39 | #include <cluster/masklog.h> |
| 40 | |
| 41 | #include "ocfs2.h" |
Joel Becker | d24fbcd | 2008-01-25 17:02:21 -0800 | [diff] [blame] | 42 | #include "ocfs2_lockingver.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 43 | |
| 44 | #include "alloc.h" |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 45 | #include "dcache.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 46 | #include "dlmglue.h" |
| 47 | #include "extent_map.h" |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 48 | #include "file.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 49 | #include "heartbeat.h" |
| 50 | #include "inode.h" |
| 51 | #include "journal.h" |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 52 | #include "stackglue.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 53 | #include "slot_map.h" |
| 54 | #include "super.h" |
| 55 | #include "uptodate.h" |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 56 | #include "quota.h" |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 57 | #include "refcounttree.h" |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 58 | #include "acl.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 59 | |
| 60 | #include "buffer_head_io.h" |
| 61 | |
| 62 | struct ocfs2_mask_waiter { |
| 63 | struct list_head mw_item; |
| 64 | int mw_status; |
| 65 | struct completion mw_complete; |
| 66 | unsigned long mw_mask; |
| 67 | unsigned long mw_goal; |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 68 | #ifdef CONFIG_OCFS2_FS_STATS |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 69 | ktime_t mw_lock_start; |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 70 | #endif |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 71 | }; |
| 72 | |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 73 | static struct ocfs2_super *ocfs2_get_dentry_osb(struct ocfs2_lock_res *lockres); |
| 74 | static struct ocfs2_super *ocfs2_get_inode_osb(struct ocfs2_lock_res *lockres); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 75 | static struct ocfs2_super *ocfs2_get_file_osb(struct ocfs2_lock_res *lockres); |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 76 | static struct ocfs2_super *ocfs2_get_qinfo_osb(struct ocfs2_lock_res *lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 77 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 78 | /* |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 79 | * Return value from ->downconvert_worker functions. |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 80 | * |
Mark Fasheh | b5e500e | 2006-09-13 22:01:16 -0700 | [diff] [blame] | 81 | * These control the precise actions of ocfs2_unblock_lock() |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 82 | * and ocfs2_process_blocked_lock() |
| 83 | * |
| 84 | */ |
| 85 | enum ocfs2_unblock_action { |
| 86 | UNBLOCK_CONTINUE = 0, /* Continue downconvert */ |
| 87 | UNBLOCK_CONTINUE_POST = 1, /* Continue downconvert, fire |
| 88 | * ->post_unlock callback */ |
| 89 | UNBLOCK_STOP_POST = 2, /* Do not downconvert, fire |
| 90 | * ->post_unlock() callback. */ |
| 91 | }; |
| 92 | |
| 93 | struct ocfs2_unblock_ctl { |
| 94 | int requeue; |
| 95 | enum ocfs2_unblock_action unblock_action; |
| 96 | }; |
| 97 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 98 | /* Lockdep class keys */ |
| 99 | struct lock_class_key lockdep_keys[OCFS2_NUM_LOCK_TYPES]; |
| 100 | |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 101 | static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res *lockres, |
| 102 | int new_level); |
| 103 | static void ocfs2_set_meta_lvb(struct ocfs2_lock_res *lockres); |
| 104 | |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 105 | static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres, |
| 106 | int blocking); |
| 107 | |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 108 | static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res *lockres, |
| 109 | int blocking); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 110 | |
| 111 | static void ocfs2_dentry_post_unlock(struct ocfs2_super *osb, |
| 112 | struct ocfs2_lock_res *lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 113 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 114 | static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res *lockres); |
Adrian Bunk | 6cb129f | 2007-04-26 00:29:35 -0700 | [diff] [blame] | 115 | |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 116 | static int ocfs2_check_refcount_downconvert(struct ocfs2_lock_res *lockres, |
| 117 | int new_level); |
| 118 | static int ocfs2_refcount_convert_worker(struct ocfs2_lock_res *lockres, |
| 119 | int blocking); |
| 120 | |
Adrian Bunk | 6cb129f | 2007-04-26 00:29:35 -0700 | [diff] [blame] | 121 | #define mlog_meta_lvb(__level, __lockres) ocfs2_dump_meta_lvb_info(__level, __PRETTY_FUNCTION__, __LINE__, __lockres) |
| 122 | |
| 123 | /* This aids in debugging situations where a bad LVB might be involved. */ |
| 124 | static void ocfs2_dump_meta_lvb_info(u64 level, |
| 125 | const char *function, |
| 126 | unsigned int line, |
| 127 | struct ocfs2_lock_res *lockres) |
| 128 | { |
Mark Fasheh | a641dc2 | 2008-12-24 16:03:48 -0800 | [diff] [blame] | 129 | struct ocfs2_meta_lvb *lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Adrian Bunk | 6cb129f | 2007-04-26 00:29:35 -0700 | [diff] [blame] | 130 | |
| 131 | mlog(level, "LVB information for %s (called from %s:%u):\n", |
| 132 | lockres->l_name, function, line); |
| 133 | mlog(level, "version: %u, clusters: %u, generation: 0x%x\n", |
| 134 | lvb->lvb_version, be32_to_cpu(lvb->lvb_iclusters), |
| 135 | be32_to_cpu(lvb->lvb_igeneration)); |
| 136 | mlog(level, "size: %llu, uid %u, gid %u, mode 0x%x\n", |
| 137 | (unsigned long long)be64_to_cpu(lvb->lvb_isize), |
| 138 | be32_to_cpu(lvb->lvb_iuid), be32_to_cpu(lvb->lvb_igid), |
| 139 | be16_to_cpu(lvb->lvb_imode)); |
| 140 | mlog(level, "nlink %u, atime_packed 0x%llx, ctime_packed 0x%llx, " |
| 141 | "mtime_packed 0x%llx iattr 0x%x\n", be16_to_cpu(lvb->lvb_inlink), |
| 142 | (long long)be64_to_cpu(lvb->lvb_iatime_packed), |
| 143 | (long long)be64_to_cpu(lvb->lvb_ictime_packed), |
| 144 | (long long)be64_to_cpu(lvb->lvb_imtime_packed), |
| 145 | be32_to_cpu(lvb->lvb_iattr)); |
| 146 | } |
| 147 | |
| 148 | |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 149 | /* |
| 150 | * OCFS2 Lock Resource Operations |
| 151 | * |
| 152 | * These fine tune the behavior of the generic dlmglue locking infrastructure. |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 153 | * |
| 154 | * The most basic of lock types can point ->l_priv to their respective |
| 155 | * struct ocfs2_super and allow the default actions to manage things. |
| 156 | * |
| 157 | * Right now, each lock type also needs to implement an init function, |
| 158 | * and trivial lock/unlock wrappers. ocfs2_simple_drop_lockres() |
| 159 | * should be called when the lock is no longer needed (i.e., object |
| 160 | * destruction time). |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 161 | */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 162 | struct ocfs2_lock_res_ops { |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 163 | /* |
| 164 | * Translate an ocfs2_lock_res * into an ocfs2_super *. Define |
| 165 | * this callback if ->l_priv is not an ocfs2_super pointer |
| 166 | */ |
| 167 | struct ocfs2_super * (*get_osb)(struct ocfs2_lock_res *); |
Mark Fasheh | b5e500e | 2006-09-13 22:01:16 -0700 | [diff] [blame] | 168 | |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 169 | /* |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 170 | * Optionally called in the downconvert thread after a |
| 171 | * successful downconvert. The lockres will not be referenced |
| 172 | * after this callback is called, so it is safe to free |
| 173 | * memory, etc. |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 174 | * |
| 175 | * The exact semantics of when this is called are controlled |
| 176 | * by ->downconvert_worker() |
| 177 | */ |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 178 | void (*post_unlock)(struct ocfs2_super *, struct ocfs2_lock_res *); |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 179 | |
| 180 | /* |
Mark Fasheh | 16d5b95 | 2006-09-13 21:10:12 -0700 | [diff] [blame] | 181 | * Allow a lock type to add checks to determine whether it is |
| 182 | * safe to downconvert a lock. Return 0 to re-queue the |
| 183 | * downconvert at a later time, nonzero to continue. |
| 184 | * |
| 185 | * For most locks, the default checks that there are no |
| 186 | * incompatible holders are sufficient. |
| 187 | * |
| 188 | * Called with the lockres spinlock held. |
| 189 | */ |
| 190 | int (*check_downconvert)(struct ocfs2_lock_res *, int); |
| 191 | |
| 192 | /* |
Mark Fasheh | 5ef0d4e | 2006-09-13 21:21:52 -0700 | [diff] [blame] | 193 | * Allows a lock type to populate the lock value block. This |
| 194 | * is called on downconvert, and when we drop a lock. |
| 195 | * |
| 196 | * Locks that want to use this should set LOCK_TYPE_USES_LVB |
| 197 | * in the flags field. |
| 198 | * |
| 199 | * Called with the lockres spinlock held. |
| 200 | */ |
| 201 | void (*set_lvb)(struct ocfs2_lock_res *); |
| 202 | |
| 203 | /* |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 204 | * Called from the downconvert thread when it is determined |
| 205 | * that a lock will be downconverted. This is called without |
| 206 | * any locks held so the function can do work that might |
| 207 | * schedule (syncing out data, etc). |
| 208 | * |
| 209 | * This should return any one of the ocfs2_unblock_action |
| 210 | * values, depending on what it wants the thread to do. |
| 211 | */ |
| 212 | int (*downconvert_worker)(struct ocfs2_lock_res *, int); |
| 213 | |
| 214 | /* |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 215 | * LOCK_TYPE_* flags which describe the specific requirements |
| 216 | * of a lock type. Descriptions of each individual flag follow. |
| 217 | */ |
| 218 | int flags; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 219 | }; |
| 220 | |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 221 | /* |
| 222 | * Some locks want to "refresh" potentially stale data when a |
| 223 | * meaningful (PRMODE or EXMODE) lock level is first obtained. If this |
| 224 | * flag is set, the OCFS2_LOCK_NEEDS_REFRESH flag will be set on the |
| 225 | * individual lockres l_flags member from the ast function. It is |
| 226 | * expected that the locking wrapper will clear the |
| 227 | * OCFS2_LOCK_NEEDS_REFRESH flag when done. |
| 228 | */ |
| 229 | #define LOCK_TYPE_REQUIRES_REFRESH 0x1 |
| 230 | |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 231 | /* |
Mark Fasheh | 5ef0d4e | 2006-09-13 21:21:52 -0700 | [diff] [blame] | 232 | * Indicate that a lock type makes use of the lock value block. The |
| 233 | * ->set_lvb lock type callback must be defined. |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 234 | */ |
| 235 | #define LOCK_TYPE_USES_LVB 0x2 |
| 236 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 237 | static struct ocfs2_lock_res_ops ocfs2_inode_rw_lops = { |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 238 | .get_osb = ocfs2_get_inode_osb, |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 239 | .flags = 0, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 240 | }; |
| 241 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 242 | static struct ocfs2_lock_res_ops ocfs2_inode_inode_lops = { |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 243 | .get_osb = ocfs2_get_inode_osb, |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 244 | .check_downconvert = ocfs2_check_meta_downconvert, |
| 245 | .set_lvb = ocfs2_set_meta_lvb, |
Mark Fasheh | f1f5406 | 2007-10-18 15:13:59 -0700 | [diff] [blame] | 246 | .downconvert_worker = ocfs2_data_convert_worker, |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 247 | .flags = LOCK_TYPE_REQUIRES_REFRESH|LOCK_TYPE_USES_LVB, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 248 | }; |
| 249 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 250 | static struct ocfs2_lock_res_ops ocfs2_super_lops = { |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 251 | .flags = LOCK_TYPE_REQUIRES_REFRESH, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | static struct ocfs2_lock_res_ops ocfs2_rename_lops = { |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 255 | .flags = 0, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 256 | }; |
| 257 | |
wengang wang | 6ca497a | 2009-03-06 21:29:10 +0800 | [diff] [blame] | 258 | static struct ocfs2_lock_res_ops ocfs2_nfs_sync_lops = { |
| 259 | .flags = 0, |
| 260 | }; |
| 261 | |
Gang He | 4882abe | 2018-01-31 16:15:10 -0800 | [diff] [blame] | 262 | static struct ocfs2_lock_res_ops ocfs2_trim_fs_lops = { |
| 263 | .flags = LOCK_TYPE_REQUIRES_REFRESH|LOCK_TYPE_USES_LVB, |
| 264 | }; |
| 265 | |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 266 | static struct ocfs2_lock_res_ops ocfs2_orphan_scan_lops = { |
| 267 | .flags = LOCK_TYPE_REQUIRES_REFRESH|LOCK_TYPE_USES_LVB, |
| 268 | }; |
| 269 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 270 | static struct ocfs2_lock_res_ops ocfs2_dentry_lops = { |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 271 | .get_osb = ocfs2_get_dentry_osb, |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 272 | .post_unlock = ocfs2_dentry_post_unlock, |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 273 | .downconvert_worker = ocfs2_dentry_convert_worker, |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 274 | .flags = 0, |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 275 | }; |
| 276 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 277 | static struct ocfs2_lock_res_ops ocfs2_inode_open_lops = { |
| 278 | .get_osb = ocfs2_get_inode_osb, |
| 279 | .flags = 0, |
| 280 | }; |
| 281 | |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 282 | static struct ocfs2_lock_res_ops ocfs2_flock_lops = { |
| 283 | .get_osb = ocfs2_get_file_osb, |
| 284 | .flags = 0, |
| 285 | }; |
| 286 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 287 | static struct ocfs2_lock_res_ops ocfs2_qinfo_lops = { |
| 288 | .set_lvb = ocfs2_set_qinfo_lvb, |
| 289 | .get_osb = ocfs2_get_qinfo_osb, |
| 290 | .flags = LOCK_TYPE_REQUIRES_REFRESH | LOCK_TYPE_USES_LVB, |
| 291 | }; |
| 292 | |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 293 | static struct ocfs2_lock_res_ops ocfs2_refcount_block_lops = { |
| 294 | .check_downconvert = ocfs2_check_refcount_downconvert, |
| 295 | .downconvert_worker = ocfs2_refcount_convert_worker, |
| 296 | .flags = 0, |
| 297 | }; |
| 298 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 299 | static inline int ocfs2_is_inode_lock(struct ocfs2_lock_res *lockres) |
| 300 | { |
| 301 | return lockres->l_type == OCFS2_LOCK_TYPE_META || |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 302 | lockres->l_type == OCFS2_LOCK_TYPE_RW || |
| 303 | lockres->l_type == OCFS2_LOCK_TYPE_OPEN; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 304 | } |
| 305 | |
Joel Becker | c0e41338 | 2010-01-29 14:46:44 -0800 | [diff] [blame] | 306 | static inline struct ocfs2_lock_res *ocfs2_lksb_to_lock_res(struct ocfs2_dlm_lksb *lksb) |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 307 | { |
| 308 | return container_of(lksb, struct ocfs2_lock_res, l_lksb); |
| 309 | } |
| 310 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 311 | static inline struct inode *ocfs2_lock_res_inode(struct ocfs2_lock_res *lockres) |
| 312 | { |
| 313 | BUG_ON(!ocfs2_is_inode_lock(lockres)); |
| 314 | |
| 315 | return (struct inode *) lockres->l_priv; |
| 316 | } |
| 317 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 318 | static inline struct ocfs2_dentry_lock *ocfs2_lock_res_dl(struct ocfs2_lock_res *lockres) |
| 319 | { |
| 320 | BUG_ON(lockres->l_type != OCFS2_LOCK_TYPE_DENTRY); |
| 321 | |
| 322 | return (struct ocfs2_dentry_lock *)lockres->l_priv; |
| 323 | } |
| 324 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 325 | static inline struct ocfs2_mem_dqinfo *ocfs2_lock_res_qinfo(struct ocfs2_lock_res *lockres) |
| 326 | { |
| 327 | BUG_ON(lockres->l_type != OCFS2_LOCK_TYPE_QINFO); |
| 328 | |
| 329 | return (struct ocfs2_mem_dqinfo *)lockres->l_priv; |
| 330 | } |
| 331 | |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 332 | static inline struct ocfs2_refcount_tree * |
| 333 | ocfs2_lock_res_refcount_tree(struct ocfs2_lock_res *res) |
| 334 | { |
| 335 | return container_of(res, struct ocfs2_refcount_tree, rf_lockres); |
| 336 | } |
| 337 | |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 338 | static inline struct ocfs2_super *ocfs2_get_lockres_osb(struct ocfs2_lock_res *lockres) |
| 339 | { |
| 340 | if (lockres->l_ops->get_osb) |
| 341 | return lockres->l_ops->get_osb(lockres); |
| 342 | |
| 343 | return (struct ocfs2_super *)lockres->l_priv; |
| 344 | } |
| 345 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 346 | static int ocfs2_lock_create(struct ocfs2_super *osb, |
| 347 | struct ocfs2_lock_res *lockres, |
| 348 | int level, |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 349 | u32 dlm_flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 350 | static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res *lockres, |
| 351 | int wanted); |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 352 | static void __ocfs2_cluster_unlock(struct ocfs2_super *osb, |
| 353 | struct ocfs2_lock_res *lockres, |
| 354 | int level, unsigned long caller_ip); |
| 355 | static inline void ocfs2_cluster_unlock(struct ocfs2_super *osb, |
| 356 | struct ocfs2_lock_res *lockres, |
| 357 | int level) |
| 358 | { |
| 359 | __ocfs2_cluster_unlock(osb, lockres, level, _RET_IP_); |
| 360 | } |
| 361 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 362 | static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res *lockres); |
| 363 | static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res *lockres); |
| 364 | static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res *lockres); |
| 365 | static int ocfs2_generic_handle_bast(struct ocfs2_lock_res *lockres, int level); |
| 366 | static void ocfs2_schedule_blocked_lock(struct ocfs2_super *osb, |
| 367 | struct ocfs2_lock_res *lockres); |
| 368 | static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res *lockres, |
| 369 | int convert); |
Sunil Mushran | c74ff8b | 2009-02-03 12:37:14 -0800 | [diff] [blame] | 370 | #define ocfs2_log_dlm_error(_func, _err, _lockres) do { \ |
| 371 | if ((_lockres)->l_type != OCFS2_LOCK_TYPE_DENTRY) \ |
| 372 | mlog(ML_ERROR, "DLM error %d while calling %s on resource %s\n", \ |
| 373 | _err, _func, _lockres->l_name); \ |
| 374 | else \ |
| 375 | mlog(ML_ERROR, "DLM error %d while calling %s on resource %.*s%08x\n", \ |
| 376 | _err, _func, OCFS2_DENTRY_LOCK_INO_START - 1, (_lockres)->l_name, \ |
| 377 | (unsigned int)ocfs2_get_dentry_lock_ino(_lockres)); \ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 378 | } while (0) |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 379 | static int ocfs2_downconvert_thread(void *arg); |
| 380 | static void ocfs2_downconvert_on_unlock(struct ocfs2_super *osb, |
| 381 | struct ocfs2_lock_res *lockres); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 382 | static int ocfs2_inode_lock_update(struct inode *inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 383 | struct buffer_head **bh); |
| 384 | static void ocfs2_drop_osb_locks(struct ocfs2_super *osb); |
| 385 | static inline int ocfs2_highest_compat_lock_level(int level); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 386 | static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res *lockres, |
| 387 | int new_level); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 388 | static int ocfs2_downconvert_lock(struct ocfs2_super *osb, |
| 389 | struct ocfs2_lock_res *lockres, |
| 390 | int new_level, |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 391 | int lvb, |
| 392 | unsigned int generation); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 393 | static int ocfs2_prepare_cancel_convert(struct ocfs2_super *osb, |
| 394 | struct ocfs2_lock_res *lockres); |
| 395 | static int ocfs2_cancel_convert(struct ocfs2_super *osb, |
| 396 | struct ocfs2_lock_res *lockres); |
| 397 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 398 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 399 | static void ocfs2_build_lock_name(enum ocfs2_lock_type type, |
| 400 | u64 blkno, |
| 401 | u32 generation, |
| 402 | char *name) |
| 403 | { |
| 404 | int len; |
| 405 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 406 | BUG_ON(type >= OCFS2_NUM_LOCK_TYPES); |
| 407 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 408 | len = snprintf(name, OCFS2_LOCK_ID_MAX_LEN, "%c%s%016llx%08x", |
| 409 | ocfs2_lock_type_char(type), OCFS2_LOCK_ID_PAD, |
| 410 | (long long)blkno, generation); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 411 | |
| 412 | BUG_ON(len != (OCFS2_LOCK_ID_MAX_LEN - 1)); |
| 413 | |
| 414 | mlog(0, "built lock resource with name: %s\n", name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 415 | } |
| 416 | |
Ingo Molnar | 34af946 | 2006-06-27 02:53:55 -0700 | [diff] [blame] | 417 | static DEFINE_SPINLOCK(ocfs2_dlm_tracking_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 418 | |
| 419 | static void ocfs2_add_lockres_tracking(struct ocfs2_lock_res *res, |
| 420 | struct ocfs2_dlm_debug *dlm_debug) |
| 421 | { |
| 422 | mlog(0, "Add tracking for lockres %s\n", res->l_name); |
| 423 | |
| 424 | spin_lock(&ocfs2_dlm_tracking_lock); |
| 425 | list_add(&res->l_debug_list, &dlm_debug->d_lockres_tracking); |
| 426 | spin_unlock(&ocfs2_dlm_tracking_lock); |
| 427 | } |
| 428 | |
| 429 | static void ocfs2_remove_lockres_tracking(struct ocfs2_lock_res *res) |
| 430 | { |
| 431 | spin_lock(&ocfs2_dlm_tracking_lock); |
| 432 | if (!list_empty(&res->l_debug_list)) |
| 433 | list_del_init(&res->l_debug_list); |
| 434 | spin_unlock(&ocfs2_dlm_tracking_lock); |
| 435 | } |
| 436 | |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 437 | #ifdef CONFIG_OCFS2_FS_STATS |
| 438 | static void ocfs2_init_lock_stats(struct ocfs2_lock_res *res) |
| 439 | { |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 440 | res->l_lock_refresh = 0; |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 441 | memset(&res->l_lock_prmode, 0, sizeof(struct ocfs2_lock_stats)); |
| 442 | memset(&res->l_lock_exmode, 0, sizeof(struct ocfs2_lock_stats)); |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | static void ocfs2_update_lock_stats(struct ocfs2_lock_res *res, int level, |
| 446 | struct ocfs2_mask_waiter *mw, int ret) |
| 447 | { |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 448 | u32 usec; |
| 449 | ktime_t kt; |
| 450 | struct ocfs2_lock_stats *stats; |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 451 | |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 452 | if (level == LKM_PRMODE) |
| 453 | stats = &res->l_lock_prmode; |
| 454 | else if (level == LKM_EXMODE) |
| 455 | stats = &res->l_lock_exmode; |
| 456 | else |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 457 | return; |
| 458 | |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 459 | kt = ktime_sub(ktime_get(), mw->mw_lock_start); |
| 460 | usec = ktime_to_us(kt); |
| 461 | |
| 462 | stats->ls_gets++; |
| 463 | stats->ls_total += ktime_to_ns(kt); |
| 464 | /* overflow */ |
roel | 16865b7 | 2011-12-12 23:40:51 +0100 | [diff] [blame] | 465 | if (unlikely(stats->ls_gets == 0)) { |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 466 | stats->ls_gets++; |
| 467 | stats->ls_total = ktime_to_ns(kt); |
| 468 | } |
| 469 | |
| 470 | if (stats->ls_max < usec) |
| 471 | stats->ls_max = usec; |
| 472 | |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 473 | if (ret) |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 474 | stats->ls_fail++; |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res *lockres) |
| 478 | { |
| 479 | lockres->l_lock_refresh++; |
| 480 | } |
| 481 | |
| 482 | static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter *mw) |
| 483 | { |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 484 | mw->mw_lock_start = ktime_get(); |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 485 | } |
| 486 | #else |
| 487 | static inline void ocfs2_init_lock_stats(struct ocfs2_lock_res *res) |
| 488 | { |
| 489 | } |
| 490 | static inline void ocfs2_update_lock_stats(struct ocfs2_lock_res *res, |
| 491 | int level, struct ocfs2_mask_waiter *mw, int ret) |
| 492 | { |
| 493 | } |
| 494 | static inline void ocfs2_track_lock_refresh(struct ocfs2_lock_res *lockres) |
| 495 | { |
| 496 | } |
| 497 | static inline void ocfs2_init_start_time(struct ocfs2_mask_waiter *mw) |
| 498 | { |
| 499 | } |
| 500 | #endif |
| 501 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 502 | static void ocfs2_lock_res_init_common(struct ocfs2_super *osb, |
| 503 | struct ocfs2_lock_res *res, |
| 504 | enum ocfs2_lock_type type, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 505 | struct ocfs2_lock_res_ops *ops, |
| 506 | void *priv) |
| 507 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 508 | res->l_type = type; |
| 509 | res->l_ops = ops; |
| 510 | res->l_priv = priv; |
| 511 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 512 | res->l_level = DLM_LOCK_IV; |
| 513 | res->l_requested = DLM_LOCK_IV; |
| 514 | res->l_blocking = DLM_LOCK_IV; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 515 | res->l_action = OCFS2_AST_INVALID; |
| 516 | res->l_unlock_action = OCFS2_UNLOCK_INVALID; |
| 517 | |
| 518 | res->l_flags = OCFS2_LOCK_INITIALIZED; |
| 519 | |
| 520 | ocfs2_add_lockres_tracking(res, osb->osb_dlm_debug); |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 521 | |
| 522 | ocfs2_init_lock_stats(res); |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 523 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 524 | if (type != OCFS2_LOCK_TYPE_OPEN) |
| 525 | lockdep_init_map(&res->l_lockdep_map, ocfs2_lock_type_strings[type], |
| 526 | &lockdep_keys[type], 0); |
| 527 | else |
| 528 | res->l_lockdep_map.key = NULL; |
| 529 | #endif |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | void ocfs2_lock_res_init_once(struct ocfs2_lock_res *res) |
| 533 | { |
| 534 | /* This also clears out the lock status block */ |
| 535 | memset(res, 0, sizeof(struct ocfs2_lock_res)); |
| 536 | spin_lock_init(&res->l_lock); |
| 537 | init_waitqueue_head(&res->l_event); |
| 538 | INIT_LIST_HEAD(&res->l_blocked_list); |
| 539 | INIT_LIST_HEAD(&res->l_mask_waiters); |
Eric Ren | 439a36b | 2017-02-22 15:40:41 -0800 | [diff] [blame] | 540 | INIT_LIST_HEAD(&res->l_holders); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | void ocfs2_inode_lock_res_init(struct ocfs2_lock_res *res, |
| 544 | enum ocfs2_lock_type type, |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 545 | unsigned int generation, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 546 | struct inode *inode) |
| 547 | { |
| 548 | struct ocfs2_lock_res_ops *ops; |
| 549 | |
| 550 | switch(type) { |
| 551 | case OCFS2_LOCK_TYPE_RW: |
| 552 | ops = &ocfs2_inode_rw_lops; |
| 553 | break; |
| 554 | case OCFS2_LOCK_TYPE_META: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 555 | ops = &ocfs2_inode_inode_lops; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 556 | break; |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 557 | case OCFS2_LOCK_TYPE_OPEN: |
| 558 | ops = &ocfs2_inode_open_lops; |
| 559 | break; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 560 | default: |
| 561 | mlog_bug_on_msg(1, "type: %d\n", type); |
| 562 | ops = NULL; /* thanks, gcc */ |
| 563 | break; |
| 564 | }; |
| 565 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 566 | ocfs2_build_lock_name(type, OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 567 | generation, res->l_name); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 568 | ocfs2_lock_res_init_common(OCFS2_SB(inode->i_sb), res, type, ops, inode); |
| 569 | } |
| 570 | |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 571 | static struct ocfs2_super *ocfs2_get_inode_osb(struct ocfs2_lock_res *lockres) |
| 572 | { |
| 573 | struct inode *inode = ocfs2_lock_res_inode(lockres); |
| 574 | |
| 575 | return OCFS2_SB(inode->i_sb); |
| 576 | } |
| 577 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 578 | static struct ocfs2_super *ocfs2_get_qinfo_osb(struct ocfs2_lock_res *lockres) |
| 579 | { |
| 580 | struct ocfs2_mem_dqinfo *info = lockres->l_priv; |
| 581 | |
| 582 | return OCFS2_SB(info->dqi_gi.dqi_sb); |
| 583 | } |
| 584 | |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 585 | static struct ocfs2_super *ocfs2_get_file_osb(struct ocfs2_lock_res *lockres) |
| 586 | { |
| 587 | struct ocfs2_file_private *fp = lockres->l_priv; |
| 588 | |
| 589 | return OCFS2_SB(fp->fp_file->f_mapping->host->i_sb); |
| 590 | } |
| 591 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 592 | static __u64 ocfs2_get_dentry_lock_ino(struct ocfs2_lock_res *lockres) |
| 593 | { |
| 594 | __be64 inode_blkno_be; |
| 595 | |
| 596 | memcpy(&inode_blkno_be, &lockres->l_name[OCFS2_DENTRY_LOCK_INO_START], |
| 597 | sizeof(__be64)); |
| 598 | |
| 599 | return be64_to_cpu(inode_blkno_be); |
| 600 | } |
| 601 | |
Mark Fasheh | 54a7e75 | 2006-09-12 21:49:13 -0700 | [diff] [blame] | 602 | static struct ocfs2_super *ocfs2_get_dentry_osb(struct ocfs2_lock_res *lockres) |
| 603 | { |
| 604 | struct ocfs2_dentry_lock *dl = lockres->l_priv; |
| 605 | |
| 606 | return OCFS2_SB(dl->dl_inode->i_sb); |
| 607 | } |
| 608 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 609 | void ocfs2_dentry_lock_res_init(struct ocfs2_dentry_lock *dl, |
| 610 | u64 parent, struct inode *inode) |
| 611 | { |
| 612 | int len; |
| 613 | u64 inode_blkno = OCFS2_I(inode)->ip_blkno; |
| 614 | __be64 inode_blkno_be = cpu_to_be64(inode_blkno); |
| 615 | struct ocfs2_lock_res *lockres = &dl->dl_lockres; |
| 616 | |
| 617 | ocfs2_lock_res_init_once(lockres); |
| 618 | |
| 619 | /* |
| 620 | * Unfortunately, the standard lock naming scheme won't work |
| 621 | * here because we have two 16 byte values to use. Instead, |
| 622 | * we'll stuff the inode number as a binary value. We still |
| 623 | * want error prints to show something without garbling the |
| 624 | * display, so drop a null byte in there before the inode |
| 625 | * number. A future version of OCFS2 will likely use all |
| 626 | * binary lock names. The stringified names have been a |
| 627 | * tremendous aid in debugging, but now that the debugfs |
| 628 | * interface exists, we can mangle things there if need be. |
| 629 | * |
| 630 | * NOTE: We also drop the standard "pad" value (the total lock |
| 631 | * name size stays the same though - the last part is all |
| 632 | * zeros due to the memset in ocfs2_lock_res_init_once() |
| 633 | */ |
| 634 | len = snprintf(lockres->l_name, OCFS2_DENTRY_LOCK_INO_START, |
| 635 | "%c%016llx", |
| 636 | ocfs2_lock_type_char(OCFS2_LOCK_TYPE_DENTRY), |
| 637 | (long long)parent); |
| 638 | |
| 639 | BUG_ON(len != (OCFS2_DENTRY_LOCK_INO_START - 1)); |
| 640 | |
| 641 | memcpy(&lockres->l_name[OCFS2_DENTRY_LOCK_INO_START], &inode_blkno_be, |
| 642 | sizeof(__be64)); |
| 643 | |
| 644 | ocfs2_lock_res_init_common(OCFS2_SB(inode->i_sb), lockres, |
| 645 | OCFS2_LOCK_TYPE_DENTRY, &ocfs2_dentry_lops, |
| 646 | dl); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | static void ocfs2_super_lock_res_init(struct ocfs2_lock_res *res, |
| 650 | struct ocfs2_super *osb) |
| 651 | { |
| 652 | /* Superblock lockres doesn't come from a slab so we call init |
| 653 | * once on it manually. */ |
| 654 | ocfs2_lock_res_init_once(res); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 655 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_SUPER, OCFS2_SUPER_BLOCK_BLKNO, |
| 656 | 0, res->l_name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 657 | ocfs2_lock_res_init_common(osb, res, OCFS2_LOCK_TYPE_SUPER, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 658 | &ocfs2_super_lops, osb); |
| 659 | } |
| 660 | |
| 661 | static void ocfs2_rename_lock_res_init(struct ocfs2_lock_res *res, |
| 662 | struct ocfs2_super *osb) |
| 663 | { |
| 664 | /* Rename lockres doesn't come from a slab so we call init |
| 665 | * once on it manually. */ |
| 666 | ocfs2_lock_res_init_once(res); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 667 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_RENAME, 0, 0, res->l_name); |
| 668 | ocfs2_lock_res_init_common(osb, res, OCFS2_LOCK_TYPE_RENAME, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 669 | &ocfs2_rename_lops, osb); |
| 670 | } |
| 671 | |
wengang wang | 6ca497a | 2009-03-06 21:29:10 +0800 | [diff] [blame] | 672 | static void ocfs2_nfs_sync_lock_res_init(struct ocfs2_lock_res *res, |
| 673 | struct ocfs2_super *osb) |
| 674 | { |
| 675 | /* nfs_sync lockres doesn't come from a slab so we call init |
| 676 | * once on it manually. */ |
| 677 | ocfs2_lock_res_init_once(res); |
| 678 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_NFS_SYNC, 0, 0, res->l_name); |
| 679 | ocfs2_lock_res_init_common(osb, res, OCFS2_LOCK_TYPE_NFS_SYNC, |
| 680 | &ocfs2_nfs_sync_lops, osb); |
| 681 | } |
| 682 | |
Gang He | 4882abe | 2018-01-31 16:15:10 -0800 | [diff] [blame] | 683 | void ocfs2_trim_fs_lock_res_init(struct ocfs2_super *osb) |
| 684 | { |
| 685 | struct ocfs2_lock_res *lockres = &osb->osb_trim_fs_lockres; |
| 686 | |
| 687 | ocfs2_lock_res_init_once(lockres); |
| 688 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_TRIM_FS, 0, 0, lockres->l_name); |
| 689 | ocfs2_lock_res_init_common(osb, lockres, OCFS2_LOCK_TYPE_TRIM_FS, |
| 690 | &ocfs2_trim_fs_lops, osb); |
| 691 | } |
| 692 | |
| 693 | void ocfs2_trim_fs_lock_res_uninit(struct ocfs2_super *osb) |
| 694 | { |
| 695 | struct ocfs2_lock_res *lockres = &osb->osb_trim_fs_lockres; |
| 696 | |
| 697 | ocfs2_simple_drop_lockres(osb, lockres); |
| 698 | ocfs2_lock_res_free(lockres); |
| 699 | } |
| 700 | |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 701 | static void ocfs2_orphan_scan_lock_res_init(struct ocfs2_lock_res *res, |
| 702 | struct ocfs2_super *osb) |
| 703 | { |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 704 | ocfs2_lock_res_init_once(res); |
| 705 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_ORPHAN_SCAN, 0, 0, res->l_name); |
| 706 | ocfs2_lock_res_init_common(osb, res, OCFS2_LOCK_TYPE_ORPHAN_SCAN, |
| 707 | &ocfs2_orphan_scan_lops, osb); |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 708 | } |
| 709 | |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 710 | void ocfs2_file_lock_res_init(struct ocfs2_lock_res *lockres, |
| 711 | struct ocfs2_file_private *fp) |
| 712 | { |
| 713 | struct inode *inode = fp->fp_file->f_mapping->host; |
| 714 | struct ocfs2_inode_info *oi = OCFS2_I(inode); |
| 715 | |
| 716 | ocfs2_lock_res_init_once(lockres); |
| 717 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_FLOCK, oi->ip_blkno, |
| 718 | inode->i_generation, lockres->l_name); |
| 719 | ocfs2_lock_res_init_common(OCFS2_SB(inode->i_sb), lockres, |
| 720 | OCFS2_LOCK_TYPE_FLOCK, &ocfs2_flock_lops, |
| 721 | fp); |
| 722 | lockres->l_flags |= OCFS2_LOCK_NOCACHE; |
| 723 | } |
| 724 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 725 | void ocfs2_qinfo_lock_res_init(struct ocfs2_lock_res *lockres, |
| 726 | struct ocfs2_mem_dqinfo *info) |
| 727 | { |
| 728 | ocfs2_lock_res_init_once(lockres); |
| 729 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_QINFO, info->dqi_gi.dqi_type, |
| 730 | 0, lockres->l_name); |
| 731 | ocfs2_lock_res_init_common(OCFS2_SB(info->dqi_gi.dqi_sb), lockres, |
| 732 | OCFS2_LOCK_TYPE_QINFO, &ocfs2_qinfo_lops, |
| 733 | info); |
| 734 | } |
| 735 | |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 736 | void ocfs2_refcount_lock_res_init(struct ocfs2_lock_res *lockres, |
| 737 | struct ocfs2_super *osb, u64 ref_blkno, |
| 738 | unsigned int generation) |
| 739 | { |
| 740 | ocfs2_lock_res_init_once(lockres); |
| 741 | ocfs2_build_lock_name(OCFS2_LOCK_TYPE_REFCOUNT, ref_blkno, |
| 742 | generation, lockres->l_name); |
| 743 | ocfs2_lock_res_init_common(osb, lockres, OCFS2_LOCK_TYPE_REFCOUNT, |
| 744 | &ocfs2_refcount_block_lops, osb); |
| 745 | } |
| 746 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 747 | void ocfs2_lock_res_free(struct ocfs2_lock_res *res) |
| 748 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 749 | if (!(res->l_flags & OCFS2_LOCK_INITIALIZED)) |
| 750 | return; |
| 751 | |
| 752 | ocfs2_remove_lockres_tracking(res); |
| 753 | |
| 754 | mlog_bug_on_msg(!list_empty(&res->l_blocked_list), |
| 755 | "Lockres %s is on the blocked list\n", |
| 756 | res->l_name); |
| 757 | mlog_bug_on_msg(!list_empty(&res->l_mask_waiters), |
| 758 | "Lockres %s has mask waiters pending\n", |
| 759 | res->l_name); |
| 760 | mlog_bug_on_msg(spin_is_locked(&res->l_lock), |
| 761 | "Lockres %s is locked\n", |
| 762 | res->l_name); |
| 763 | mlog_bug_on_msg(res->l_ro_holders, |
| 764 | "Lockres %s has %u ro holders\n", |
| 765 | res->l_name, res->l_ro_holders); |
| 766 | mlog_bug_on_msg(res->l_ex_holders, |
| 767 | "Lockres %s has %u ex holders\n", |
| 768 | res->l_name, res->l_ex_holders); |
| 769 | |
| 770 | /* Need to clear out the lock status block for the dlm */ |
| 771 | memset(&res->l_lksb, 0, sizeof(res->l_lksb)); |
| 772 | |
| 773 | res->l_flags = 0UL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 774 | } |
| 775 | |
Eric Ren | 439a36b | 2017-02-22 15:40:41 -0800 | [diff] [blame] | 776 | /* |
| 777 | * Keep a list of processes who have interest in a lockres. |
| 778 | * Note: this is now only uesed for check recursive cluster locking. |
| 779 | */ |
| 780 | static inline void ocfs2_add_holder(struct ocfs2_lock_res *lockres, |
| 781 | struct ocfs2_lock_holder *oh) |
| 782 | { |
| 783 | INIT_LIST_HEAD(&oh->oh_list); |
| 784 | oh->oh_owner_pid = get_pid(task_pid(current)); |
| 785 | |
| 786 | spin_lock(&lockres->l_lock); |
| 787 | list_add_tail(&oh->oh_list, &lockres->l_holders); |
| 788 | spin_unlock(&lockres->l_lock); |
| 789 | } |
| 790 | |
| 791 | static inline void ocfs2_remove_holder(struct ocfs2_lock_res *lockres, |
| 792 | struct ocfs2_lock_holder *oh) |
| 793 | { |
| 794 | spin_lock(&lockres->l_lock); |
| 795 | list_del(&oh->oh_list); |
| 796 | spin_unlock(&lockres->l_lock); |
| 797 | |
| 798 | put_pid(oh->oh_owner_pid); |
| 799 | } |
| 800 | |
| 801 | static inline int ocfs2_is_locked_by_me(struct ocfs2_lock_res *lockres) |
| 802 | { |
| 803 | struct ocfs2_lock_holder *oh; |
| 804 | struct pid *pid; |
| 805 | |
| 806 | /* look in the list of holders for one with the current task as owner */ |
| 807 | spin_lock(&lockres->l_lock); |
| 808 | pid = task_pid(current); |
| 809 | list_for_each_entry(oh, &lockres->l_holders, oh_list) { |
| 810 | if (oh->oh_owner_pid == pid) { |
| 811 | spin_unlock(&lockres->l_lock); |
| 812 | return 1; |
| 813 | } |
| 814 | } |
| 815 | spin_unlock(&lockres->l_lock); |
| 816 | |
| 817 | return 0; |
| 818 | } |
| 819 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 820 | static inline void ocfs2_inc_holders(struct ocfs2_lock_res *lockres, |
| 821 | int level) |
| 822 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 823 | BUG_ON(!lockres); |
| 824 | |
| 825 | switch(level) { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 826 | case DLM_LOCK_EX: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 827 | lockres->l_ex_holders++; |
| 828 | break; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 829 | case DLM_LOCK_PR: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 830 | lockres->l_ro_holders++; |
| 831 | break; |
| 832 | default: |
| 833 | BUG(); |
| 834 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 835 | } |
| 836 | |
| 837 | static inline void ocfs2_dec_holders(struct ocfs2_lock_res *lockres, |
| 838 | int level) |
| 839 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 840 | BUG_ON(!lockres); |
| 841 | |
| 842 | switch(level) { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 843 | case DLM_LOCK_EX: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 844 | BUG_ON(!lockres->l_ex_holders); |
| 845 | lockres->l_ex_holders--; |
| 846 | break; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 847 | case DLM_LOCK_PR: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 848 | BUG_ON(!lockres->l_ro_holders); |
| 849 | lockres->l_ro_holders--; |
| 850 | break; |
| 851 | default: |
| 852 | BUG(); |
| 853 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | /* WARNING: This function lives in a world where the only three lock |
| 857 | * levels are EX, PR, and NL. It *will* have to be adjusted when more |
| 858 | * lock types are added. */ |
| 859 | static inline int ocfs2_highest_compat_lock_level(int level) |
| 860 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 861 | int new_level = DLM_LOCK_EX; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 862 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 863 | if (level == DLM_LOCK_EX) |
| 864 | new_level = DLM_LOCK_NL; |
| 865 | else if (level == DLM_LOCK_PR) |
| 866 | new_level = DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 867 | return new_level; |
| 868 | } |
| 869 | |
| 870 | static void lockres_set_flags(struct ocfs2_lock_res *lockres, |
| 871 | unsigned long newflags) |
| 872 | { |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 873 | struct ocfs2_mask_waiter *mw, *tmp; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 874 | |
| 875 | assert_spin_locked(&lockres->l_lock); |
| 876 | |
| 877 | lockres->l_flags = newflags; |
| 878 | |
Christoph Hellwig | 800deef | 2007-05-17 16:03:13 +0200 | [diff] [blame] | 879 | list_for_each_entry_safe(mw, tmp, &lockres->l_mask_waiters, mw_item) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 880 | if ((lockres->l_flags & mw->mw_mask) != mw->mw_goal) |
| 881 | continue; |
| 882 | |
| 883 | list_del_init(&mw->mw_item); |
| 884 | mw->mw_status = 0; |
| 885 | complete(&mw->mw_complete); |
| 886 | } |
| 887 | } |
| 888 | static void lockres_or_flags(struct ocfs2_lock_res *lockres, unsigned long or) |
| 889 | { |
| 890 | lockres_set_flags(lockres, lockres->l_flags | or); |
| 891 | } |
| 892 | static void lockres_clear_flags(struct ocfs2_lock_res *lockres, |
| 893 | unsigned long clear) |
| 894 | { |
| 895 | lockres_set_flags(lockres, lockres->l_flags & ~clear); |
| 896 | } |
| 897 | |
| 898 | static inline void ocfs2_generic_handle_downconvert_action(struct ocfs2_lock_res *lockres) |
| 899 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 900 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BUSY)); |
| 901 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_ATTACHED)); |
| 902 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BLOCKED)); |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 903 | BUG_ON(lockres->l_blocking <= DLM_LOCK_NL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 904 | |
| 905 | lockres->l_level = lockres->l_requested; |
| 906 | if (lockres->l_level <= |
| 907 | ocfs2_highest_compat_lock_level(lockres->l_blocking)) { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 908 | lockres->l_blocking = DLM_LOCK_NL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 909 | lockres_clear_flags(lockres, OCFS2_LOCK_BLOCKED); |
| 910 | } |
| 911 | lockres_clear_flags(lockres, OCFS2_LOCK_BUSY); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | static inline void ocfs2_generic_handle_convert_action(struct ocfs2_lock_res *lockres) |
| 915 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 916 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BUSY)); |
| 917 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_ATTACHED)); |
| 918 | |
| 919 | /* Convert from RO to EX doesn't really need anything as our |
| 920 | * information is already up to data. Convert from NL to |
| 921 | * *anything* however should mark ourselves as needing an |
| 922 | * update */ |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 923 | if (lockres->l_level == DLM_LOCK_NL && |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 924 | lockres->l_ops->flags & LOCK_TYPE_REQUIRES_REFRESH) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 925 | lockres_or_flags(lockres, OCFS2_LOCK_NEEDS_REFRESH); |
| 926 | |
| 927 | lockres->l_level = lockres->l_requested; |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 928 | |
| 929 | /* |
| 930 | * We set the OCFS2_LOCK_UPCONVERT_FINISHING flag before clearing |
| 931 | * the OCFS2_LOCK_BUSY flag to prevent the dc thread from |
| 932 | * downconverting the lock before the upconvert has fully completed. |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 933 | * Do not prevent the dc thread from downconverting if NONBLOCK lock |
| 934 | * had already returned. |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 935 | */ |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 936 | if (!(lockres->l_flags & OCFS2_LOCK_NONBLOCK_FINISHED)) |
| 937 | lockres_or_flags(lockres, OCFS2_LOCK_UPCONVERT_FINISHING); |
| 938 | else |
| 939 | lockres_clear_flags(lockres, OCFS2_LOCK_NONBLOCK_FINISHED); |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 940 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 941 | lockres_clear_flags(lockres, OCFS2_LOCK_BUSY); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res *lockres) |
| 945 | { |
Roel Kluin | 3cf0c50 | 2007-10-27 00:20:36 +0200 | [diff] [blame] | 946 | BUG_ON((!(lockres->l_flags & OCFS2_LOCK_BUSY))); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 947 | BUG_ON(lockres->l_flags & OCFS2_LOCK_ATTACHED); |
| 948 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 949 | if (lockres->l_requested > DLM_LOCK_NL && |
Mark Fasheh | f625c97 | 2006-09-12 21:24:53 -0700 | [diff] [blame] | 950 | !(lockres->l_flags & OCFS2_LOCK_LOCAL) && |
| 951 | lockres->l_ops->flags & LOCK_TYPE_REQUIRES_REFRESH) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 952 | lockres_or_flags(lockres, OCFS2_LOCK_NEEDS_REFRESH); |
| 953 | |
| 954 | lockres->l_level = lockres->l_requested; |
| 955 | lockres_or_flags(lockres, OCFS2_LOCK_ATTACHED); |
| 956 | lockres_clear_flags(lockres, OCFS2_LOCK_BUSY); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 957 | } |
| 958 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 959 | static int ocfs2_generic_handle_bast(struct ocfs2_lock_res *lockres, |
| 960 | int level) |
| 961 | { |
| 962 | int needs_downconvert = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 963 | |
| 964 | assert_spin_locked(&lockres->l_lock); |
| 965 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 966 | if (level > lockres->l_blocking) { |
| 967 | /* only schedule a downconvert if we haven't already scheduled |
| 968 | * one that goes low enough to satisfy the level we're |
| 969 | * blocking. this also catches the case where we get |
| 970 | * duplicate BASTs */ |
| 971 | if (ocfs2_highest_compat_lock_level(level) < |
| 972 | ocfs2_highest_compat_lock_level(lockres->l_blocking)) |
| 973 | needs_downconvert = 1; |
| 974 | |
| 975 | lockres->l_blocking = level; |
| 976 | } |
| 977 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 978 | mlog(ML_BASTS, "lockres %s, block %d, level %d, l_block %d, dwn %d\n", |
| 979 | lockres->l_name, level, lockres->l_level, lockres->l_blocking, |
| 980 | needs_downconvert); |
| 981 | |
Wengang Wang | 0b94a90 | 2010-01-21 10:50:02 -0800 | [diff] [blame] | 982 | if (needs_downconvert) |
| 983 | lockres_or_flags(lockres, OCFS2_LOCK_BLOCKED); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 984 | mlog(0, "needs_downconvert = %d\n", needs_downconvert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 985 | return needs_downconvert; |
| 986 | } |
| 987 | |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 988 | /* |
| 989 | * OCFS2_LOCK_PENDING and l_pending_gen. |
| 990 | * |
| 991 | * Why does OCFS2_LOCK_PENDING exist? To close a race between setting |
| 992 | * OCFS2_LOCK_BUSY and calling ocfs2_dlm_lock(). See ocfs2_unblock_lock() |
| 993 | * for more details on the race. |
| 994 | * |
| 995 | * OCFS2_LOCK_PENDING closes the race quite nicely. However, it introduces |
| 996 | * a race on itself. In o2dlm, we can get the ast before ocfs2_dlm_lock() |
| 997 | * returns. The ast clears OCFS2_LOCK_BUSY, and must therefore clear |
| 998 | * OCFS2_LOCK_PENDING at the same time. When ocfs2_dlm_lock() returns, |
| 999 | * the caller is going to try to clear PENDING again. If nothing else is |
| 1000 | * happening, __lockres_clear_pending() sees PENDING is unset and does |
| 1001 | * nothing. |
| 1002 | * |
| 1003 | * But what if another path (eg downconvert thread) has just started a |
| 1004 | * new locking action? The other path has re-set PENDING. Our path |
| 1005 | * cannot clear PENDING, because that will re-open the original race |
| 1006 | * window. |
| 1007 | * |
| 1008 | * [Example] |
| 1009 | * |
| 1010 | * ocfs2_meta_lock() |
| 1011 | * ocfs2_cluster_lock() |
| 1012 | * set BUSY |
| 1013 | * set PENDING |
| 1014 | * drop l_lock |
| 1015 | * ocfs2_dlm_lock() |
| 1016 | * ocfs2_locking_ast() ocfs2_downconvert_thread() |
| 1017 | * clear PENDING ocfs2_unblock_lock() |
| 1018 | * take_l_lock |
| 1019 | * !BUSY |
| 1020 | * ocfs2_prepare_downconvert() |
| 1021 | * set BUSY |
| 1022 | * set PENDING |
| 1023 | * drop l_lock |
| 1024 | * take l_lock |
| 1025 | * clear PENDING |
| 1026 | * drop l_lock |
| 1027 | * <window> |
| 1028 | * ocfs2_dlm_lock() |
| 1029 | * |
| 1030 | * So as you can see, we now have a window where l_lock is not held, |
| 1031 | * PENDING is not set, and ocfs2_dlm_lock() has not been called. |
| 1032 | * |
| 1033 | * The core problem is that ocfs2_cluster_lock() has cleared the PENDING |
| 1034 | * set by ocfs2_prepare_downconvert(). That wasn't nice. |
| 1035 | * |
| 1036 | * To solve this we introduce l_pending_gen. A call to |
| 1037 | * lockres_clear_pending() will only do so when it is passed a generation |
| 1038 | * number that matches the lockres. lockres_set_pending() will return the |
| 1039 | * current generation number. When ocfs2_cluster_lock() goes to clear |
| 1040 | * PENDING, it passes the generation it got from set_pending(). In our |
| 1041 | * example above, the generation numbers will *not* match. Thus, |
| 1042 | * ocfs2_cluster_lock() will not clear the PENDING set by |
| 1043 | * ocfs2_prepare_downconvert(). |
| 1044 | */ |
| 1045 | |
| 1046 | /* Unlocked version for ocfs2_locking_ast() */ |
| 1047 | static void __lockres_clear_pending(struct ocfs2_lock_res *lockres, |
| 1048 | unsigned int generation, |
| 1049 | struct ocfs2_super *osb) |
| 1050 | { |
| 1051 | assert_spin_locked(&lockres->l_lock); |
| 1052 | |
| 1053 | /* |
| 1054 | * The ast and locking functions can race us here. The winner |
| 1055 | * will clear pending, the loser will not. |
| 1056 | */ |
| 1057 | if (!(lockres->l_flags & OCFS2_LOCK_PENDING) || |
| 1058 | (lockres->l_pending_gen != generation)) |
| 1059 | return; |
| 1060 | |
| 1061 | lockres_clear_flags(lockres, OCFS2_LOCK_PENDING); |
| 1062 | lockres->l_pending_gen++; |
| 1063 | |
| 1064 | /* |
| 1065 | * The downconvert thread may have skipped us because we |
| 1066 | * were PENDING. Wake it up. |
| 1067 | */ |
| 1068 | if (lockres->l_flags & OCFS2_LOCK_BLOCKED) |
| 1069 | ocfs2_wake_downconvert_thread(osb); |
| 1070 | } |
| 1071 | |
| 1072 | /* Locked version for callers of ocfs2_dlm_lock() */ |
| 1073 | static void lockres_clear_pending(struct ocfs2_lock_res *lockres, |
| 1074 | unsigned int generation, |
| 1075 | struct ocfs2_super *osb) |
| 1076 | { |
| 1077 | unsigned long flags; |
| 1078 | |
| 1079 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1080 | __lockres_clear_pending(lockres, generation, osb); |
| 1081 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1082 | } |
| 1083 | |
| 1084 | static unsigned int lockres_set_pending(struct ocfs2_lock_res *lockres) |
| 1085 | { |
| 1086 | assert_spin_locked(&lockres->l_lock); |
| 1087 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BUSY)); |
| 1088 | |
| 1089 | lockres_or_flags(lockres, OCFS2_LOCK_PENDING); |
| 1090 | |
| 1091 | return lockres->l_pending_gen; |
| 1092 | } |
| 1093 | |
Joel Becker | c0e41338 | 2010-01-29 14:46:44 -0800 | [diff] [blame] | 1094 | static void ocfs2_blocking_ast(struct ocfs2_dlm_lksb *lksb, int level) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1095 | { |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 1096 | struct ocfs2_lock_res *lockres = ocfs2_lksb_to_lock_res(lksb); |
Mark Fasheh | aa2623a | 2006-09-12 21:58:23 -0700 | [diff] [blame] | 1097 | struct ocfs2_super *osb = ocfs2_get_lockres_osb(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1098 | int needs_downconvert; |
| 1099 | unsigned long flags; |
| 1100 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1101 | BUG_ON(level <= DLM_LOCK_NL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1102 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 1103 | mlog(ML_BASTS, "BAST fired for lockres %s, blocking %d, level %d, " |
| 1104 | "type %s\n", lockres->l_name, level, lockres->l_level, |
Mark Fasheh | aa2623a | 2006-09-12 21:58:23 -0700 | [diff] [blame] | 1105 | ocfs2_lock_type_string(lockres->l_type)); |
| 1106 | |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1107 | /* |
| 1108 | * We can skip the bast for locks which don't enable caching - |
| 1109 | * they'll be dropped at the earliest possible time anyway. |
| 1110 | */ |
| 1111 | if (lockres->l_flags & OCFS2_LOCK_NOCACHE) |
| 1112 | return; |
| 1113 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1114 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1115 | needs_downconvert = ocfs2_generic_handle_bast(lockres, level); |
| 1116 | if (needs_downconvert) |
| 1117 | ocfs2_schedule_blocked_lock(osb, lockres); |
| 1118 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1119 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 1120 | wake_up(&lockres->l_event); |
| 1121 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1122 | ocfs2_wake_downconvert_thread(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1123 | } |
| 1124 | |
Joel Becker | c0e41338 | 2010-01-29 14:46:44 -0800 | [diff] [blame] | 1125 | static void ocfs2_locking_ast(struct ocfs2_dlm_lksb *lksb) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1126 | { |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 1127 | struct ocfs2_lock_res *lockres = ocfs2_lksb_to_lock_res(lksb); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1128 | struct ocfs2_super *osb = ocfs2_get_lockres_osb(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1129 | unsigned long flags; |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 1130 | int status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1131 | |
| 1132 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1133 | |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 1134 | status = ocfs2_dlm_lock_status(&lockres->l_lksb); |
| 1135 | |
| 1136 | if (status == -EAGAIN) { |
| 1137 | lockres_clear_flags(lockres, OCFS2_LOCK_BUSY); |
| 1138 | goto out; |
| 1139 | } |
| 1140 | |
| 1141 | if (status) { |
Joel Becker | 8f2c9c1 | 2008-02-01 12:16:57 -0800 | [diff] [blame] | 1142 | mlog(ML_ERROR, "lockres %s: lksb status value of %d!\n", |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 1143 | lockres->l_name, status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1144 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1145 | return; |
| 1146 | } |
| 1147 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 1148 | mlog(ML_BASTS, "AST fired for lockres %s, action %d, unlock %d, " |
| 1149 | "level %d => %d\n", lockres->l_name, lockres->l_action, |
| 1150 | lockres->l_unlock_action, lockres->l_level, lockres->l_requested); |
| 1151 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1152 | switch(lockres->l_action) { |
| 1153 | case OCFS2_AST_ATTACH: |
| 1154 | ocfs2_generic_handle_attach_action(lockres); |
Mark Fasheh | e92d57d | 2006-09-12 21:34:35 -0700 | [diff] [blame] | 1155 | lockres_clear_flags(lockres, OCFS2_LOCK_LOCAL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1156 | break; |
| 1157 | case OCFS2_AST_CONVERT: |
| 1158 | ocfs2_generic_handle_convert_action(lockres); |
| 1159 | break; |
| 1160 | case OCFS2_AST_DOWNCONVERT: |
| 1161 | ocfs2_generic_handle_downconvert_action(lockres); |
| 1162 | break; |
| 1163 | default: |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 1164 | mlog(ML_ERROR, "lockres %s: AST fired with invalid action: %u, " |
| 1165 | "flags 0x%lx, unlock: %u\n", |
Mark Fasheh | e92d57d | 2006-09-12 21:34:35 -0700 | [diff] [blame] | 1166 | lockres->l_name, lockres->l_action, lockres->l_flags, |
| 1167 | lockres->l_unlock_action); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1168 | BUG(); |
| 1169 | } |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 1170 | out: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1171 | /* set it to something invalid so if we get called again we |
| 1172 | * can catch it. */ |
| 1173 | lockres->l_action = OCFS2_AST_INVALID; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1174 | |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1175 | /* Did we try to cancel this lock? Clear that state */ |
| 1176 | if (lockres->l_unlock_action == OCFS2_UNLOCK_CANCEL_CONVERT) |
| 1177 | lockres->l_unlock_action = OCFS2_UNLOCK_INVALID; |
| 1178 | |
| 1179 | /* |
| 1180 | * We may have beaten the locking functions here. We certainly |
| 1181 | * know that dlm_lock() has been called :-) |
| 1182 | * Because we can't have two lock calls in flight at once, we |
| 1183 | * can use lockres->l_pending_gen. |
| 1184 | */ |
| 1185 | __lockres_clear_pending(lockres, lockres->l_pending_gen, osb); |
| 1186 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1187 | wake_up(&lockres->l_event); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 1188 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1189 | } |
| 1190 | |
Joel Becker | 553b5eb | 2010-01-29 17:19:06 -0800 | [diff] [blame] | 1191 | static void ocfs2_unlock_ast(struct ocfs2_dlm_lksb *lksb, int error) |
| 1192 | { |
| 1193 | struct ocfs2_lock_res *lockres = ocfs2_lksb_to_lock_res(lksb); |
| 1194 | unsigned long flags; |
| 1195 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 1196 | mlog(ML_BASTS, "UNLOCK AST fired for lockres %s, action = %d\n", |
| 1197 | lockres->l_name, lockres->l_unlock_action); |
Joel Becker | 553b5eb | 2010-01-29 17:19:06 -0800 | [diff] [blame] | 1198 | |
| 1199 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1200 | if (error) { |
| 1201 | mlog(ML_ERROR, "Dlm passes error %d for lock %s, " |
| 1202 | "unlock_action %d\n", error, lockres->l_name, |
| 1203 | lockres->l_unlock_action); |
| 1204 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Joel Becker | 553b5eb | 2010-01-29 17:19:06 -0800 | [diff] [blame] | 1205 | return; |
| 1206 | } |
| 1207 | |
| 1208 | switch(lockres->l_unlock_action) { |
| 1209 | case OCFS2_UNLOCK_CANCEL_CONVERT: |
| 1210 | mlog(0, "Cancel convert success for %s\n", lockres->l_name); |
| 1211 | lockres->l_action = OCFS2_AST_INVALID; |
| 1212 | /* Downconvert thread may have requeued this lock, we |
| 1213 | * need to wake it. */ |
| 1214 | if (lockres->l_flags & OCFS2_LOCK_BLOCKED) |
| 1215 | ocfs2_wake_downconvert_thread(ocfs2_get_lockres_osb(lockres)); |
| 1216 | break; |
| 1217 | case OCFS2_UNLOCK_DROP_LOCK: |
| 1218 | lockres->l_level = DLM_LOCK_IV; |
| 1219 | break; |
| 1220 | default: |
| 1221 | BUG(); |
| 1222 | } |
| 1223 | |
| 1224 | lockres_clear_flags(lockres, OCFS2_LOCK_BUSY); |
| 1225 | lockres->l_unlock_action = OCFS2_UNLOCK_INVALID; |
| 1226 | wake_up(&lockres->l_event); |
| 1227 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Joel Becker | 553b5eb | 2010-01-29 17:19:06 -0800 | [diff] [blame] | 1228 | } |
| 1229 | |
| 1230 | /* |
| 1231 | * This is the filesystem locking protocol. It provides the lock handling |
| 1232 | * hooks for the underlying DLM. It has a maximum version number. |
| 1233 | * The version number allows interoperability with systems running at |
| 1234 | * the same major number and an equal or smaller minor number. |
| 1235 | * |
| 1236 | * Whenever the filesystem does new things with locks (adds or removes a |
| 1237 | * lock, orders them differently, does different things underneath a lock), |
| 1238 | * the version must be changed. The protocol is negotiated when joining |
| 1239 | * the dlm domain. A node may join the domain if its major version is |
| 1240 | * identical to all other nodes and its minor version is greater than |
| 1241 | * or equal to all other nodes. When its minor version is greater than |
| 1242 | * the other nodes, it will run at the minor version specified by the |
| 1243 | * other nodes. |
| 1244 | * |
| 1245 | * If a locking change is made that will not be compatible with older |
| 1246 | * versions, the major number must be increased and the minor version set |
| 1247 | * to zero. If a change merely adds a behavior that can be disabled when |
| 1248 | * speaking to older versions, the minor version must be increased. If a |
| 1249 | * change adds a fully backwards compatible change (eg, LVB changes that |
| 1250 | * are just ignored by older versions), the version does not need to be |
| 1251 | * updated. |
| 1252 | */ |
| 1253 | static struct ocfs2_locking_protocol lproto = { |
| 1254 | .lp_max_version = { |
| 1255 | .pv_major = OCFS2_LOCKING_PROTOCOL_MAJOR, |
| 1256 | .pv_minor = OCFS2_LOCKING_PROTOCOL_MINOR, |
| 1257 | }, |
| 1258 | .lp_lock_ast = ocfs2_locking_ast, |
| 1259 | .lp_blocking_ast = ocfs2_blocking_ast, |
| 1260 | .lp_unlock_ast = ocfs2_unlock_ast, |
| 1261 | }; |
| 1262 | |
| 1263 | void ocfs2_set_locking_protocol(void) |
| 1264 | { |
| 1265 | ocfs2_stack_glue_set_max_proto_version(&lproto.lp_max_version); |
| 1266 | } |
| 1267 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1268 | static inline void ocfs2_recover_from_dlm_error(struct ocfs2_lock_res *lockres, |
| 1269 | int convert) |
| 1270 | { |
| 1271 | unsigned long flags; |
| 1272 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1273 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1274 | lockres_clear_flags(lockres, OCFS2_LOCK_BUSY); |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 1275 | lockres_clear_flags(lockres, OCFS2_LOCK_UPCONVERT_FINISHING); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1276 | if (convert) |
| 1277 | lockres->l_action = OCFS2_AST_INVALID; |
| 1278 | else |
| 1279 | lockres->l_unlock_action = OCFS2_UNLOCK_INVALID; |
| 1280 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1281 | |
| 1282 | wake_up(&lockres->l_event); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1283 | } |
| 1284 | |
| 1285 | /* Note: If we detect another process working on the lock (i.e., |
| 1286 | * OCFS2_LOCK_BUSY), we'll bail out returning 0. It's up to the caller |
| 1287 | * to do the right thing in that case. |
| 1288 | */ |
| 1289 | static int ocfs2_lock_create(struct ocfs2_super *osb, |
| 1290 | struct ocfs2_lock_res *lockres, |
| 1291 | int level, |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1292 | u32 dlm_flags) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1293 | { |
| 1294 | int ret = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1295 | unsigned long flags; |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1296 | unsigned int gen; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1297 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1298 | mlog(0, "lock %s, level = %d, flags = %u\n", lockres->l_name, level, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1299 | dlm_flags); |
| 1300 | |
| 1301 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1302 | if ((lockres->l_flags & OCFS2_LOCK_ATTACHED) || |
| 1303 | (lockres->l_flags & OCFS2_LOCK_BUSY)) { |
| 1304 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1305 | goto bail; |
| 1306 | } |
| 1307 | |
| 1308 | lockres->l_action = OCFS2_AST_ATTACH; |
| 1309 | lockres->l_requested = level; |
| 1310 | lockres_or_flags(lockres, OCFS2_LOCK_BUSY); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1311 | gen = lockres_set_pending(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1312 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1313 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 1314 | ret = ocfs2_dlm_lock(osb->cconn, |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 1315 | level, |
| 1316 | &lockres->l_lksb, |
| 1317 | dlm_flags, |
| 1318 | lockres->l_name, |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 1319 | OCFS2_LOCK_ID_MAX_LEN - 1); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1320 | lockres_clear_pending(lockres, gen, osb); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 1321 | if (ret) { |
| 1322 | ocfs2_log_dlm_error("ocfs2_dlm_lock", ret, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1323 | ocfs2_recover_from_dlm_error(lockres, 1); |
| 1324 | } |
| 1325 | |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 1326 | mlog(0, "lock %s, return from ocfs2_dlm_lock\n", lockres->l_name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1327 | |
| 1328 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1329 | return ret; |
| 1330 | } |
| 1331 | |
| 1332 | static inline int ocfs2_check_wait_flag(struct ocfs2_lock_res *lockres, |
| 1333 | int flag) |
| 1334 | { |
| 1335 | unsigned long flags; |
| 1336 | int ret; |
| 1337 | |
| 1338 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1339 | ret = lockres->l_flags & flag; |
| 1340 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1341 | |
| 1342 | return ret; |
| 1343 | } |
| 1344 | |
| 1345 | static inline void ocfs2_wait_on_busy_lock(struct ocfs2_lock_res *lockres) |
| 1346 | |
| 1347 | { |
| 1348 | wait_event(lockres->l_event, |
| 1349 | !ocfs2_check_wait_flag(lockres, OCFS2_LOCK_BUSY)); |
| 1350 | } |
| 1351 | |
| 1352 | static inline void ocfs2_wait_on_refreshing_lock(struct ocfs2_lock_res *lockres) |
| 1353 | |
| 1354 | { |
| 1355 | wait_event(lockres->l_event, |
| 1356 | !ocfs2_check_wait_flag(lockres, OCFS2_LOCK_REFRESHING)); |
| 1357 | } |
| 1358 | |
| 1359 | /* predict what lock level we'll be dropping down to on behalf |
| 1360 | * of another node, and return true if the currently wanted |
| 1361 | * level will be compatible with it. */ |
| 1362 | static inline int ocfs2_may_continue_on_blocked_lock(struct ocfs2_lock_res *lockres, |
| 1363 | int wanted) |
| 1364 | { |
| 1365 | BUG_ON(!(lockres->l_flags & OCFS2_LOCK_BLOCKED)); |
| 1366 | |
| 1367 | return wanted <= ocfs2_highest_compat_lock_level(lockres->l_blocking); |
| 1368 | } |
| 1369 | |
| 1370 | static void ocfs2_init_mask_waiter(struct ocfs2_mask_waiter *mw) |
| 1371 | { |
| 1372 | INIT_LIST_HEAD(&mw->mw_item); |
| 1373 | init_completion(&mw->mw_complete); |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 1374 | ocfs2_init_start_time(mw); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1375 | } |
| 1376 | |
| 1377 | static int ocfs2_wait_for_mask(struct ocfs2_mask_waiter *mw) |
| 1378 | { |
| 1379 | wait_for_completion(&mw->mw_complete); |
| 1380 | /* Re-arm the completion in case we want to wait on it again */ |
Wolfram Sang | 16735d0 | 2013-11-14 14:32:02 -0800 | [diff] [blame] | 1381 | reinit_completion(&mw->mw_complete); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1382 | return mw->mw_status; |
| 1383 | } |
| 1384 | |
| 1385 | static void lockres_add_mask_waiter(struct ocfs2_lock_res *lockres, |
| 1386 | struct ocfs2_mask_waiter *mw, |
| 1387 | unsigned long mask, |
| 1388 | unsigned long goal) |
| 1389 | { |
| 1390 | BUG_ON(!list_empty(&mw->mw_item)); |
| 1391 | |
| 1392 | assert_spin_locked(&lockres->l_lock); |
| 1393 | |
| 1394 | list_add_tail(&mw->mw_item, &lockres->l_mask_waiters); |
| 1395 | mw->mw_mask = mask; |
| 1396 | mw->mw_goal = goal; |
| 1397 | } |
| 1398 | |
| 1399 | /* returns 0 if the mw that was removed was already satisfied, -EBUSY |
| 1400 | * if the mask still hadn't reached its goal */ |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1401 | static int __lockres_remove_mask_waiter(struct ocfs2_lock_res *lockres, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1402 | struct ocfs2_mask_waiter *mw) |
| 1403 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1404 | int ret = 0; |
| 1405 | |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1406 | assert_spin_locked(&lockres->l_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1407 | if (!list_empty(&mw->mw_item)) { |
| 1408 | if ((lockres->l_flags & mw->mw_mask) != mw->mw_goal) |
| 1409 | ret = -EBUSY; |
| 1410 | |
| 1411 | list_del_init(&mw->mw_item); |
| 1412 | init_completion(&mw->mw_complete); |
| 1413 | } |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1414 | |
| 1415 | return ret; |
| 1416 | } |
| 1417 | |
| 1418 | static int lockres_remove_mask_waiter(struct ocfs2_lock_res *lockres, |
| 1419 | struct ocfs2_mask_waiter *mw) |
| 1420 | { |
| 1421 | unsigned long flags; |
| 1422 | int ret = 0; |
| 1423 | |
| 1424 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1425 | ret = __lockres_remove_mask_waiter(lockres, mw); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1426 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1427 | |
| 1428 | return ret; |
| 1429 | |
| 1430 | } |
| 1431 | |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1432 | static int ocfs2_wait_for_mask_interruptible(struct ocfs2_mask_waiter *mw, |
| 1433 | struct ocfs2_lock_res *lockres) |
| 1434 | { |
| 1435 | int ret; |
| 1436 | |
| 1437 | ret = wait_for_completion_interruptible(&mw->mw_complete); |
| 1438 | if (ret) |
| 1439 | lockres_remove_mask_waiter(lockres, mw); |
| 1440 | else |
| 1441 | ret = mw->mw_status; |
| 1442 | /* Re-arm the completion in case we want to wait on it again */ |
Wolfram Sang | 16735d0 | 2013-11-14 14:32:02 -0800 | [diff] [blame] | 1443 | reinit_completion(&mw->mw_complete); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1444 | return ret; |
| 1445 | } |
| 1446 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1447 | static int __ocfs2_cluster_lock(struct ocfs2_super *osb, |
| 1448 | struct ocfs2_lock_res *lockres, |
| 1449 | int level, |
| 1450 | u32 lkm_flags, |
| 1451 | int arg_flags, |
| 1452 | int l_subclass, |
| 1453 | unsigned long caller_ip) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1454 | { |
| 1455 | struct ocfs2_mask_waiter mw; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1456 | int wait, catch_signals = !(osb->s_mount_opt & OCFS2_MOUNT_NOINTR); |
| 1457 | int ret = 0; /* gcc doesn't realize wait = 1 guarantees ret is set */ |
| 1458 | unsigned long flags; |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1459 | unsigned int gen; |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 1460 | int noqueue_attempted = 0; |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1461 | int dlm_locked = 0; |
Tariq Saeed | b1b1e15 | 2016-01-21 16:40:39 -0800 | [diff] [blame] | 1462 | int kick_dc = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1463 | |
alex chen | 2f2eca2 | 2015-04-14 15:43:49 -0700 | [diff] [blame] | 1464 | if (!(lockres->l_flags & OCFS2_LOCK_INITIALIZED)) { |
| 1465 | mlog_errno(-EINVAL); |
| 1466 | return -EINVAL; |
| 1467 | } |
| 1468 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1469 | ocfs2_init_mask_waiter(&mw); |
| 1470 | |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 1471 | if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB) |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1472 | lkm_flags |= DLM_LKF_VALBLK; |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 1473 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1474 | again: |
| 1475 | wait = 0; |
| 1476 | |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 1477 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1478 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1479 | if (catch_signals && signal_pending(current)) { |
| 1480 | ret = -ERESTARTSYS; |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 1481 | goto unlock; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1482 | } |
| 1483 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1484 | mlog_bug_on_msg(lockres->l_flags & OCFS2_LOCK_FREEING, |
| 1485 | "Cluster lock called on freeing lockres %s! flags " |
| 1486 | "0x%lx\n", lockres->l_name, lockres->l_flags); |
| 1487 | |
| 1488 | /* We only compare against the currently granted level |
| 1489 | * here. If the lock is blocked waiting on a downconvert, |
| 1490 | * we'll get caught below. */ |
| 1491 | if (lockres->l_flags & OCFS2_LOCK_BUSY && |
| 1492 | level > lockres->l_level) { |
| 1493 | /* is someone sitting in dlm_lock? If so, wait on |
| 1494 | * them. */ |
| 1495 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0); |
| 1496 | wait = 1; |
| 1497 | goto unlock; |
| 1498 | } |
| 1499 | |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 1500 | if (lockres->l_flags & OCFS2_LOCK_UPCONVERT_FINISHING) { |
| 1501 | /* |
| 1502 | * We've upconverted. If the lock now has a level we can |
| 1503 | * work with, we take it. If, however, the lock is not at the |
| 1504 | * required level, we go thru the full cycle. One way this could |
| 1505 | * happen is if a process requesting an upconvert to PR is |
| 1506 | * closely followed by another requesting upconvert to an EX. |
| 1507 | * If the process requesting EX lands here, we want it to |
| 1508 | * continue attempting to upconvert and let the process |
| 1509 | * requesting PR take the lock. |
| 1510 | * If multiple processes request upconvert to PR, the first one |
| 1511 | * here will take the lock. The others will have to go thru the |
| 1512 | * OCFS2_LOCK_BLOCKED check to ensure that there is no pending |
| 1513 | * downconvert request. |
| 1514 | */ |
| 1515 | if (level <= lockres->l_level) |
| 1516 | goto update_holders; |
| 1517 | } |
| 1518 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1519 | if (lockres->l_flags & OCFS2_LOCK_BLOCKED && |
| 1520 | !ocfs2_may_continue_on_blocked_lock(lockres, level)) { |
| 1521 | /* is the lock is currently blocked on behalf of |
| 1522 | * another node */ |
| 1523 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BLOCKED, 0); |
| 1524 | wait = 1; |
| 1525 | goto unlock; |
| 1526 | } |
| 1527 | |
| 1528 | if (level > lockres->l_level) { |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 1529 | if (noqueue_attempted > 0) { |
| 1530 | ret = -EAGAIN; |
| 1531 | goto unlock; |
| 1532 | } |
| 1533 | if (lkm_flags & DLM_LKF_NOQUEUE) |
| 1534 | noqueue_attempted = 1; |
| 1535 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1536 | if (lockres->l_action != OCFS2_AST_INVALID) |
| 1537 | mlog(ML_ERROR, "lockres %s has action %u pending\n", |
| 1538 | lockres->l_name, lockres->l_action); |
| 1539 | |
Mark Fasheh | 019d1b2 | 2007-10-05 12:09:05 -0700 | [diff] [blame] | 1540 | if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) { |
| 1541 | lockres->l_action = OCFS2_AST_ATTACH; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1542 | lkm_flags &= ~DLM_LKF_CONVERT; |
Mark Fasheh | 019d1b2 | 2007-10-05 12:09:05 -0700 | [diff] [blame] | 1543 | } else { |
| 1544 | lockres->l_action = OCFS2_AST_CONVERT; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1545 | lkm_flags |= DLM_LKF_CONVERT; |
Mark Fasheh | 019d1b2 | 2007-10-05 12:09:05 -0700 | [diff] [blame] | 1546 | } |
| 1547 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1548 | lockres->l_requested = level; |
| 1549 | lockres_or_flags(lockres, OCFS2_LOCK_BUSY); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1550 | gen = lockres_set_pending(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1551 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1552 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1553 | BUG_ON(level == DLM_LOCK_IV); |
| 1554 | BUG_ON(level == DLM_LOCK_NL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1555 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 1556 | mlog(ML_BASTS, "lockres %s, convert from %d to %d\n", |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1557 | lockres->l_name, lockres->l_level, level); |
| 1558 | |
| 1559 | /* call dlm_lock to upgrade lock now */ |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 1560 | ret = ocfs2_dlm_lock(osb->cconn, |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 1561 | level, |
| 1562 | &lockres->l_lksb, |
| 1563 | lkm_flags, |
| 1564 | lockres->l_name, |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 1565 | OCFS2_LOCK_ID_MAX_LEN - 1); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 1566 | lockres_clear_pending(lockres, gen, osb); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 1567 | if (ret) { |
| 1568 | if (!(lkm_flags & DLM_LKF_NOQUEUE) || |
| 1569 | (ret != -EAGAIN)) { |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 1570 | ocfs2_log_dlm_error("ocfs2_dlm_lock", |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 1571 | ret, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1572 | } |
| 1573 | ocfs2_recover_from_dlm_error(lockres, 1); |
| 1574 | goto out; |
| 1575 | } |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1576 | dlm_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1577 | |
Coly Li | 73ac36e | 2009-01-07 18:09:16 -0800 | [diff] [blame] | 1578 | mlog(0, "lock %s, successful return from ocfs2_dlm_lock\n", |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1579 | lockres->l_name); |
| 1580 | |
| 1581 | /* At this point we've gone inside the dlm and need to |
| 1582 | * complete our work regardless. */ |
| 1583 | catch_signals = 0; |
| 1584 | |
| 1585 | /* wait for busy to clear and carry on */ |
| 1586 | goto again; |
| 1587 | } |
| 1588 | |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 1589 | update_holders: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1590 | /* Ok, if we get here then we're good to go. */ |
| 1591 | ocfs2_inc_holders(lockres, level); |
| 1592 | |
| 1593 | ret = 0; |
| 1594 | unlock: |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 1595 | lockres_clear_flags(lockres, OCFS2_LOCK_UPCONVERT_FINISHING); |
| 1596 | |
Tariq Saeed | b1b1e15 | 2016-01-21 16:40:39 -0800 | [diff] [blame] | 1597 | /* ocfs2_unblock_lock reques on seeing OCFS2_LOCK_UPCONVERT_FINISHING */ |
| 1598 | kick_dc = (lockres->l_flags & OCFS2_LOCK_BLOCKED); |
| 1599 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1600 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Tariq Saeed | b1b1e15 | 2016-01-21 16:40:39 -0800 | [diff] [blame] | 1601 | if (kick_dc) |
| 1602 | ocfs2_wake_downconvert_thread(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1603 | out: |
| 1604 | /* |
| 1605 | * This is helping work around a lock inversion between the page lock |
| 1606 | * and dlm locks. One path holds the page lock while calling aops |
| 1607 | * which block acquiring dlm locks. The voting thread holds dlm |
| 1608 | * locks while acquiring page locks while down converting data locks. |
| 1609 | * This block is helping an aop path notice the inversion and back |
| 1610 | * off to unlock its page lock before trying the dlm lock again. |
| 1611 | */ |
| 1612 | if (wait && arg_flags & OCFS2_LOCK_NONBLOCK && |
| 1613 | mw.mw_mask & (OCFS2_LOCK_BUSY|OCFS2_LOCK_BLOCKED)) { |
| 1614 | wait = 0; |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1615 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1616 | if (__lockres_remove_mask_waiter(lockres, &mw)) { |
| 1617 | if (dlm_locked) |
| 1618 | lockres_or_flags(lockres, |
| 1619 | OCFS2_LOCK_NONBLOCK_FINISHED); |
| 1620 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1621 | ret = -EAGAIN; |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1622 | } else { |
| 1623 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1624 | goto again; |
Xue jiufei | d1e78238 | 2014-12-10 15:41:59 -0800 | [diff] [blame] | 1625 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1626 | } |
| 1627 | if (wait) { |
| 1628 | ret = ocfs2_wait_for_mask(&mw); |
| 1629 | if (ret == 0) |
| 1630 | goto again; |
| 1631 | mlog_errno(ret); |
| 1632 | } |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 1633 | ocfs2_update_lock_stats(lockres, level, &mw, ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1634 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1635 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 1636 | if (!ret && lockres->l_lockdep_map.key != NULL) { |
| 1637 | if (level == DLM_LOCK_PR) |
| 1638 | rwsem_acquire_read(&lockres->l_lockdep_map, l_subclass, |
| 1639 | !!(arg_flags & OCFS2_META_LOCK_NOQUEUE), |
| 1640 | caller_ip); |
| 1641 | else |
| 1642 | rwsem_acquire(&lockres->l_lockdep_map, l_subclass, |
| 1643 | !!(arg_flags & OCFS2_META_LOCK_NOQUEUE), |
| 1644 | caller_ip); |
| 1645 | } |
| 1646 | #endif |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1647 | return ret; |
| 1648 | } |
| 1649 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1650 | static inline int ocfs2_cluster_lock(struct ocfs2_super *osb, |
| 1651 | struct ocfs2_lock_res *lockres, |
| 1652 | int level, |
| 1653 | u32 lkm_flags, |
| 1654 | int arg_flags) |
| 1655 | { |
| 1656 | return __ocfs2_cluster_lock(osb, lockres, level, lkm_flags, arg_flags, |
| 1657 | 0, _RET_IP_); |
| 1658 | } |
| 1659 | |
| 1660 | |
| 1661 | static void __ocfs2_cluster_unlock(struct ocfs2_super *osb, |
| 1662 | struct ocfs2_lock_res *lockres, |
| 1663 | int level, |
| 1664 | unsigned long caller_ip) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1665 | { |
| 1666 | unsigned long flags; |
| 1667 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1668 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1669 | ocfs2_dec_holders(lockres, level); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1670 | ocfs2_downconvert_on_unlock(osb, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1671 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1672 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 1673 | if (lockres->l_lockdep_map.key != NULL) |
| 1674 | rwsem_release(&lockres->l_lockdep_map, 1, caller_ip); |
| 1675 | #endif |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1676 | } |
| 1677 | |
Adrian Bunk | da66116 | 2006-11-20 03:24:28 +0100 | [diff] [blame] | 1678 | static int ocfs2_create_new_lock(struct ocfs2_super *osb, |
| 1679 | struct ocfs2_lock_res *lockres, |
| 1680 | int ex, |
| 1681 | int local) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1682 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1683 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1684 | unsigned long flags; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1685 | u32 lkm_flags = local ? DLM_LKF_LOCAL : 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1686 | |
| 1687 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1688 | BUG_ON(lockres->l_flags & OCFS2_LOCK_ATTACHED); |
| 1689 | lockres_or_flags(lockres, OCFS2_LOCK_LOCAL); |
| 1690 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1691 | |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 1692 | return ocfs2_lock_create(osb, lockres, level, lkm_flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1693 | } |
| 1694 | |
| 1695 | /* Grants us an EX lock on the data and metadata resources, skipping |
| 1696 | * the normal cluster directory lookup. Use this ONLY on newly created |
| 1697 | * inodes which other nodes can't possibly see, and which haven't been |
| 1698 | * hashed in the inode hash yet. This can give us a good performance |
| 1699 | * increase as it'll skip the network broadcast normally associated |
| 1700 | * with creating a new lock resource. */ |
| 1701 | int ocfs2_create_new_inode_locks(struct inode *inode) |
| 1702 | { |
| 1703 | int ret; |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 1704 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1705 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1706 | BUG_ON(!ocfs2_inode_is_new(inode)); |
| 1707 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1708 | mlog(0, "Inode %llu\n", (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1709 | |
| 1710 | /* NOTE: That we don't increment any of the holder counts, nor |
| 1711 | * do we add anything to a journal handle. Since this is |
| 1712 | * supposed to be a new inode which the cluster doesn't know |
| 1713 | * about yet, there is no need to. As far as the LVB handling |
| 1714 | * is concerned, this is basically like acquiring an EX lock |
| 1715 | * on a resource which has an invalid one -- we'll set it |
| 1716 | * valid when we release the EX. */ |
| 1717 | |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 1718 | ret = ocfs2_create_new_lock(osb, &OCFS2_I(inode)->ip_rw_lockres, 1, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1719 | if (ret) { |
| 1720 | mlog_errno(ret); |
| 1721 | goto bail; |
| 1722 | } |
| 1723 | |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 1724 | /* |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1725 | * We don't want to use DLM_LKF_LOCAL on a meta data lock as they |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 1726 | * don't use a generation in their lock names. |
| 1727 | */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1728 | ret = ocfs2_create_new_lock(osb, &OCFS2_I(inode)->ip_inode_lockres, 1, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1729 | if (ret) { |
| 1730 | mlog_errno(ret); |
| 1731 | goto bail; |
| 1732 | } |
| 1733 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1734 | ret = ocfs2_create_new_lock(osb, &OCFS2_I(inode)->ip_open_lockres, 0, 0); |
Joseph Qi | a8f24f1b | 2016-07-26 15:21:35 -0700 | [diff] [blame] | 1735 | if (ret) |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1736 | mlog_errno(ret); |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1737 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1738 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1739 | return ret; |
| 1740 | } |
| 1741 | |
| 1742 | int ocfs2_rw_lock(struct inode *inode, int write) |
| 1743 | { |
| 1744 | int status, level; |
| 1745 | struct ocfs2_lock_res *lockres; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1746 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1747 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1748 | mlog(0, "inode %llu take %s RW lock\n", |
| 1749 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1750 | write ? "EXMODE" : "PRMODE"); |
| 1751 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1752 | if (ocfs2_mount_local(osb)) |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1753 | return 0; |
| 1754 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1755 | lockres = &OCFS2_I(inode)->ip_rw_lockres; |
| 1756 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1757 | level = write ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1758 | |
| 1759 | status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres, level, 0, |
| 1760 | 0); |
| 1761 | if (status < 0) |
| 1762 | mlog_errno(status); |
| 1763 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1764 | return status; |
| 1765 | } |
| 1766 | |
Gang He | 06e7f13 | 2018-01-31 16:15:17 -0800 | [diff] [blame^] | 1767 | int ocfs2_try_rw_lock(struct inode *inode, int write) |
| 1768 | { |
| 1769 | int status, level; |
| 1770 | struct ocfs2_lock_res *lockres; |
| 1771 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
| 1772 | |
| 1773 | mlog(0, "inode %llu try to take %s RW lock\n", |
| 1774 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 1775 | write ? "EXMODE" : "PRMODE"); |
| 1776 | |
| 1777 | if (ocfs2_mount_local(osb)) |
| 1778 | return 0; |
| 1779 | |
| 1780 | lockres = &OCFS2_I(inode)->ip_rw_lockres; |
| 1781 | |
| 1782 | level = write ? DLM_LOCK_EX : DLM_LOCK_PR; |
| 1783 | |
| 1784 | status = ocfs2_cluster_lock(osb, lockres, level, DLM_LKF_NOQUEUE, 0); |
| 1785 | return status; |
| 1786 | } |
| 1787 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1788 | void ocfs2_rw_unlock(struct inode *inode, int write) |
| 1789 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1790 | int level = write ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1791 | struct ocfs2_lock_res *lockres = &OCFS2_I(inode)->ip_rw_lockres; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1792 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1793 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1794 | mlog(0, "inode %llu drop %s RW lock\n", |
| 1795 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1796 | write ? "EXMODE" : "PRMODE"); |
| 1797 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1798 | if (!ocfs2_mount_local(osb)) |
| 1799 | ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, level); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1800 | } |
| 1801 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1802 | /* |
| 1803 | * ocfs2_open_lock always get PR mode lock. |
| 1804 | */ |
| 1805 | int ocfs2_open_lock(struct inode *inode) |
| 1806 | { |
| 1807 | int status = 0; |
| 1808 | struct ocfs2_lock_res *lockres; |
| 1809 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
| 1810 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1811 | mlog(0, "inode %llu take PRMODE open lock\n", |
| 1812 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
| 1813 | |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 1814 | if (ocfs2_is_hard_readonly(osb) || ocfs2_mount_local(osb)) |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1815 | goto out; |
| 1816 | |
| 1817 | lockres = &OCFS2_I(inode)->ip_open_lockres; |
| 1818 | |
| 1819 | status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres, |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1820 | DLM_LOCK_PR, 0, 0); |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1821 | if (status < 0) |
| 1822 | mlog_errno(status); |
| 1823 | |
| 1824 | out: |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1825 | return status; |
| 1826 | } |
| 1827 | |
| 1828 | int ocfs2_try_open_lock(struct inode *inode, int write) |
| 1829 | { |
| 1830 | int status = 0, level; |
| 1831 | struct ocfs2_lock_res *lockres; |
| 1832 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
| 1833 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1834 | mlog(0, "inode %llu try to take %s open lock\n", |
| 1835 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 1836 | write ? "EXMODE" : "PRMODE"); |
| 1837 | |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 1838 | if (ocfs2_is_hard_readonly(osb)) { |
| 1839 | if (write) |
| 1840 | status = -EROFS; |
| 1841 | goto out; |
| 1842 | } |
| 1843 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1844 | if (ocfs2_mount_local(osb)) |
| 1845 | goto out; |
| 1846 | |
| 1847 | lockres = &OCFS2_I(inode)->ip_open_lockres; |
| 1848 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1849 | level = write ? DLM_LOCK_EX : DLM_LOCK_PR; |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1850 | |
| 1851 | /* |
| 1852 | * The file system may already holding a PRMODE/EXMODE open lock. |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1853 | * Since we pass DLM_LKF_NOQUEUE, the request won't block waiting on |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1854 | * other nodes and the -EAGAIN will indicate to the caller that |
| 1855 | * this inode is still in use. |
| 1856 | */ |
| 1857 | status = ocfs2_cluster_lock(OCFS2_SB(inode->i_sb), lockres, |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1858 | level, DLM_LKF_NOQUEUE, 0); |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1859 | |
| 1860 | out: |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1861 | return status; |
| 1862 | } |
| 1863 | |
| 1864 | /* |
| 1865 | * ocfs2_open_unlock unlock PR and EX mode open locks. |
| 1866 | */ |
| 1867 | void ocfs2_open_unlock(struct inode *inode) |
| 1868 | { |
| 1869 | struct ocfs2_lock_res *lockres = &OCFS2_I(inode)->ip_open_lockres; |
| 1870 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
| 1871 | |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1872 | mlog(0, "inode %llu drop open lock\n", |
| 1873 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
| 1874 | |
| 1875 | if (ocfs2_mount_local(osb)) |
| 1876 | goto out; |
| 1877 | |
| 1878 | if(lockres->l_ro_holders) |
| 1879 | ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1880 | DLM_LOCK_PR); |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1881 | if(lockres->l_ex_holders) |
| 1882 | ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1883 | DLM_LOCK_EX); |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1884 | |
| 1885 | out: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1886 | return; |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 1887 | } |
| 1888 | |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1889 | static int ocfs2_flock_handle_signal(struct ocfs2_lock_res *lockres, |
| 1890 | int level) |
| 1891 | { |
| 1892 | int ret; |
| 1893 | struct ocfs2_super *osb = ocfs2_get_lockres_osb(lockres); |
| 1894 | unsigned long flags; |
| 1895 | struct ocfs2_mask_waiter mw; |
| 1896 | |
| 1897 | ocfs2_init_mask_waiter(&mw); |
| 1898 | |
| 1899 | retry_cancel: |
| 1900 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1901 | if (lockres->l_flags & OCFS2_LOCK_BUSY) { |
| 1902 | ret = ocfs2_prepare_cancel_convert(osb, lockres); |
| 1903 | if (ret) { |
| 1904 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1905 | ret = ocfs2_cancel_convert(osb, lockres); |
| 1906 | if (ret < 0) { |
| 1907 | mlog_errno(ret); |
| 1908 | goto out; |
| 1909 | } |
| 1910 | goto retry_cancel; |
| 1911 | } |
| 1912 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0); |
| 1913 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1914 | |
| 1915 | ocfs2_wait_for_mask(&mw); |
| 1916 | goto retry_cancel; |
| 1917 | } |
| 1918 | |
| 1919 | ret = -ERESTARTSYS; |
| 1920 | /* |
| 1921 | * We may still have gotten the lock, in which case there's no |
| 1922 | * point to restarting the syscall. |
| 1923 | */ |
| 1924 | if (lockres->l_level == level) |
| 1925 | ret = 0; |
| 1926 | |
| 1927 | mlog(0, "Cancel returning %d. flags: 0x%lx, level: %d, act: %d\n", ret, |
| 1928 | lockres->l_flags, lockres->l_level, lockres->l_action); |
| 1929 | |
| 1930 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1931 | |
| 1932 | out: |
| 1933 | return ret; |
| 1934 | } |
| 1935 | |
| 1936 | /* |
| 1937 | * ocfs2_file_lock() and ocfs2_file_unlock() map to a single pair of |
| 1938 | * flock() calls. The locking approach this requires is sufficiently |
| 1939 | * different from all other cluster lock types that we implement a |
Daniel Mack | 3ad2f3fb | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 1940 | * separate path to the "low-level" dlm calls. In particular: |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1941 | * |
| 1942 | * - No optimization of lock levels is done - we take at exactly |
| 1943 | * what's been requested. |
| 1944 | * |
| 1945 | * - No lock caching is employed. We immediately downconvert to |
| 1946 | * no-lock at unlock time. This also means flock locks never go on |
| 1947 | * the blocking list). |
| 1948 | * |
| 1949 | * - Since userspace can trivially deadlock itself with flock, we make |
| 1950 | * sure to allow cancellation of a misbehaving applications flock() |
| 1951 | * request. |
| 1952 | * |
| 1953 | * - Access to any flock lockres doesn't require concurrency, so we |
| 1954 | * can simplify the code by requiring the caller to guarantee |
| 1955 | * serialization of dlmglue flock calls. |
| 1956 | */ |
| 1957 | int ocfs2_file_lock(struct file *file, int ex, int trylock) |
| 1958 | { |
Mark Fasheh | e988cf1 | 2008-07-10 09:25:39 -0700 | [diff] [blame] | 1959 | int ret, level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
| 1960 | unsigned int lkm_flags = trylock ? DLM_LKF_NOQUEUE : 0; |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1961 | unsigned long flags; |
| 1962 | struct ocfs2_file_private *fp = file->private_data; |
| 1963 | struct ocfs2_lock_res *lockres = &fp->fp_flock; |
| 1964 | struct ocfs2_super *osb = OCFS2_SB(file->f_mapping->host->i_sb); |
| 1965 | struct ocfs2_mask_waiter mw; |
| 1966 | |
| 1967 | ocfs2_init_mask_waiter(&mw); |
| 1968 | |
| 1969 | if ((lockres->l_flags & OCFS2_LOCK_BUSY) || |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 1970 | (lockres->l_level > DLM_LOCK_NL)) { |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1971 | mlog(ML_ERROR, |
| 1972 | "File lock \"%s\" has busy or locked state: flags: 0x%lx, " |
| 1973 | "level: %u\n", lockres->l_name, lockres->l_flags, |
| 1974 | lockres->l_level); |
| 1975 | return -EINVAL; |
| 1976 | } |
| 1977 | |
| 1978 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1979 | if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) { |
| 1980 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0); |
| 1981 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 1982 | |
| 1983 | /* |
| 1984 | * Get the lock at NLMODE to start - that way we |
| 1985 | * can cancel the upconvert request if need be. |
| 1986 | */ |
Mark Fasheh | e988cf1 | 2008-07-10 09:25:39 -0700 | [diff] [blame] | 1987 | ret = ocfs2_lock_create(osb, lockres, DLM_LOCK_NL, 0); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 1988 | if (ret < 0) { |
| 1989 | mlog_errno(ret); |
| 1990 | goto out; |
| 1991 | } |
| 1992 | |
| 1993 | ret = ocfs2_wait_for_mask(&mw); |
| 1994 | if (ret) { |
| 1995 | mlog_errno(ret); |
| 1996 | goto out; |
| 1997 | } |
| 1998 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 1999 | } |
| 2000 | |
| 2001 | lockres->l_action = OCFS2_AST_CONVERT; |
Mark Fasheh | e988cf1 | 2008-07-10 09:25:39 -0700 | [diff] [blame] | 2002 | lkm_flags |= DLM_LKF_CONVERT; |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2003 | lockres->l_requested = level; |
| 2004 | lockres_or_flags(lockres, OCFS2_LOCK_BUSY); |
| 2005 | |
| 2006 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0); |
| 2007 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 2008 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 2009 | ret = ocfs2_dlm_lock(osb->cconn, level, &lockres->l_lksb, lkm_flags, |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 2010 | lockres->l_name, OCFS2_LOCK_ID_MAX_LEN - 1); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 2011 | if (ret) { |
| 2012 | if (!trylock || (ret != -EAGAIN)) { |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 2013 | ocfs2_log_dlm_error("ocfs2_dlm_lock", ret, lockres); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2014 | ret = -EINVAL; |
| 2015 | } |
| 2016 | |
| 2017 | ocfs2_recover_from_dlm_error(lockres, 1); |
| 2018 | lockres_remove_mask_waiter(lockres, &mw); |
| 2019 | goto out; |
| 2020 | } |
| 2021 | |
| 2022 | ret = ocfs2_wait_for_mask_interruptible(&mw, lockres); |
| 2023 | if (ret == -ERESTARTSYS) { |
| 2024 | /* |
| 2025 | * Userspace can cause deadlock itself with |
| 2026 | * flock(). Current behavior locally is to allow the |
| 2027 | * deadlock, but abort the system call if a signal is |
| 2028 | * received. We follow this example, otherwise a |
| 2029 | * poorly written program could sit in kernel until |
| 2030 | * reboot. |
| 2031 | * |
| 2032 | * Handling this is a bit more complicated for Ocfs2 |
| 2033 | * though. We can't exit this function with an |
| 2034 | * outstanding lock request, so a cancel convert is |
| 2035 | * required. We intentionally overwrite 'ret' - if the |
| 2036 | * cancel fails and the lock was granted, it's easier |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 2037 | * to just bubble success back up to the user. |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2038 | */ |
| 2039 | ret = ocfs2_flock_handle_signal(lockres, level); |
David Teigland | 1693a5c | 2008-01-30 16:52:53 -0800 | [diff] [blame] | 2040 | } else if (!ret && (level > lockres->l_level)) { |
| 2041 | /* Trylock failed asynchronously */ |
| 2042 | BUG_ON(!trylock); |
| 2043 | ret = -EAGAIN; |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2044 | } |
| 2045 | |
| 2046 | out: |
| 2047 | |
| 2048 | mlog(0, "Lock: \"%s\" ex: %d, trylock: %d, returns: %d\n", |
| 2049 | lockres->l_name, ex, trylock, ret); |
| 2050 | return ret; |
| 2051 | } |
| 2052 | |
| 2053 | void ocfs2_file_unlock(struct file *file) |
| 2054 | { |
| 2055 | int ret; |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 2056 | unsigned int gen; |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2057 | unsigned long flags; |
| 2058 | struct ocfs2_file_private *fp = file->private_data; |
| 2059 | struct ocfs2_lock_res *lockres = &fp->fp_flock; |
| 2060 | struct ocfs2_super *osb = OCFS2_SB(file->f_mapping->host->i_sb); |
| 2061 | struct ocfs2_mask_waiter mw; |
| 2062 | |
| 2063 | ocfs2_init_mask_waiter(&mw); |
| 2064 | |
| 2065 | if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) |
| 2066 | return; |
| 2067 | |
Mark Fasheh | e988cf1 | 2008-07-10 09:25:39 -0700 | [diff] [blame] | 2068 | if (lockres->l_level == DLM_LOCK_NL) |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2069 | return; |
| 2070 | |
| 2071 | mlog(0, "Unlock: \"%s\" flags: 0x%lx, level: %d, act: %d\n", |
| 2072 | lockres->l_name, lockres->l_flags, lockres->l_level, |
| 2073 | lockres->l_action); |
| 2074 | |
| 2075 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 2076 | /* |
| 2077 | * Fake a blocking ast for the downconvert code. |
| 2078 | */ |
| 2079 | lockres_or_flags(lockres, OCFS2_LOCK_BLOCKED); |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2080 | lockres->l_blocking = DLM_LOCK_EX; |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2081 | |
Mark Fasheh | e988cf1 | 2008-07-10 09:25:39 -0700 | [diff] [blame] | 2082 | gen = ocfs2_prepare_downconvert(lockres, DLM_LOCK_NL); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2083 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_BUSY, 0); |
| 2084 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 2085 | |
Mark Fasheh | e988cf1 | 2008-07-10 09:25:39 -0700 | [diff] [blame] | 2086 | ret = ocfs2_downconvert_lock(osb, lockres, DLM_LOCK_NL, 0, gen); |
Mark Fasheh | cf8e06f | 2007-12-20 16:43:10 -0800 | [diff] [blame] | 2087 | if (ret) { |
| 2088 | mlog_errno(ret); |
| 2089 | return; |
| 2090 | } |
| 2091 | |
| 2092 | ret = ocfs2_wait_for_mask(&mw); |
| 2093 | if (ret) |
| 2094 | mlog_errno(ret); |
| 2095 | } |
| 2096 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 2097 | static void ocfs2_downconvert_on_unlock(struct ocfs2_super *osb, |
| 2098 | struct ocfs2_lock_res *lockres) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2099 | { |
| 2100 | int kick = 0; |
| 2101 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2102 | /* If we know that another node is waiting on our lock, kick |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 2103 | * the downconvert thread * pre-emptively when we reach a release |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2104 | * condition. */ |
| 2105 | if (lockres->l_flags & OCFS2_LOCK_BLOCKED) { |
| 2106 | switch(lockres->l_blocking) { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2107 | case DLM_LOCK_EX: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2108 | if (!lockres->l_ex_holders && !lockres->l_ro_holders) |
| 2109 | kick = 1; |
| 2110 | break; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2111 | case DLM_LOCK_PR: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2112 | if (!lockres->l_ex_holders) |
| 2113 | kick = 1; |
| 2114 | break; |
| 2115 | default: |
| 2116 | BUG(); |
| 2117 | } |
| 2118 | } |
| 2119 | |
| 2120 | if (kick) |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 2121 | ocfs2_wake_downconvert_thread(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2122 | } |
| 2123 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2124 | #define OCFS2_SEC_BITS 34 |
| 2125 | #define OCFS2_SEC_SHIFT (64 - 34) |
| 2126 | #define OCFS2_NSEC_MASK ((1ULL << OCFS2_SEC_SHIFT) - 1) |
| 2127 | |
| 2128 | /* LVB only has room for 64 bits of time here so we pack it for |
| 2129 | * now. */ |
| 2130 | static u64 ocfs2_pack_timespec(struct timespec *spec) |
| 2131 | { |
| 2132 | u64 res; |
| 2133 | u64 sec = spec->tv_sec; |
| 2134 | u32 nsec = spec->tv_nsec; |
| 2135 | |
| 2136 | res = (sec << OCFS2_SEC_SHIFT) | (nsec & OCFS2_NSEC_MASK); |
| 2137 | |
| 2138 | return res; |
| 2139 | } |
| 2140 | |
| 2141 | /* Call this with the lockres locked. I am reasonably sure we don't |
| 2142 | * need ip_lock in this function as anyone who would be changing those |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2143 | * values is supposed to be blocked in ocfs2_inode_lock right now. */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2144 | static void __ocfs2_stuff_meta_lvb(struct inode *inode) |
| 2145 | { |
| 2146 | struct ocfs2_inode_info *oi = OCFS2_I(inode); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2147 | struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2148 | struct ocfs2_meta_lvb *lvb; |
| 2149 | |
Mark Fasheh | a641dc2 | 2008-12-24 16:03:48 -0800 | [diff] [blame] | 2150 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2151 | |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 2152 | /* |
| 2153 | * Invalidate the LVB of a deleted inode - this way other |
| 2154 | * nodes are forced to go to disk and discover the new inode |
| 2155 | * status. |
| 2156 | */ |
| 2157 | if (oi->ip_flags & OCFS2_INODE_DELETED) { |
| 2158 | lvb->lvb_version = 0; |
| 2159 | goto out; |
| 2160 | } |
| 2161 | |
Mark Fasheh | 4d3b83f | 2006-09-12 15:22:18 -0700 | [diff] [blame] | 2162 | lvb->lvb_version = OCFS2_LVB_VERSION; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2163 | lvb->lvb_isize = cpu_to_be64(i_size_read(inode)); |
| 2164 | lvb->lvb_iclusters = cpu_to_be32(oi->ip_clusters); |
Eric W. Biederman | 03ab30f | 2013-01-31 16:59:23 -0800 | [diff] [blame] | 2165 | lvb->lvb_iuid = cpu_to_be32(i_uid_read(inode)); |
| 2166 | lvb->lvb_igid = cpu_to_be32(i_gid_read(inode)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2167 | lvb->lvb_imode = cpu_to_be16(inode->i_mode); |
| 2168 | lvb->lvb_inlink = cpu_to_be16(inode->i_nlink); |
| 2169 | lvb->lvb_iatime_packed = |
| 2170 | cpu_to_be64(ocfs2_pack_timespec(&inode->i_atime)); |
| 2171 | lvb->lvb_ictime_packed = |
| 2172 | cpu_to_be64(ocfs2_pack_timespec(&inode->i_ctime)); |
| 2173 | lvb->lvb_imtime_packed = |
| 2174 | cpu_to_be64(ocfs2_pack_timespec(&inode->i_mtime)); |
Herbert Poetzl | ca4d147 | 2006-07-03 17:27:12 -0700 | [diff] [blame] | 2175 | lvb->lvb_iattr = cpu_to_be32(oi->ip_attr); |
Mark Fasheh | 15b1e36 | 2007-09-07 13:58:15 -0700 | [diff] [blame] | 2176 | lvb->lvb_idynfeatures = cpu_to_be16(oi->ip_dyn_features); |
Mark Fasheh | f9e2d82 | 2006-09-12 15:35:49 -0700 | [diff] [blame] | 2177 | lvb->lvb_igeneration = cpu_to_be32(inode->i_generation); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2178 | |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 2179 | out: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2180 | mlog_meta_lvb(0, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2181 | } |
| 2182 | |
| 2183 | static void ocfs2_unpack_timespec(struct timespec *spec, |
| 2184 | u64 packed_time) |
| 2185 | { |
| 2186 | spec->tv_sec = packed_time >> OCFS2_SEC_SHIFT; |
| 2187 | spec->tv_nsec = packed_time & OCFS2_NSEC_MASK; |
| 2188 | } |
| 2189 | |
| 2190 | static void ocfs2_refresh_inode_from_lvb(struct inode *inode) |
| 2191 | { |
| 2192 | struct ocfs2_inode_info *oi = OCFS2_I(inode); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2193 | struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2194 | struct ocfs2_meta_lvb *lvb; |
| 2195 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2196 | mlog_meta_lvb(0, lockres); |
| 2197 | |
Mark Fasheh | a641dc2 | 2008-12-24 16:03:48 -0800 | [diff] [blame] | 2198 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2199 | |
| 2200 | /* We're safe here without the lockres lock... */ |
| 2201 | spin_lock(&oi->ip_lock); |
| 2202 | oi->ip_clusters = be32_to_cpu(lvb->lvb_iclusters); |
| 2203 | i_size_write(inode, be64_to_cpu(lvb->lvb_isize)); |
| 2204 | |
Herbert Poetzl | ca4d147 | 2006-07-03 17:27:12 -0700 | [diff] [blame] | 2205 | oi->ip_attr = be32_to_cpu(lvb->lvb_iattr); |
Mark Fasheh | 15b1e36 | 2007-09-07 13:58:15 -0700 | [diff] [blame] | 2206 | oi->ip_dyn_features = be16_to_cpu(lvb->lvb_idynfeatures); |
Herbert Poetzl | ca4d147 | 2006-07-03 17:27:12 -0700 | [diff] [blame] | 2207 | ocfs2_set_inode_flags(inode); |
| 2208 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2209 | /* fast-symlinks are a special case */ |
| 2210 | if (S_ISLNK(inode->i_mode) && !oi->ip_clusters) |
| 2211 | inode->i_blocks = 0; |
| 2212 | else |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 2213 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2214 | |
Eric W. Biederman | 03ab30f | 2013-01-31 16:59:23 -0800 | [diff] [blame] | 2215 | i_uid_write(inode, be32_to_cpu(lvb->lvb_iuid)); |
| 2216 | i_gid_write(inode, be32_to_cpu(lvb->lvb_igid)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2217 | inode->i_mode = be16_to_cpu(lvb->lvb_imode); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2218 | set_nlink(inode, be16_to_cpu(lvb->lvb_inlink)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2219 | ocfs2_unpack_timespec(&inode->i_atime, |
| 2220 | be64_to_cpu(lvb->lvb_iatime_packed)); |
| 2221 | ocfs2_unpack_timespec(&inode->i_mtime, |
| 2222 | be64_to_cpu(lvb->lvb_imtime_packed)); |
| 2223 | ocfs2_unpack_timespec(&inode->i_ctime, |
| 2224 | be64_to_cpu(lvb->lvb_ictime_packed)); |
| 2225 | spin_unlock(&oi->ip_lock); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2226 | } |
| 2227 | |
Mark Fasheh | f9e2d82 | 2006-09-12 15:35:49 -0700 | [diff] [blame] | 2228 | static inline int ocfs2_meta_lvb_is_trustable(struct inode *inode, |
| 2229 | struct ocfs2_lock_res *lockres) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2230 | { |
Mark Fasheh | a641dc2 | 2008-12-24 16:03:48 -0800 | [diff] [blame] | 2231 | struct ocfs2_meta_lvb *lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2232 | |
Joel Becker | 1c520df | 2009-06-19 15:14:13 -0700 | [diff] [blame] | 2233 | if (ocfs2_dlm_lvb_valid(&lockres->l_lksb) |
| 2234 | && lvb->lvb_version == OCFS2_LVB_VERSION |
Mark Fasheh | f9e2d82 | 2006-09-12 15:35:49 -0700 | [diff] [blame] | 2235 | && be32_to_cpu(lvb->lvb_igeneration) == inode->i_generation) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2236 | return 1; |
| 2237 | return 0; |
| 2238 | } |
| 2239 | |
| 2240 | /* Determine whether a lock resource needs to be refreshed, and |
| 2241 | * arbitrate who gets to refresh it. |
| 2242 | * |
| 2243 | * 0 means no refresh needed. |
| 2244 | * |
| 2245 | * > 0 means you need to refresh this and you MUST call |
| 2246 | * ocfs2_complete_lock_res_refresh afterwards. */ |
| 2247 | static int ocfs2_should_refresh_lock_res(struct ocfs2_lock_res *lockres) |
| 2248 | { |
| 2249 | unsigned long flags; |
| 2250 | int status = 0; |
| 2251 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2252 | refresh_check: |
| 2253 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 2254 | if (!(lockres->l_flags & OCFS2_LOCK_NEEDS_REFRESH)) { |
| 2255 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 2256 | goto bail; |
| 2257 | } |
| 2258 | |
| 2259 | if (lockres->l_flags & OCFS2_LOCK_REFRESHING) { |
| 2260 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 2261 | |
| 2262 | ocfs2_wait_on_refreshing_lock(lockres); |
| 2263 | goto refresh_check; |
| 2264 | } |
| 2265 | |
| 2266 | /* Ok, I'll be the one to refresh this lock. */ |
| 2267 | lockres_or_flags(lockres, OCFS2_LOCK_REFRESHING); |
| 2268 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 2269 | |
| 2270 | status = 1; |
| 2271 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2272 | mlog(0, "status %d\n", status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2273 | return status; |
| 2274 | } |
| 2275 | |
| 2276 | /* If status is non zero, I'll mark it as not being in refresh |
| 2277 | * anymroe, but i won't clear the needs refresh flag. */ |
| 2278 | static inline void ocfs2_complete_lock_res_refresh(struct ocfs2_lock_res *lockres, |
| 2279 | int status) |
| 2280 | { |
| 2281 | unsigned long flags; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2282 | |
| 2283 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 2284 | lockres_clear_flags(lockres, OCFS2_LOCK_REFRESHING); |
| 2285 | if (!status) |
| 2286 | lockres_clear_flags(lockres, OCFS2_LOCK_NEEDS_REFRESH); |
| 2287 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 2288 | |
| 2289 | wake_up(&lockres->l_event); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2290 | } |
| 2291 | |
| 2292 | /* may or may not return a bh if it went to disk. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2293 | static int ocfs2_inode_lock_update(struct inode *inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2294 | struct buffer_head **bh) |
| 2295 | { |
| 2296 | int status = 0; |
| 2297 | struct ocfs2_inode_info *oi = OCFS2_I(inode); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2298 | struct ocfs2_lock_res *lockres = &oi->ip_inode_lockres; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2299 | struct ocfs2_dinode *fe; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2300 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2301 | |
Mark Fasheh | be9e986 | 2007-04-18 15:22:08 -0700 | [diff] [blame] | 2302 | if (ocfs2_mount_local(osb)) |
| 2303 | goto bail; |
| 2304 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2305 | spin_lock(&oi->ip_lock); |
| 2306 | if (oi->ip_flags & OCFS2_INODE_DELETED) { |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2307 | mlog(0, "Orphaned inode %llu was deleted while we " |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2308 | "were waiting on a lock. ip_flags = 0x%x\n", |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2309 | (unsigned long long)oi->ip_blkno, oi->ip_flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2310 | spin_unlock(&oi->ip_lock); |
| 2311 | status = -ENOENT; |
| 2312 | goto bail; |
| 2313 | } |
| 2314 | spin_unlock(&oi->ip_lock); |
| 2315 | |
Mark Fasheh | be9e986 | 2007-04-18 15:22:08 -0700 | [diff] [blame] | 2316 | if (!ocfs2_should_refresh_lock_res(lockres)) |
| 2317 | goto bail; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2318 | |
| 2319 | /* This will discard any caching information we might have had |
| 2320 | * for the inode metadata. */ |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 2321 | ocfs2_metadata_cache_purge(INODE_CACHE(inode)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2322 | |
Mark Fasheh | 8341897 | 2007-04-23 18:53:12 -0700 | [diff] [blame] | 2323 | ocfs2_extent_map_trunc(inode, 0); |
| 2324 | |
Mark Fasheh | be9e986 | 2007-04-18 15:22:08 -0700 | [diff] [blame] | 2325 | if (ocfs2_meta_lvb_is_trustable(inode, lockres)) { |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2326 | mlog(0, "Trusting LVB on inode %llu\n", |
| 2327 | (unsigned long long)oi->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2328 | ocfs2_refresh_inode_from_lvb(inode); |
| 2329 | } else { |
| 2330 | /* Boo, we have to go to disk. */ |
| 2331 | /* read bh, cast, ocfs2_refresh_inode */ |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 2332 | status = ocfs2_read_inode_block(inode, bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2333 | if (status < 0) { |
| 2334 | mlog_errno(status); |
| 2335 | goto bail_refresh; |
| 2336 | } |
| 2337 | fe = (struct ocfs2_dinode *) (*bh)->b_data; |
| 2338 | |
| 2339 | /* This is a good chance to make sure we're not |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 2340 | * locking an invalid object. ocfs2_read_inode_block() |
| 2341 | * already checked that the inode block is sane. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2342 | * |
| 2343 | * We bug on a stale inode here because we checked |
| 2344 | * above whether it was wiped from disk. The wiping |
| 2345 | * node provides a guarantee that we receive that |
| 2346 | * message and can mark the inode before dropping any |
| 2347 | * locks associated with it. */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2348 | mlog_bug_on_msg(inode->i_generation != |
| 2349 | le32_to_cpu(fe->i_generation), |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2350 | "Invalid dinode %llu disk generation: %u " |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2351 | "inode->i_generation: %u\n", |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2352 | (unsigned long long)oi->ip_blkno, |
| 2353 | le32_to_cpu(fe->i_generation), |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2354 | inode->i_generation); |
| 2355 | mlog_bug_on_msg(le64_to_cpu(fe->i_dtime) || |
| 2356 | !(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL)), |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2357 | "Stale dinode %llu dtime: %llu flags: 0x%x\n", |
| 2358 | (unsigned long long)oi->ip_blkno, |
| 2359 | (unsigned long long)le64_to_cpu(fe->i_dtime), |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2360 | le32_to_cpu(fe->i_flags)); |
| 2361 | |
| 2362 | ocfs2_refresh_inode(inode, fe); |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 2363 | ocfs2_track_lock_refresh(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2364 | } |
| 2365 | |
| 2366 | status = 0; |
| 2367 | bail_refresh: |
Mark Fasheh | be9e986 | 2007-04-18 15:22:08 -0700 | [diff] [blame] | 2368 | ocfs2_complete_lock_res_refresh(lockres, status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2369 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2370 | return status; |
| 2371 | } |
| 2372 | |
| 2373 | static int ocfs2_assign_bh(struct inode *inode, |
| 2374 | struct buffer_head **ret_bh, |
| 2375 | struct buffer_head *passed_bh) |
| 2376 | { |
| 2377 | int status; |
| 2378 | |
| 2379 | if (passed_bh) { |
| 2380 | /* Ok, the update went to disk for us, use the |
| 2381 | * returned bh. */ |
| 2382 | *ret_bh = passed_bh; |
| 2383 | get_bh(*ret_bh); |
| 2384 | |
| 2385 | return 0; |
| 2386 | } |
| 2387 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 2388 | status = ocfs2_read_inode_block(inode, ret_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2389 | if (status < 0) |
| 2390 | mlog_errno(status); |
| 2391 | |
| 2392 | return status; |
| 2393 | } |
| 2394 | |
| 2395 | /* |
| 2396 | * returns < 0 error if the callback will never be called, otherwise |
| 2397 | * the result of the lock will be communicated via the callback. |
| 2398 | */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 2399 | int ocfs2_inode_lock_full_nested(struct inode *inode, |
| 2400 | struct buffer_head **ret_bh, |
| 2401 | int ex, |
| 2402 | int arg_flags, |
| 2403 | int subclass) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2404 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2405 | int status, level, acquired; |
| 2406 | u32 dlm_flags; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2407 | struct ocfs2_lock_res *lockres = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2408 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
| 2409 | struct buffer_head *local_bh = NULL; |
| 2410 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2411 | mlog(0, "inode %llu, take %s META lock\n", |
| 2412 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2413 | ex ? "EXMODE" : "PRMODE"); |
| 2414 | |
| 2415 | status = 0; |
| 2416 | acquired = 0; |
| 2417 | /* We'll allow faking a readonly metadata lock for |
| 2418 | * rodevices. */ |
| 2419 | if (ocfs2_is_hard_readonly(osb)) { |
| 2420 | if (ex) |
| 2421 | status = -EROFS; |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 2422 | goto getbh; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2423 | } |
| 2424 | |
Eric Ren | 439a36b | 2017-02-22 15:40:41 -0800 | [diff] [blame] | 2425 | if ((arg_flags & OCFS2_META_LOCK_GETBH) || |
| 2426 | ocfs2_mount_local(osb)) |
| 2427 | goto update; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2428 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2429 | if (!(arg_flags & OCFS2_META_LOCK_RECOVERY)) |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 2430 | ocfs2_wait_for_recovery(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2431 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2432 | lockres = &OCFS2_I(inode)->ip_inode_lockres; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2433 | level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2434 | dlm_flags = 0; |
| 2435 | if (arg_flags & OCFS2_META_LOCK_NOQUEUE) |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2436 | dlm_flags |= DLM_LKF_NOQUEUE; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2437 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 2438 | status = __ocfs2_cluster_lock(osb, lockres, level, dlm_flags, |
| 2439 | arg_flags, subclass, _RET_IP_); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2440 | if (status < 0) { |
Zach Brown | 41003a7 | 2013-05-07 16:18:25 -0700 | [diff] [blame] | 2441 | if (status != -EAGAIN) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2442 | mlog_errno(status); |
| 2443 | goto bail; |
| 2444 | } |
| 2445 | |
| 2446 | /* Notify the error cleanup path to drop the cluster lock. */ |
| 2447 | acquired = 1; |
| 2448 | |
| 2449 | /* We wait twice because a node may have died while we were in |
| 2450 | * the lower dlm layers. The second time though, we've |
| 2451 | * committed to owning this lock so we don't allow signals to |
| 2452 | * abort the operation. */ |
| 2453 | if (!(arg_flags & OCFS2_META_LOCK_RECOVERY)) |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame] | 2454 | ocfs2_wait_for_recovery(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2455 | |
Eric Ren | 439a36b | 2017-02-22 15:40:41 -0800 | [diff] [blame] | 2456 | update: |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 2457 | /* |
| 2458 | * We only see this flag if we're being called from |
| 2459 | * ocfs2_read_locked_inode(). It means we're locking an inode |
| 2460 | * which hasn't been populated yet, so clear the refresh flag |
| 2461 | * and let the caller handle it. |
| 2462 | */ |
| 2463 | if (inode->i_state & I_NEW) { |
| 2464 | status = 0; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2465 | if (lockres) |
| 2466 | ocfs2_complete_lock_res_refresh(lockres, 0); |
Mark Fasheh | 24c19ef | 2006-09-22 17:28:19 -0700 | [diff] [blame] | 2467 | goto bail; |
| 2468 | } |
| 2469 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2470 | /* This is fun. The caller may want a bh back, or it may |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2471 | * not. ocfs2_inode_lock_update definitely wants one in, but |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2472 | * may or may not read one, depending on what's in the |
| 2473 | * LVB. The result of all of this is that we've *only* gone to |
| 2474 | * disk if we have to, so the complexity is worthwhile. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2475 | status = ocfs2_inode_lock_update(inode, &local_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2476 | if (status < 0) { |
| 2477 | if (status != -ENOENT) |
| 2478 | mlog_errno(status); |
| 2479 | goto bail; |
| 2480 | } |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 2481 | getbh: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2482 | if (ret_bh) { |
| 2483 | status = ocfs2_assign_bh(inode, ret_bh, local_bh); |
| 2484 | if (status < 0) { |
| 2485 | mlog_errno(status); |
| 2486 | goto bail; |
| 2487 | } |
| 2488 | } |
| 2489 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2490 | bail: |
| 2491 | if (status < 0) { |
| 2492 | if (ret_bh && (*ret_bh)) { |
| 2493 | brelse(*ret_bh); |
| 2494 | *ret_bh = NULL; |
| 2495 | } |
| 2496 | if (acquired) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2497 | ocfs2_inode_unlock(inode, ex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2498 | } |
| 2499 | |
| 2500 | if (local_bh) |
| 2501 | brelse(local_bh); |
| 2502 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2503 | return status; |
| 2504 | } |
| 2505 | |
| 2506 | /* |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 2507 | * This is working around a lock inversion between tasks acquiring DLM |
| 2508 | * locks while holding a page lock and the downconvert thread which |
| 2509 | * blocks dlm lock acquiry while acquiring page locks. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2510 | * |
| 2511 | * ** These _with_page variantes are only intended to be called from aop |
| 2512 | * methods that hold page locks and return a very specific *positive* error |
| 2513 | * code that aop methods pass up to the VFS -- test for errors with != 0. ** |
| 2514 | * |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 2515 | * The DLM is called such that it returns -EAGAIN if it would have |
| 2516 | * blocked waiting for the downconvert thread. In that case we unlock |
| 2517 | * our page so the downconvert thread can make progress. Once we've |
| 2518 | * done this we have to return AOP_TRUNCATED_PAGE so the aop method |
| 2519 | * that called us can bubble that back up into the VFS who will then |
| 2520 | * immediately retry the aop call. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2521 | */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2522 | int ocfs2_inode_lock_with_page(struct inode *inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2523 | struct buffer_head **ret_bh, |
| 2524 | int ex, |
| 2525 | struct page *page) |
| 2526 | { |
| 2527 | int ret; |
| 2528 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2529 | ret = ocfs2_inode_lock_full(inode, ret_bh, ex, OCFS2_LOCK_NONBLOCK); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2530 | if (ret == -EAGAIN) { |
| 2531 | unlock_page(page); |
Gang He | ff26cc1 | 2018-01-31 16:14:48 -0800 | [diff] [blame] | 2532 | /* |
| 2533 | * If we can't get inode lock immediately, we should not return |
| 2534 | * directly here, since this will lead to a softlockup problem. |
| 2535 | * The method is to get a blocking lock and immediately unlock |
| 2536 | * before returning, this can avoid CPU resource waste due to |
| 2537 | * lots of retries, and benefits fairness in getting lock. |
| 2538 | */ |
| 2539 | if (ocfs2_inode_lock(inode, ret_bh, ex) == 0) |
| 2540 | ocfs2_inode_unlock(inode, ex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2541 | ret = AOP_TRUNCATED_PAGE; |
| 2542 | } |
| 2543 | |
| 2544 | return ret; |
| 2545 | } |
| 2546 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2547 | int ocfs2_inode_lock_atime(struct inode *inode, |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 2548 | struct vfsmount *vfsmnt, |
| 2549 | int *level) |
| 2550 | { |
| 2551 | int ret; |
| 2552 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2553 | ret = ocfs2_inode_lock(inode, NULL, 0); |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 2554 | if (ret < 0) { |
| 2555 | mlog_errno(ret); |
| 2556 | return ret; |
| 2557 | } |
| 2558 | |
| 2559 | /* |
| 2560 | * If we should update atime, we will get EX lock, |
| 2561 | * otherwise we just get PR lock. |
| 2562 | */ |
| 2563 | if (ocfs2_should_update_atime(inode, vfsmnt)) { |
| 2564 | struct buffer_head *bh = NULL; |
| 2565 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2566 | ocfs2_inode_unlock(inode, 0); |
| 2567 | ret = ocfs2_inode_lock(inode, &bh, 1); |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 2568 | if (ret < 0) { |
| 2569 | mlog_errno(ret); |
| 2570 | return ret; |
| 2571 | } |
| 2572 | *level = 1; |
| 2573 | if (ocfs2_should_update_atime(inode, vfsmnt)) |
| 2574 | ocfs2_update_inode_atime(inode, bh); |
| 2575 | if (bh) |
| 2576 | brelse(bh); |
| 2577 | } else |
| 2578 | *level = 0; |
| 2579 | |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 2580 | return ret; |
| 2581 | } |
| 2582 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2583 | void ocfs2_inode_unlock(struct inode *inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2584 | int ex) |
| 2585 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2586 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 2587 | struct ocfs2_lock_res *lockres = &OCFS2_I(inode)->ip_inode_lockres; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2588 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2589 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 2590 | mlog(0, "inode %llu drop %s META lock\n", |
| 2591 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2592 | ex ? "EXMODE" : "PRMODE"); |
| 2593 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2594 | if (!ocfs2_is_hard_readonly(OCFS2_SB(inode->i_sb)) && |
| 2595 | !ocfs2_mount_local(osb)) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2596 | ocfs2_cluster_unlock(OCFS2_SB(inode->i_sb), lockres, level); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2597 | } |
| 2598 | |
Eric Ren | 439a36b | 2017-02-22 15:40:41 -0800 | [diff] [blame] | 2599 | /* |
| 2600 | * This _tracker variantes are introduced to deal with the recursive cluster |
| 2601 | * locking issue. The idea is to keep track of a lock holder on the stack of |
| 2602 | * the current process. If there's a lock holder on the stack, we know the |
| 2603 | * task context is already protected by cluster locking. Currently, they're |
| 2604 | * used in some VFS entry routines. |
| 2605 | * |
| 2606 | * return < 0 on error, return == 0 if there's no lock holder on the stack |
| 2607 | * before this call, return == 1 if this call would be a recursive locking. |
| 2608 | */ |
| 2609 | int ocfs2_inode_lock_tracker(struct inode *inode, |
| 2610 | struct buffer_head **ret_bh, |
| 2611 | int ex, |
| 2612 | struct ocfs2_lock_holder *oh) |
| 2613 | { |
| 2614 | int status; |
| 2615 | int arg_flags = 0, has_locked; |
| 2616 | struct ocfs2_lock_res *lockres; |
| 2617 | |
| 2618 | lockres = &OCFS2_I(inode)->ip_inode_lockres; |
| 2619 | has_locked = ocfs2_is_locked_by_me(lockres); |
| 2620 | /* Just get buffer head if the cluster lock has been taken */ |
| 2621 | if (has_locked) |
| 2622 | arg_flags = OCFS2_META_LOCK_GETBH; |
| 2623 | |
| 2624 | if (likely(!has_locked || ret_bh)) { |
| 2625 | status = ocfs2_inode_lock_full(inode, ret_bh, ex, arg_flags); |
| 2626 | if (status < 0) { |
| 2627 | if (status != -ENOENT) |
| 2628 | mlog_errno(status); |
| 2629 | return status; |
| 2630 | } |
| 2631 | } |
| 2632 | if (!has_locked) |
| 2633 | ocfs2_add_holder(lockres, oh); |
| 2634 | |
| 2635 | return has_locked; |
| 2636 | } |
| 2637 | |
| 2638 | void ocfs2_inode_unlock_tracker(struct inode *inode, |
| 2639 | int ex, |
| 2640 | struct ocfs2_lock_holder *oh, |
| 2641 | int had_lock) |
| 2642 | { |
| 2643 | struct ocfs2_lock_res *lockres; |
| 2644 | |
| 2645 | lockres = &OCFS2_I(inode)->ip_inode_lockres; |
Eric Ren | 8818efa | 2017-06-23 15:08:55 -0700 | [diff] [blame] | 2646 | /* had_lock means that the currect process already takes the cluster |
| 2647 | * lock previously. If had_lock is 1, we have nothing to do here, and |
| 2648 | * it will get unlocked where we got the lock. |
| 2649 | */ |
Eric Ren | 439a36b | 2017-02-22 15:40:41 -0800 | [diff] [blame] | 2650 | if (!had_lock) { |
| 2651 | ocfs2_remove_holder(lockres, oh); |
| 2652 | ocfs2_inode_unlock(inode, ex); |
| 2653 | } |
| 2654 | } |
| 2655 | |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 2656 | int ocfs2_orphan_scan_lock(struct ocfs2_super *osb, u32 *seqno) |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2657 | { |
| 2658 | struct ocfs2_lock_res *lockres; |
| 2659 | struct ocfs2_orphan_scan_lvb *lvb; |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2660 | int status = 0; |
| 2661 | |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 2662 | if (ocfs2_is_hard_readonly(osb)) |
| 2663 | return -EROFS; |
| 2664 | |
| 2665 | if (ocfs2_mount_local(osb)) |
| 2666 | return 0; |
| 2667 | |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2668 | lockres = &osb->osb_orphan_scan.os_lockres; |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 2669 | status = ocfs2_cluster_lock(osb, lockres, DLM_LOCK_EX, 0, 0); |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2670 | if (status < 0) |
| 2671 | return status; |
| 2672 | |
| 2673 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Joel Becker | 1c520df | 2009-06-19 15:14:13 -0700 | [diff] [blame] | 2674 | if (ocfs2_dlm_lvb_valid(&lockres->l_lksb) && |
| 2675 | lvb->lvb_version == OCFS2_ORPHAN_LVB_VERSION) |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2676 | *seqno = be32_to_cpu(lvb->lvb_os_seqno); |
Sunil Mushran | 3211949 | 2009-06-19 16:53:18 -0700 | [diff] [blame] | 2677 | else |
| 2678 | *seqno = osb->osb_orphan_scan.os_seqno + 1; |
| 2679 | |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2680 | return status; |
| 2681 | } |
| 2682 | |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 2683 | void ocfs2_orphan_scan_unlock(struct ocfs2_super *osb, u32 seqno) |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2684 | { |
| 2685 | struct ocfs2_lock_res *lockres; |
| 2686 | struct ocfs2_orphan_scan_lvb *lvb; |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2687 | |
Sunil Mushran | df152c2 | 2009-06-22 11:40:07 -0700 | [diff] [blame] | 2688 | if (!ocfs2_is_hard_readonly(osb) && !ocfs2_mount_local(osb)) { |
| 2689 | lockres = &osb->osb_orphan_scan.os_lockres; |
| 2690 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
| 2691 | lvb->lvb_version = OCFS2_ORPHAN_LVB_VERSION; |
| 2692 | lvb->lvb_os_seqno = cpu_to_be32(seqno); |
| 2693 | ocfs2_cluster_unlock(osb, lockres, DLM_LOCK_EX); |
| 2694 | } |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 2695 | } |
| 2696 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2697 | int ocfs2_super_lock(struct ocfs2_super *osb, |
| 2698 | int ex) |
| 2699 | { |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2700 | int status = 0; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2701 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2702 | struct ocfs2_lock_res *lockres = &osb->osb_super_lockres; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2703 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2704 | if (ocfs2_is_hard_readonly(osb)) |
| 2705 | return -EROFS; |
| 2706 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2707 | if (ocfs2_mount_local(osb)) |
| 2708 | goto bail; |
| 2709 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2710 | status = ocfs2_cluster_lock(osb, lockres, level, 0, 0); |
| 2711 | if (status < 0) { |
| 2712 | mlog_errno(status); |
| 2713 | goto bail; |
| 2714 | } |
| 2715 | |
| 2716 | /* The super block lock path is really in the best position to |
| 2717 | * know when resources covered by the lock need to be |
| 2718 | * refreshed, so we do it here. Of course, making sense of |
| 2719 | * everything is up to the caller :) */ |
| 2720 | status = ocfs2_should_refresh_lock_res(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2721 | if (status) { |
Mark Fasheh | 8e8a460 | 2008-02-01 11:59:09 -0800 | [diff] [blame] | 2722 | status = ocfs2_refresh_slot_info(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2723 | |
| 2724 | ocfs2_complete_lock_res_refresh(lockres, status); |
| 2725 | |
Junxiao Bi | 3278bb7 | 2013-02-21 16:42:45 -0800 | [diff] [blame] | 2726 | if (status < 0) { |
| 2727 | ocfs2_cluster_unlock(osb, lockres, level); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2728 | mlog_errno(status); |
Junxiao Bi | 3278bb7 | 2013-02-21 16:42:45 -0800 | [diff] [blame] | 2729 | } |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 2730 | ocfs2_track_lock_refresh(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2731 | } |
| 2732 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2733 | return status; |
| 2734 | } |
| 2735 | |
| 2736 | void ocfs2_super_unlock(struct ocfs2_super *osb, |
| 2737 | int ex) |
| 2738 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2739 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2740 | struct ocfs2_lock_res *lockres = &osb->osb_super_lockres; |
| 2741 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2742 | if (!ocfs2_mount_local(osb)) |
| 2743 | ocfs2_cluster_unlock(osb, lockres, level); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2744 | } |
| 2745 | |
| 2746 | int ocfs2_rename_lock(struct ocfs2_super *osb) |
| 2747 | { |
| 2748 | int status; |
| 2749 | struct ocfs2_lock_res *lockres = &osb->osb_rename_lockres; |
| 2750 | |
| 2751 | if (ocfs2_is_hard_readonly(osb)) |
| 2752 | return -EROFS; |
| 2753 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2754 | if (ocfs2_mount_local(osb)) |
| 2755 | return 0; |
| 2756 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2757 | status = ocfs2_cluster_lock(osb, lockres, DLM_LOCK_EX, 0, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2758 | if (status < 0) |
| 2759 | mlog_errno(status); |
| 2760 | |
| 2761 | return status; |
| 2762 | } |
| 2763 | |
| 2764 | void ocfs2_rename_unlock(struct ocfs2_super *osb) |
| 2765 | { |
| 2766 | struct ocfs2_lock_res *lockres = &osb->osb_rename_lockres; |
| 2767 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2768 | if (!ocfs2_mount_local(osb)) |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2769 | ocfs2_cluster_unlock(osb, lockres, DLM_LOCK_EX); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2770 | } |
| 2771 | |
wengang wang | 6ca497a | 2009-03-06 21:29:10 +0800 | [diff] [blame] | 2772 | int ocfs2_nfs_sync_lock(struct ocfs2_super *osb, int ex) |
| 2773 | { |
| 2774 | int status; |
| 2775 | struct ocfs2_lock_res *lockres = &osb->osb_nfs_sync_lockres; |
| 2776 | |
| 2777 | if (ocfs2_is_hard_readonly(osb)) |
| 2778 | return -EROFS; |
| 2779 | |
| 2780 | if (ocfs2_mount_local(osb)) |
| 2781 | return 0; |
| 2782 | |
| 2783 | status = ocfs2_cluster_lock(osb, lockres, ex ? LKM_EXMODE : LKM_PRMODE, |
| 2784 | 0, 0); |
| 2785 | if (status < 0) |
| 2786 | mlog(ML_ERROR, "lock on nfs sync lock failed %d\n", status); |
| 2787 | |
| 2788 | return status; |
| 2789 | } |
| 2790 | |
| 2791 | void ocfs2_nfs_sync_unlock(struct ocfs2_super *osb, int ex) |
| 2792 | { |
| 2793 | struct ocfs2_lock_res *lockres = &osb->osb_nfs_sync_lockres; |
| 2794 | |
| 2795 | if (!ocfs2_mount_local(osb)) |
| 2796 | ocfs2_cluster_unlock(osb, lockres, |
| 2797 | ex ? LKM_EXMODE : LKM_PRMODE); |
| 2798 | } |
| 2799 | |
Gang He | 4882abe | 2018-01-31 16:15:10 -0800 | [diff] [blame] | 2800 | int ocfs2_trim_fs_lock(struct ocfs2_super *osb, |
| 2801 | struct ocfs2_trim_fs_info *info, int trylock) |
| 2802 | { |
| 2803 | int status; |
| 2804 | struct ocfs2_trim_fs_lvb *lvb; |
| 2805 | struct ocfs2_lock_res *lockres = &osb->osb_trim_fs_lockres; |
| 2806 | |
| 2807 | if (info) |
| 2808 | info->tf_valid = 0; |
| 2809 | |
| 2810 | if (ocfs2_is_hard_readonly(osb)) |
| 2811 | return -EROFS; |
| 2812 | |
| 2813 | if (ocfs2_mount_local(osb)) |
| 2814 | return 0; |
| 2815 | |
| 2816 | status = ocfs2_cluster_lock(osb, lockres, DLM_LOCK_EX, |
| 2817 | trylock ? DLM_LKF_NOQUEUE : 0, 0); |
| 2818 | if (status < 0) { |
| 2819 | if (status != -EAGAIN) |
| 2820 | mlog_errno(status); |
| 2821 | return status; |
| 2822 | } |
| 2823 | |
| 2824 | if (info) { |
| 2825 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
| 2826 | if (ocfs2_dlm_lvb_valid(&lockres->l_lksb) && |
| 2827 | lvb->lvb_version == OCFS2_TRIMFS_LVB_VERSION) { |
| 2828 | info->tf_valid = 1; |
| 2829 | info->tf_success = lvb->lvb_success; |
| 2830 | info->tf_nodenum = be32_to_cpu(lvb->lvb_nodenum); |
| 2831 | info->tf_start = be64_to_cpu(lvb->lvb_start); |
| 2832 | info->tf_len = be64_to_cpu(lvb->lvb_len); |
| 2833 | info->tf_minlen = be64_to_cpu(lvb->lvb_minlen); |
| 2834 | info->tf_trimlen = be64_to_cpu(lvb->lvb_trimlen); |
| 2835 | } |
| 2836 | } |
| 2837 | |
| 2838 | return status; |
| 2839 | } |
| 2840 | |
| 2841 | void ocfs2_trim_fs_unlock(struct ocfs2_super *osb, |
| 2842 | struct ocfs2_trim_fs_info *info) |
| 2843 | { |
| 2844 | struct ocfs2_trim_fs_lvb *lvb; |
| 2845 | struct ocfs2_lock_res *lockres = &osb->osb_trim_fs_lockres; |
| 2846 | |
| 2847 | if (ocfs2_mount_local(osb)) |
| 2848 | return; |
| 2849 | |
| 2850 | if (info) { |
| 2851 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
| 2852 | lvb->lvb_version = OCFS2_TRIMFS_LVB_VERSION; |
| 2853 | lvb->lvb_success = info->tf_success; |
| 2854 | lvb->lvb_nodenum = cpu_to_be32(info->tf_nodenum); |
| 2855 | lvb->lvb_start = cpu_to_be64(info->tf_start); |
| 2856 | lvb->lvb_len = cpu_to_be64(info->tf_len); |
| 2857 | lvb->lvb_minlen = cpu_to_be64(info->tf_minlen); |
| 2858 | lvb->lvb_trimlen = cpu_to_be64(info->tf_trimlen); |
| 2859 | } |
| 2860 | |
| 2861 | ocfs2_cluster_unlock(osb, lockres, DLM_LOCK_EX); |
| 2862 | } |
| 2863 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 2864 | int ocfs2_dentry_lock(struct dentry *dentry, int ex) |
| 2865 | { |
| 2866 | int ret; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2867 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 2868 | struct ocfs2_dentry_lock *dl = dentry->d_fsdata; |
| 2869 | struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb); |
| 2870 | |
| 2871 | BUG_ON(!dl); |
| 2872 | |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 2873 | if (ocfs2_is_hard_readonly(osb)) { |
| 2874 | if (ex) |
| 2875 | return -EROFS; |
| 2876 | return 0; |
| 2877 | } |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 2878 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2879 | if (ocfs2_mount_local(osb)) |
| 2880 | return 0; |
| 2881 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 2882 | ret = ocfs2_cluster_lock(osb, &dl->dl_lockres, level, 0, 0); |
| 2883 | if (ret < 0) |
| 2884 | mlog_errno(ret); |
| 2885 | |
| 2886 | return ret; |
| 2887 | } |
| 2888 | |
| 2889 | void ocfs2_dentry_unlock(struct dentry *dentry, int ex) |
| 2890 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 2891 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 2892 | struct ocfs2_dentry_lock *dl = dentry->d_fsdata; |
| 2893 | struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb); |
| 2894 | |
Tiger Yang | 03efed8 | 2011-05-28 00:34:19 +0800 | [diff] [blame] | 2895 | if (!ocfs2_is_hard_readonly(osb) && !ocfs2_mount_local(osb)) |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 2896 | ocfs2_cluster_unlock(osb, &dl->dl_lockres, level); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 2897 | } |
| 2898 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2899 | /* Reference counting of the dlm debug structure. We want this because |
| 2900 | * open references on the debug inodes can live on after a mount, so |
| 2901 | * we can't rely on the ocfs2_super to always exist. */ |
| 2902 | static void ocfs2_dlm_debug_free(struct kref *kref) |
| 2903 | { |
| 2904 | struct ocfs2_dlm_debug *dlm_debug; |
| 2905 | |
| 2906 | dlm_debug = container_of(kref, struct ocfs2_dlm_debug, d_refcnt); |
| 2907 | |
| 2908 | kfree(dlm_debug); |
| 2909 | } |
| 2910 | |
| 2911 | void ocfs2_put_dlm_debug(struct ocfs2_dlm_debug *dlm_debug) |
| 2912 | { |
| 2913 | if (dlm_debug) |
| 2914 | kref_put(&dlm_debug->d_refcnt, ocfs2_dlm_debug_free); |
| 2915 | } |
| 2916 | |
| 2917 | static void ocfs2_get_dlm_debug(struct ocfs2_dlm_debug *debug) |
| 2918 | { |
| 2919 | kref_get(&debug->d_refcnt); |
| 2920 | } |
| 2921 | |
| 2922 | struct ocfs2_dlm_debug *ocfs2_new_dlm_debug(void) |
| 2923 | { |
| 2924 | struct ocfs2_dlm_debug *dlm_debug; |
| 2925 | |
| 2926 | dlm_debug = kmalloc(sizeof(struct ocfs2_dlm_debug), GFP_KERNEL); |
| 2927 | if (!dlm_debug) { |
| 2928 | mlog_errno(-ENOMEM); |
| 2929 | goto out; |
| 2930 | } |
| 2931 | |
| 2932 | kref_init(&dlm_debug->d_refcnt); |
| 2933 | INIT_LIST_HEAD(&dlm_debug->d_lockres_tracking); |
| 2934 | dlm_debug->d_locking_state = NULL; |
| 2935 | out: |
| 2936 | return dlm_debug; |
| 2937 | } |
| 2938 | |
| 2939 | /* Access to this is arbitrated for us via seq_file->sem. */ |
| 2940 | struct ocfs2_dlm_seq_priv { |
| 2941 | struct ocfs2_dlm_debug *p_dlm_debug; |
| 2942 | struct ocfs2_lock_res p_iter_res; |
| 2943 | struct ocfs2_lock_res p_tmp_res; |
| 2944 | }; |
| 2945 | |
| 2946 | static struct ocfs2_lock_res *ocfs2_dlm_next_res(struct ocfs2_lock_res *start, |
| 2947 | struct ocfs2_dlm_seq_priv *priv) |
| 2948 | { |
| 2949 | struct ocfs2_lock_res *iter, *ret = NULL; |
| 2950 | struct ocfs2_dlm_debug *dlm_debug = priv->p_dlm_debug; |
| 2951 | |
| 2952 | assert_spin_locked(&ocfs2_dlm_tracking_lock); |
| 2953 | |
| 2954 | list_for_each_entry(iter, &start->l_debug_list, l_debug_list) { |
| 2955 | /* discover the head of the list */ |
| 2956 | if (&iter->l_debug_list == &dlm_debug->d_lockres_tracking) { |
| 2957 | mlog(0, "End of list found, %p\n", ret); |
| 2958 | break; |
| 2959 | } |
| 2960 | |
| 2961 | /* We track our "dummy" iteration lockres' by a NULL |
| 2962 | * l_ops field. */ |
| 2963 | if (iter->l_ops != NULL) { |
| 2964 | ret = iter; |
| 2965 | break; |
| 2966 | } |
| 2967 | } |
| 2968 | |
| 2969 | return ret; |
| 2970 | } |
| 2971 | |
| 2972 | static void *ocfs2_dlm_seq_start(struct seq_file *m, loff_t *pos) |
| 2973 | { |
| 2974 | struct ocfs2_dlm_seq_priv *priv = m->private; |
| 2975 | struct ocfs2_lock_res *iter; |
| 2976 | |
| 2977 | spin_lock(&ocfs2_dlm_tracking_lock); |
| 2978 | iter = ocfs2_dlm_next_res(&priv->p_iter_res, priv); |
| 2979 | if (iter) { |
| 2980 | /* Since lockres' have the lifetime of their container |
| 2981 | * (which can be inodes, ocfs2_supers, etc) we want to |
| 2982 | * copy this out to a temporary lockres while still |
| 2983 | * under the spinlock. Obviously after this we can't |
| 2984 | * trust any pointers on the copy returned, but that's |
| 2985 | * ok as the information we want isn't typically held |
| 2986 | * in them. */ |
| 2987 | priv->p_tmp_res = *iter; |
| 2988 | iter = &priv->p_tmp_res; |
| 2989 | } |
| 2990 | spin_unlock(&ocfs2_dlm_tracking_lock); |
| 2991 | |
| 2992 | return iter; |
| 2993 | } |
| 2994 | |
| 2995 | static void ocfs2_dlm_seq_stop(struct seq_file *m, void *v) |
| 2996 | { |
| 2997 | } |
| 2998 | |
| 2999 | static void *ocfs2_dlm_seq_next(struct seq_file *m, void *v, loff_t *pos) |
| 3000 | { |
| 3001 | struct ocfs2_dlm_seq_priv *priv = m->private; |
| 3002 | struct ocfs2_lock_res *iter = v; |
| 3003 | struct ocfs2_lock_res *dummy = &priv->p_iter_res; |
| 3004 | |
| 3005 | spin_lock(&ocfs2_dlm_tracking_lock); |
| 3006 | iter = ocfs2_dlm_next_res(iter, priv); |
| 3007 | list_del_init(&dummy->l_debug_list); |
| 3008 | if (iter) { |
| 3009 | list_add(&dummy->l_debug_list, &iter->l_debug_list); |
| 3010 | priv->p_tmp_res = *iter; |
| 3011 | iter = &priv->p_tmp_res; |
| 3012 | } |
| 3013 | spin_unlock(&ocfs2_dlm_tracking_lock); |
| 3014 | |
| 3015 | return iter; |
| 3016 | } |
| 3017 | |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 3018 | /* |
| 3019 | * Version is used by debugfs.ocfs2 to determine the format being used |
| 3020 | * |
| 3021 | * New in version 2 |
| 3022 | * - Lock stats printed |
| 3023 | * New in version 3 |
| 3024 | * - Max time in lock stats is in usecs (instead of nsecs) |
| 3025 | */ |
| 3026 | #define OCFS2_DLM_DEBUG_STR_VERSION 3 |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3027 | static int ocfs2_dlm_seq_show(struct seq_file *m, void *v) |
| 3028 | { |
| 3029 | int i; |
| 3030 | char *lvb; |
| 3031 | struct ocfs2_lock_res *lockres = v; |
| 3032 | |
| 3033 | if (!lockres) |
| 3034 | return -EINVAL; |
| 3035 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3036 | seq_printf(m, "0x%x\t", OCFS2_DLM_DEBUG_STR_VERSION); |
| 3037 | |
| 3038 | if (lockres->l_type == OCFS2_LOCK_TYPE_DENTRY) |
| 3039 | seq_printf(m, "%.*s%08x\t", OCFS2_DENTRY_LOCK_INO_START - 1, |
| 3040 | lockres->l_name, |
| 3041 | (unsigned int)ocfs2_get_dentry_lock_ino(lockres)); |
| 3042 | else |
| 3043 | seq_printf(m, "%.*s\t", OCFS2_LOCK_ID_MAX_LEN, lockres->l_name); |
| 3044 | |
| 3045 | seq_printf(m, "%d\t" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3046 | "0x%lx\t" |
| 3047 | "0x%x\t" |
| 3048 | "0x%x\t" |
| 3049 | "%u\t" |
| 3050 | "%u\t" |
| 3051 | "%d\t" |
| 3052 | "%d\t", |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3053 | lockres->l_level, |
| 3054 | lockres->l_flags, |
| 3055 | lockres->l_action, |
| 3056 | lockres->l_unlock_action, |
| 3057 | lockres->l_ro_holders, |
| 3058 | lockres->l_ex_holders, |
| 3059 | lockres->l_requested, |
| 3060 | lockres->l_blocking); |
| 3061 | |
| 3062 | /* Dump the raw LVB */ |
Joel Becker | 8f2c9c1 | 2008-02-01 12:16:57 -0800 | [diff] [blame] | 3063 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3064 | for(i = 0; i < DLM_LVB_LEN; i++) |
| 3065 | seq_printf(m, "0x%x\t", lvb[i]); |
| 3066 | |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 3067 | #ifdef CONFIG_OCFS2_FS_STATS |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 3068 | # define lock_num_prmode(_l) ((_l)->l_lock_prmode.ls_gets) |
| 3069 | # define lock_num_exmode(_l) ((_l)->l_lock_exmode.ls_gets) |
| 3070 | # define lock_num_prmode_failed(_l) ((_l)->l_lock_prmode.ls_fail) |
| 3071 | # define lock_num_exmode_failed(_l) ((_l)->l_lock_exmode.ls_fail) |
| 3072 | # define lock_total_prmode(_l) ((_l)->l_lock_prmode.ls_total) |
| 3073 | # define lock_total_exmode(_l) ((_l)->l_lock_exmode.ls_total) |
| 3074 | # define lock_max_prmode(_l) ((_l)->l_lock_prmode.ls_max) |
| 3075 | # define lock_max_exmode(_l) ((_l)->l_lock_exmode.ls_max) |
| 3076 | # define lock_refresh(_l) ((_l)->l_lock_refresh) |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 3077 | #else |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 3078 | # define lock_num_prmode(_l) (0) |
| 3079 | # define lock_num_exmode(_l) (0) |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 3080 | # define lock_num_prmode_failed(_l) (0) |
| 3081 | # define lock_num_exmode_failed(_l) (0) |
Randy Dunlap | dd25e55 | 2008-05-28 14:41:00 -0700 | [diff] [blame] | 3082 | # define lock_total_prmode(_l) (0ULL) |
| 3083 | # define lock_total_exmode(_l) (0ULL) |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 3084 | # define lock_max_prmode(_l) (0) |
| 3085 | # define lock_max_exmode(_l) (0) |
| 3086 | # define lock_refresh(_l) (0) |
| 3087 | #endif |
| 3088 | /* The following seq_print was added in version 2 of this output */ |
Sunil Mushran | 5bc970e | 2010-12-28 23:26:03 -0800 | [diff] [blame] | 3089 | seq_printf(m, "%u\t" |
| 3090 | "%u\t" |
Sunil Mushran | 8ddb7b0 | 2008-05-13 13:45:15 -0700 | [diff] [blame] | 3091 | "%u\t" |
| 3092 | "%u\t" |
| 3093 | "%llu\t" |
| 3094 | "%llu\t" |
| 3095 | "%u\t" |
| 3096 | "%u\t" |
| 3097 | "%u\t", |
| 3098 | lock_num_prmode(lockres), |
| 3099 | lock_num_exmode(lockres), |
| 3100 | lock_num_prmode_failed(lockres), |
| 3101 | lock_num_exmode_failed(lockres), |
| 3102 | lock_total_prmode(lockres), |
| 3103 | lock_total_exmode(lockres), |
| 3104 | lock_max_prmode(lockres), |
| 3105 | lock_max_exmode(lockres), |
| 3106 | lock_refresh(lockres)); |
| 3107 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3108 | /* End the line */ |
| 3109 | seq_printf(m, "\n"); |
| 3110 | return 0; |
| 3111 | } |
| 3112 | |
Jan Engelhardt | 90d9977 | 2008-01-22 20:52:20 +0100 | [diff] [blame] | 3113 | static const struct seq_operations ocfs2_dlm_seq_ops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3114 | .start = ocfs2_dlm_seq_start, |
| 3115 | .stop = ocfs2_dlm_seq_stop, |
| 3116 | .next = ocfs2_dlm_seq_next, |
| 3117 | .show = ocfs2_dlm_seq_show, |
| 3118 | }; |
| 3119 | |
| 3120 | static int ocfs2_dlm_debug_release(struct inode *inode, struct file *file) |
| 3121 | { |
Joe Perches | 33fa1d9 | 2010-07-12 13:50:19 -0700 | [diff] [blame] | 3122 | struct seq_file *seq = file->private_data; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3123 | struct ocfs2_dlm_seq_priv *priv = seq->private; |
| 3124 | struct ocfs2_lock_res *res = &priv->p_iter_res; |
| 3125 | |
| 3126 | ocfs2_remove_lockres_tracking(res); |
| 3127 | ocfs2_put_dlm_debug(priv->p_dlm_debug); |
| 3128 | return seq_release_private(inode, file); |
| 3129 | } |
| 3130 | |
| 3131 | static int ocfs2_dlm_debug_open(struct inode *inode, struct file *file) |
| 3132 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3133 | struct ocfs2_dlm_seq_priv *priv; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3134 | struct ocfs2_super *osb; |
| 3135 | |
Rob Jones | 1848cb55 | 2014-10-09 15:25:09 -0700 | [diff] [blame] | 3136 | priv = __seq_open_private(file, &ocfs2_dlm_seq_ops, sizeof(*priv)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3137 | if (!priv) { |
Rob Jones | 1848cb55 | 2014-10-09 15:25:09 -0700 | [diff] [blame] | 3138 | mlog_errno(-ENOMEM); |
| 3139 | return -ENOMEM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3140 | } |
Rob Jones | 1848cb55 | 2014-10-09 15:25:09 -0700 | [diff] [blame] | 3141 | |
Theodore Ts'o | 8e18e29 | 2006-09-27 01:50:46 -0700 | [diff] [blame] | 3142 | osb = inode->i_private; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3143 | ocfs2_get_dlm_debug(osb->osb_dlm_debug); |
| 3144 | priv->p_dlm_debug = osb->osb_dlm_debug; |
| 3145 | INIT_LIST_HEAD(&priv->p_iter_res.l_debug_list); |
| 3146 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3147 | ocfs2_add_lockres_tracking(&priv->p_iter_res, |
| 3148 | priv->p_dlm_debug); |
| 3149 | |
Rob Jones | 1848cb55 | 2014-10-09 15:25:09 -0700 | [diff] [blame] | 3150 | return 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3151 | } |
| 3152 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 3153 | static const struct file_operations ocfs2_dlm_debug_fops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3154 | .open = ocfs2_dlm_debug_open, |
| 3155 | .release = ocfs2_dlm_debug_release, |
| 3156 | .read = seq_read, |
| 3157 | .llseek = seq_lseek, |
| 3158 | }; |
| 3159 | |
| 3160 | static int ocfs2_dlm_init_debug(struct ocfs2_super *osb) |
| 3161 | { |
| 3162 | int ret = 0; |
| 3163 | struct ocfs2_dlm_debug *dlm_debug = osb->osb_dlm_debug; |
| 3164 | |
| 3165 | dlm_debug->d_locking_state = debugfs_create_file("locking_state", |
| 3166 | S_IFREG|S_IRUSR, |
| 3167 | osb->osb_debug_root, |
| 3168 | osb, |
| 3169 | &ocfs2_dlm_debug_fops); |
Linus Torvalds | 8f443e2 | 2015-04-21 09:17:28 -0700 | [diff] [blame] | 3170 | if (!dlm_debug->d_locking_state) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3171 | ret = -EINVAL; |
| 3172 | mlog(ML_ERROR, |
| 3173 | "Unable to create locking state debugfs file.\n"); |
| 3174 | goto out; |
| 3175 | } |
| 3176 | |
| 3177 | ocfs2_get_dlm_debug(dlm_debug); |
| 3178 | out: |
| 3179 | return ret; |
| 3180 | } |
| 3181 | |
| 3182 | static void ocfs2_dlm_shutdown_debug(struct ocfs2_super *osb) |
| 3183 | { |
| 3184 | struct ocfs2_dlm_debug *dlm_debug = osb->osb_dlm_debug; |
| 3185 | |
| 3186 | if (dlm_debug) { |
| 3187 | debugfs_remove(dlm_debug->d_locking_state); |
| 3188 | ocfs2_put_dlm_debug(dlm_debug); |
| 3189 | } |
| 3190 | } |
| 3191 | |
| 3192 | int ocfs2_dlm_init(struct ocfs2_super *osb) |
| 3193 | { |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 3194 | int status = 0; |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3195 | struct ocfs2_cluster_connection *conn = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3196 | |
Mark Fasheh | 0abd6d1 | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 3197 | if (ocfs2_mount_local(osb)) { |
| 3198 | osb->node_num = 0; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 3199 | goto local; |
Mark Fasheh | 0abd6d1 | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 3200 | } |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 3201 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3202 | status = ocfs2_dlm_init_debug(osb); |
| 3203 | if (status < 0) { |
| 3204 | mlog_errno(status); |
| 3205 | goto bail; |
| 3206 | } |
| 3207 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 3208 | /* launch downconvert thread */ |
Joseph Qi | 5afc44e | 2015-11-05 18:44:13 -0800 | [diff] [blame] | 3209 | osb->dc_task = kthread_run(ocfs2_downconvert_thread, osb, "ocfs2dc-%s", |
| 3210 | osb->uuid_str); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 3211 | if (IS_ERR(osb->dc_task)) { |
| 3212 | status = PTR_ERR(osb->dc_task); |
| 3213 | osb->dc_task = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3214 | mlog_errno(status); |
| 3215 | goto bail; |
| 3216 | } |
| 3217 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3218 | /* for now, uuid == domain */ |
Joel Becker | 9c6c877 | 2008-02-01 15:17:30 -0800 | [diff] [blame] | 3219 | status = ocfs2_cluster_connect(osb->osb_cluster_stack, |
Goldwyn Rodrigues | c74a3bd | 2014-01-21 15:48:21 -0800 | [diff] [blame] | 3220 | osb->osb_cluster_name, |
| 3221 | strlen(osb->osb_cluster_name), |
Joel Becker | 9c6c877 | 2008-02-01 15:17:30 -0800 | [diff] [blame] | 3222 | osb->uuid_str, |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3223 | strlen(osb->uuid_str), |
Joel Becker | 553b5eb | 2010-01-29 17:19:06 -0800 | [diff] [blame] | 3224 | &lproto, ocfs2_do_node_down, osb, |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3225 | &conn); |
| 3226 | if (status) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3227 | mlog_errno(status); |
| 3228 | goto bail; |
| 3229 | } |
| 3230 | |
Goldwyn Rodrigues | 3e83415 | 2014-01-21 15:48:24 -0800 | [diff] [blame] | 3231 | status = ocfs2_cluster_this_node(conn, &osb->node_num); |
Mark Fasheh | 0abd6d1 | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 3232 | if (status < 0) { |
| 3233 | mlog_errno(status); |
| 3234 | mlog(ML_ERROR, |
| 3235 | "could not find this host's node number\n"); |
Joel Becker | 286eaa9 | 2008-02-01 15:03:57 -0800 | [diff] [blame] | 3236 | ocfs2_cluster_disconnect(conn, 0); |
Mark Fasheh | 0abd6d1 | 2008-01-29 16:59:56 -0800 | [diff] [blame] | 3237 | goto bail; |
| 3238 | } |
| 3239 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 3240 | local: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3241 | ocfs2_super_lock_res_init(&osb->osb_super_lockres, osb); |
| 3242 | ocfs2_rename_lock_res_init(&osb->osb_rename_lockres, osb); |
wengang wang | 6ca497a | 2009-03-06 21:29:10 +0800 | [diff] [blame] | 3243 | ocfs2_nfs_sync_lock_res_init(&osb->osb_nfs_sync_lockres, osb); |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 3244 | ocfs2_orphan_scan_lock_res_init(&osb->osb_orphan_scan.os_lockres, osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3245 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3246 | osb->cconn = conn; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3247 | bail: |
| 3248 | if (status < 0) { |
| 3249 | ocfs2_dlm_shutdown_debug(osb); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 3250 | if (osb->dc_task) |
| 3251 | kthread_stop(osb->dc_task); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3252 | } |
| 3253 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3254 | return status; |
| 3255 | } |
| 3256 | |
Joel Becker | 286eaa9 | 2008-02-01 15:03:57 -0800 | [diff] [blame] | 3257 | void ocfs2_dlm_shutdown(struct ocfs2_super *osb, |
| 3258 | int hangup_pending) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3259 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3260 | ocfs2_drop_osb_locks(osb); |
| 3261 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3262 | /* |
| 3263 | * Now that we have dropped all locks and ocfs2_dismount_volume() |
| 3264 | * has disabled recovery, the DLM won't be talking to us. It's |
| 3265 | * safe to tear things down before disconnecting the cluster. |
| 3266 | */ |
| 3267 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 3268 | if (osb->dc_task) { |
| 3269 | kthread_stop(osb->dc_task); |
| 3270 | osb->dc_task = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3271 | } |
| 3272 | |
| 3273 | ocfs2_lock_res_free(&osb->osb_super_lockres); |
| 3274 | ocfs2_lock_res_free(&osb->osb_rename_lockres); |
wengang wang | 6ca497a | 2009-03-06 21:29:10 +0800 | [diff] [blame] | 3275 | ocfs2_lock_res_free(&osb->osb_nfs_sync_lockres); |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 3276 | ocfs2_lock_res_free(&osb->osb_orphan_scan.os_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3277 | |
Joel Becker | 286eaa9 | 2008-02-01 15:03:57 -0800 | [diff] [blame] | 3278 | ocfs2_cluster_disconnect(osb->cconn, hangup_pending); |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3279 | osb->cconn = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3280 | |
| 3281 | ocfs2_dlm_shutdown_debug(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3282 | } |
| 3283 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3284 | static int ocfs2_drop_lock(struct ocfs2_super *osb, |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 3285 | struct ocfs2_lock_res *lockres) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3286 | { |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 3287 | int ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3288 | unsigned long flags; |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3289 | u32 lkm_flags = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3290 | |
| 3291 | /* We didn't get anywhere near actually using this lockres. */ |
| 3292 | if (!(lockres->l_flags & OCFS2_LOCK_INITIALIZED)) |
| 3293 | goto out; |
| 3294 | |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 3295 | if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB) |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3296 | lkm_flags |= DLM_LKF_VALBLK; |
Mark Fasheh | b80fc01 | 2006-09-12 22:08:14 -0700 | [diff] [blame] | 3297 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3298 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 3299 | |
| 3300 | mlog_bug_on_msg(!(lockres->l_flags & OCFS2_LOCK_FREEING), |
| 3301 | "lockres %s, flags 0x%lx\n", |
| 3302 | lockres->l_name, lockres->l_flags); |
| 3303 | |
| 3304 | while (lockres->l_flags & OCFS2_LOCK_BUSY) { |
| 3305 | mlog(0, "waiting on busy lock \"%s\": flags = %lx, action = " |
| 3306 | "%u, unlock_action = %u\n", |
| 3307 | lockres->l_name, lockres->l_flags, lockres->l_action, |
| 3308 | lockres->l_unlock_action); |
| 3309 | |
| 3310 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3311 | |
| 3312 | /* XXX: Today we just wait on any busy |
| 3313 | * locks... Perhaps we need to cancel converts in the |
| 3314 | * future? */ |
| 3315 | ocfs2_wait_on_busy_lock(lockres); |
| 3316 | |
| 3317 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 3318 | } |
| 3319 | |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 3320 | if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB) { |
| 3321 | if (lockres->l_flags & OCFS2_LOCK_ATTACHED && |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3322 | lockres->l_level == DLM_LOCK_EX && |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 3323 | !(lockres->l_flags & OCFS2_LOCK_NEEDS_REFRESH)) |
| 3324 | lockres->l_ops->set_lvb(lockres); |
| 3325 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3326 | |
| 3327 | if (lockres->l_flags & OCFS2_LOCK_BUSY) |
| 3328 | mlog(ML_ERROR, "destroying busy lock: \"%s\"\n", |
| 3329 | lockres->l_name); |
| 3330 | if (lockres->l_flags & OCFS2_LOCK_BLOCKED) |
| 3331 | mlog(0, "destroying blocked lock: \"%s\"\n", lockres->l_name); |
| 3332 | |
| 3333 | if (!(lockres->l_flags & OCFS2_LOCK_ATTACHED)) { |
| 3334 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3335 | goto out; |
| 3336 | } |
| 3337 | |
| 3338 | lockres_clear_flags(lockres, OCFS2_LOCK_ATTACHED); |
| 3339 | |
| 3340 | /* make sure we never get here while waiting for an ast to |
| 3341 | * fire. */ |
| 3342 | BUG_ON(lockres->l_action != OCFS2_AST_INVALID); |
| 3343 | |
| 3344 | /* is this necessary? */ |
| 3345 | lockres_or_flags(lockres, OCFS2_LOCK_BUSY); |
| 3346 | lockres->l_unlock_action = OCFS2_UNLOCK_DROP_LOCK; |
| 3347 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3348 | |
| 3349 | mlog(0, "lock %s\n", lockres->l_name); |
| 3350 | |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 3351 | ret = ocfs2_dlm_unlock(osb->cconn, &lockres->l_lksb, lkm_flags); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 3352 | if (ret) { |
| 3353 | ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3354 | mlog(ML_ERROR, "lockres flags: %lu\n", lockres->l_flags); |
Joel Becker | cf0acdc | 2008-01-29 16:59:55 -0800 | [diff] [blame] | 3355 | ocfs2_dlm_dump_lksb(&lockres->l_lksb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3356 | BUG(); |
| 3357 | } |
Coly Li | 73ac36e | 2009-01-07 18:09:16 -0800 | [diff] [blame] | 3358 | mlog(0, "lock %s, successful return from ocfs2_dlm_unlock\n", |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3359 | lockres->l_name); |
| 3360 | |
| 3361 | ocfs2_wait_on_busy_lock(lockres); |
| 3362 | out: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3363 | return 0; |
| 3364 | } |
| 3365 | |
Jan Kara | 84d86f8 | 2014-04-03 14:46:57 -0700 | [diff] [blame] | 3366 | static void ocfs2_process_blocked_lock(struct ocfs2_super *osb, |
| 3367 | struct ocfs2_lock_res *lockres); |
| 3368 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3369 | /* Mark the lockres as being dropped. It will no longer be |
| 3370 | * queued if blocking, but we still may have to wait on it |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 3371 | * being dequeued from the downconvert thread before we can consider |
Sunil Mushran | 2bd6321 | 2010-01-25 16:57:38 -0800 | [diff] [blame] | 3372 | * it safe to drop. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3373 | * |
| 3374 | * You can *not* attempt to call cluster_lock on this lockres anymore. */ |
Jan Kara | 84d86f8 | 2014-04-03 14:46:57 -0700 | [diff] [blame] | 3375 | void ocfs2_mark_lockres_freeing(struct ocfs2_super *osb, |
| 3376 | struct ocfs2_lock_res *lockres) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3377 | { |
| 3378 | int status; |
| 3379 | struct ocfs2_mask_waiter mw; |
Jan Kara | 84d86f8 | 2014-04-03 14:46:57 -0700 | [diff] [blame] | 3380 | unsigned long flags, flags2; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3381 | |
| 3382 | ocfs2_init_mask_waiter(&mw); |
| 3383 | |
| 3384 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 3385 | lockres->l_flags |= OCFS2_LOCK_FREEING; |
Jan Kara | 84d86f8 | 2014-04-03 14:46:57 -0700 | [diff] [blame] | 3386 | if (lockres->l_flags & OCFS2_LOCK_QUEUED && current == osb->dc_task) { |
| 3387 | /* |
| 3388 | * We know the downconvert is queued but not in progress |
| 3389 | * because we are the downconvert thread and processing |
| 3390 | * different lock. So we can just remove the lock from the |
| 3391 | * queue. This is not only an optimization but also a way |
| 3392 | * to avoid the following deadlock: |
| 3393 | * ocfs2_dentry_post_unlock() |
| 3394 | * ocfs2_dentry_lock_put() |
| 3395 | * ocfs2_drop_dentry_lock() |
| 3396 | * iput() |
| 3397 | * ocfs2_evict_inode() |
| 3398 | * ocfs2_clear_inode() |
| 3399 | * ocfs2_mark_lockres_freeing() |
| 3400 | * ... blocks waiting for OCFS2_LOCK_QUEUED |
| 3401 | * since we are the downconvert thread which |
| 3402 | * should clear the flag. |
| 3403 | */ |
| 3404 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3405 | spin_lock_irqsave(&osb->dc_task_lock, flags2); |
| 3406 | list_del_init(&lockres->l_blocked_list); |
| 3407 | osb->blocked_lock_count--; |
| 3408 | spin_unlock_irqrestore(&osb->dc_task_lock, flags2); |
| 3409 | /* |
| 3410 | * Warn if we recurse into another post_unlock call. Strictly |
| 3411 | * speaking it isn't a problem but we need to be careful if |
| 3412 | * that happens (stack overflow, deadlocks, ...) so warn if |
| 3413 | * ocfs2 grows a path for which this can happen. |
| 3414 | */ |
| 3415 | WARN_ON_ONCE(lockres->l_ops->post_unlock); |
| 3416 | /* Since the lock is freeing we don't do much in the fn below */ |
| 3417 | ocfs2_process_blocked_lock(osb, lockres); |
| 3418 | return; |
| 3419 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3420 | while (lockres->l_flags & OCFS2_LOCK_QUEUED) { |
| 3421 | lockres_add_mask_waiter(lockres, &mw, OCFS2_LOCK_QUEUED, 0); |
| 3422 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3423 | |
| 3424 | mlog(0, "Waiting on lockres %s\n", lockres->l_name); |
| 3425 | |
| 3426 | status = ocfs2_wait_for_mask(&mw); |
| 3427 | if (status) |
| 3428 | mlog_errno(status); |
| 3429 | |
| 3430 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 3431 | } |
| 3432 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3433 | } |
| 3434 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3435 | void ocfs2_simple_drop_lockres(struct ocfs2_super *osb, |
| 3436 | struct ocfs2_lock_res *lockres) |
| 3437 | { |
| 3438 | int ret; |
| 3439 | |
Jan Kara | 84d86f8 | 2014-04-03 14:46:57 -0700 | [diff] [blame] | 3440 | ocfs2_mark_lockres_freeing(osb, lockres); |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 3441 | ret = ocfs2_drop_lock(osb, lockres); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3442 | if (ret) |
| 3443 | mlog_errno(ret); |
| 3444 | } |
| 3445 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3446 | static void ocfs2_drop_osb_locks(struct ocfs2_super *osb) |
| 3447 | { |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3448 | ocfs2_simple_drop_lockres(osb, &osb->osb_super_lockres); |
| 3449 | ocfs2_simple_drop_lockres(osb, &osb->osb_rename_lockres); |
wengang wang | 6ca497a | 2009-03-06 21:29:10 +0800 | [diff] [blame] | 3450 | ocfs2_simple_drop_lockres(osb, &osb->osb_nfs_sync_lockres); |
Srinivas Eeda | 8327393 | 2009-06-03 17:02:55 -0700 | [diff] [blame] | 3451 | ocfs2_simple_drop_lockres(osb, &osb->osb_orphan_scan.os_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3452 | } |
| 3453 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3454 | int ocfs2_drop_inode_locks(struct inode *inode) |
| 3455 | { |
| 3456 | int status, err; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3457 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3458 | /* No need to call ocfs2_mark_lockres_freeing here - |
| 3459 | * ocfs2_clear_inode has done it for us. */ |
| 3460 | |
| 3461 | err = ocfs2_drop_lock(OCFS2_SB(inode->i_sb), |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 3462 | &OCFS2_I(inode)->ip_open_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3463 | if (err < 0) |
| 3464 | mlog_errno(err); |
| 3465 | |
| 3466 | status = err; |
| 3467 | |
| 3468 | err = ocfs2_drop_lock(OCFS2_SB(inode->i_sb), |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 3469 | &OCFS2_I(inode)->ip_inode_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3470 | if (err < 0) |
| 3471 | mlog_errno(err); |
| 3472 | if (err < 0 && !status) |
| 3473 | status = err; |
| 3474 | |
| 3475 | err = ocfs2_drop_lock(OCFS2_SB(inode->i_sb), |
Mark Fasheh | 0d5dc6c | 2006-09-14 14:44:51 -0700 | [diff] [blame] | 3476 | &OCFS2_I(inode)->ip_rw_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3477 | if (err < 0) |
| 3478 | mlog_errno(err); |
| 3479 | if (err < 0 && !status) |
| 3480 | status = err; |
| 3481 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3482 | return status; |
| 3483 | } |
| 3484 | |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3485 | static unsigned int ocfs2_prepare_downconvert(struct ocfs2_lock_res *lockres, |
| 3486 | int new_level) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3487 | { |
| 3488 | assert_spin_locked(&lockres->l_lock); |
| 3489 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3490 | BUG_ON(lockres->l_blocking <= DLM_LOCK_NL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3491 | |
| 3492 | if (lockres->l_level <= new_level) { |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3493 | mlog(ML_ERROR, "lockres %s, lvl %d <= %d, blcklst %d, mask %d, " |
| 3494 | "type %d, flags 0x%lx, hold %d %d, act %d %d, req %d, " |
| 3495 | "block %d, pgen %d\n", lockres->l_name, lockres->l_level, |
| 3496 | new_level, list_empty(&lockres->l_blocked_list), |
| 3497 | list_empty(&lockres->l_mask_waiters), lockres->l_type, |
| 3498 | lockres->l_flags, lockres->l_ro_holders, |
| 3499 | lockres->l_ex_holders, lockres->l_action, |
| 3500 | lockres->l_unlock_action, lockres->l_requested, |
| 3501 | lockres->l_blocking, lockres->l_pending_gen); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3502 | BUG(); |
| 3503 | } |
| 3504 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3505 | mlog(ML_BASTS, "lockres %s, level %d => %d, blocking %d\n", |
| 3506 | lockres->l_name, lockres->l_level, new_level, lockres->l_blocking); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3507 | |
| 3508 | lockres->l_action = OCFS2_AST_DOWNCONVERT; |
| 3509 | lockres->l_requested = new_level; |
| 3510 | lockres_or_flags(lockres, OCFS2_LOCK_BUSY); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3511 | return lockres_set_pending(lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3512 | } |
| 3513 | |
| 3514 | static int ocfs2_downconvert_lock(struct ocfs2_super *osb, |
| 3515 | struct ocfs2_lock_res *lockres, |
| 3516 | int new_level, |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3517 | int lvb, |
| 3518 | unsigned int generation) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3519 | { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3520 | int ret; |
| 3521 | u32 dlm_flags = DLM_LKF_CONVERT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3522 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3523 | mlog(ML_BASTS, "lockres %s, level %d => %d\n", lockres->l_name, |
| 3524 | lockres->l_level, new_level); |
| 3525 | |
Eric Ren | e7ee2c08 | 2017-01-10 16:57:33 -0800 | [diff] [blame] | 3526 | /* |
| 3527 | * On DLM_LKF_VALBLK, fsdlm behaves differently with o2cb. It always |
| 3528 | * expects DLM_LKF_VALBLK being set if the LKB has LVB, so that |
| 3529 | * we can recover correctly from node failure. Otherwise, we may get |
| 3530 | * invalid LVB in LKB, but without DLM_SBF_VALNOTVALIDÂ being set. |
| 3531 | */ |
| 3532 | if (!ocfs2_is_o2cb_active() && |
| 3533 | lockres->l_ops->flags & LOCK_TYPE_USES_LVB) |
| 3534 | lvb = 1; |
| 3535 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3536 | if (lvb) |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3537 | dlm_flags |= DLM_LKF_VALBLK; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3538 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3539 | ret = ocfs2_dlm_lock(osb->cconn, |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 3540 | new_level, |
| 3541 | &lockres->l_lksb, |
| 3542 | dlm_flags, |
| 3543 | lockres->l_name, |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 3544 | OCFS2_LOCK_ID_MAX_LEN - 1); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3545 | lockres_clear_pending(lockres, generation, osb); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 3546 | if (ret) { |
| 3547 | ocfs2_log_dlm_error("ocfs2_dlm_lock", ret, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3548 | ocfs2_recover_from_dlm_error(lockres, 1); |
| 3549 | goto bail; |
| 3550 | } |
| 3551 | |
| 3552 | ret = 0; |
| 3553 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3554 | return ret; |
| 3555 | } |
| 3556 | |
Joel Becker | 24ef181 | 2008-01-29 17:37:32 -0800 | [diff] [blame] | 3557 | /* returns 1 when the caller should unlock and call ocfs2_dlm_unlock */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3558 | static int ocfs2_prepare_cancel_convert(struct ocfs2_super *osb, |
| 3559 | struct ocfs2_lock_res *lockres) |
| 3560 | { |
| 3561 | assert_spin_locked(&lockres->l_lock); |
| 3562 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3563 | if (lockres->l_unlock_action == OCFS2_UNLOCK_CANCEL_CONVERT) { |
| 3564 | /* If we're already trying to cancel a lock conversion |
| 3565 | * then just drop the spinlock and allow the caller to |
| 3566 | * requeue this lock. */ |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3567 | mlog(ML_BASTS, "lockres %s, skip convert\n", lockres->l_name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3568 | return 0; |
| 3569 | } |
| 3570 | |
| 3571 | /* were we in a convert when we got the bast fire? */ |
| 3572 | BUG_ON(lockres->l_action != OCFS2_AST_CONVERT && |
| 3573 | lockres->l_action != OCFS2_AST_DOWNCONVERT); |
| 3574 | /* set things up for the unlockast to know to just |
| 3575 | * clear out the ast_action and unset busy, etc. */ |
| 3576 | lockres->l_unlock_action = OCFS2_UNLOCK_CANCEL_CONVERT; |
| 3577 | |
| 3578 | mlog_bug_on_msg(!(lockres->l_flags & OCFS2_LOCK_BUSY), |
| 3579 | "lock %s, invalid flags: 0x%lx\n", |
| 3580 | lockres->l_name, lockres->l_flags); |
| 3581 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3582 | mlog(ML_BASTS, "lockres %s\n", lockres->l_name); |
| 3583 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3584 | return 1; |
| 3585 | } |
| 3586 | |
| 3587 | static int ocfs2_cancel_convert(struct ocfs2_super *osb, |
| 3588 | struct ocfs2_lock_res *lockres) |
| 3589 | { |
| 3590 | int ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3591 | |
Joel Becker | 4670c46 | 2008-02-01 14:39:35 -0800 | [diff] [blame] | 3592 | ret = ocfs2_dlm_unlock(osb->cconn, &lockres->l_lksb, |
Joel Becker | a796d28 | 2010-01-28 19:22:39 -0800 | [diff] [blame] | 3593 | DLM_LKF_CANCEL); |
Joel Becker | 7431cd7 | 2008-02-01 12:15:37 -0800 | [diff] [blame] | 3594 | if (ret) { |
| 3595 | ocfs2_log_dlm_error("ocfs2_dlm_unlock", ret, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3596 | ocfs2_recover_from_dlm_error(lockres, 0); |
| 3597 | } |
| 3598 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3599 | mlog(ML_BASTS, "lockres %s\n", lockres->l_name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3600 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3601 | return ret; |
| 3602 | } |
| 3603 | |
Mark Fasheh | b5e500e | 2006-09-13 22:01:16 -0700 | [diff] [blame] | 3604 | static int ocfs2_unblock_lock(struct ocfs2_super *osb, |
| 3605 | struct ocfs2_lock_res *lockres, |
| 3606 | struct ocfs2_unblock_ctl *ctl) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3607 | { |
| 3608 | unsigned long flags; |
| 3609 | int blocking; |
| 3610 | int new_level; |
Sunil Mushran | 079b805 | 2010-02-03 10:16:54 -0800 | [diff] [blame] | 3611 | int level; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3612 | int ret = 0; |
Mark Fasheh | 5ef0d4e | 2006-09-13 21:21:52 -0700 | [diff] [blame] | 3613 | int set_lvb = 0; |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3614 | unsigned int gen; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3615 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3616 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 3617 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3618 | recheck: |
Sunil Mushran | db0f6ce | 2010-02-01 16:55:50 -0800 | [diff] [blame] | 3619 | /* |
| 3620 | * Is it still blocking? If not, we have no more work to do. |
| 3621 | */ |
| 3622 | if (!(lockres->l_flags & OCFS2_LOCK_BLOCKED)) { |
| 3623 | BUG_ON(lockres->l_blocking != DLM_LOCK_NL); |
| 3624 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3625 | ret = 0; |
| 3626 | goto leave; |
| 3627 | } |
| 3628 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3629 | if (lockres->l_flags & OCFS2_LOCK_BUSY) { |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3630 | /* XXX |
| 3631 | * This is a *big* race. The OCFS2_LOCK_PENDING flag |
| 3632 | * exists entirely for one reason - another thread has set |
| 3633 | * OCFS2_LOCK_BUSY, but has *NOT* yet called dlm_lock(). |
| 3634 | * |
| 3635 | * If we do ocfs2_cancel_convert() before the other thread |
| 3636 | * calls dlm_lock(), our cancel will do nothing. We will |
| 3637 | * get no ast, and we will have no way of knowing the |
| 3638 | * cancel failed. Meanwhile, the other thread will call |
| 3639 | * into dlm_lock() and wait...forever. |
| 3640 | * |
| 3641 | * Why forever? Because another node has asked for the |
| 3642 | * lock first; that's why we're here in unblock_lock(). |
| 3643 | * |
| 3644 | * The solution is OCFS2_LOCK_PENDING. When PENDING is |
| 3645 | * set, we just requeue the unblock. Only when the other |
| 3646 | * thread has called dlm_lock() and cleared PENDING will |
| 3647 | * we then cancel their request. |
| 3648 | * |
| 3649 | * All callers of dlm_lock() must set OCFS2_DLM_PENDING |
| 3650 | * at the same time they set OCFS2_DLM_BUSY. They must |
| 3651 | * clear OCFS2_DLM_PENDING after dlm_lock() returns. |
| 3652 | */ |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3653 | if (lockres->l_flags & OCFS2_LOCK_PENDING) { |
| 3654 | mlog(ML_BASTS, "lockres %s, ReQ: Pending\n", |
| 3655 | lockres->l_name); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3656 | goto leave_requeue; |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3657 | } |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3658 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3659 | ctl->requeue = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3660 | ret = ocfs2_prepare_cancel_convert(osb, lockres); |
| 3661 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3662 | if (ret) { |
| 3663 | ret = ocfs2_cancel_convert(osb, lockres); |
| 3664 | if (ret < 0) |
| 3665 | mlog_errno(ret); |
| 3666 | } |
| 3667 | goto leave; |
| 3668 | } |
| 3669 | |
Sunil Mushran | a191282 | 2010-01-21 10:50:03 -0800 | [diff] [blame] | 3670 | /* |
| 3671 | * This prevents livelocks. OCFS2_LOCK_UPCONVERT_FINISHING flag is |
| 3672 | * set when the ast is received for an upconvert just before the |
| 3673 | * OCFS2_LOCK_BUSY flag is cleared. Now if the fs received a bast |
| 3674 | * on the heels of the ast, we want to delay the downconvert just |
| 3675 | * enough to allow the up requestor to do its task. Because this |
| 3676 | * lock is in the blocked queue, the lock will be downconverted |
| 3677 | * as soon as the requestor is done with the lock. |
| 3678 | */ |
| 3679 | if (lockres->l_flags & OCFS2_LOCK_UPCONVERT_FINISHING) |
| 3680 | goto leave_requeue; |
| 3681 | |
Sunil Mushran | 0d74125 | 2010-01-29 09:44:11 -0800 | [diff] [blame] | 3682 | /* |
| 3683 | * How can we block and yet be at NL? We were trying to upconvert |
| 3684 | * from NL and got canceled. The code comes back here, and now |
| 3685 | * we notice and clear BLOCKING. |
| 3686 | */ |
| 3687 | if (lockres->l_level == DLM_LOCK_NL) { |
| 3688 | BUG_ON(lockres->l_ex_holders || lockres->l_ro_holders); |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3689 | mlog(ML_BASTS, "lockres %s, Aborting dc\n", lockres->l_name); |
Sunil Mushran | 0d74125 | 2010-01-29 09:44:11 -0800 | [diff] [blame] | 3690 | lockres->l_blocking = DLM_LOCK_NL; |
| 3691 | lockres_clear_flags(lockres, OCFS2_LOCK_BLOCKED); |
| 3692 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3693 | goto leave; |
| 3694 | } |
| 3695 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3696 | /* if we're blocking an exclusive and we have *any* holders, |
| 3697 | * then requeue. */ |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3698 | if ((lockres->l_blocking == DLM_LOCK_EX) |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3699 | && (lockres->l_ex_holders || lockres->l_ro_holders)) { |
| 3700 | mlog(ML_BASTS, "lockres %s, ReQ: EX/PR Holders %u,%u\n", |
| 3701 | lockres->l_name, lockres->l_ex_holders, |
| 3702 | lockres->l_ro_holders); |
Mark Fasheh | f7fbfdd | 2006-09-13 21:02:29 -0700 | [diff] [blame] | 3703 | goto leave_requeue; |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3704 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3705 | |
| 3706 | /* If it's a PR we're blocking, then only |
| 3707 | * requeue if we've got any EX holders */ |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3708 | if (lockres->l_blocking == DLM_LOCK_PR && |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3709 | lockres->l_ex_holders) { |
| 3710 | mlog(ML_BASTS, "lockres %s, ReQ: EX Holders %u\n", |
| 3711 | lockres->l_name, lockres->l_ex_holders); |
Mark Fasheh | f7fbfdd | 2006-09-13 21:02:29 -0700 | [diff] [blame] | 3712 | goto leave_requeue; |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3713 | } |
Mark Fasheh | f7fbfdd | 2006-09-13 21:02:29 -0700 | [diff] [blame] | 3714 | |
| 3715 | /* |
| 3716 | * Can we get a lock in this state if the holder counts are |
| 3717 | * zero? The meta data unblock code used to check this. |
| 3718 | */ |
| 3719 | if ((lockres->l_ops->flags & LOCK_TYPE_REQUIRES_REFRESH) |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3720 | && (lockres->l_flags & OCFS2_LOCK_REFRESHING)) { |
| 3721 | mlog(ML_BASTS, "lockres %s, ReQ: Lock Refreshing\n", |
| 3722 | lockres->l_name); |
Mark Fasheh | f7fbfdd | 2006-09-13 21:02:29 -0700 | [diff] [blame] | 3723 | goto leave_requeue; |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3724 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3725 | |
Mark Fasheh | 16d5b95 | 2006-09-13 21:10:12 -0700 | [diff] [blame] | 3726 | new_level = ocfs2_highest_compat_lock_level(lockres->l_blocking); |
| 3727 | |
| 3728 | if (lockres->l_ops->check_downconvert |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3729 | && !lockres->l_ops->check_downconvert(lockres, new_level)) { |
| 3730 | mlog(ML_BASTS, "lockres %s, ReQ: Checkpointing\n", |
| 3731 | lockres->l_name); |
Mark Fasheh | 16d5b95 | 2006-09-13 21:10:12 -0700 | [diff] [blame] | 3732 | goto leave_requeue; |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3733 | } |
Mark Fasheh | 16d5b95 | 2006-09-13 21:10:12 -0700 | [diff] [blame] | 3734 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3735 | /* If we get here, then we know that there are no more |
| 3736 | * incompatible holders (and anyone asking for an incompatible |
| 3737 | * lock is blocked). We can now downconvert the lock */ |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 3738 | if (!lockres->l_ops->downconvert_worker) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3739 | goto downconvert; |
| 3740 | |
| 3741 | /* Some lockres types want to do a bit of work before |
| 3742 | * downconverting a lock. Allow that here. The worker function |
| 3743 | * may sleep, so we save off a copy of what we're blocking as |
| 3744 | * it may change while we're not holding the spin lock. */ |
| 3745 | blocking = lockres->l_blocking; |
Sunil Mushran | 079b805 | 2010-02-03 10:16:54 -0800 | [diff] [blame] | 3746 | level = lockres->l_level; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3747 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3748 | |
Mark Fasheh | cc567d8 | 2006-09-13 21:52:21 -0700 | [diff] [blame] | 3749 | ctl->unblock_action = lockres->l_ops->downconvert_worker(lockres, blocking); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3750 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3751 | if (ctl->unblock_action == UNBLOCK_STOP_POST) { |
| 3752 | mlog(ML_BASTS, "lockres %s, UNBLOCK_STOP_POST\n", |
| 3753 | lockres->l_name); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3754 | goto leave; |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3755 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3756 | |
| 3757 | spin_lock_irqsave(&lockres->l_lock, flags); |
Sunil Mushran | 079b805 | 2010-02-03 10:16:54 -0800 | [diff] [blame] | 3758 | if ((blocking != lockres->l_blocking) || (level != lockres->l_level)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3759 | /* If this changed underneath us, then we can't drop |
| 3760 | * it just yet. */ |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 3761 | mlog(ML_BASTS, "lockres %s, block=%d:%d, level=%d:%d, " |
| 3762 | "Recheck\n", lockres->l_name, blocking, |
| 3763 | lockres->l_blocking, level, lockres->l_level); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3764 | goto recheck; |
| 3765 | } |
| 3766 | |
| 3767 | downconvert: |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3768 | ctl->requeue = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3769 | |
Mark Fasheh | 5ef0d4e | 2006-09-13 21:21:52 -0700 | [diff] [blame] | 3770 | if (lockres->l_ops->flags & LOCK_TYPE_USES_LVB) { |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3771 | if (lockres->l_level == DLM_LOCK_EX) |
Mark Fasheh | 5ef0d4e | 2006-09-13 21:21:52 -0700 | [diff] [blame] | 3772 | set_lvb = 1; |
| 3773 | |
| 3774 | /* |
| 3775 | * We only set the lvb if the lock has been fully |
| 3776 | * refreshed - otherwise we risk setting stale |
| 3777 | * data. Otherwise, there's no need to actually clear |
| 3778 | * out the lvb here as it's value is still valid. |
| 3779 | */ |
| 3780 | if (set_lvb && !(lockres->l_flags & OCFS2_LOCK_NEEDS_REFRESH)) |
| 3781 | lockres->l_ops->set_lvb(lockres); |
| 3782 | } |
| 3783 | |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3784 | gen = ocfs2_prepare_downconvert(lockres, new_level); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3785 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
Joel Becker | de55124 | 2008-02-01 14:45:08 -0800 | [diff] [blame] | 3786 | ret = ocfs2_downconvert_lock(osb, lockres, new_level, set_lvb, |
| 3787 | gen); |
| 3788 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3789 | leave: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 3790 | if (ret) |
| 3791 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3792 | return ret; |
Mark Fasheh | f7fbfdd | 2006-09-13 21:02:29 -0700 | [diff] [blame] | 3793 | |
| 3794 | leave_requeue: |
| 3795 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3796 | ctl->requeue = 1; |
| 3797 | |
Mark Fasheh | f7fbfdd | 2006-09-13 21:02:29 -0700 | [diff] [blame] | 3798 | return 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3799 | } |
| 3800 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3801 | static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres, |
| 3802 | int blocking) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3803 | { |
| 3804 | struct inode *inode; |
| 3805 | struct address_space *mapping; |
Goldwyn Rodrigues | 5e98d49 | 2010-06-28 10:04:32 -0500 | [diff] [blame] | 3806 | struct ocfs2_inode_info *oi; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3807 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3808 | inode = ocfs2_lock_res_inode(lockres); |
| 3809 | mapping = inode->i_mapping; |
| 3810 | |
Goldwyn Rodrigues | 5e98d49 | 2010-06-28 10:04:32 -0500 | [diff] [blame] | 3811 | if (S_ISDIR(inode->i_mode)) { |
| 3812 | oi = OCFS2_I(inode); |
| 3813 | oi->ip_dir_lock_gen++; |
| 3814 | mlog(0, "generation: %u\n", oi->ip_dir_lock_gen); |
| 3815 | goto out; |
| 3816 | } |
| 3817 | |
Mark Fasheh | 1044e40 | 2008-02-28 17:16:03 -0800 | [diff] [blame] | 3818 | if (!S_ISREG(inode->i_mode)) |
Mark Fasheh | f1f5406 | 2007-10-18 15:13:59 -0700 | [diff] [blame] | 3819 | goto out; |
| 3820 | |
Mark Fasheh | 7f4a2a9 | 2006-12-11 11:06:36 -0800 | [diff] [blame] | 3821 | /* |
| 3822 | * We need this before the filemap_fdatawrite() so that it can |
| 3823 | * transfer the dirty bit from the PTE to the |
| 3824 | * page. Unfortunately this means that even for EX->PR |
| 3825 | * downconverts, we'll lose our mappings and have to build |
| 3826 | * them up again. |
| 3827 | */ |
| 3828 | unmap_mapping_range(mapping, 0, 0, 0); |
| 3829 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3830 | if (filemap_fdatawrite(mapping)) { |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 3831 | mlog(ML_ERROR, "Could not sync inode %llu for downconvert!", |
| 3832 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3833 | } |
| 3834 | sync_mapping_buffers(mapping); |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3835 | if (blocking == DLM_LOCK_EX) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3836 | truncate_inode_pages(mapping, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3837 | } else { |
| 3838 | /* We only need to wait on the I/O if we're not also |
| 3839 | * truncating pages because truncate_inode_pages waits |
| 3840 | * for us above. We don't truncate pages if we're |
| 3841 | * blocking anything < EXMODE because we want to keep |
| 3842 | * them around in that case. */ |
| 3843 | filemap_fdatawait(mapping); |
| 3844 | } |
| 3845 | |
Andreas Gruenbacher | b8a7a3a | 2016-03-24 14:38:37 +0100 | [diff] [blame] | 3846 | forget_all_cached_acls(inode); |
| 3847 | |
Mark Fasheh | f1f5406 | 2007-10-18 15:13:59 -0700 | [diff] [blame] | 3848 | out: |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3849 | return UNBLOCK_CONTINUE; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 3850 | } |
| 3851 | |
Tao Ma | a433848 | 2009-08-18 11:19:29 +0800 | [diff] [blame] | 3852 | static int ocfs2_ci_checkpointed(struct ocfs2_caching_info *ci, |
| 3853 | struct ocfs2_lock_res *lockres, |
| 3854 | int new_level) |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 3855 | { |
Tao Ma | a433848 | 2009-08-18 11:19:29 +0800 | [diff] [blame] | 3856 | int checkpointed = ocfs2_ci_fully_checkpointed(ci); |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 3857 | |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3858 | BUG_ON(new_level != DLM_LOCK_NL && new_level != DLM_LOCK_PR); |
| 3859 | BUG_ON(lockres->l_level != DLM_LOCK_EX && !checkpointed); |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 3860 | |
| 3861 | if (checkpointed) |
| 3862 | return 1; |
| 3863 | |
Tao Ma | a433848 | 2009-08-18 11:19:29 +0800 | [diff] [blame] | 3864 | ocfs2_start_checkpoint(OCFS2_SB(ocfs2_metadata_cache_get_super(ci))); |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 3865 | return 0; |
| 3866 | } |
| 3867 | |
Tao Ma | a433848 | 2009-08-18 11:19:29 +0800 | [diff] [blame] | 3868 | static int ocfs2_check_meta_downconvert(struct ocfs2_lock_res *lockres, |
| 3869 | int new_level) |
| 3870 | { |
| 3871 | struct inode *inode = ocfs2_lock_res_inode(lockres); |
| 3872 | |
| 3873 | return ocfs2_ci_checkpointed(INODE_CACHE(inode), lockres, new_level); |
| 3874 | } |
| 3875 | |
Mark Fasheh | 810d5ae | 2006-09-13 21:39:52 -0700 | [diff] [blame] | 3876 | static void ocfs2_set_meta_lvb(struct ocfs2_lock_res *lockres) |
| 3877 | { |
| 3878 | struct inode *inode = ocfs2_lock_res_inode(lockres); |
| 3879 | |
| 3880 | __ocfs2_stuff_meta_lvb(inode); |
| 3881 | } |
| 3882 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3883 | /* |
| 3884 | * Does the final reference drop on our dentry lock. Right now this |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 3885 | * happens in the downconvert thread, but we could choose to simplify the |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3886 | * dlmglue API and push these off to the ocfs2_wq in the future. |
| 3887 | */ |
| 3888 | static void ocfs2_dentry_post_unlock(struct ocfs2_super *osb, |
| 3889 | struct ocfs2_lock_res *lockres) |
| 3890 | { |
| 3891 | struct ocfs2_dentry_lock *dl = ocfs2_lock_res_dl(lockres); |
| 3892 | ocfs2_dentry_lock_put(osb, dl); |
| 3893 | } |
| 3894 | |
| 3895 | /* |
| 3896 | * d_delete() matching dentries before the lock downconvert. |
| 3897 | * |
| 3898 | * At this point, any process waiting to destroy the |
| 3899 | * dentry_lock due to last ref count is stopped by the |
| 3900 | * OCFS2_LOCK_QUEUED flag. |
| 3901 | * |
| 3902 | * We have two potential problems |
| 3903 | * |
| 3904 | * 1) If we do the last reference drop on our dentry_lock (via dput) |
| 3905 | * we'll wind up in ocfs2_release_dentry_lock(), waiting on |
| 3906 | * the downconvert to finish. Instead we take an elevated |
| 3907 | * reference and push the drop until after we've completed our |
| 3908 | * unblock processing. |
| 3909 | * |
| 3910 | * 2) There might be another process with a final reference, |
| 3911 | * waiting on us to finish processing. If this is the case, we |
| 3912 | * detect it and exit out - there's no more dentries anyway. |
| 3913 | */ |
| 3914 | static int ocfs2_dentry_convert_worker(struct ocfs2_lock_res *lockres, |
| 3915 | int blocking) |
| 3916 | { |
| 3917 | struct ocfs2_dentry_lock *dl = ocfs2_lock_res_dl(lockres); |
| 3918 | struct ocfs2_inode_info *oi = OCFS2_I(dl->dl_inode); |
| 3919 | struct dentry *dentry; |
| 3920 | unsigned long flags; |
| 3921 | int extra_ref = 0; |
| 3922 | |
| 3923 | /* |
| 3924 | * This node is blocking another node from getting a read |
| 3925 | * lock. This happens when we've renamed within a |
| 3926 | * directory. We've forced the other nodes to d_delete(), but |
| 3927 | * we never actually dropped our lock because it's still |
| 3928 | * valid. The downconvert code will retain a PR for this node, |
| 3929 | * so there's no further work to do. |
| 3930 | */ |
Joel Becker | bd3e761 | 2008-02-01 12:14:57 -0800 | [diff] [blame] | 3931 | if (blocking == DLM_LOCK_PR) |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3932 | return UNBLOCK_CONTINUE; |
| 3933 | |
| 3934 | /* |
| 3935 | * Mark this inode as potentially orphaned. The code in |
| 3936 | * ocfs2_delete_inode() will figure out whether it actually |
| 3937 | * needs to be freed or not. |
| 3938 | */ |
| 3939 | spin_lock(&oi->ip_lock); |
| 3940 | oi->ip_flags |= OCFS2_INODE_MAYBE_ORPHANED; |
| 3941 | spin_unlock(&oi->ip_lock); |
| 3942 | |
| 3943 | /* |
| 3944 | * Yuck. We need to make sure however that the check of |
| 3945 | * OCFS2_LOCK_FREEING and the extra reference are atomic with |
| 3946 | * respect to a reference decrement or the setting of that |
| 3947 | * flag. |
| 3948 | */ |
| 3949 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 3950 | spin_lock(&dentry_attach_lock); |
| 3951 | if (!(lockres->l_flags & OCFS2_LOCK_FREEING) |
| 3952 | && dl->dl_count) { |
| 3953 | dl->dl_count++; |
| 3954 | extra_ref = 1; |
| 3955 | } |
| 3956 | spin_unlock(&dentry_attach_lock); |
| 3957 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 3958 | |
| 3959 | mlog(0, "extra_ref = %d\n", extra_ref); |
| 3960 | |
| 3961 | /* |
| 3962 | * We have a process waiting on us in ocfs2_dentry_iput(), |
| 3963 | * which means we can't have any more outstanding |
| 3964 | * aliases. There's no need to do any more work. |
| 3965 | */ |
| 3966 | if (!extra_ref) |
| 3967 | return UNBLOCK_CONTINUE; |
| 3968 | |
| 3969 | spin_lock(&dentry_attach_lock); |
| 3970 | while (1) { |
| 3971 | dentry = ocfs2_find_local_alias(dl->dl_inode, |
| 3972 | dl->dl_parent_blkno, 1); |
| 3973 | if (!dentry) |
| 3974 | break; |
| 3975 | spin_unlock(&dentry_attach_lock); |
| 3976 | |
alex chen | 10ab881 | 2015-02-10 14:09:23 -0800 | [diff] [blame] | 3977 | if (S_ISDIR(dl->dl_inode->i_mode)) |
| 3978 | shrink_dcache_parent(dentry); |
| 3979 | |
Al Viro | a455589 | 2014-10-21 20:11:25 -0400 | [diff] [blame] | 3980 | mlog(0, "d_delete(%pd);\n", dentry); |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 3981 | |
| 3982 | /* |
| 3983 | * The following dcache calls may do an |
| 3984 | * iput(). Normally we don't want that from the |
| 3985 | * downconverting thread, but in this case it's ok |
| 3986 | * because the requesting node already has an |
| 3987 | * exclusive lock on the inode, so it can't be queued |
| 3988 | * for a downconvert. |
| 3989 | */ |
| 3990 | d_delete(dentry); |
| 3991 | dput(dentry); |
| 3992 | |
| 3993 | spin_lock(&dentry_attach_lock); |
| 3994 | } |
| 3995 | spin_unlock(&dentry_attach_lock); |
| 3996 | |
| 3997 | /* |
| 3998 | * If we are the last holder of this dentry lock, there is no |
| 3999 | * reason to downconvert so skip straight to the unlock. |
| 4000 | */ |
| 4001 | if (dl->dl_count == 1) |
| 4002 | return UNBLOCK_STOP_POST; |
| 4003 | |
| 4004 | return UNBLOCK_CONTINUE_POST; |
| 4005 | } |
| 4006 | |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 4007 | static int ocfs2_check_refcount_downconvert(struct ocfs2_lock_res *lockres, |
| 4008 | int new_level) |
| 4009 | { |
| 4010 | struct ocfs2_refcount_tree *tree = |
| 4011 | ocfs2_lock_res_refcount_tree(lockres); |
| 4012 | |
| 4013 | return ocfs2_ci_checkpointed(&tree->rf_ci, lockres, new_level); |
| 4014 | } |
| 4015 | |
| 4016 | static int ocfs2_refcount_convert_worker(struct ocfs2_lock_res *lockres, |
| 4017 | int blocking) |
| 4018 | { |
| 4019 | struct ocfs2_refcount_tree *tree = |
| 4020 | ocfs2_lock_res_refcount_tree(lockres); |
| 4021 | |
| 4022 | ocfs2_metadata_cache_purge(&tree->rf_ci); |
| 4023 | |
| 4024 | return UNBLOCK_CONTINUE; |
| 4025 | } |
| 4026 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4027 | static void ocfs2_set_qinfo_lvb(struct ocfs2_lock_res *lockres) |
| 4028 | { |
| 4029 | struct ocfs2_qinfo_lvb *lvb; |
| 4030 | struct ocfs2_mem_dqinfo *oinfo = ocfs2_lock_res_qinfo(lockres); |
| 4031 | struct mem_dqinfo *info = sb_dqinfo(oinfo->dqi_gi.dqi_sb, |
| 4032 | oinfo->dqi_gi.dqi_type); |
| 4033 | |
Mark Fasheh | a641dc2 | 2008-12-24 16:03:48 -0800 | [diff] [blame] | 4034 | lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4035 | lvb->lvb_version = OCFS2_QINFO_LVB_VERSION; |
| 4036 | lvb->lvb_bgrace = cpu_to_be32(info->dqi_bgrace); |
| 4037 | lvb->lvb_igrace = cpu_to_be32(info->dqi_igrace); |
| 4038 | lvb->lvb_syncms = cpu_to_be32(oinfo->dqi_syncms); |
| 4039 | lvb->lvb_blocks = cpu_to_be32(oinfo->dqi_gi.dqi_blocks); |
| 4040 | lvb->lvb_free_blk = cpu_to_be32(oinfo->dqi_gi.dqi_free_blk); |
| 4041 | lvb->lvb_free_entry = cpu_to_be32(oinfo->dqi_gi.dqi_free_entry); |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4042 | } |
| 4043 | |
| 4044 | void ocfs2_qinfo_unlock(struct ocfs2_mem_dqinfo *oinfo, int ex) |
| 4045 | { |
| 4046 | struct ocfs2_lock_res *lockres = &oinfo->dqi_gqlock; |
| 4047 | struct ocfs2_super *osb = OCFS2_SB(oinfo->dqi_gi.dqi_sb); |
| 4048 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
| 4049 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4050 | if (!ocfs2_is_hard_readonly(osb) && !ocfs2_mount_local(osb)) |
| 4051 | ocfs2_cluster_unlock(osb, lockres, level); |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4052 | } |
| 4053 | |
| 4054 | static int ocfs2_refresh_qinfo(struct ocfs2_mem_dqinfo *oinfo) |
| 4055 | { |
| 4056 | struct mem_dqinfo *info = sb_dqinfo(oinfo->dqi_gi.dqi_sb, |
| 4057 | oinfo->dqi_gi.dqi_type); |
| 4058 | struct ocfs2_lock_res *lockres = &oinfo->dqi_gqlock; |
| 4059 | struct ocfs2_qinfo_lvb *lvb = ocfs2_dlm_lvb(&lockres->l_lksb); |
Joel Becker | 85eb8b7 | 2008-11-25 15:31:27 +0100 | [diff] [blame] | 4060 | struct buffer_head *bh = NULL; |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4061 | struct ocfs2_global_disk_dqinfo *gdinfo; |
| 4062 | int status = 0; |
| 4063 | |
Joel Becker | 1c520df | 2009-06-19 15:14:13 -0700 | [diff] [blame] | 4064 | if (ocfs2_dlm_lvb_valid(&lockres->l_lksb) && |
| 4065 | lvb->lvb_version == OCFS2_QINFO_LVB_VERSION) { |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4066 | info->dqi_bgrace = be32_to_cpu(lvb->lvb_bgrace); |
| 4067 | info->dqi_igrace = be32_to_cpu(lvb->lvb_igrace); |
| 4068 | oinfo->dqi_syncms = be32_to_cpu(lvb->lvb_syncms); |
| 4069 | oinfo->dqi_gi.dqi_blocks = be32_to_cpu(lvb->lvb_blocks); |
| 4070 | oinfo->dqi_gi.dqi_free_blk = be32_to_cpu(lvb->lvb_free_blk); |
| 4071 | oinfo->dqi_gi.dqi_free_entry = |
| 4072 | be32_to_cpu(lvb->lvb_free_entry); |
| 4073 | } else { |
Jan Kara | ae4f6ef | 2010-04-28 19:04:29 +0200 | [diff] [blame] | 4074 | status = ocfs2_read_quota_phys_block(oinfo->dqi_gqinode, |
| 4075 | oinfo->dqi_giblk, &bh); |
Joel Becker | 85eb8b7 | 2008-11-25 15:31:27 +0100 | [diff] [blame] | 4076 | if (status) { |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4077 | mlog_errno(status); |
| 4078 | goto bail; |
| 4079 | } |
| 4080 | gdinfo = (struct ocfs2_global_disk_dqinfo *) |
| 4081 | (bh->b_data + OCFS2_GLOBAL_INFO_OFF); |
| 4082 | info->dqi_bgrace = le32_to_cpu(gdinfo->dqi_bgrace); |
| 4083 | info->dqi_igrace = le32_to_cpu(gdinfo->dqi_igrace); |
| 4084 | oinfo->dqi_syncms = le32_to_cpu(gdinfo->dqi_syncms); |
| 4085 | oinfo->dqi_gi.dqi_blocks = le32_to_cpu(gdinfo->dqi_blocks); |
| 4086 | oinfo->dqi_gi.dqi_free_blk = le32_to_cpu(gdinfo->dqi_free_blk); |
| 4087 | oinfo->dqi_gi.dqi_free_entry = |
| 4088 | le32_to_cpu(gdinfo->dqi_free_entry); |
| 4089 | brelse(bh); |
| 4090 | ocfs2_track_lock_refresh(lockres); |
| 4091 | } |
| 4092 | |
| 4093 | bail: |
| 4094 | return status; |
| 4095 | } |
| 4096 | |
| 4097 | /* Lock quota info, this function expects at least shared lock on the quota file |
| 4098 | * so that we can safely refresh quota info from disk. */ |
| 4099 | int ocfs2_qinfo_lock(struct ocfs2_mem_dqinfo *oinfo, int ex) |
| 4100 | { |
| 4101 | struct ocfs2_lock_res *lockres = &oinfo->dqi_gqlock; |
| 4102 | struct ocfs2_super *osb = OCFS2_SB(oinfo->dqi_gi.dqi_sb); |
| 4103 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
| 4104 | int status = 0; |
| 4105 | |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4106 | /* On RO devices, locking really isn't needed... */ |
| 4107 | if (ocfs2_is_hard_readonly(osb)) { |
| 4108 | if (ex) |
| 4109 | status = -EROFS; |
| 4110 | goto bail; |
| 4111 | } |
| 4112 | if (ocfs2_mount_local(osb)) |
| 4113 | goto bail; |
| 4114 | |
| 4115 | status = ocfs2_cluster_lock(osb, lockres, level, 0, 0); |
| 4116 | if (status < 0) { |
| 4117 | mlog_errno(status); |
| 4118 | goto bail; |
| 4119 | } |
| 4120 | if (!ocfs2_should_refresh_lock_res(lockres)) |
| 4121 | goto bail; |
| 4122 | /* OK, we have the lock but we need to refresh the quota info */ |
| 4123 | status = ocfs2_refresh_qinfo(oinfo); |
| 4124 | if (status) |
| 4125 | ocfs2_qinfo_unlock(oinfo, ex); |
| 4126 | ocfs2_complete_lock_res_refresh(lockres, status); |
| 4127 | bail: |
Jan Kara | 9e33d69 | 2008-08-25 19:56:50 +0200 | [diff] [blame] | 4128 | return status; |
| 4129 | } |
| 4130 | |
Tao Ma | 8dec98e | 2009-08-18 11:19:58 +0800 | [diff] [blame] | 4131 | int ocfs2_refcount_lock(struct ocfs2_refcount_tree *ref_tree, int ex) |
| 4132 | { |
| 4133 | int status; |
| 4134 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
| 4135 | struct ocfs2_lock_res *lockres = &ref_tree->rf_lockres; |
| 4136 | struct ocfs2_super *osb = lockres->l_priv; |
| 4137 | |
| 4138 | |
| 4139 | if (ocfs2_is_hard_readonly(osb)) |
| 4140 | return -EROFS; |
| 4141 | |
| 4142 | if (ocfs2_mount_local(osb)) |
| 4143 | return 0; |
| 4144 | |
| 4145 | status = ocfs2_cluster_lock(osb, lockres, level, 0, 0); |
| 4146 | if (status < 0) |
| 4147 | mlog_errno(status); |
| 4148 | |
| 4149 | return status; |
| 4150 | } |
| 4151 | |
| 4152 | void ocfs2_refcount_unlock(struct ocfs2_refcount_tree *ref_tree, int ex) |
| 4153 | { |
| 4154 | int level = ex ? DLM_LOCK_EX : DLM_LOCK_PR; |
| 4155 | struct ocfs2_lock_res *lockres = &ref_tree->rf_lockres; |
| 4156 | struct ocfs2_super *osb = lockres->l_priv; |
| 4157 | |
| 4158 | if (!ocfs2_mount_local(osb)) |
| 4159 | ocfs2_cluster_unlock(osb, lockres, level); |
| 4160 | } |
| 4161 | |
Adrian Bunk | 0060005 | 2008-01-29 00:11:41 +0200 | [diff] [blame] | 4162 | static void ocfs2_process_blocked_lock(struct ocfs2_super *osb, |
| 4163 | struct ocfs2_lock_res *lockres) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4164 | { |
| 4165 | int status; |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 4166 | struct ocfs2_unblock_ctl ctl = {0, 0,}; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4167 | unsigned long flags; |
| 4168 | |
| 4169 | /* Our reference to the lockres in this function can be |
| 4170 | * considered valid until we remove the OCFS2_LOCK_QUEUED |
| 4171 | * flag. */ |
| 4172 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4173 | BUG_ON(!lockres); |
| 4174 | BUG_ON(!lockres->l_ops); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4175 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 4176 | mlog(ML_BASTS, "lockres %s blocked\n", lockres->l_name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4177 | |
| 4178 | /* Detect whether a lock has been marked as going away while |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4179 | * the downconvert thread was processing other things. A lock can |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4180 | * still be marked with OCFS2_LOCK_FREEING after this check, |
| 4181 | * but short circuiting here will still save us some |
| 4182 | * performance. */ |
| 4183 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 4184 | if (lockres->l_flags & OCFS2_LOCK_FREEING) |
| 4185 | goto unqueue; |
| 4186 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 4187 | |
Mark Fasheh | b5e500e | 2006-09-13 22:01:16 -0700 | [diff] [blame] | 4188 | status = ocfs2_unblock_lock(osb, lockres, &ctl); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4189 | if (status < 0) |
| 4190 | mlog_errno(status); |
| 4191 | |
| 4192 | spin_lock_irqsave(&lockres->l_lock, flags); |
| 4193 | unqueue: |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 4194 | if (lockres->l_flags & OCFS2_LOCK_FREEING || !ctl.requeue) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4195 | lockres_clear_flags(lockres, OCFS2_LOCK_QUEUED); |
| 4196 | } else |
| 4197 | ocfs2_schedule_blocked_lock(osb, lockres); |
| 4198 | |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 4199 | mlog(ML_BASTS, "lockres %s, requeue = %s.\n", lockres->l_name, |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 4200 | ctl.requeue ? "yes" : "no"); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4201 | spin_unlock_irqrestore(&lockres->l_lock, flags); |
| 4202 | |
Mark Fasheh | d680efe | 2006-09-08 14:14:34 -0700 | [diff] [blame] | 4203 | if (ctl.unblock_action != UNBLOCK_CONTINUE |
| 4204 | && lockres->l_ops->post_unlock) |
| 4205 | lockres->l_ops->post_unlock(osb, lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4206 | } |
| 4207 | |
| 4208 | static void ocfs2_schedule_blocked_lock(struct ocfs2_super *osb, |
| 4209 | struct ocfs2_lock_res *lockres) |
| 4210 | { |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4211 | unsigned long flags; |
| 4212 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4213 | assert_spin_locked(&lockres->l_lock); |
| 4214 | |
| 4215 | if (lockres->l_flags & OCFS2_LOCK_FREEING) { |
| 4216 | /* Do not schedule a lock for downconvert when it's on |
| 4217 | * the way to destruction - any nodes wanting access |
| 4218 | * to the resource will get it soon. */ |
Sunil Mushran | 9b91518 | 2010-02-26 19:42:44 -0800 | [diff] [blame] | 4219 | mlog(ML_BASTS, "lockres %s won't be scheduled: flags 0x%lx\n", |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4220 | lockres->l_name, lockres->l_flags); |
| 4221 | return; |
| 4222 | } |
| 4223 | |
| 4224 | lockres_or_flags(lockres, OCFS2_LOCK_QUEUED); |
| 4225 | |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4226 | spin_lock_irqsave(&osb->dc_task_lock, flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4227 | if (list_empty(&lockres->l_blocked_list)) { |
| 4228 | list_add_tail(&lockres->l_blocked_list, |
| 4229 | &osb->blocked_lock_list); |
| 4230 | osb->blocked_lock_count++; |
| 4231 | } |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4232 | spin_unlock_irqrestore(&osb->dc_task_lock, flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 4233 | } |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4234 | |
| 4235 | static void ocfs2_downconvert_thread_do_work(struct ocfs2_super *osb) |
| 4236 | { |
| 4237 | unsigned long processed; |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4238 | unsigned long flags; |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4239 | struct ocfs2_lock_res *lockres; |
| 4240 | |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4241 | spin_lock_irqsave(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4242 | /* grab this early so we know to try again if a state change and |
| 4243 | * wake happens part-way through our work */ |
| 4244 | osb->dc_work_sequence = osb->dc_wake_sequence; |
| 4245 | |
| 4246 | processed = osb->blocked_lock_count; |
Joseph Qi | 209f7512d0 | 2015-08-06 15:46:23 -0700 | [diff] [blame] | 4247 | /* |
| 4248 | * blocked lock processing in this loop might call iput which can |
| 4249 | * remove items off osb->blocked_lock_list. Downconvert up to |
| 4250 | * 'processed' number of locks, but stop short if we had some |
| 4251 | * removed in ocfs2_mark_lockres_freeing when downconverting. |
| 4252 | */ |
| 4253 | while (processed && !list_empty(&osb->blocked_lock_list)) { |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4254 | lockres = list_entry(osb->blocked_lock_list.next, |
| 4255 | struct ocfs2_lock_res, l_blocked_list); |
| 4256 | list_del_init(&lockres->l_blocked_list); |
| 4257 | osb->blocked_lock_count--; |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4258 | spin_unlock_irqrestore(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4259 | |
| 4260 | BUG_ON(!processed); |
| 4261 | processed--; |
| 4262 | |
| 4263 | ocfs2_process_blocked_lock(osb, lockres); |
| 4264 | |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4265 | spin_lock_irqsave(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4266 | } |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4267 | spin_unlock_irqrestore(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4268 | } |
| 4269 | |
| 4270 | static int ocfs2_downconvert_thread_lists_empty(struct ocfs2_super *osb) |
| 4271 | { |
| 4272 | int empty = 0; |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4273 | unsigned long flags; |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4274 | |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4275 | spin_lock_irqsave(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4276 | if (list_empty(&osb->blocked_lock_list)) |
| 4277 | empty = 1; |
| 4278 | |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4279 | spin_unlock_irqrestore(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4280 | return empty; |
| 4281 | } |
| 4282 | |
| 4283 | static int ocfs2_downconvert_thread_should_wake(struct ocfs2_super *osb) |
| 4284 | { |
| 4285 | int should_wake = 0; |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4286 | unsigned long flags; |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4287 | |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4288 | spin_lock_irqsave(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4289 | if (osb->dc_work_sequence != osb->dc_wake_sequence) |
| 4290 | should_wake = 1; |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4291 | spin_unlock_irqrestore(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4292 | |
| 4293 | return should_wake; |
| 4294 | } |
| 4295 | |
Adrian Bunk | 200bfae | 2008-02-17 10:20:38 +0200 | [diff] [blame] | 4296 | static int ocfs2_downconvert_thread(void *arg) |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4297 | { |
| 4298 | int status = 0; |
| 4299 | struct ocfs2_super *osb = arg; |
| 4300 | |
| 4301 | /* only quit once we've been asked to stop and there is no more |
| 4302 | * work available */ |
| 4303 | while (!(kthread_should_stop() && |
| 4304 | ocfs2_downconvert_thread_lists_empty(osb))) { |
| 4305 | |
| 4306 | wait_event_interruptible(osb->dc_event, |
| 4307 | ocfs2_downconvert_thread_should_wake(osb) || |
| 4308 | kthread_should_stop()); |
| 4309 | |
| 4310 | mlog(0, "downconvert_thread: awoken\n"); |
| 4311 | |
| 4312 | ocfs2_downconvert_thread_do_work(osb); |
| 4313 | } |
| 4314 | |
| 4315 | osb->dc_task = NULL; |
| 4316 | return status; |
| 4317 | } |
| 4318 | |
| 4319 | void ocfs2_wake_downconvert_thread(struct ocfs2_super *osb) |
| 4320 | { |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4321 | unsigned long flags; |
| 4322 | |
| 4323 | spin_lock_irqsave(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4324 | /* make sure the voting thread gets a swipe at whatever changes |
| 4325 | * the caller may have made to the voting state */ |
| 4326 | osb->dc_wake_sequence++; |
Srinivas Eeda | a75e9cc | 2012-01-30 21:51:22 -0800 | [diff] [blame] | 4327 | spin_unlock_irqrestore(&osb->dc_task_lock, flags); |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 4328 | wake_up(&osb->dc_event); |
| 4329 | } |