blob: 1f3902ecddedd392f09aaef822d6da96ccdbbb3e [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersoncf45b752008-01-31 10:31:39 -06004 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
Joe Perchesd77d1b52014-03-06 12:10:45 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
David Teiglandb3b94fa2006-01-16 16:50:04 +00009#include <linux/sched.h>
10#include <linux/slab.h>
11#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/buffer_head.h>
13#include <linux/delay.h>
14#include <linux/sort.h>
Andreas Gruenbacher05154802017-08-01 11:18:26 -050015#include <linux/hash.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016#include <linux/jhash.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050017#include <linux/kallsyms.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
Steven Whitehouse24264432006-09-11 21:40:30 -040019#include <linux/list.h>
Steven Whitehousefee852e2007-01-17 15:33:23 +000020#include <linux/wait.h>
akpm@linux-foundation.org95d97b72007-03-05 23:10:39 -080021#include <linux/module.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080022#include <linux/uaccess.h>
Robert Peterson7c52b162007-03-16 10:26:37 +000023#include <linux/seq_file.h>
24#include <linux/debugfs.h>
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +010025#include <linux/kthread.h>
26#include <linux/freezer.h>
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050027#include <linux/workqueue.h>
28#include <linux/jiffies.h>
Steven Whitehousebc015cb2011-01-19 09:30:01 +000029#include <linux/rcupdate.h>
30#include <linux/rculist_bl.h>
31#include <linux/bit_spinlock.h>
Steven Whitehousea2457692012-01-20 10:38:36 +000032#include <linux/percpu.h>
Steven Whitehouse4506a5192013-02-01 20:36:03 +000033#include <linux/list_sort.h>
Steven Whitehousee66cf162013-10-15 15:18:08 +010034#include <linux/lockref.h>
Bob Peterson88ffbf32015-03-16 11:02:46 -050035#include <linux/rhashtable.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000036
37#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050038#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039#include "glock.h"
40#include "glops.h"
41#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000042#include "lops.h"
43#include "meta_io.h"
44#include "quota.h"
45#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050046#include "util.h"
Steven Whitehouse813e0c42008-11-18 13:38:48 +000047#include "bmap.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010048#define CREATE_TRACE_POINTS
49#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000050
Steven Whitehouse6802e342008-05-21 17:03:22 +010051struct gfs2_glock_iter {
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +010052 struct gfs2_sbd *sdp; /* incore superblock */
Bob Peterson88ffbf32015-03-16 11:02:46 -050053 struct rhashtable_iter hti; /* rhashtable iterator */
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +010054 struct gfs2_glock *gl; /* current glock struct */
55 loff_t last_pos; /* last position */
Robert Peterson7c52b162007-03-16 10:26:37 +000056};
57
David Teiglandb3b94fa2006-01-16 16:50:04 +000058typedef void (*glock_examiner) (struct gfs2_glock * gl);
59
Steven Whitehouse6802e342008-05-21 17:03:22 +010060static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050061
Robert Peterson7c52b162007-03-16 10:26:37 +000062static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050063static struct workqueue_struct *glock_workqueue;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -050064struct workqueue_struct *gfs2_delete_workqueue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +000065static LIST_HEAD(lru_list);
66static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010067static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040068
Steven Whitehouseb6397892006-09-12 10:10:01 -040069#define GFS2_GL_HASH_SHIFT 15
Fabian Frederick47a9a522016-08-02 12:05:27 -050070#define GFS2_GL_HASH_SIZE BIT(GFS2_GL_HASH_SHIFT)
Steven Whitehouse087efdd2006-09-09 16:59:11 -040071
Arvind Yadavd296b152017-08-30 07:50:03 -050072static const struct rhashtable_params ht_parms = {
Bob Peterson88ffbf32015-03-16 11:02:46 -050073 .nelem_hint = GFS2_GL_HASH_SIZE * 3 / 4,
Andreas Gruenbacher972b0442017-03-16 09:54:57 -040074 .key_len = offsetofend(struct lm_lockname, ln_type),
Bob Peterson88ffbf32015-03-16 11:02:46 -050075 .key_offset = offsetof(struct gfs2_glock, gl_name),
76 .head_offset = offsetof(struct gfs2_glock, gl_node),
77};
Steven Whitehouse087efdd2006-09-09 16:59:11 -040078
Bob Peterson88ffbf32015-03-16 11:02:46 -050079static struct rhashtable gl_hash_table;
David Teiglandb3b94fa2006-01-16 16:50:04 +000080
Andreas Gruenbacher05154802017-08-01 11:18:26 -050081#define GLOCK_WAIT_TABLE_BITS 12
82#define GLOCK_WAIT_TABLE_SIZE (1 << GLOCK_WAIT_TABLE_BITS)
83static wait_queue_head_t glock_wait_table[GLOCK_WAIT_TABLE_SIZE] __cacheline_aligned;
84
85struct wait_glock_queue {
86 struct lm_lockname *name;
87 wait_queue_entry_t wait;
88};
89
90static int glock_wake_function(wait_queue_entry_t *wait, unsigned int mode,
91 int sync, void *key)
92{
93 struct wait_glock_queue *wait_glock =
94 container_of(wait, struct wait_glock_queue, wait);
95 struct lm_lockname *wait_name = wait_glock->name;
96 struct lm_lockname *wake_name = key;
97
98 if (wake_name->ln_sbd != wait_name->ln_sbd ||
99 wake_name->ln_number != wait_name->ln_number ||
100 wake_name->ln_type != wait_name->ln_type)
101 return 0;
102 return autoremove_wake_function(wait, mode, sync, key);
103}
104
105static wait_queue_head_t *glock_waitqueue(struct lm_lockname *name)
106{
Andreas Gruenbacher605b0482019-03-06 15:41:57 +0100107 u32 hash = jhash2((u32 *)name, ht_parms.key_len / 4, 0);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500108
109 return glock_wait_table + hash_32(hash, GLOCK_WAIT_TABLE_BITS);
110}
111
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500112/**
113 * wake_up_glock - Wake up waiters on a glock
114 * @gl: the glock
115 */
116static void wake_up_glock(struct gfs2_glock *gl)
117{
118 wait_queue_head_t *wq = glock_waitqueue(&gl->gl_name);
119
120 if (waitqueue_active(wq))
121 __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name);
122}
123
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500124static void gfs2_glock_dealloc(struct rcu_head *rcu)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125{
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500126 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000127
Bob Peterson15f25472020-01-15 12:47:46 -0600128 kfree(gl->gl_lksb.sb_lvbptr);
129 if (gl->gl_ops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000130 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
Bob Peterson15f25472020-01-15 12:47:46 -0600131 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000132 kmem_cache_free(gfs2_glock_cachep, gl);
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500133}
134
Bob Petersona72d2402019-06-13 13:28:45 -0500135/**
136 * glock_blocked_by_withdraw - determine if we can still use a glock
137 * @gl: the glock
138 *
139 * We need to allow some glocks to be enqueued, dequeued, promoted, and demoted
140 * when we're withdrawn. For example, to maintain metadata integrity, we should
141 * disallow the use of inode and rgrp glocks when withdrawn. Other glocks, like
142 * iopen or the transaction glocks may be safely used because none of their
143 * metadata goes through the journal. So in general, we should disallow all
144 * glocks that are journaled, and allow all the others. One exception is:
145 * we need to allow our active journal to be promoted and demoted so others
146 * may recover it and we can reacquire it when they're done.
147 */
148static bool glock_blocked_by_withdraw(struct gfs2_glock *gl)
149{
150 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
151
152 if (likely(!gfs2_withdrawn(sdp)))
153 return false;
154 if (gl->gl_ops->go_flags & GLOF_NONDISK)
155 return false;
156 if (!sdp->sd_jdesc ||
157 gl->gl_name.ln_number == sdp->sd_jdesc->jd_no_addr)
158 return false;
159 return true;
160}
161
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500162void gfs2_glock_free(struct gfs2_glock *gl)
163{
164 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
165
Bob Petersonea4e61c2020-05-23 08:13:50 -0500166 gfs2_glock_assert_withdraw(gl, atomic_read(&gl->gl_revokes) == 0);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500167 rhashtable_remove_fast(&gl_hash_table, &gl->gl_node, ht_parms);
168 smp_mb();
169 wake_up_glock(gl);
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500170 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000171 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
172 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000173}
174
175/**
176 * gfs2_glock_hold() - increment reference count on glock
177 * @gl: The glock to hold
178 *
179 */
180
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -0500181void gfs2_glock_hold(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000182{
Steven Whitehousee66cf162013-10-15 15:18:08 +0100183 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
184 lockref_get(&gl->gl_lockref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185}
186
187/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500188 * demote_ok - Check to see if it's ok to unlock a glock
189 * @gl: the glock
190 *
191 * Returns: 1 if it's ok
192 */
193
194static int demote_ok(const struct gfs2_glock *gl)
195{
196 const struct gfs2_glock_operations *glops = gl->gl_ops;
197
198 if (gl->gl_state == LM_ST_UNLOCKED)
199 return 0;
Steven Whitehousef42ab082011-04-14 16:50:31 +0100200 if (!list_empty(&gl->gl_holders))
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500201 return 0;
202 if (glops->go_demote_ok)
203 return glops->go_demote_ok(gl);
204 return 1;
205}
206
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000207
Steven Whitehouse29687a22011-03-30 16:33:25 +0100208void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
209{
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000210 if (!(gl->gl_ops->go_flags & GLOF_LRU))
211 return;
212
Steven Whitehouse29687a22011-03-30 16:33:25 +0100213 spin_lock(&lru_lock);
214
Baokun Li38a618d2021-06-08 11:12:44 +0800215 list_move_tail(&gl->gl_lru, &lru_list);
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000216
217 if (!test_bit(GLF_LRU, &gl->gl_flags)) {
218 set_bit(GLF_LRU, &gl->gl_flags);
219 atomic_inc(&lru_count);
220 }
221
Steven Whitehouse29687a22011-03-30 16:33:25 +0100222 spin_unlock(&lru_lock);
223}
224
Bob Peterson8f6cb402015-01-05 13:25:10 -0500225static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
Steven Whitehousef42ab082011-04-14 16:50:31 +0100226{
Bob Peterson645ebd42017-07-26 10:57:35 -0500227 if (!(gl->gl_ops->go_flags & GLOF_LRU))
228 return;
229
Bob Peterson8f6cb402015-01-05 13:25:10 -0500230 spin_lock(&lru_lock);
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000231 if (test_bit(GLF_LRU, &gl->gl_flags)) {
Steven Whitehousef42ab082011-04-14 16:50:31 +0100232 list_del_init(&gl->gl_lru);
233 atomic_dec(&lru_count);
234 clear_bit(GLF_LRU, &gl->gl_flags);
235 }
236 spin_unlock(&lru_lock);
237}
238
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500239/*
240 * Enqueue the glock on the work queue. Passes one glock reference on to the
241 * work queue.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 */
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500243static void __gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
244 if (!queue_delayed_work(glock_workqueue, &gl->gl_work, delay)) {
245 /*
246 * We are holding the lockref spinlock, and the work was still
247 * queued above. The queued work (glock_work_func) takes that
248 * spinlock before dropping its glock reference(s), so it
249 * cannot have dropped them in the meantime.
250 */
251 GLOCK_BUG_ON(gl, gl->gl_lockref.count < 2);
252 gl->gl_lockref.count--;
253 }
254}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500256static void gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
257 spin_lock(&gl->gl_lockref.lock);
258 __gfs2_glock_queue_work(gl, delay);
259 spin_unlock(&gl->gl_lockref.lock);
260}
261
262static void __gfs2_glock_put(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000263{
Bob Peterson15562c42015-03-16 11:52:05 -0500264 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000265 struct address_space *mapping = gfs2_glock2aspace(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266
Steven Whitehousee66cf162013-10-15 15:18:08 +0100267 lockref_mark_dead(&gl->gl_lockref);
268
Bob Peterson8f6cb402015-01-05 13:25:10 -0500269 gfs2_glock_remove_from_lru(gl);
Steven Whitehousee66cf162013-10-15 15:18:08 +0100270 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehousee66cf162013-10-15 15:18:08 +0100271 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
Bob Petersonee1e2c72020-09-16 11:06:23 -0500272 if (mapping) {
273 truncate_inode_pages_final(mapping);
274 if (!gfs2_withdrawn(sdp))
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700275 GLOCK_BUG_ON(gl, !mapping_empty(mapping));
Bob Petersonee1e2c72020-09-16 11:06:23 -0500276 }
Steven Whitehousee66cf162013-10-15 15:18:08 +0100277 trace_gfs2_glock_put(gl);
278 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279}
280
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -0500281/*
282 * Cause the glock to be put in work queue context.
283 */
284void gfs2_glock_queue_put(struct gfs2_glock *gl)
285{
286 gfs2_glock_queue_work(gl, 0);
287}
288
David Teiglandb3b94fa2006-01-16 16:50:04 +0000289/**
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500290 * gfs2_glock_put() - Decrement reference count on glock
291 * @gl: The glock to put
292 *
293 */
294
295void gfs2_glock_put(struct gfs2_glock *gl)
296{
297 if (lockref_put_or_lock(&gl->gl_lockref))
298 return;
299
300 __gfs2_glock_put(gl);
301}
302
303/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100304 * may_grant - check if its ok to grant a new lock
305 * @gl: The glock
306 * @gh: The lock request which we wish to grant
307 *
308 * Returns: true if its ok to grant the lock
309 */
310
311static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500312{
Andreas Gruenbacher969183b2020-02-03 19:22:45 +0100313 const struct gfs2_holder *gh_head = list_first_entry(&gl->gl_holders, const struct gfs2_holder, gh_list);
Bob Peterson06e908c2018-04-18 13:58:19 -0700314
315 if (gh != gh_head) {
316 /**
317 * Here we make a special exception to grant holders who agree
318 * to share the EX lock with other holders who also have the
319 * bit set. If the original holder has the LM_FLAG_NODE_SCOPE bit
320 * is set, we grant more holders with the bit set.
321 */
322 if (gh_head->gh_state == LM_ST_EXCLUSIVE &&
323 (gh_head->gh_flags & LM_FLAG_NODE_SCOPE) &&
324 gh->gh_state == LM_ST_EXCLUSIVE &&
325 (gh->gh_flags & LM_FLAG_NODE_SCOPE))
326 return 1;
327 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
328 gh_head->gh_state == LM_ST_EXCLUSIVE))
329 return 0;
330 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100331 if (gl->gl_state == gh->gh_state)
332 return 1;
333 if (gh->gh_flags & GL_EXACT)
334 return 0;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100335 if (gl->gl_state == LM_ST_EXCLUSIVE) {
336 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
337 return 1;
338 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
339 return 1;
340 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100341 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
342 return 1;
343 return 0;
344}
345
346static void gfs2_holder_wake(struct gfs2_holder *gh)
347{
348 clear_bit(HIF_WAIT, &gh->gh_iflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100349 smp_mb__after_atomic();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100350 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
Bob Petersonad269672019-08-30 12:31:02 -0500351 if (gh->gh_flags & GL_ASYNC) {
352 struct gfs2_sbd *sdp = gh->gh_gl->gl_name.ln_sbd;
353
354 wake_up(&sdp->sd_async_glock_wait);
355 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100356}
357
358/**
Steven Whitehoused5341a92010-07-23 14:05:51 +0100359 * do_error - Something unexpected has happened during a lock request
Lee Jonesc551f662021-03-30 17:44:29 +0100360 * @gl: The glock
361 * @ret: The status from the DLM
Steven Whitehoused5341a92010-07-23 14:05:51 +0100362 */
363
Denys Vlasenkoa527b382016-04-12 12:39:12 -0400364static void do_error(struct gfs2_glock *gl, const int ret)
Steven Whitehoused5341a92010-07-23 14:05:51 +0100365{
366 struct gfs2_holder *gh, *tmp;
367
368 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
369 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
370 continue;
371 if (ret & LM_OUT_ERROR)
372 gh->gh_error = -EIO;
373 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
374 gh->gh_error = GLR_TRYFAILED;
375 else
376 continue;
377 list_del_init(&gh->gh_list);
378 trace_gfs2_glock_queue(gh, 0);
379 gfs2_holder_wake(gh);
380 }
381}
382
383/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100384 * do_promote - promote as many requests as possible on the current queue
385 * @gl: The glock
386 *
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000387 * Returns: 1 if there is a blocked holder at the head of the list, or 2
388 * if a type specific operation is underway.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100389 */
390
391static int do_promote(struct gfs2_glock *gl)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500392__releases(&gl->gl_lockref.lock)
393__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100394{
395 const struct gfs2_glock_operations *glops = gl->gl_ops;
396 struct gfs2_holder *gh, *tmp;
397 int ret;
398
399restart:
400 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
401 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
402 continue;
403 if (may_grant(gl, gh)) {
404 if (gh->gh_list.prev == &gl->gl_holders &&
405 glops->go_lock) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500406 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100407 /* FIXME: eliminate this eventually */
408 ret = glops->go_lock(gh);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500409 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100410 if (ret) {
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000411 if (ret == 1)
412 return 2;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100413 gh->gh_error = ret;
414 list_del_init(&gh->gh_list);
Steven Whitehouse63997772009-06-12 08:49:20 +0100415 trace_gfs2_glock_queue(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100416 gfs2_holder_wake(gh);
417 goto restart;
418 }
419 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100420 trace_gfs2_promote(gh, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100421 gfs2_holder_wake(gh);
422 goto restart;
423 }
424 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100425 trace_gfs2_promote(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100426 gfs2_holder_wake(gh);
427 continue;
428 }
429 if (gh->gh_list.prev == &gl->gl_holders)
430 return 1;
Steven Whitehoused5341a92010-07-23 14:05:51 +0100431 do_error(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100432 break;
433 }
434 return 0;
435}
436
437/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100438 * find_first_waiter - find the first gh that's waiting for the glock
439 * @gl: the glock
440 */
441
442static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
443{
444 struct gfs2_holder *gh;
445
446 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
447 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
448 return gh;
449 }
450 return NULL;
451}
452
453/**
454 * state_change - record that the glock is now in a different state
455 * @gl: the glock
Lee Jonesc551f662021-03-30 17:44:29 +0100456 * @new_state: the new state
Steven Whitehouse6802e342008-05-21 17:03:22 +0100457 */
458
459static void state_change(struct gfs2_glock *gl, unsigned int new_state)
460{
461 int held1, held2;
462
463 held1 = (gl->gl_state != LM_ST_UNLOCKED);
464 held2 = (new_state != LM_ST_UNLOCKED);
465
466 if (held1 != held2) {
Steven Whitehousee66cf162013-10-15 15:18:08 +0100467 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
Steven Whitehouse6802e342008-05-21 17:03:22 +0100468 if (held2)
Steven Whitehousee66cf162013-10-15 15:18:08 +0100469 gl->gl_lockref.count++;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100470 else
Steven Whitehousee66cf162013-10-15 15:18:08 +0100471 gl->gl_lockref.count--;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100472 }
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400473 if (new_state != gl->gl_target)
474 /* shorten our minimum hold time */
475 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
476 GL_GLOCK_MIN_HOLD);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100477 gl->gl_state = new_state;
478 gl->gl_tchange = jiffies;
479}
480
Andreas Gruenbacher35b6f8f2020-01-17 13:48:49 +0100481static void gfs2_set_demote(struct gfs2_glock *gl)
482{
483 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
484
485 set_bit(GLF_DEMOTE, &gl->gl_flags);
486 smp_mb();
487 wake_up(&sdp->sd_async_glock_wait);
488}
489
Steven Whitehouse6802e342008-05-21 17:03:22 +0100490static void gfs2_demote_wake(struct gfs2_glock *gl)
491{
492 gl->gl_demote_state = LM_ST_EXCLUSIVE;
493 clear_bit(GLF_DEMOTE, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100494 smp_mb__after_atomic();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100495 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
496}
497
498/**
499 * finish_xmote - The DLM has replied to one of our lock requests
500 * @gl: The glock
501 * @ret: The status from the DLM
502 *
503 */
504
505static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
506{
507 const struct gfs2_glock_operations *glops = gl->gl_ops;
508 struct gfs2_holder *gh;
509 unsigned state = ret & LM_OUT_ST_MASK;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000510 int rv;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500511
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500512 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse63997772009-06-12 08:49:20 +0100513 trace_gfs2_glock_state_change(gl, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100514 state_change(gl, state);
515 gh = find_first_waiter(gl);
516
517 /* Demote to UN request arrived during demote to SH or DF */
518 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
519 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
520 gl->gl_target = LM_ST_UNLOCKED;
521
522 /* Check for state != intended state */
523 if (unlikely(state != gl->gl_target)) {
524 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
525 /* move to back of queue and try next entry */
526 if (ret & LM_OUT_CANCELED) {
527 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
528 list_move_tail(&gh->gh_list, &gl->gl_holders);
529 gh = find_first_waiter(gl);
530 gl->gl_target = gh->gh_state;
531 goto retry;
532 }
533 /* Some error or failed "try lock" - report it */
534 if ((ret & LM_OUT_ERROR) ||
535 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
536 gl->gl_target = gl->gl_state;
537 do_error(gl, ret);
538 goto out;
539 }
540 }
541 switch(state) {
542 /* Unlocked due to conversion deadlock, try again */
543 case LM_ST_UNLOCKED:
544retry:
545 do_xmote(gl, gh, gl->gl_target);
546 break;
547 /* Conversion fails, unlock and try again */
548 case LM_ST_SHARED:
549 case LM_ST_DEFERRED:
550 do_xmote(gl, gh, LM_ST_UNLOCKED);
551 break;
552 default: /* Everything else */
Bob Petersone54c78a2018-10-03 08:47:36 -0500553 fs_err(gl->gl_name.ln_sbd, "wanted %u got %u\n",
554 gl->gl_target, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100555 GLOCK_BUG_ON(gl, 1);
556 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500557 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100558 return;
559 }
560
561 /* Fast path - we got what we asked for */
562 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
563 gfs2_demote_wake(gl);
564 if (state != LM_ST_UNLOCKED) {
565 if (glops->go_xmote_bh) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500566 spin_unlock(&gl->gl_lockref.lock);
Bob Petersonf68effb2021-03-19 07:56:44 -0400567 rv = glops->go_xmote_bh(gl);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500568 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100569 if (rv) {
570 do_error(gl, rv);
571 goto out;
572 }
573 }
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000574 rv = do_promote(gl);
575 if (rv == 2)
576 goto out_locked;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100577 }
578out:
579 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000580out_locked:
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500581 spin_unlock(&gl->gl_lockref.lock);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500582}
583
Bob Peterson865cc3e2021-05-18 09:14:31 -0400584static bool is_system_glock(struct gfs2_glock *gl)
585{
586 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
587 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
588
589 if (gl == m_ip->i_gl)
590 return true;
591 return false;
592}
593
Steven Whitehouse6802e342008-05-21 17:03:22 +0100594/**
595 * do_xmote - Calls the DLM to change the state of a lock
596 * @gl: The lock state
597 * @gh: The holder (only for promotes)
598 * @target: The target lock state
599 *
600 */
601
602static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500603__releases(&gl->gl_lockref.lock)
604__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100605{
606 const struct gfs2_glock_operations *glops = gl->gl_ops;
Bob Peterson15562c42015-03-16 11:52:05 -0500607 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Bob Petersonb58bf402015-07-24 09:45:43 -0500608 unsigned int lck_flags = (unsigned int)(gh ? gh->gh_flags : 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100609 int ret;
610
Bob Peterson601ef0d2020-01-28 20:23:45 +0100611 if (target != LM_ST_UNLOCKED && glock_blocked_by_withdraw(gl) &&
612 gh && !(gh->gh_flags & LM_FLAG_NOEXP))
Bob Peterson0d1c7ae2017-03-03 12:37:14 -0500613 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100614 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
615 LM_FLAG_PRIORITY);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000616 GLOCK_BUG_ON(gl, gl->gl_state == target);
617 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100618 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
619 glops->go_inval) {
Bob Petersond99724c2019-11-15 10:45:41 -0500620 /*
621 * If another process is already doing the invalidate, let that
622 * finish first. The glock state machine will get back to this
623 * holder again later.
624 */
625 if (test_and_set_bit(GLF_INVALIDATE_IN_PROGRESS,
626 &gl->gl_flags))
627 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100628 do_error(gl, 0); /* Fail queued try locks */
629 }
Steven Whitehouse47a25382010-11-30 15:49:31 +0000630 gl->gl_req = target;
Steven Whitehousea2457692012-01-20 10:38:36 +0000631 set_bit(GLF_BLOCKING, &gl->gl_flags);
632 if ((gl->gl_req == LM_ST_UNLOCKED) ||
633 (gl->gl_state == LM_ST_EXCLUSIVE) ||
634 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
635 clear_bit(GLF_BLOCKING, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500636 spin_unlock(&gl->gl_lockref.lock);
Bob Peterson1c634f92019-11-13 14:09:28 -0600637 if (glops->go_sync) {
638 ret = glops->go_sync(gl);
639 /* If we had a problem syncing (due to io errors or whatever,
640 * we should not invalidate the metadata or tell dlm to
641 * release the glock to other nodes.
642 */
643 if (ret) {
644 if (cmpxchg(&sdp->sd_log_error, 0, ret)) {
645 fs_err(sdp, "Error %d syncing glock \n", ret);
646 gfs2_dump_glock(NULL, gl, true);
647 }
Bob Petersonb11e1a82020-05-07 12:12:23 -0500648 goto skip_inval;
Bob Peterson1c634f92019-11-13 14:09:28 -0600649 }
650 }
Bob Peterson33dbd1e2019-05-22 09:21:21 -0500651 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) {
652 /*
653 * The call to go_sync should have cleared out the ail list.
654 * If there are still items, we have a problem. We ought to
655 * withdraw, but we can't because the withdraw code also uses
656 * glocks. Warn about the error, dump the glock, then fall
657 * through and wait for logd to do the withdraw for us.
658 */
659 if ((atomic_read(&gl->gl_ail_count) != 0) &&
660 (!cmpxchg(&sdp->sd_log_error, 0, -EIO))) {
Bob Petersonea4e61c2020-05-23 08:13:50 -0500661 gfs2_glock_assert_warn(gl,
662 !atomic_read(&gl->gl_ail_count));
Bob Peterson33dbd1e2019-05-22 09:21:21 -0500663 gfs2_dump_glock(NULL, gl, true);
664 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100665 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
Bob Peterson33dbd1e2019-05-22 09:21:21 -0500666 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
667 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100668
Bob Petersonb11e1a82020-05-07 12:12:23 -0500669skip_inval:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100670 gfs2_glock_hold(gl);
Bob Petersond93ae382019-04-29 13:14:58 -0600671 /*
672 * Check for an error encountered since we called go_sync and go_inval.
673 * If so, we can't withdraw from the glock code because the withdraw
674 * code itself uses glocks (see function signal_our_withdraw) to
675 * change the mount to read-only. Most importantly, we must not call
676 * dlm to unlock the glock until the journal is in a known good state
677 * (after journal replay) otherwise other nodes may use the object
678 * (rgrp or dinode) and then later, journal replay will corrupt the
679 * file system. The best we can do here is wait for the logd daemon
680 * to see sd_log_error and withdraw, and in the meantime, requeue the
681 * work for later.
682 *
Bob Peterson865cc3e2021-05-18 09:14:31 -0400683 * We make a special exception for some system glocks, such as the
684 * system statfs inode glock, which needs to be granted before the
685 * gfs2_quotad daemon can exit, and that exit needs to finish before
686 * we can unmount the withdrawn file system.
687 *
Bob Petersond93ae382019-04-29 13:14:58 -0600688 * However, if we're just unlocking the lock (say, for unmount, when
689 * gfs2_gl_hash_clear calls clear_glock) and recovery is complete
690 * then it's okay to tell dlm to unlock it.
691 */
692 if (unlikely(sdp->sd_log_error && !gfs2_withdrawn(sdp)))
693 gfs2_withdraw_delayed(sdp);
Bob Peterson865cc3e2021-05-18 09:14:31 -0400694 if (glock_blocked_by_withdraw(gl) &&
695 (target != LM_ST_UNLOCKED ||
696 test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags))) {
697 if (!is_system_glock(gl)) {
Bob Petersond93ae382019-04-29 13:14:58 -0600698 gfs2_glock_queue_work(gl, GL_GLOCK_DFT_HOLD);
699 goto out;
Bob Peterson865cc3e2021-05-18 09:14:31 -0400700 } else {
701 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
Bob Petersond93ae382019-04-29 13:14:58 -0600702 }
703 }
704
Steven Whitehouse921169c2010-11-29 12:50:38 +0000705 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
706 /* lock_dlm */
707 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
Benjamin Marzinski3e11e5302016-03-23 14:29:59 -0400708 if (ret == -EINVAL && gl->gl_target == LM_ST_UNLOCKED &&
709 target == LM_ST_UNLOCKED &&
710 test_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags)) {
711 finish_xmote(gl, target);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500712 gfs2_glock_queue_work(gl, 0);
Bob Petersond93ae382019-04-29 13:14:58 -0600713 } else if (ret) {
Bob Petersone54c78a2018-10-03 08:47:36 -0500714 fs_err(sdp, "lm_lock ret %d\n", ret);
Bob Petersoneb43e662019-11-14 09:52:15 -0500715 GLOCK_BUG_ON(gl, !gfs2_withdrawn(sdp));
David Teiglanddba2d702012-11-14 13:46:53 -0500716 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000717 } else { /* lock_nolock */
718 finish_xmote(gl, target);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500719 gfs2_glock_queue_work(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100720 }
Bob Petersond93ae382019-04-29 13:14:58 -0600721out:
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500722 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100723}
724
725/**
726 * find_first_holder - find the first "holder" gh
727 * @gl: the glock
728 */
729
730static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
731{
732 struct gfs2_holder *gh;
733
734 if (!list_empty(&gl->gl_holders)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +0100735 gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100736 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
737 return gh;
738 }
739 return NULL;
740}
741
742/**
743 * run_queue - do all outstanding tasks related to a glock
744 * @gl: The glock in question
745 * @nonblock: True if we must not block in run_queue
746 *
747 */
748
749static void run_queue(struct gfs2_glock *gl, const int nonblock)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500750__releases(&gl->gl_lockref.lock)
751__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100752{
753 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000754 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100755
756 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
757 return;
758
759 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
760
761 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
762 gl->gl_demote_state != gl->gl_state) {
763 if (find_first_holder(gl))
Steven Whitehoused8348de2009-02-05 10:12:38 +0000764 goto out_unlock;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100765 if (nonblock)
766 goto out_sched;
767 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100768 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100769 gl->gl_target = gl->gl_demote_state;
770 } else {
771 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
772 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000773 ret = do_promote(gl);
774 if (ret == 0)
Steven Whitehoused8348de2009-02-05 10:12:38 +0000775 goto out_unlock;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000776 if (ret == 2)
Steven Whitehousea228df62009-04-07 14:01:34 +0100777 goto out;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100778 gh = find_first_waiter(gl);
779 gl->gl_target = gh->gh_state;
780 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
781 do_error(gl, 0); /* Fail queued try locks */
782 }
783 do_xmote(gl, gh, gl->gl_target);
Steven Whitehousea228df62009-04-07 14:01:34 +0100784out:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100785 return;
786
787out_sched:
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100788 clear_bit(GLF_LOCK, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100789 smp_mb__after_atomic();
Steven Whitehousee66cf162013-10-15 15:18:08 +0100790 gl->gl_lockref.count++;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500791 __gfs2_glock_queue_work(gl, 0);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100792 return;
793
Steven Whitehoused8348de2009-02-05 10:12:38 +0000794out_unlock:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100795 clear_bit(GLF_LOCK, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100796 smp_mb__after_atomic();
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100797 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100798}
799
Andreas Gruenbacherf286d622020-01-13 21:21:49 +0100800void gfs2_inode_remember_delete(struct gfs2_glock *gl, u64 generation)
801{
802 struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr;
803
804 if (ri->ri_magic == 0)
805 ri->ri_magic = cpu_to_be32(GFS2_MAGIC);
806 if (ri->ri_magic == cpu_to_be32(GFS2_MAGIC))
807 ri->ri_generation_deleted = cpu_to_be64(generation);
808}
809
810bool gfs2_inode_already_deleted(struct gfs2_glock *gl, u64 generation)
811{
812 struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr;
813
814 if (ri->ri_magic != cpu_to_be32(GFS2_MAGIC))
815 return false;
816 return generation <= be64_to_cpu(ri->ri_generation_deleted);
817}
818
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100819static void gfs2_glock_poke(struct gfs2_glock *gl)
820{
821 int flags = LM_FLAG_TRY_1CB | LM_FLAG_ANY | GL_SKIP;
822 struct gfs2_holder gh;
823 int error;
824
Andreas Gruenbacherc07bfb42020-07-27 19:18:57 +0200825 gfs2_holder_init(gl, LM_ST_SHARED, flags, &gh);
826 error = gfs2_glock_nq(&gh);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100827 if (!error)
828 gfs2_glock_dq(&gh);
Andreas Gruenbacherc07bfb42020-07-27 19:18:57 +0200829 gfs2_holder_uninit(&gh);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100830}
831
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100832static bool gfs2_try_evict(struct gfs2_glock *gl)
833{
834 struct gfs2_inode *ip;
835 bool evicted = false;
836
837 /*
838 * If there is contention on the iopen glock and we have an inode, try
839 * to grab and release the inode so that it can be evicted. This will
840 * allow the remote node to go ahead and delete the inode without us
841 * having to do it, which will avoid rgrp glock thrashing.
842 *
843 * The remote node is likely still holding the corresponding inode
844 * glock, so it will run before we get to verify that the delete has
845 * happened below.
846 */
847 spin_lock(&gl->gl_lockref.lock);
848 ip = gl->gl_object;
849 if (ip && !igrab(&ip->i_inode))
850 ip = NULL;
851 spin_unlock(&gl->gl_lockref.lock);
852 if (ip) {
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100853 struct gfs2_glock *inode_gl = NULL;
854
Andreas Gruenbacherb0dcffd2020-01-15 09:54:14 +0100855 gl->gl_no_formal_ino = ip->i_no_formal_ino;
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100856 set_bit(GIF_DEFERRED_DELETE, &ip->i_flags);
857 d_prune_aliases(&ip->i_inode);
858 iput(&ip->i_inode);
859
860 /* If the inode was evicted, gl->gl_object will now be NULL. */
861 spin_lock(&gl->gl_lockref.lock);
862 ip = gl->gl_object;
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100863 if (ip) {
864 inode_gl = ip->i_gl;
865 lockref_get(&inode_gl->gl_lockref);
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100866 clear_bit(GIF_DEFERRED_DELETE, &ip->i_flags);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100867 }
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100868 spin_unlock(&gl->gl_lockref.lock);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100869 if (inode_gl) {
870 gfs2_glock_poke(inode_gl);
871 gfs2_glock_put(inode_gl);
872 }
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100873 evicted = !ip;
874 }
875 return evicted;
876}
877
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500878static void delete_work_func(struct work_struct *work)
879{
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +0100880 struct delayed_work *dwork = to_delayed_work(work);
881 struct gfs2_glock *gl = container_of(dwork, struct gfs2_glock, gl_delete);
Bob Peterson15562c42015-03-16 11:52:05 -0500882 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Andreas Gruenbacherec5ec662016-06-14 12:23:59 -0500883 struct inode *inode;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000884 u64 no_addr = gl->gl_name.ln_number;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500885
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +0100886 spin_lock(&gl->gl_lockref.lock);
887 clear_bit(GLF_PENDING_DELETE, &gl->gl_flags);
888 spin_unlock(&gl->gl_lockref.lock);
889
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100890 if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
891 /*
892 * If we can evict the inode, give the remote node trying to
893 * delete the inode some time before verifying that the delete
894 * has happened. Otherwise, if we cause contention on the inode glock
895 * immediately, the remote node will think that we still have
896 * the inode in use, and so it will give up waiting.
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100897 *
898 * If we can't evict the inode, signal to the remote node that
899 * the inode is still in use. We'll later try to delete the
900 * inode locally in gfs2_evict_inode.
901 *
902 * FIXME: We only need to verify that the remote node has
903 * deleted the inode because nodes before this remote delete
904 * rework won't cooperate. At a later time, when we no longer
905 * care about compatibility with such nodes, we can skip this
906 * step entirely.
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100907 */
908 if (gfs2_try_evict(gl)) {
909 if (gfs2_queue_delete_work(gl, 5 * HZ))
910 return;
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100911 }
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100912 goto out;
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100913 }
914
Andreas Gruenbacherb0dcffd2020-01-15 09:54:14 +0100915 inode = gfs2_lookup_by_inum(sdp, no_addr, gl->gl_no_formal_ino,
916 GFS2_BLKST_UNLINKED);
Kefeng Wang15a798f2019-06-05 22:24:24 +0800917 if (!IS_ERR_OR_NULL(inode)) {
Steven Whitehouse044b9412010-11-03 20:01:07 +0000918 d_prune_aliases(inode);
919 iput(inode);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500920 }
Bob Petersona4923862015-12-07 16:24:27 -0600921out:
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500922 gfs2_glock_put(gl);
923}
924
Steven Whitehouse6802e342008-05-21 17:03:22 +0100925static void glock_work_func(struct work_struct *work)
926{
927 unsigned long delay = 0;
928 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500929 unsigned int drop_refs = 1;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100930
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000931 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100932 finish_xmote(gl, gl->gl_reply);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500933 drop_refs++;
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000934 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500935 spin_lock(&gl->gl_lockref.lock);
Bob Petersonf90e5b52011-05-24 10:44:42 -0400936 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100937 gl->gl_state != LM_ST_UNLOCKED &&
938 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100939 unsigned long holdtime, now = jiffies;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400940
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400941 holdtime = gl->gl_tchange + gl->gl_hold_time;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100942 if (time_before(now, holdtime))
943 delay = holdtime - now;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400944
945 if (!delay) {
946 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
Andreas Gruenbacher35b6f8f2020-01-17 13:48:49 +0100947 gfs2_set_demote(gl);
Bob Petersonf90e5b52011-05-24 10:44:42 -0400948 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100949 }
950 run_queue(gl, 0);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500951 if (delay) {
952 /* Keep one glock reference for the work we requeue. */
953 drop_refs--;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400954 if (gl->gl_name.ln_type != LM_TYPE_INODE)
955 delay = 0;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500956 __gfs2_glock_queue_work(gl, delay);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400957 }
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500958
959 /*
960 * Drop the remaining glock references manually here. (Mind that
961 * __gfs2_glock_queue_work depends on the lockref spinlock begin held
962 * here as well.)
963 */
964 gl->gl_lockref.count -= drop_refs;
965 if (!gl->gl_lockref.count) {
966 __gfs2_glock_put(gl);
967 return;
968 }
969 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100970}
971
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500972static struct gfs2_glock *find_insert_glock(struct lm_lockname *name,
973 struct gfs2_glock *new)
974{
975 struct wait_glock_queue wait;
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500976 wait_queue_head_t *wq = glock_waitqueue(name);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500977 struct gfs2_glock *gl;
978
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500979 wait.name = name;
980 init_wait(&wait.wait);
981 wait.wait.func = glock_wake_function;
982
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500983again:
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500984 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500985 rcu_read_lock();
986 if (new) {
987 gl = rhashtable_lookup_get_insert_fast(&gl_hash_table,
988 &new->gl_node, ht_parms);
989 if (IS_ERR(gl))
990 goto out;
991 } else {
992 gl = rhashtable_lookup_fast(&gl_hash_table,
993 name, ht_parms);
994 }
995 if (gl && !lockref_get_not_dead(&gl->gl_lockref)) {
996 rcu_read_unlock();
997 schedule();
998 goto again;
999 }
1000out:
1001 rcu_read_unlock();
Andreas Gruenbachera91323e2017-08-04 07:40:45 -05001002 finish_wait(wq, &wait.wait);
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001003 return gl;
1004}
1005
David Teiglandb3b94fa2006-01-16 16:50:04 +00001006/**
1007 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
1008 * @sdp: The GFS2 superblock
1009 * @number: the lock number
1010 * @glops: The glock_operations to use
1011 * @create: If 0, don't create the glock if it doesn't exist
1012 * @glp: the glock is returned here
1013 *
1014 * This does not lock a glock, just finds/creates structures for one.
1015 *
1016 * Returns: errno
1017 */
1018
Steven Whitehousecd915492006-09-04 12:49:07 -04001019int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001020 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001021 struct gfs2_glock **glp)
1022{
Steven Whitehouse009d8512009-12-08 12:12:13 +00001023 struct super_block *s = sdp->sd_vfs;
Bob Peterson15562c42015-03-16 11:52:05 -05001024 struct lm_lockname name = { .ln_number = number,
1025 .ln_type = glops->go_type,
1026 .ln_sbd = sdp };
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001027 struct gfs2_glock *gl, *tmp;
Steven Whitehouse009d8512009-12-08 12:12:13 +00001028 struct address_space *mapping;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001029 struct kmem_cache *cachep;
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001030 int ret = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001032 gl = find_insert_glock(&name, NULL);
1033 if (gl) {
1034 *glp = gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 return 0;
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001036 }
Steven Whitehouse64d576b2009-02-12 13:31:58 +00001037 if (!create)
1038 return -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039
Steven Whitehouse009d8512009-12-08 12:12:13 +00001040 if (glops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001041 cachep = gfs2_glock_aspace_cachep;
Steven Whitehouse009d8512009-12-08 12:12:13 +00001042 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001043 cachep = gfs2_glock_cachep;
Steven Whitehousefe0bbd22014-06-23 14:50:20 +01001044 gl = kmem_cache_alloc(cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001045 if (!gl)
1046 return -ENOMEM;
1047
David Teiglanddba2d702012-11-14 13:46:53 -05001048 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
David Teiglanddba2d702012-11-14 13:46:53 -05001049
1050 if (glops->go_flags & GLOF_LVB) {
Andreas Gruenbacherf7be9872020-01-16 00:25:32 +01001051 gl->gl_lksb.sb_lvbptr = kzalloc(GDLM_LVB_SIZE, GFP_NOFS);
David Teigland4e2f8842012-11-14 13:47:37 -05001052 if (!gl->gl_lksb.sb_lvbptr) {
David Teiglanddba2d702012-11-14 13:46:53 -05001053 kmem_cache_free(cachep, gl);
1054 return -ENOMEM;
1055 }
David Teiglanddba2d702012-11-14 13:46:53 -05001056 }
1057
Steven Whitehouse8f052282010-01-29 15:21:27 +00001058 atomic_inc(&sdp->sd_glock_disposal);
Bob Peterson88ffbf32015-03-16 11:02:46 -05001059 gl->gl_node.next = NULL;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -04001060 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 gl->gl_name = name;
Alexander Aring515b2692020-11-23 10:53:35 -05001062 lockdep_set_subclass(&gl->gl_lockref.lock, glops->go_subclass);
Steven Whitehousee66cf162013-10-15 15:18:08 +01001063 gl->gl_lockref.count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001064 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001065 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001066 gl->gl_demote_state = LM_ST_EXCLUSIVE;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 gl->gl_ops = glops;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001068 gl->gl_dstamp = 0;
Steven Whitehousea2457692012-01-20 10:38:36 +00001069 preempt_disable();
1070 /* We use the global stats to estimate the initial per-glock stats */
1071 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
1072 preempt_enable();
1073 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
1074 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001075 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -04001076 gl->gl_object = NULL;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001077 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001078 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
Bob Peterson2ffed522020-10-15 11:16:48 -05001079 if (gl->gl_name.ln_type == LM_TYPE_IOPEN)
1080 INIT_DELAYED_WORK(&gl->gl_delete, delete_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081
Steven Whitehouse009d8512009-12-08 12:12:13 +00001082 mapping = gfs2_glock2aspace(gl);
1083 if (mapping) {
1084 mapping->a_ops = &gfs2_meta_aops;
1085 mapping->host = s->s_bdev->bd_inode;
1086 mapping->flags = 0;
1087 mapping_set_gfp_mask(mapping, GFP_NOFS);
Rafael Aquini252aa6f2012-12-11 16:02:35 -08001088 mapping->private_data = NULL;
Steven Whitehouse009d8512009-12-08 12:12:13 +00001089 mapping->writeback_index = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001090 }
1091
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001092 tmp = find_insert_glock(&name, gl);
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001093 if (!tmp) {
Bob Peterson88ffbf32015-03-16 11:02:46 -05001094 *glp = gl;
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001095 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001096 }
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001097 if (IS_ERR(tmp)) {
1098 ret = PTR_ERR(tmp);
1099 goto out_free;
1100 }
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001101 *glp = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001102
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001103out_free:
Bob Peterson88ffbf32015-03-16 11:02:46 -05001104 kfree(gl->gl_lksb.sb_lvbptr);
1105 kmem_cache_free(cachep, gl);
Alexander Aringda7d5542020-10-26 10:52:29 -04001106 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
1107 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001109out:
Bob Peterson88ffbf32015-03-16 11:02:46 -05001110 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001111}
1112
1113/**
1114 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
1115 * @gl: the glock
1116 * @state: the state we're requesting
1117 * @flags: the modifier flags
1118 * @gh: the holder structure
1119 *
1120 */
1121
Bob Petersonb58bf402015-07-24 09:45:43 -05001122void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, u16 flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123 struct gfs2_holder *gh)
1124{
1125 INIT_LIST_HEAD(&gh->gh_list);
1126 gh->gh_gl = gl;
Fabian Frederickd29c0af2014-10-03 20:15:36 +02001127 gh->gh_ip = _RET_IP_;
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001128 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001129 gh->gh_state = state;
1130 gh->gh_flags = flags;
1131 gh->gh_error = 0;
1132 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001133 gfs2_glock_hold(gl);
1134}
1135
1136/**
1137 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
1138 * @state: the state we're requesting
1139 * @flags: the modifier flags
1140 * @gh: the holder structure
1141 *
1142 * Don't mess with the glock.
1143 *
1144 */
1145
Bob Petersonb58bf402015-07-24 09:45:43 -05001146void gfs2_holder_reinit(unsigned int state, u16 flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001147{
1148 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -04001149 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001150 gh->gh_iflags = 0;
Fabian Frederickd29c0af2014-10-03 20:15:36 +02001151 gh->gh_ip = _RET_IP_;
Markus Elfring30badc92014-11-18 11:31:23 +01001152 put_pid(gh->gh_owner_pid);
Bob Peterson1a0eae82010-04-14 11:58:16 -04001153 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154}
1155
1156/**
1157 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
1158 * @gh: the holder structure
1159 *
1160 */
1161
1162void gfs2_holder_uninit(struct gfs2_holder *gh)
1163{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001164 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001165 gfs2_glock_put(gh->gh_gl);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001166 gfs2_holder_mark_uninitialized(gh);
Steven Whitehoused0dc80d2006-03-29 14:36:49 -05001167 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001168}
1169
Andreas Gruenbacher01123cf2019-08-30 12:31:01 -05001170static void gfs2_glock_update_hold_time(struct gfs2_glock *gl,
1171 unsigned long start_time)
1172{
1173 /* Have we waited longer that a second? */
1174 if (time_after(jiffies, start_time + HZ)) {
1175 /* Lengthen the minimum hold time. */
1176 gl->gl_hold_time = min(gl->gl_hold_time + GL_GLOCK_HOLD_INCR,
1177 GL_GLOCK_MAX_HOLD);
1178 }
1179}
1180
Steven Whitehousefe64d512009-05-19 10:01:18 +01001181/**
Bob Peterson07a79042012-08-09 12:48:44 -05001182 * gfs2_glock_wait - wait on a glock acquisition
1183 * @gh: the glock holder
1184 *
1185 * Returns: 0 on success
1186 */
1187
1188int gfs2_glock_wait(struct gfs2_holder *gh)
Steven Whitehousefee852e2007-01-17 15:33:23 +00001189{
Andreas Gruenbacher01123cf2019-08-30 12:31:01 -05001190 unsigned long start_time = jiffies;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001191
Steven Whitehousefee852e2007-01-17 15:33:23 +00001192 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001193 wait_on_bit(&gh->gh_iflags, HIF_WAIT, TASK_UNINTERRUPTIBLE);
Andreas Gruenbacher01123cf2019-08-30 12:31:01 -05001194 gfs2_glock_update_hold_time(gh->gh_gl, start_time);
Bob Peterson07a79042012-08-09 12:48:44 -05001195 return gh->gh_error;
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001196}
1197
Bob Petersonad269672019-08-30 12:31:02 -05001198static int glocks_pending(unsigned int num_gh, struct gfs2_holder *ghs)
1199{
1200 int i;
1201
1202 for (i = 0; i < num_gh; i++)
1203 if (test_bit(HIF_WAIT, &ghs[i].gh_iflags))
1204 return 1;
1205 return 0;
1206}
1207
1208/**
1209 * gfs2_glock_async_wait - wait on multiple asynchronous glock acquisitions
1210 * @num_gh: the number of holders in the array
1211 * @ghs: the glock holder array
1212 *
1213 * Returns: 0 on success, meaning all glocks have been granted and are held.
1214 * -ESTALE if the request timed out, meaning all glocks were released,
1215 * and the caller should retry the operation.
1216 */
1217
1218int gfs2_glock_async_wait(unsigned int num_gh, struct gfs2_holder *ghs)
1219{
1220 struct gfs2_sbd *sdp = ghs[0].gh_gl->gl_name.ln_sbd;
1221 int i, ret = 0, timeout = 0;
1222 unsigned long start_time = jiffies;
1223 bool keep_waiting;
1224
1225 might_sleep();
1226 /*
1227 * Total up the (minimum hold time * 2) of all glocks and use that to
1228 * determine the max amount of time we should wait.
1229 */
1230 for (i = 0; i < num_gh; i++)
1231 timeout += ghs[i].gh_gl->gl_hold_time << 1;
1232
1233wait_for_dlm:
1234 if (!wait_event_timeout(sdp->sd_async_glock_wait,
1235 !glocks_pending(num_gh, ghs), timeout))
1236 ret = -ESTALE; /* request timed out. */
1237
1238 /*
1239 * If dlm granted all our requests, we need to adjust the glock
1240 * minimum hold time values according to how long we waited.
1241 *
1242 * If our request timed out, we need to repeatedly release any held
1243 * glocks we acquired thus far to allow dlm to acquire the remaining
1244 * glocks without deadlocking. We cannot currently cancel outstanding
1245 * glock acquisitions.
1246 *
1247 * The HIF_WAIT bit tells us which requests still need a response from
1248 * dlm.
1249 *
1250 * If dlm sent us any errors, we return the first error we find.
1251 */
1252 keep_waiting = false;
1253 for (i = 0; i < num_gh; i++) {
1254 /* Skip holders we have already dequeued below. */
1255 if (!gfs2_holder_queued(&ghs[i]))
1256 continue;
1257 /* Skip holders with a pending DLM response. */
1258 if (test_bit(HIF_WAIT, &ghs[i].gh_iflags)) {
1259 keep_waiting = true;
1260 continue;
1261 }
1262
1263 if (test_bit(HIF_HOLDER, &ghs[i].gh_iflags)) {
1264 if (ret == -ESTALE)
1265 gfs2_glock_dq(&ghs[i]);
1266 else
1267 gfs2_glock_update_hold_time(ghs[i].gh_gl,
1268 start_time);
1269 }
1270 if (!ret)
1271 ret = ghs[i].gh_error;
1272 }
1273
1274 if (keep_waiting)
1275 goto wait_for_dlm;
1276
1277 /*
1278 * At this point, we've either acquired all locks or released them all.
1279 */
1280 return ret;
1281}
1282
David Teiglandb3b94fa2006-01-16 16:50:04 +00001283/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001284 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +00001285 * @gl: the glock
1286 * @state: the state the caller wants us to change to
Lee Jonesc551f662021-03-30 17:44:29 +01001287 * @delay: zero to demote immediately; otherwise pending demote
1288 * @remote: true if this came from a different cluster node
David Teiglandb3b94fa2006-01-16 16:50:04 +00001289 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001290 * There are only two requests that we are going to see in actual
1291 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +00001292 */
1293
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001294static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001295 unsigned long delay, bool remote)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001296{
Andreas Gruenbacher35b6f8f2020-01-17 13:48:49 +01001297 if (delay)
1298 set_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
1299 else
1300 gfs2_set_demote(gl);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001301 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001302 gl->gl_demote_state = state;
1303 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +01001304 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
1305 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001306 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307 }
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001308 if (gl->gl_ops->go_callback)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001309 gl->gl_ops->go_callback(gl, remote);
Steven Whitehouse7bd8b2e2013-04-10 10:32:05 +01001310 trace_gfs2_demote_rq(gl, remote);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001311}
1312
Steven Whitehouse6802e342008-05-21 17:03:22 +01001313void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +00001314{
Joe Perches5e690692010-11-09 16:35:20 -08001315 struct va_format vaf;
Robert Peterson7c52b162007-03-16 10:26:37 +00001316 va_list args;
1317
1318 va_start(args, fmt);
Joe Perches5e690692010-11-09 16:35:20 -08001319
Steven Whitehouse6802e342008-05-21 17:03:22 +01001320 if (seq) {
Steven Whitehouse1bb49302012-06-11 13:26:50 +01001321 seq_vprintf(seq, fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001322 } else {
Joe Perches5e690692010-11-09 16:35:20 -08001323 vaf.fmt = fmt;
1324 vaf.va = &args;
1325
Joe Perchesd77d1b52014-03-06 12:10:45 -08001326 pr_err("%pV", &vaf);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001327 }
Joe Perches5e690692010-11-09 16:35:20 -08001328
Robert Peterson7c52b162007-03-16 10:26:37 +00001329 va_end(args);
1330}
1331
David Teiglandb3b94fa2006-01-16 16:50:04 +00001332/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001333 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1334 * @gh: the holder structure to add
1335 *
Steven Whitehouse6802e342008-05-21 17:03:22 +01001336 * Eventually we should move the recursive locking trap to a
1337 * debugging option or something like that. This is the fast
1338 * path and needs to have the minimum number of distractions.
1339 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340 */
1341
Steven Whitehouse6802e342008-05-21 17:03:22 +01001342static inline void add_to_queue(struct gfs2_holder *gh)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001343__releases(&gl->gl_lockref.lock)
1344__acquires(&gl->gl_lockref.lock)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001345{
1346 struct gfs2_glock *gl = gh->gh_gl;
Bob Peterson15562c42015-03-16 11:52:05 -05001347 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001348 struct list_head *insert_pt = NULL;
1349 struct gfs2_holder *gh2;
Bob Petersone5dc76b2012-08-09 12:48:46 -05001350 int try_futile = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001351
Bob Petersonad269672019-08-30 12:31:02 -05001352 GLOCK_BUG_ON(gl, gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +00001353 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
Bob Petersonad269672019-08-30 12:31:02 -05001354 GLOCK_BUG_ON(gl, true);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001355
Steven Whitehouse6802e342008-05-21 17:03:22 +01001356 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
1357 if (test_bit(GLF_LOCK, &gl->gl_flags))
Bob Petersone5dc76b2012-08-09 12:48:46 -05001358 try_futile = !may_grant(gl, gh);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001359 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
1360 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001361 }
1362
Steven Whitehouse6802e342008-05-21 17:03:22 +01001363 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
1364 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
1365 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
1366 goto trap_recursive;
Bob Petersone5dc76b2012-08-09 12:48:46 -05001367 if (try_futile &&
1368 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001369fail:
1370 gh->gh_error = GLR_TRYFAILED;
1371 gfs2_holder_wake(gh);
1372 return;
1373 }
1374 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
1375 continue;
1376 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
1377 insert_pt = &gh2->gh_list;
1378 }
Steven Whitehouseedae38a2011-01-31 09:38:12 +00001379 trace_gfs2_glock_queue(gh, 1);
Steven Whitehousea2457692012-01-20 10:38:36 +00001380 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1381 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001382 if (likely(insert_pt == NULL)) {
1383 list_add_tail(&gh->gh_list, &gl->gl_holders);
1384 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1385 goto do_cancel;
1386 return;
1387 }
1388 list_add_tail(&gh->gh_list, insert_pt);
1389do_cancel:
Andreas Gruenbacher969183b2020-02-03 19:22:45 +01001390 gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001391 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001392 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse048bca22008-05-23 14:46:04 +01001393 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001394 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001395 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001396 }
1397 return;
1398
1399trap_recursive:
Bob Petersone54c78a2018-10-03 08:47:36 -05001400 fs_err(sdp, "original: %pSR\n", (void *)gh2->gh_ip);
1401 fs_err(sdp, "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1402 fs_err(sdp, "lock type: %d req lock state : %d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001403 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
Bob Petersone54c78a2018-10-03 08:47:36 -05001404 fs_err(sdp, "new: %pSR\n", (void *)gh->gh_ip);
1405 fs_err(sdp, "pid: %d\n", pid_nr(gh->gh_owner_pid));
1406 fs_err(sdp, "lock type: %d req lock state : %d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001407 gh->gh_gl->gl_name.ln_type, gh->gh_state);
Bob Peterson3792ce92019-05-09 09:21:48 -05001408 gfs2_dump_glock(NULL, gl, true);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001409 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001410}
1411
1412/**
1413 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1414 * @gh: the holder structure
1415 *
1416 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1417 *
1418 * Returns: 0, GLR_TRYFAILED, or errno on failure
1419 */
1420
1421int gfs2_glock_nq(struct gfs2_holder *gh)
1422{
1423 struct gfs2_glock *gl = gh->gh_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001424 int error = 0;
1425
Bob Peterson601ef0d2020-01-28 20:23:45 +01001426 if (glock_blocked_by_withdraw(gl) && !(gh->gh_flags & LM_FLAG_NOEXP))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001427 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001428
Steven Whitehousef42ab082011-04-14 16:50:31 +01001429 if (test_bit(GLF_LRU, &gl->gl_flags))
1430 gfs2_glock_remove_from_lru(gl);
1431
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001432 spin_lock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001433 add_to_queue(gh);
Bob Peterson01b172b2014-03-12 10:32:20 -04001434 if (unlikely((LM_FLAG_NOEXP & gh->gh_flags) &&
1435 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001436 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Bob Peterson01b172b2014-03-12 10:32:20 -04001437 gl->gl_lockref.count++;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001438 __gfs2_glock_queue_work(gl, 0);
Bob Peterson01b172b2014-03-12 10:32:20 -04001439 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001440 run_queue(gl, 1);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001441 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001442
Steven Whitehouse6802e342008-05-21 17:03:22 +01001443 if (!(gh->gh_flags & GL_ASYNC))
1444 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001445
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446 return error;
1447}
1448
1449/**
1450 * gfs2_glock_poll - poll to see if an async request has been completed
1451 * @gh: the holder
1452 *
1453 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1454 */
1455
1456int gfs2_glock_poll(struct gfs2_holder *gh)
1457{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001458 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001459}
1460
1461/**
1462 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1463 * @gh: the glock holder
1464 *
1465 */
1466
1467void gfs2_glock_dq(struct gfs2_holder *gh)
1468{
1469 struct gfs2_glock *gl = gh->gh_gl;
Bob Peterson601ef0d2020-01-28 20:23:45 +01001470 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001471 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001472 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001473
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001474 spin_lock(&gl->gl_lockref.lock);
Bob Peterson601ef0d2020-01-28 20:23:45 +01001475 /*
1476 * If we're in the process of file system withdraw, we cannot just
1477 * dequeue any glocks until our journal is recovered, lest we
1478 * introduce file system corruption. We need two exceptions to this
1479 * rule: We need to allow unlocking of nondisk glocks and the glock
1480 * for our own journal that needs recovery.
1481 */
1482 if (test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags) &&
1483 glock_blocked_by_withdraw(gl) &&
1484 gh->gh_gl != sdp->sd_jinode_gl) {
1485 sdp->sd_glock_dqs_held++;
Bob Peterson20265d92021-05-18 09:12:10 -04001486 spin_unlock(&gl->gl_lockref.lock);
Bob Peterson601ef0d2020-01-28 20:23:45 +01001487 might_sleep();
1488 wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY,
1489 TASK_UNINTERRUPTIBLE);
Bob Peterson20265d92021-05-18 09:12:10 -04001490 spin_lock(&gl->gl_lockref.lock);
Bob Peterson601ef0d2020-01-28 20:23:45 +01001491 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001492 if (gh->gh_flags & GL_NOCACHE)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001493 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001494
David Teiglandb3b94fa2006-01-16 16:50:04 +00001495 list_del_init(&gh->gh_list);
Bob Peterson7508abc2015-12-18 11:54:55 -06001496 clear_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001497 if (find_first_holder(gl) == NULL) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001498 if (list_empty(&gl->gl_holders) &&
1499 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1500 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1501 fast_path = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001502 }
Ross Lagerwall7881ef32019-03-27 17:09:17 +00001503 if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
Bob Peterson4abb6ad92012-08-09 12:48:43 -05001504 gfs2_glock_add_to_lru(gl);
1505
Steven Whitehouse63997772009-06-12 08:49:20 +01001506 trace_gfs2_glock_queue(gh, 0);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001507 if (unlikely(!fast_path)) {
1508 gl->gl_lockref.count++;
1509 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1510 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1511 gl->gl_name.ln_type == LM_TYPE_INODE)
1512 delay = gl->gl_hold_time;
1513 __gfs2_glock_queue_work(gl, delay);
1514 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001515 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001516}
1517
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001518void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1519{
1520 struct gfs2_glock *gl = gh->gh_gl;
1521 gfs2_glock_dq(gh);
Bob Peterson81e1d452012-08-09 12:48:45 -05001522 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001523 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE);
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001524}
1525
David Teiglandb3b94fa2006-01-16 16:50:04 +00001526/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001527 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1528 * @gh: the holder structure
1529 *
1530 */
1531
1532void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1533{
1534 gfs2_glock_dq(gh);
1535 gfs2_holder_uninit(gh);
1536}
1537
1538/**
1539 * gfs2_glock_nq_num - acquire a glock based on lock number
1540 * @sdp: the filesystem
1541 * @number: the lock number
1542 * @glops: the glock operations for the type of glock
1543 * @state: the state to acquire the glock in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001544 * @flags: modifier flags for the acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +00001545 * @gh: the struct gfs2_holder
1546 *
1547 * Returns: errno
1548 */
1549
Steven Whitehousecd915492006-09-04 12:49:07 -04001550int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001551 const struct gfs2_glock_operations *glops,
Bob Petersonb58bf402015-07-24 09:45:43 -05001552 unsigned int state, u16 flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001553{
1554 struct gfs2_glock *gl;
1555 int error;
1556
1557 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1558 if (!error) {
1559 error = gfs2_glock_nq_init(gl, state, flags, gh);
1560 gfs2_glock_put(gl);
1561 }
1562
1563 return error;
1564}
1565
1566/**
1567 * glock_compare - Compare two struct gfs2_glock structures for sorting
1568 * @arg_a: the first structure
1569 * @arg_b: the second structure
1570 *
1571 */
1572
1573static int glock_compare(const void *arg_a, const void *arg_b)
1574{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001575 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1576 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1577 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1578 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001579
1580 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001581 return 1;
1582 if (a->ln_number < b->ln_number)
1583 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001584 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001585 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001586}
1587
1588/**
1589 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1590 * @num_gh: the number of structures
1591 * @ghs: an array of struct gfs2_holder structures
Lee Jonesc551f662021-03-30 17:44:29 +01001592 * @p: placeholder for the holder structure to pass back
David Teiglandb3b94fa2006-01-16 16:50:04 +00001593 *
1594 * Returns: 0 on success (all glocks acquired),
1595 * errno on failure (no glocks acquired)
1596 */
1597
1598static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1599 struct gfs2_holder **p)
1600{
1601 unsigned int x;
1602 int error = 0;
1603
1604 for (x = 0; x < num_gh; x++)
1605 p[x] = &ghs[x];
1606
1607 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1608
1609 for (x = 0; x < num_gh; x++) {
1610 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1611
1612 error = gfs2_glock_nq(p[x]);
1613 if (error) {
1614 while (x--)
1615 gfs2_glock_dq(p[x]);
1616 break;
1617 }
1618 }
1619
1620 return error;
1621}
1622
1623/**
1624 * gfs2_glock_nq_m - acquire multiple glocks
1625 * @num_gh: the number of structures
1626 * @ghs: an array of struct gfs2_holder structures
1627 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001628 *
1629 * Returns: 0 on success (all glocks acquired),
1630 * errno on failure (no glocks acquired)
1631 */
1632
1633int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1634{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001635 struct gfs2_holder *tmp[4];
1636 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001637 int error = 0;
1638
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001639 switch(num_gh) {
1640 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001641 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001642 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001643 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1644 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001645 default:
1646 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001647 break;
Kees Cook6da2ec52018-06-12 13:55:00 -07001648 pph = kmalloc_array(num_gh, sizeof(struct gfs2_holder *),
1649 GFP_NOFS);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001650 if (!pph)
1651 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001652 }
1653
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001654 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001655
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001656 if (pph != tmp)
1657 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001658
1659 return error;
1660}
1661
1662/**
1663 * gfs2_glock_dq_m - release multiple glocks
1664 * @num_gh: the number of structures
1665 * @ghs: an array of struct gfs2_holder structures
1666 *
1667 */
1668
1669void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1670{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001671 while (num_gh--)
1672 gfs2_glock_dq(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001673}
1674
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001675void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001676{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001677 unsigned long delay = 0;
1678 unsigned long holdtime;
1679 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001680
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001681 gfs2_glock_hold(gl);
Bob Petersone2c6c8a2020-10-12 13:57:37 -05001682 spin_lock(&gl->gl_lockref.lock);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001683 holdtime = gl->gl_tchange + gl->gl_hold_time;
Bob Petersone2c6c8a2020-10-12 13:57:37 -05001684 if (!list_empty(&gl->gl_holders) &&
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001685 gl->gl_name.ln_type == LM_TYPE_INODE) {
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001686 if (time_before(now, holdtime))
1687 delay = holdtime - now;
1688 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001689 delay = gl->gl_hold_time;
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001690 }
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001691 handle_callback(gl, state, delay, true);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001692 __gfs2_glock_queue_work(gl, delay);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001693 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001694}
1695
1696/**
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001697 * gfs2_should_freeze - Figure out if glock should be frozen
1698 * @gl: The glock in question
1699 *
1700 * Glocks are not frozen if (a) the result of the dlm operation is
1701 * an error, (b) the locking operation was an unlock operation or
1702 * (c) if there is a "noexp" flagged request anywhere in the queue
1703 *
1704 * Returns: 1 if freezing should occur, 0 otherwise
1705 */
1706
1707static int gfs2_should_freeze(const struct gfs2_glock *gl)
1708{
1709 const struct gfs2_holder *gh;
1710
1711 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1712 return 0;
1713 if (gl->gl_target == LM_ST_UNLOCKED)
1714 return 0;
1715
1716 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1717 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1718 continue;
1719 if (LM_FLAG_NOEXP & gh->gh_flags)
1720 return 0;
1721 }
1722
1723 return 1;
1724}
1725
1726/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001727 * gfs2_glock_complete - Callback used by locking
1728 * @gl: Pointer to the glock
1729 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001730 *
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001731 * The gl_reply field is under the gl_lockref.lock lock so that it is ok
Steven Whitehouse47a25382010-11-30 15:49:31 +00001732 * to use a bitfield shared with other glock state fields.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001733 */
1734
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001735void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001736{
Bob Peterson15562c42015-03-16 11:52:05 -05001737 struct lm_lockstruct *ls = &gl->gl_name.ln_sbd->sd_lockstruct;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001738
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001739 spin_lock(&gl->gl_lockref.lock);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001740 gl->gl_reply = ret;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001741
David Teiglande0c2a9a2012-01-09 17:18:05 -05001742 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001743 if (gfs2_should_freeze(gl)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001744 set_bit(GLF_FROZEN, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001745 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001746 return;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001747 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001748 }
Steven Whitehouse47a25382010-11-30 15:49:31 +00001749
Steven Whitehousee66cf162013-10-15 15:18:08 +01001750 gl->gl_lockref.count++;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001751 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001752 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001753 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001754}
1755
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07001756static int glock_cmp(void *priv, const struct list_head *a,
1757 const struct list_head *b)
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001758{
1759 struct gfs2_glock *gla, *glb;
1760
1761 gla = list_entry(a, struct gfs2_glock, gl_lru);
1762 glb = list_entry(b, struct gfs2_glock, gl_lru);
1763
1764 if (gla->gl_name.ln_number > glb->gl_name.ln_number)
1765 return 1;
1766 if (gla->gl_name.ln_number < glb->gl_name.ln_number)
1767 return -1;
1768
1769 return 0;
1770}
1771
1772/**
1773 * gfs2_dispose_glock_lru - Demote a list of glocks
1774 * @list: The list to dispose of
1775 *
1776 * Disposing of glocks may involve disk accesses, so that here we sort
1777 * the glocks by number (i.e. disk location of the inodes) so that if
1778 * there are any such accesses, they'll be sent in order (mostly).
1779 *
1780 * Must be called under the lru_lock, but may drop and retake this
1781 * lock. While the lru_lock is dropped, entries may vanish from the
1782 * list, but no new entries will appear on the list (since it is
1783 * private)
1784 */
1785
1786static void gfs2_dispose_glock_lru(struct list_head *list)
1787__releases(&lru_lock)
1788__acquires(&lru_lock)
1789{
1790 struct gfs2_glock *gl;
1791
1792 list_sort(NULL, list, glock_cmp);
1793
1794 while(!list_empty(list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +01001795 gl = list_first_entry(list, struct gfs2_glock, gl_lru);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001796 list_del_init(&gl->gl_lru);
Hillf Danton1ab19c52021-05-18 16:46:25 +08001797 clear_bit(GLF_LRU, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001798 if (!spin_trylock(&gl->gl_lockref.lock)) {
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001799add_back_to_lru:
Steven Whitehousee66cf162013-10-15 15:18:08 +01001800 list_add(&gl->gl_lru, &lru_list);
Ross Lagerwall7881ef32019-03-27 17:09:17 +00001801 set_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehousee66cf162013-10-15 15:18:08 +01001802 atomic_inc(&lru_count);
1803 continue;
1804 }
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001805 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001806 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001807 goto add_back_to_lru;
1808 }
Steven Whitehousee66cf162013-10-15 15:18:08 +01001809 gl->gl_lockref.count++;
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001810 if (demote_ok(gl))
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001811 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001812 WARN_ON(!test_and_clear_bit(GLF_LOCK, &gl->gl_flags));
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001813 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001814 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001815 cond_resched_lock(&lru_lock);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001816 }
1817}
1818
Steven Whitehouse2a005852012-12-14 12:28:30 +00001819/**
1820 * gfs2_scan_glock_lru - Scan the LRU looking for locks to demote
1821 * @nr: The number of entries to scan
1822 *
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001823 * This function selects the entries on the LRU which are able to
1824 * be demoted, and then kicks off the process by calling
1825 * gfs2_dispose_glock_lru() above.
Steven Whitehouse2a005852012-12-14 12:28:30 +00001826 */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001827
Dave Chinner1ab6c492013-08-28 10:18:09 +10001828static long gfs2_scan_glock_lru(int nr)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001829{
1830 struct gfs2_glock *gl;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001831 LIST_HEAD(skipped);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001832 LIST_HEAD(dispose);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001833 long freed = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001834
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001835 spin_lock(&lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001836 while ((nr-- >= 0) && !list_empty(&lru_list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +01001837 gl = list_first_entry(&lru_list, struct gfs2_glock, gl_lru);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001838
1839 /* Test for being demotable */
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001840 if (!test_bit(GLF_LOCK, &gl->gl_flags)) {
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001841 list_move(&gl->gl_lru, &dispose);
1842 atomic_dec(&lru_count);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001843 freed++;
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001844 continue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001845 }
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001846
1847 list_move(&gl->gl_lru, &skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001848 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001849 list_splice(&skipped, &lru_list);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001850 if (!list_empty(&dispose))
1851 gfs2_dispose_glock_lru(&dispose);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001852 spin_unlock(&lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001853
1854 return freed;
Steven Whitehouse2a005852012-12-14 12:28:30 +00001855}
1856
Dave Chinner1ab6c492013-08-28 10:18:09 +10001857static unsigned long gfs2_glock_shrink_scan(struct shrinker *shrink,
1858 struct shrink_control *sc)
Steven Whitehouse2a005852012-12-14 12:28:30 +00001859{
Dave Chinner1ab6c492013-08-28 10:18:09 +10001860 if (!(sc->gfp_mask & __GFP_FS))
1861 return SHRINK_STOP;
1862 return gfs2_scan_glock_lru(sc->nr_to_scan);
1863}
Steven Whitehouse2a005852012-12-14 12:28:30 +00001864
Dave Chinner1ab6c492013-08-28 10:18:09 +10001865static unsigned long gfs2_glock_shrink_count(struct shrinker *shrink,
1866 struct shrink_control *sc)
1867{
Glauber Costa55f841c2013-08-28 10:17:53 +10001868 return vfs_pressure_ratio(atomic_read(&lru_count));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001869}
1870
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001871static struct shrinker glock_shrinker = {
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001872 .seeks = DEFAULT_SEEKS,
Dave Chinner1ab6c492013-08-28 10:18:09 +10001873 .count_objects = gfs2_glock_shrink_count,
1874 .scan_objects = gfs2_glock_shrink_scan,
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001875};
1876
David Teiglandb3b94fa2006-01-16 16:50:04 +00001877/**
Bob Petersondbffb292020-10-12 15:04:20 -05001878 * glock_hash_walk - Call a function for glock in a hash bucket
David Teiglandb3b94fa2006-01-16 16:50:04 +00001879 * @examiner: the function
1880 * @sdp: the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +00001881 *
Herbert Xu98687f42017-02-11 19:26:45 +08001882 * Note that the function can be called multiple times on the same
1883 * object. So the user must ensure that the function can cope with
1884 * that.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001885 */
1886
Bob Peterson88ffbf32015-03-16 11:02:46 -05001887static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001888{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001889 struct gfs2_glock *gl;
Herbert Xu98687f42017-02-11 19:26:45 +08001890 struct rhashtable_iter iter;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001891
Herbert Xu98687f42017-02-11 19:26:45 +08001892 rhashtable_walk_enter(&gl_hash_table, &iter);
1893
1894 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08001895 rhashtable_walk_start(&iter);
Herbert Xu98687f42017-02-11 19:26:45 +08001896
1897 while ((gl = rhashtable_walk_next(&iter)) && !IS_ERR(gl))
Bob Peterson27c3b412017-08-18 09:15:13 -05001898 if (gl->gl_name.ln_sbd == sdp &&
Bob Peterson88ffbf32015-03-16 11:02:46 -05001899 lockref_get_not_dead(&gl->gl_lockref))
1900 examiner(gl);
Herbert Xu98687f42017-02-11 19:26:45 +08001901
1902 rhashtable_walk_stop(&iter);
1903 } while (cond_resched(), gl == ERR_PTR(-EAGAIN));
1904
1905 rhashtable_walk_exit(&iter);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001906}
1907
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01001908bool gfs2_queue_delete_work(struct gfs2_glock *gl, unsigned long delay)
1909{
1910 bool queued;
1911
1912 spin_lock(&gl->gl_lockref.lock);
1913 queued = queue_delayed_work(gfs2_delete_workqueue,
1914 &gl->gl_delete, delay);
1915 if (queued)
1916 set_bit(GLF_PENDING_DELETE, &gl->gl_flags);
1917 spin_unlock(&gl->gl_lockref.lock);
1918 return queued;
1919}
1920
1921void gfs2_cancel_delete_work(struct gfs2_glock *gl)
1922{
1923 if (cancel_delayed_work_sync(&gl->gl_delete)) {
1924 clear_bit(GLF_PENDING_DELETE, &gl->gl_flags);
1925 gfs2_glock_put(gl);
1926 }
1927}
1928
1929bool gfs2_delete_work_queued(const struct gfs2_glock *gl)
1930{
1931 return test_bit(GLF_PENDING_DELETE, &gl->gl_flags);
1932}
1933
1934static void flush_delete_work(struct gfs2_glock *gl)
1935{
Bob Peterson2ffed522020-10-15 11:16:48 -05001936 if (gl->gl_name.ln_type == LM_TYPE_IOPEN) {
1937 if (cancel_delayed_work(&gl->gl_delete)) {
1938 queue_delayed_work(gfs2_delete_workqueue,
1939 &gl->gl_delete, 0);
1940 }
Andreas Gruenbacher34244d72020-06-10 18:31:56 +02001941 }
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01001942 gfs2_glock_queue_work(gl, 0);
1943}
1944
1945void gfs2_flush_delete_work(struct gfs2_sbd *sdp)
1946{
1947 glock_hash_walk(flush_delete_work, sdp);
1948 flush_workqueue(gfs2_delete_workqueue);
1949}
1950
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001951/**
1952 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1953 * @gl: The glock to thaw
1954 *
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001955 */
1956
1957static void thaw_glock(struct gfs2_glock *gl)
1958{
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001959 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001960 gfs2_glock_put(gl);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001961 return;
Steven Whitehouse7286b312013-08-20 09:35:09 +01001962 }
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001963 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1964 gfs2_glock_queue_work(gl, 0);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001965}
1966
David Teiglandb3b94fa2006-01-16 16:50:04 +00001967/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001968 * clear_glock - look at a glock and see if we can free it from glock cache
1969 * @gl: the glock to look at
1970 *
1971 */
1972
1973static void clear_glock(struct gfs2_glock *gl)
1974{
Steven Whitehousef42ab082011-04-14 16:50:31 +01001975 gfs2_glock_remove_from_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001976
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001977 spin_lock(&gl->gl_lockref.lock);
Steven Whitehousec741c452010-09-29 14:20:52 +01001978 if (gl->gl_state != LM_ST_UNLOCKED)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001979 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001980 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001981 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001982}
1983
1984/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001985 * gfs2_glock_thaw - Thaw any frozen glocks
1986 * @sdp: The super block
1987 *
1988 */
1989
1990void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1991{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001992 glock_hash_walk(thaw_glock, sdp);
1993}
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001994
Bob Peterson3792ce92019-05-09 09:21:48 -05001995static void dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001996{
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001997 spin_lock(&gl->gl_lockref.lock);
Bob Peterson3792ce92019-05-09 09:21:48 -05001998 gfs2_dump_glock(seq, gl, fsid);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001999 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002000}
2001
2002static void dump_glock_func(struct gfs2_glock *gl)
2003{
Bob Peterson3792ce92019-05-09 09:21:48 -05002004 dump_glock(NULL, gl, true);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002005}
2006
2007/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00002008 * gfs2_gl_hash_clear - Empty out the glock hash table
2009 * @sdp: the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +00002010 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01002011 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00002012 */
2013
Steven Whitehousefefc03b2008-12-19 15:32:06 +00002014void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002015{
David Teiglandfb6791d2012-11-13 10:58:56 -05002016 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
Bob Peterson222cb532013-04-25 12:49:17 -04002017 flush_workqueue(glock_workqueue);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002018 glock_hash_walk(clear_glock, sdp);
Steven Whitehouse8f052282010-01-29 15:21:27 +00002019 flush_workqueue(glock_workqueue);
Bob Peterson2aba1b52015-05-19 09:11:23 -05002020 wait_event_timeout(sdp->sd_glock_wait,
2021 atomic_read(&sdp->sd_glock_disposal) == 0,
2022 HZ * 600);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002023 glock_hash_walk(dump_glock_func, sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002024}
2025
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002026void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
2027{
2028 struct gfs2_glock *gl = ip->i_gl;
2029 int ret;
2030
2031 ret = gfs2_truncatei_resume(ip);
Bob Petersonea4e61c2020-05-23 08:13:50 -05002032 gfs2_glock_assert_withdraw(gl, ret == 0);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002033
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002034 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002035 clear_bit(GLF_LOCK, &gl->gl_flags);
2036 run_queue(gl, 1);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002037 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002038}
2039
Steven Whitehouse6802e342008-05-21 17:03:22 +01002040static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05002041{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002042 switch(state) {
2043 case LM_ST_UNLOCKED:
2044 return "UN";
2045 case LM_ST_SHARED:
2046 return "SH";
2047 case LM_ST_DEFERRED:
2048 return "DF";
2049 case LM_ST_EXCLUSIVE:
2050 return "EX";
2051 }
2052 return "??";
2053}
Robert Peterson04b933f2007-03-23 17:05:15 -05002054
Bob Petersonb58bf402015-07-24 09:45:43 -05002055static const char *hflags2str(char *buf, u16 flags, unsigned long iflags)
Steven Whitehouse6802e342008-05-21 17:03:22 +01002056{
2057 char *p = buf;
2058 if (flags & LM_FLAG_TRY)
2059 *p++ = 't';
2060 if (flags & LM_FLAG_TRY_1CB)
2061 *p++ = 'T';
2062 if (flags & LM_FLAG_NOEXP)
2063 *p++ = 'e';
2064 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002065 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002066 if (flags & LM_FLAG_PRIORITY)
2067 *p++ = 'p';
Bob Peterson06e908c2018-04-18 13:58:19 -07002068 if (flags & LM_FLAG_NODE_SCOPE)
2069 *p++ = 'n';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002070 if (flags & GL_ASYNC)
2071 *p++ = 'a';
2072 if (flags & GL_EXACT)
2073 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002074 if (flags & GL_NOCACHE)
2075 *p++ = 'c';
2076 if (test_bit(HIF_HOLDER, &iflags))
2077 *p++ = 'H';
2078 if (test_bit(HIF_WAIT, &iflags))
2079 *p++ = 'W';
2080 if (test_bit(HIF_FIRST, &iflags))
2081 *p++ = 'F';
2082 *p = 0;
2083 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05002084}
2085
David Teiglandb3b94fa2006-01-16 16:50:04 +00002086/**
2087 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01002088 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00002089 * @gh: the glock holder
Bob Peterson3792ce92019-05-09 09:21:48 -05002090 * @fs_id_buf: pointer to file system id (if requested)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002091 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00002092 */
2093
Bob Peterson3792ce92019-05-09 09:21:48 -05002094static void dump_holder(struct seq_file *seq, const struct gfs2_holder *gh,
2095 const char *fs_id_buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002096{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002097 struct task_struct *gh_owner = NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002098 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00002099
Tetsuo Handa0b3a2c92014-01-02 19:52:20 +09002100 rcu_read_lock();
Steven Whitehouse6802e342008-05-21 17:03:22 +01002101 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08002102 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Bob Peterson3792ce92019-05-09 09:21:48 -05002103 gfs2_print_dbg(seq, "%s H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
2104 fs_id_buf, state2str(gh->gh_state),
Joe Perchescc181522010-11-05 16:12:36 -07002105 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
2106 gh->gh_error,
2107 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
2108 gh_owner ? gh_owner->comm : "(ended)",
2109 (void *)gh->gh_ip);
Tetsuo Handa0b3a2c92014-01-02 19:52:20 +09002110 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +00002111}
2112
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002113static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002114{
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002115 const unsigned long *gflags = &gl->gl_flags;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002116 char *p = buf;
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002117
Steven Whitehouse6802e342008-05-21 17:03:22 +01002118 if (test_bit(GLF_LOCK, gflags))
2119 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002120 if (test_bit(GLF_DEMOTE, gflags))
2121 *p++ = 'D';
2122 if (test_bit(GLF_PENDING_DEMOTE, gflags))
2123 *p++ = 'd';
2124 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
2125 *p++ = 'p';
2126 if (test_bit(GLF_DIRTY, gflags))
2127 *p++ = 'y';
2128 if (test_bit(GLF_LFLUSH, gflags))
2129 *p++ = 'f';
2130 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
2131 *p++ = 'i';
2132 if (test_bit(GLF_REPLY_PENDING, gflags))
2133 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002134 if (test_bit(GLF_INITIAL, gflags))
Steven Whitehoused8348de2009-02-05 10:12:38 +00002135 *p++ = 'I';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002136 if (test_bit(GLF_FROZEN, gflags))
2137 *p++ = 'F';
Bob Petersone2c6c8a2020-10-12 13:57:37 -05002138 if (!list_empty(&gl->gl_holders))
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01002139 *p++ = 'q';
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002140 if (test_bit(GLF_LRU, gflags))
2141 *p++ = 'L';
2142 if (gl->gl_object)
2143 *p++ = 'o';
Steven Whitehousea2457692012-01-20 10:38:36 +00002144 if (test_bit(GLF_BLOCKING, gflags))
2145 *p++ = 'b';
Bob Peterson5deaf1f2020-06-09 13:29:08 -04002146 if (test_bit(GLF_PENDING_DELETE, gflags))
2147 *p++ = 'P';
2148 if (test_bit(GLF_FREEING, gflags))
2149 *p++ = 'x';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002150 *p = 0;
2151 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002152}
2153
2154/**
Steven Whitehouse8eae1ca02012-10-15 10:57:02 +01002155 * gfs2_dump_glock - print information about a glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01002156 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00002157 * @gl: the glock
Bob Peterson3792ce92019-05-09 09:21:48 -05002158 * @fsid: If true, also dump the file system id
Steven Whitehouse6802e342008-05-21 17:03:22 +01002159 *
2160 * The file format is as follows:
2161 * One line per object, capital letters are used to indicate objects
2162 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
2163 * other objects are indented by a single space and follow the glock to
2164 * which they are related. Fields are indicated by lower case letters
2165 * followed by a colon and the field value, except for strings which are in
2166 * [] so that its possible to see if they are composed of spaces for
2167 * example. The field's are n = number (id of the object), f = flags,
2168 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00002169 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00002170 */
2171
Bob Peterson3792ce92019-05-09 09:21:48 -05002172void gfs2_dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002173{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002174 const struct gfs2_glock_operations *glops = gl->gl_ops;
2175 unsigned long long dtime;
2176 const struct gfs2_holder *gh;
2177 char gflags_buf[32];
Bob Peterson3792ce92019-05-09 09:21:48 -05002178 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Bob Peterson98fb0572019-08-13 09:25:15 -04002179 char fs_id_buf[sizeof(sdp->sd_fsname) + 7];
Bob Peterson7e901d62020-05-22 13:57:41 -05002180 unsigned long nrpages = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002181
Bob Peterson7e901d62020-05-22 13:57:41 -05002182 if (gl->gl_ops->go_flags & GLOF_ASPACE) {
2183 struct address_space *mapping = gfs2_glock2aspace(gl);
2184
2185 nrpages = mapping->nrpages;
2186 }
Bob Peterson3792ce92019-05-09 09:21:48 -05002187 memset(fs_id_buf, 0, sizeof(fs_id_buf));
2188 if (fsid && sdp) /* safety precaution */
2189 sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002190 dtime = jiffies - gl->gl_demote_time;
2191 dtime *= 1000000/HZ; /* demote time in uSec */
2192 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
2193 dtime = 0;
Bob Peterson3792ce92019-05-09 09:21:48 -05002194 gfs2_print_dbg(seq, "%sG: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d "
Bob Peterson7e901d62020-05-22 13:57:41 -05002195 "v:%d r:%d m:%ld p:%lu\n",
2196 fs_id_buf, state2str(gl->gl_state),
2197 gl->gl_name.ln_type,
2198 (unsigned long long)gl->gl_name.ln_number,
2199 gflags2str(gflags_buf, gl),
2200 state2str(gl->gl_target),
2201 state2str(gl->gl_demote_state), dtime,
2202 atomic_read(&gl->gl_ail_count),
2203 atomic_read(&gl->gl_revokes),
2204 (int)gl->gl_lockref.count, gl->gl_hold_time, nrpages);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002205
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002206 list_for_each_entry(gh, &gl->gl_holders, gh_list)
Bob Peterson3792ce92019-05-09 09:21:48 -05002207 dump_holder(seq, gh, fs_id_buf);
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002208
Steven Whitehouse6802e342008-05-21 17:03:22 +01002209 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
Bob Peterson3792ce92019-05-09 09:21:48 -05002210 glops->go_dump(seq, gl, fs_id_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002211}
2212
Steven Whitehousea2457692012-01-20 10:38:36 +00002213static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
2214{
2215 struct gfs2_glock *gl = iter_ptr;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002216
Ben Hutchings4d207132015-08-27 12:51:45 -05002217 seq_printf(seq, "G: n:%u/%llx rtt:%llu/%llu rttb:%llu/%llu irt:%llu/%llu dcnt: %llu qcnt: %llu\n",
Steven Whitehousea2457692012-01-20 10:38:36 +00002218 gl->gl_name.ln_type,
2219 (unsigned long long)gl->gl_name.ln_number,
Ben Hutchings4d207132015-08-27 12:51:45 -05002220 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
2221 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
2222 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
2223 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
2224 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
2225 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
2226 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
2227 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
Steven Whitehousea2457692012-01-20 10:38:36 +00002228 return 0;
2229}
David Teiglandb3b94fa2006-01-16 16:50:04 +00002230
Steven Whitehousea2457692012-01-20 10:38:36 +00002231static const char *gfs2_gltype[] = {
2232 "type",
2233 "reserved",
2234 "nondisk",
2235 "inode",
2236 "rgrp",
2237 "meta",
2238 "iopen",
2239 "flock",
2240 "plock",
2241 "quota",
2242 "journal",
2243};
2244
2245static const char *gfs2_stype[] = {
2246 [GFS2_LKS_SRTT] = "srtt",
2247 [GFS2_LKS_SRTTVAR] = "srttvar",
2248 [GFS2_LKS_SRTTB] = "srttb",
2249 [GFS2_LKS_SRTTVARB] = "srttvarb",
2250 [GFS2_LKS_SIRT] = "sirt",
2251 [GFS2_LKS_SIRTVAR] = "sirtvar",
2252 [GFS2_LKS_DCOUNT] = "dlm",
2253 [GFS2_LKS_QCOUNT] = "queue",
2254};
2255
2256#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
2257
2258static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
2259{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002260 struct gfs2_sbd *sdp = seq->private;
2261 loff_t pos = *(loff_t *)iter_ptr;
2262 unsigned index = pos >> 3;
2263 unsigned subindex = pos & 0x07;
Steven Whitehousea2457692012-01-20 10:38:36 +00002264 int i;
2265
2266 if (index == 0 && subindex != 0)
2267 return 0;
2268
2269 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
2270 (index == 0) ? "cpu": gfs2_stype[subindex]);
2271
2272 for_each_possible_cpu(i) {
2273 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
Andreas Gruenbacher8f7e0a82015-08-27 13:02:54 -05002274
2275 if (index == 0)
2276 seq_printf(seq, " %15u", i);
2277 else
2278 seq_printf(seq, " %15llu", (unsigned long long)lkstats->
2279 lkstats[index - 1].stats[subindex]);
Steven Whitehousea2457692012-01-20 10:38:36 +00002280 }
2281 seq_putc(seq, '\n');
2282 return 0;
2283}
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002284
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002285int __init gfs2_glock_init(void)
2286{
Andreas Gruenbacher05154802017-08-01 11:18:26 -05002287 int i, ret;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002288
2289 ret = rhashtable_init(&gl_hash_table, &ht_parms);
2290 if (ret < 0)
2291 return ret;
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002292
Steven Whitehoused2115772010-11-03 19:58:53 +00002293 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
Tejun Heo58a69cb2011-02-16 09:25:31 +01002294 WQ_HIGHPRI | WQ_FREEZABLE, 0);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002295 if (!glock_workqueue) {
2296 rhashtable_destroy(&gl_hash_table);
Dan Carpenterdfc46162013-08-15 10:54:43 +03002297 return -ENOMEM;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002298 }
Steven Whitehoused2115772010-11-03 19:58:53 +00002299 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
Tejun Heo58a69cb2011-02-16 09:25:31 +01002300 WQ_MEM_RECLAIM | WQ_FREEZABLE,
Steven Whitehoused2115772010-11-03 19:58:53 +00002301 0);
Dan Carpenterdfc46162013-08-15 10:54:43 +03002302 if (!gfs2_delete_workqueue) {
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05002303 destroy_workqueue(glock_workqueue);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002304 rhashtable_destroy(&gl_hash_table);
Dan Carpenterdfc46162013-08-15 10:54:43 +03002305 return -ENOMEM;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05002306 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002307
Chao Yue0d735c2016-09-21 12:09:40 -05002308 ret = register_shrinker(&glock_shrinker);
2309 if (ret) {
2310 destroy_workqueue(gfs2_delete_workqueue);
2311 destroy_workqueue(glock_workqueue);
2312 rhashtable_destroy(&gl_hash_table);
2313 return ret;
2314 }
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05002315
Andreas Gruenbacher05154802017-08-01 11:18:26 -05002316 for (i = 0; i < GLOCK_WAIT_TABLE_SIZE; i++)
2317 init_waitqueue_head(glock_wait_table + i);
2318
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002319 return 0;
2320}
2321
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002322void gfs2_glock_exit(void)
2323{
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002324 unregister_shrinker(&glock_shrinker);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002325 rhashtable_destroy(&gl_hash_table);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05002326 destroy_workqueue(glock_workqueue);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05002327 destroy_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002328}
2329
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002330static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi, loff_t n)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002331{
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002332 struct gfs2_glock *gl = gi->gl;
2333
2334 if (gl) {
2335 if (n == 0)
2336 return;
2337 if (!lockref_put_not_zero(&gl->gl_lockref))
2338 gfs2_glock_queue_put(gl);
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002339 }
2340 for (;;) {
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002341 gl = rhashtable_walk_next(&gi->hti);
2342 if (IS_ERR_OR_NULL(gl)) {
2343 if (gl == ERR_PTR(-EAGAIN)) {
2344 n = 1;
2345 continue;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002346 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002347 gl = NULL;
2348 break;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002349 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002350 if (gl->gl_name.ln_sbd != gi->sdp)
2351 continue;
2352 if (n <= 1) {
2353 if (!lockref_get_not_dead(&gl->gl_lockref))
2354 continue;
2355 break;
2356 } else {
2357 if (__lockref_is_dead(&gl->gl_lockref))
2358 continue;
2359 n--;
2360 }
Dan Carpenter14d37562016-12-14 08:02:03 -06002361 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002362 gi->gl = gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00002363}
2364
Steven Whitehouse6802e342008-05-21 17:03:22 +01002365static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Bob Peterson27c3b412017-08-18 09:15:13 -05002366 __acquires(RCU)
Robert Peterson7c52b162007-03-16 10:26:37 +00002367{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002368 struct gfs2_glock_iter *gi = seq->private;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002369 loff_t n;
Robert Peterson7c52b162007-03-16 10:26:37 +00002370
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002371 /*
2372 * We can either stay where we are, skip to the next hash table
2373 * entry, or start from the beginning.
2374 */
2375 if (*pos < gi->last_pos) {
2376 rhashtable_walk_exit(&gi->hti);
2377 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
2378 n = *pos + 1;
2379 } else {
2380 n = *pos - gi->last_pos;
2381 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002382
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002383 rhashtable_walk_start(&gi->hti);
Robert Peterson7c52b162007-03-16 10:26:37 +00002384
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002385 gfs2_glock_iter_next(gi, n);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01002386 gi->last_pos = *pos;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002387 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00002388}
2389
Steven Whitehouse6802e342008-05-21 17:03:22 +01002390static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00002391 loff_t *pos)
2392{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002393 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00002394
2395 (*pos)++;
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01002396 gi->last_pos = *pos;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002397 gfs2_glock_iter_next(gi, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002398 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00002399}
2400
Steven Whitehouse6802e342008-05-21 17:03:22 +01002401static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Bob Peterson27c3b412017-08-18 09:15:13 -05002402 __releases(RCU)
Robert Peterson7c52b162007-03-16 10:26:37 +00002403{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002404 struct gfs2_glock_iter *gi = seq->private;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002405
Bob Peterson88ffbf32015-03-16 11:02:46 -05002406 rhashtable_walk_stop(&gi->hti);
Robert Peterson7c52b162007-03-16 10:26:37 +00002407}
2408
Steven Whitehouse6802e342008-05-21 17:03:22 +01002409static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00002410{
Bob Peterson3792ce92019-05-09 09:21:48 -05002411 dump_glock(seq, iter_ptr, false);
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002412 return 0;
Robert Peterson7c52b162007-03-16 10:26:37 +00002413}
2414
Steven Whitehousea2457692012-01-20 10:38:36 +00002415static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
2416{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002417 preempt_disable();
Steven Whitehousea2457692012-01-20 10:38:36 +00002418 if (*pos >= GFS2_NR_SBSTATS)
2419 return NULL;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002420 return pos;
Steven Whitehousea2457692012-01-20 10:38:36 +00002421}
2422
2423static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
2424 loff_t *pos)
2425{
Steven Whitehousea2457692012-01-20 10:38:36 +00002426 (*pos)++;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002427 if (*pos >= GFS2_NR_SBSTATS)
Steven Whitehousea2457692012-01-20 10:38:36 +00002428 return NULL;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002429 return pos;
Steven Whitehousea2457692012-01-20 10:38:36 +00002430}
2431
2432static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
2433{
2434 preempt_enable();
2435}
2436
Denis Cheng4ef29002007-07-31 18:31:11 +08002437static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002438 .start = gfs2_glock_seq_start,
2439 .next = gfs2_glock_seq_next,
2440 .stop = gfs2_glock_seq_stop,
2441 .show = gfs2_glock_seq_show,
2442};
2443
Steven Whitehousea2457692012-01-20 10:38:36 +00002444static const struct seq_operations gfs2_glstats_seq_ops = {
2445 .start = gfs2_glock_seq_start,
2446 .next = gfs2_glock_seq_next,
2447 .stop = gfs2_glock_seq_stop,
2448 .show = gfs2_glstats_seq_show,
2449};
2450
Liu Shixine8a80232020-09-16 10:50:21 +08002451static const struct seq_operations gfs2_sbstats_sops = {
Steven Whitehousea2457692012-01-20 10:38:36 +00002452 .start = gfs2_sbstats_seq_start,
2453 .next = gfs2_sbstats_seq_next,
2454 .stop = gfs2_sbstats_seq_stop,
2455 .show = gfs2_sbstats_seq_show,
2456};
2457
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002458#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
2459
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002460static int __gfs2_glocks_open(struct inode *inode, struct file *file,
2461 const struct seq_operations *ops)
Robert Peterson7c52b162007-03-16 10:26:37 +00002462{
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002463 int ret = seq_open_private(file, ops, sizeof(struct gfs2_glock_iter));
Steven Whitehouse6802e342008-05-21 17:03:22 +01002464 if (ret == 0) {
2465 struct seq_file *seq = file->private_data;
2466 struct gfs2_glock_iter *gi = seq->private;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002467
Steven Whitehouse6802e342008-05-21 17:03:22 +01002468 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002469 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01002470 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002471 seq->size = GFS2_SEQ_GOODSIZE;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002472 /*
2473 * Initially, we are "before" the first hash table entry; the
2474 * first call to rhashtable_walk_next gets us the first entry.
2475 */
2476 gi->last_pos = -1;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002477 gi->gl = NULL;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002478 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002479 }
2480 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00002481}
2482
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002483static int gfs2_glocks_open(struct inode *inode, struct file *file)
2484{
2485 return __gfs2_glocks_open(inode, file, &gfs2_glock_seq_ops);
2486}
2487
Bob Peterson88ffbf32015-03-16 11:02:46 -05002488static int gfs2_glocks_release(struct inode *inode, struct file *file)
2489{
2490 struct seq_file *seq = file->private_data;
2491 struct gfs2_glock_iter *gi = seq->private;
2492
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002493 if (gi->gl)
2494 gfs2_glock_put(gi->gl);
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002495 rhashtable_walk_exit(&gi->hti);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002496 return seq_release_private(inode, file);
2497}
2498
Steven Whitehousea2457692012-01-20 10:38:36 +00002499static int gfs2_glstats_open(struct inode *inode, struct file *file)
2500{
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002501 return __gfs2_glocks_open(inode, file, &gfs2_glstats_seq_ops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002502}
2503
Steven Whitehousea2457692012-01-20 10:38:36 +00002504static const struct file_operations gfs2_glocks_fops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002505 .owner = THIS_MODULE,
Steven Whitehousea2457692012-01-20 10:38:36 +00002506 .open = gfs2_glocks_open,
2507 .read = seq_read,
2508 .llseek = seq_lseek,
Bob Peterson88ffbf32015-03-16 11:02:46 -05002509 .release = gfs2_glocks_release,
Steven Whitehousea2457692012-01-20 10:38:36 +00002510};
2511
2512static const struct file_operations gfs2_glstats_fops = {
2513 .owner = THIS_MODULE,
2514 .open = gfs2_glstats_open,
2515 .read = seq_read,
2516 .llseek = seq_lseek,
Bob Peterson88ffbf32015-03-16 11:02:46 -05002517 .release = gfs2_glocks_release,
Steven Whitehousea2457692012-01-20 10:38:36 +00002518};
2519
Liu Shixine8a80232020-09-16 10:50:21 +08002520DEFINE_SEQ_ATTRIBUTE(gfs2_sbstats);
Robert Peterson7c52b162007-03-16 10:26:37 +00002521
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002522void gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
Robert Peterson7c52b162007-03-16 10:26:37 +00002523{
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002524 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
Steven Whitehousea2457692012-01-20 10:38:36 +00002525
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002526 debugfs_create_file("glocks", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2527 &gfs2_glocks_fops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002528
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002529 debugfs_create_file("glstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2530 &gfs2_glstats_fops);
Chengyu Song7b4ddfa2015-03-24 09:37:53 -05002531
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002532 debugfs_create_file("sbstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2533 &gfs2_sbstats_fops);
Robert Peterson7c52b162007-03-16 10:26:37 +00002534}
2535
2536void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2537{
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002538 debugfs_remove_recursive(sdp->debugfs_dir);
2539 sdp->debugfs_dir = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002540}
2541
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002542void gfs2_register_debugfs(void)
Robert Peterson7c52b162007-03-16 10:26:37 +00002543{
2544 gfs2_root = debugfs_create_dir("gfs2", NULL);
Robert Peterson7c52b162007-03-16 10:26:37 +00002545}
2546
2547void gfs2_unregister_debugfs(void)
2548{
2549 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002550 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002551}