blob: 6e3bd5ab91089d47aef765167f184162615b8136 [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);
Bob Petersondc732902021-08-19 20:51:23 +020061static void __gfs2_glock_dq(struct gfs2_holder *gh);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050062
Robert Peterson7c52b162007-03-16 10:26:37 +000063static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050064static struct workqueue_struct *glock_workqueue;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -050065struct workqueue_struct *gfs2_delete_workqueue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +000066static LIST_HEAD(lru_list);
67static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010068static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040069
Steven Whitehouseb6397892006-09-12 10:10:01 -040070#define GFS2_GL_HASH_SHIFT 15
Fabian Frederick47a9a522016-08-02 12:05:27 -050071#define GFS2_GL_HASH_SIZE BIT(GFS2_GL_HASH_SHIFT)
Steven Whitehouse087efdd2006-09-09 16:59:11 -040072
Arvind Yadavd296b152017-08-30 07:50:03 -050073static const struct rhashtable_params ht_parms = {
Bob Peterson88ffbf32015-03-16 11:02:46 -050074 .nelem_hint = GFS2_GL_HASH_SIZE * 3 / 4,
Andreas Gruenbacher972b0442017-03-16 09:54:57 -040075 .key_len = offsetofend(struct lm_lockname, ln_type),
Bob Peterson88ffbf32015-03-16 11:02:46 -050076 .key_offset = offsetof(struct gfs2_glock, gl_name),
77 .head_offset = offsetof(struct gfs2_glock, gl_node),
78};
Steven Whitehouse087efdd2006-09-09 16:59:11 -040079
Bob Peterson88ffbf32015-03-16 11:02:46 -050080static struct rhashtable gl_hash_table;
David Teiglandb3b94fa2006-01-16 16:50:04 +000081
Andreas Gruenbacher05154802017-08-01 11:18:26 -050082#define GLOCK_WAIT_TABLE_BITS 12
83#define GLOCK_WAIT_TABLE_SIZE (1 << GLOCK_WAIT_TABLE_BITS)
84static wait_queue_head_t glock_wait_table[GLOCK_WAIT_TABLE_SIZE] __cacheline_aligned;
85
86struct wait_glock_queue {
87 struct lm_lockname *name;
88 wait_queue_entry_t wait;
89};
90
91static int glock_wake_function(wait_queue_entry_t *wait, unsigned int mode,
92 int sync, void *key)
93{
94 struct wait_glock_queue *wait_glock =
95 container_of(wait, struct wait_glock_queue, wait);
96 struct lm_lockname *wait_name = wait_glock->name;
97 struct lm_lockname *wake_name = key;
98
99 if (wake_name->ln_sbd != wait_name->ln_sbd ||
100 wake_name->ln_number != wait_name->ln_number ||
101 wake_name->ln_type != wait_name->ln_type)
102 return 0;
103 return autoremove_wake_function(wait, mode, sync, key);
104}
105
106static wait_queue_head_t *glock_waitqueue(struct lm_lockname *name)
107{
Andreas Gruenbacher605b0482019-03-06 15:41:57 +0100108 u32 hash = jhash2((u32 *)name, ht_parms.key_len / 4, 0);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500109
110 return glock_wait_table + hash_32(hash, GLOCK_WAIT_TABLE_BITS);
111}
112
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500113/**
114 * wake_up_glock - Wake up waiters on a glock
115 * @gl: the glock
116 */
117static void wake_up_glock(struct gfs2_glock *gl)
118{
119 wait_queue_head_t *wq = glock_waitqueue(&gl->gl_name);
120
121 if (waitqueue_active(wq))
122 __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name);
123}
124
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500125static void gfs2_glock_dealloc(struct rcu_head *rcu)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000126{
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500127 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000128
Bob Peterson15f25472020-01-15 12:47:46 -0600129 kfree(gl->gl_lksb.sb_lvbptr);
130 if (gl->gl_ops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000131 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
Bob Peterson15f25472020-01-15 12:47:46 -0600132 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000133 kmem_cache_free(gfs2_glock_cachep, gl);
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500134}
135
Bob Petersona72d2402019-06-13 13:28:45 -0500136/**
137 * glock_blocked_by_withdraw - determine if we can still use a glock
138 * @gl: the glock
139 *
140 * We need to allow some glocks to be enqueued, dequeued, promoted, and demoted
141 * when we're withdrawn. For example, to maintain metadata integrity, we should
142 * disallow the use of inode and rgrp glocks when withdrawn. Other glocks, like
143 * iopen or the transaction glocks may be safely used because none of their
144 * metadata goes through the journal. So in general, we should disallow all
145 * glocks that are journaled, and allow all the others. One exception is:
146 * we need to allow our active journal to be promoted and demoted so others
147 * may recover it and we can reacquire it when they're done.
148 */
149static bool glock_blocked_by_withdraw(struct gfs2_glock *gl)
150{
151 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
152
153 if (likely(!gfs2_withdrawn(sdp)))
154 return false;
155 if (gl->gl_ops->go_flags & GLOF_NONDISK)
156 return false;
157 if (!sdp->sd_jdesc ||
158 gl->gl_name.ln_number == sdp->sd_jdesc->jd_no_addr)
159 return false;
160 return true;
161}
162
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500163void gfs2_glock_free(struct gfs2_glock *gl)
164{
165 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
166
Bob Petersonea4e61c2020-05-23 08:13:50 -0500167 gfs2_glock_assert_withdraw(gl, atomic_read(&gl->gl_revokes) == 0);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500168 rhashtable_remove_fast(&gl_hash_table, &gl->gl_node, ht_parms);
169 smp_mb();
170 wake_up_glock(gl);
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500171 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000172 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
173 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000174}
175
176/**
177 * gfs2_glock_hold() - increment reference count on glock
178 * @gl: The glock to hold
179 *
180 */
181
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -0500182void gfs2_glock_hold(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000183{
Steven Whitehousee66cf162013-10-15 15:18:08 +0100184 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
185 lockref_get(&gl->gl_lockref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186}
187
188/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500189 * demote_ok - Check to see if it's ok to unlock a glock
190 * @gl: the glock
191 *
192 * Returns: 1 if it's ok
193 */
194
195static int demote_ok(const struct gfs2_glock *gl)
196{
197 const struct gfs2_glock_operations *glops = gl->gl_ops;
198
199 if (gl->gl_state == LM_ST_UNLOCKED)
200 return 0;
Bob Petersondc732902021-08-19 20:51:23 +0200201 /*
202 * Note that demote_ok is used for the lru process of disposing of
203 * glocks. For this purpose, we don't care if the glock's holders
204 * have the HIF_MAY_DEMOTE flag set or not. If someone is using
205 * them, don't demote.
206 */
Steven Whitehousef42ab082011-04-14 16:50:31 +0100207 if (!list_empty(&gl->gl_holders))
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500208 return 0;
209 if (glops->go_demote_ok)
210 return glops->go_demote_ok(gl);
211 return 1;
212}
213
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000214
Steven Whitehouse29687a22011-03-30 16:33:25 +0100215void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
216{
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000217 if (!(gl->gl_ops->go_flags & GLOF_LRU))
218 return;
219
Steven Whitehouse29687a22011-03-30 16:33:25 +0100220 spin_lock(&lru_lock);
221
Baokun Li38a618d2021-06-08 11:12:44 +0800222 list_move_tail(&gl->gl_lru, &lru_list);
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000223
224 if (!test_bit(GLF_LRU, &gl->gl_flags)) {
225 set_bit(GLF_LRU, &gl->gl_flags);
226 atomic_inc(&lru_count);
227 }
228
Steven Whitehouse29687a22011-03-30 16:33:25 +0100229 spin_unlock(&lru_lock);
230}
231
Bob Peterson8f6cb402015-01-05 13:25:10 -0500232static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
Steven Whitehousef42ab082011-04-14 16:50:31 +0100233{
Bob Peterson645ebd42017-07-26 10:57:35 -0500234 if (!(gl->gl_ops->go_flags & GLOF_LRU))
235 return;
236
Bob Peterson8f6cb402015-01-05 13:25:10 -0500237 spin_lock(&lru_lock);
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000238 if (test_bit(GLF_LRU, &gl->gl_flags)) {
Steven Whitehousef42ab082011-04-14 16:50:31 +0100239 list_del_init(&gl->gl_lru);
240 atomic_dec(&lru_count);
241 clear_bit(GLF_LRU, &gl->gl_flags);
242 }
243 spin_unlock(&lru_lock);
244}
245
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500246/*
247 * Enqueue the glock on the work queue. Passes one glock reference on to the
248 * work queue.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249 */
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500250static void __gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
251 if (!queue_delayed_work(glock_workqueue, &gl->gl_work, delay)) {
252 /*
253 * We are holding the lockref spinlock, and the work was still
254 * queued above. The queued work (glock_work_func) takes that
255 * spinlock before dropping its glock reference(s), so it
256 * cannot have dropped them in the meantime.
257 */
258 GLOCK_BUG_ON(gl, gl->gl_lockref.count < 2);
259 gl->gl_lockref.count--;
260 }
261}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500263static void gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
264 spin_lock(&gl->gl_lockref.lock);
265 __gfs2_glock_queue_work(gl, delay);
266 spin_unlock(&gl->gl_lockref.lock);
267}
268
269static void __gfs2_glock_put(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000270{
Bob Peterson15562c42015-03-16 11:52:05 -0500271 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000272 struct address_space *mapping = gfs2_glock2aspace(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273
Steven Whitehousee66cf162013-10-15 15:18:08 +0100274 lockref_mark_dead(&gl->gl_lockref);
275
Bob Peterson8f6cb402015-01-05 13:25:10 -0500276 gfs2_glock_remove_from_lru(gl);
Steven Whitehousee66cf162013-10-15 15:18:08 +0100277 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehousee66cf162013-10-15 15:18:08 +0100278 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
Bob Petersonee1e2c72020-09-16 11:06:23 -0500279 if (mapping) {
280 truncate_inode_pages_final(mapping);
281 if (!gfs2_withdrawn(sdp))
Matthew Wilcox (Oracle)77165062021-05-04 18:32:45 -0700282 GLOCK_BUG_ON(gl, !mapping_empty(mapping));
Bob Petersonee1e2c72020-09-16 11:06:23 -0500283 }
Steven Whitehousee66cf162013-10-15 15:18:08 +0100284 trace_gfs2_glock_put(gl);
285 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286}
287
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -0500288/*
289 * Cause the glock to be put in work queue context.
290 */
291void gfs2_glock_queue_put(struct gfs2_glock *gl)
292{
293 gfs2_glock_queue_work(gl, 0);
294}
295
David Teiglandb3b94fa2006-01-16 16:50:04 +0000296/**
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500297 * gfs2_glock_put() - Decrement reference count on glock
298 * @gl: The glock to put
299 *
300 */
301
302void gfs2_glock_put(struct gfs2_glock *gl)
303{
304 if (lockref_put_or_lock(&gl->gl_lockref))
305 return;
306
307 __gfs2_glock_put(gl);
308}
309
310/**
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200311 * may_grant - check if it's ok to grant a new lock
Steven Whitehouse6802e342008-05-21 17:03:22 +0100312 * @gl: The glock
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200313 * @current_gh: One of the current holders of @gl
Steven Whitehouse6802e342008-05-21 17:03:22 +0100314 * @gh: The lock request which we wish to grant
315 *
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200316 * With our current compatibility rules, if a glock has one or more active
317 * holders (HIF_HOLDER flag set), any of those holders can be passed in as
318 * @current_gh; they are all the same as far as compatibility with the new @gh
319 * goes.
320 *
321 * Returns true if it's ok to grant the lock.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100322 */
323
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200324static inline bool may_grant(struct gfs2_glock *gl,
325 struct gfs2_holder *current_gh,
326 struct gfs2_holder *gh)
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500327{
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200328 if (current_gh) {
329 GLOCK_BUG_ON(gl, !test_bit(HIF_HOLDER, &current_gh->gh_iflags));
Bob Peterson06e908c2018-04-18 13:58:19 -0700330
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200331 switch(current_gh->gh_state) {
332 case LM_ST_EXCLUSIVE:
333 /*
334 * Here we make a special exception to grant holders
335 * who agree to share the EX lock with other holders
336 * who also have the bit set. If the original holder
337 * has the LM_FLAG_NODE_SCOPE bit set, we grant more
338 * holders with the bit set.
339 */
340 return gh->gh_state == LM_ST_EXCLUSIVE &&
341 (current_gh->gh_flags & LM_FLAG_NODE_SCOPE) &&
342 (gh->gh_flags & LM_FLAG_NODE_SCOPE);
343
344 case LM_ST_SHARED:
345 case LM_ST_DEFERRED:
346 return gh->gh_state == current_gh->gh_state;
347
348 default:
349 return false;
350 }
Bob Peterson06e908c2018-04-18 13:58:19 -0700351 }
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200352
Steven Whitehouse6802e342008-05-21 17:03:22 +0100353 if (gl->gl_state == gh->gh_state)
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200354 return true;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100355 if (gh->gh_flags & GL_EXACT)
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200356 return false;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100357 if (gl->gl_state == LM_ST_EXCLUSIVE) {
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200358 return gh->gh_state == LM_ST_SHARED ||
359 gh->gh_state == LM_ST_DEFERRED;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100360 }
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200361 if (gh->gh_flags & LM_FLAG_ANY)
362 return gl->gl_state != LM_ST_UNLOCKED;
363 return false;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100364}
365
366static void gfs2_holder_wake(struct gfs2_holder *gh)
367{
368 clear_bit(HIF_WAIT, &gh->gh_iflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100369 smp_mb__after_atomic();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100370 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
Bob Petersonad269672019-08-30 12:31:02 -0500371 if (gh->gh_flags & GL_ASYNC) {
372 struct gfs2_sbd *sdp = gh->gh_gl->gl_name.ln_sbd;
373
374 wake_up(&sdp->sd_async_glock_wait);
375 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100376}
377
378/**
Steven Whitehoused5341a92010-07-23 14:05:51 +0100379 * do_error - Something unexpected has happened during a lock request
Lee Jonesc551f662021-03-30 17:44:29 +0100380 * @gl: The glock
381 * @ret: The status from the DLM
Steven Whitehoused5341a92010-07-23 14:05:51 +0100382 */
383
Denys Vlasenkoa527b382016-04-12 12:39:12 -0400384static void do_error(struct gfs2_glock *gl, const int ret)
Steven Whitehoused5341a92010-07-23 14:05:51 +0100385{
386 struct gfs2_holder *gh, *tmp;
387
388 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
Bob Petersondc732902021-08-19 20:51:23 +0200389 if (!test_bit(HIF_WAIT, &gh->gh_iflags))
Steven Whitehoused5341a92010-07-23 14:05:51 +0100390 continue;
391 if (ret & LM_OUT_ERROR)
392 gh->gh_error = -EIO;
393 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
394 gh->gh_error = GLR_TRYFAILED;
395 else
396 continue;
397 list_del_init(&gh->gh_list);
398 trace_gfs2_glock_queue(gh, 0);
399 gfs2_holder_wake(gh);
400 }
401}
402
403/**
Bob Petersondc732902021-08-19 20:51:23 +0200404 * demote_incompat_holders - demote incompatible demoteable holders
405 * @gl: the glock we want to promote
406 * @new_gh: the new holder to be promoted
407 */
408static void demote_incompat_holders(struct gfs2_glock *gl,
409 struct gfs2_holder *new_gh)
410{
411 struct gfs2_holder *gh;
412
413 /*
414 * Demote incompatible holders before we make ourselves eligible.
415 * (This holder may or may not allow auto-demoting, but we don't want
416 * to demote the new holder before it's even granted.)
417 */
418 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
419 /*
420 * Since holders are at the front of the list, we stop when we
421 * find the first non-holder.
422 */
423 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
424 return;
425 if (test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags) &&
426 !may_grant(gl, new_gh, gh)) {
427 /*
428 * We should not recurse into do_promote because
429 * __gfs2_glock_dq only calls handle_callback,
430 * gfs2_glock_add_to_lru and __gfs2_glock_queue_work.
431 */
432 __gfs2_glock_dq(gh);
433 }
434 }
435}
436
437/**
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200438 * find_first_holder - find the first "holder" gh
439 * @gl: the glock
440 */
441
442static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
443{
444 struct gfs2_holder *gh;
445
446 if (!list_empty(&gl->gl_holders)) {
447 gh = list_first_entry(&gl->gl_holders, struct gfs2_holder,
448 gh_list);
449 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
450 return gh;
451 }
452 return NULL;
453}
454
455/**
Bob Petersondc732902021-08-19 20:51:23 +0200456 * find_first_strong_holder - find the first non-demoteable holder
457 * @gl: the glock
458 *
459 * Find the first holder that doesn't have the HIF_MAY_DEMOTE flag set.
460 */
461static inline struct gfs2_holder *
462find_first_strong_holder(struct gfs2_glock *gl)
463{
464 struct gfs2_holder *gh;
465
466 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
467 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
468 return NULL;
469 if (!test_bit(HIF_MAY_DEMOTE, &gh->gh_iflags))
470 return gh;
471 }
472 return NULL;
473}
474
Bob Petersone6f85602021-10-06 08:59:52 -0500475/*
476 * gfs2_instantiate - Call the glops instantiate function
477 * @gl: The glock
478 *
479 * Returns: 0 if instantiate was successful, 2 if type specific operation is
480 * underway, or error.
481 */
Bob Petersonf2e70d82021-10-06 09:29:18 -0500482int gfs2_instantiate(struct gfs2_holder *gh)
Bob Petersone6f85602021-10-06 08:59:52 -0500483{
484 struct gfs2_glock *gl = gh->gh_gl;
485 const struct gfs2_glock_operations *glops = gl->gl_ops;
Bob Petersonf2e70d82021-10-06 09:29:18 -0500486 int ret;
Bob Petersone6f85602021-10-06 08:59:52 -0500487
Bob Petersonf2e70d82021-10-06 09:29:18 -0500488again:
489 if (!test_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags))
490 return 0;
491
492 /*
493 * Since we unlock the lockref lock, we set a flag to indicate
494 * instantiate is in progress.
495 */
496 if (test_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags)) {
497 wait_on_bit(&gl->gl_flags, GLF_INSTANTIATE_IN_PROG,
498 TASK_UNINTERRUPTIBLE);
499 /*
500 * Here we just waited for a different instantiate to finish.
501 * But that may not have been successful, as when a process
502 * locks an inode glock _before_ it has an actual inode to
503 * instantiate into. So we check again. This process might
504 * have an inode to instantiate, so might be successful.
505 */
506 goto again;
507 }
508
509 set_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags);
510
511 ret = glops->go_instantiate(gh);
512 if (!ret)
513 clear_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags);
514 clear_bit(GLF_INSTANTIATE_IN_PROG, &gl->gl_flags);
515 smp_mb__after_atomic();
516 wake_up_bit(&gl->gl_flags, GLF_INSTANTIATE_IN_PROG);
517 return ret;
Bob Petersone6f85602021-10-06 08:59:52 -0500518}
519
Bob Petersondc732902021-08-19 20:51:23 +0200520/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100521 * do_promote - promote as many requests as possible on the current queue
522 * @gl: The glock
523 *
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000524 * Returns: 1 if there is a blocked holder at the head of the list, or 2
525 * if a type specific operation is underway.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100526 */
527
528static int do_promote(struct gfs2_glock *gl)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500529__releases(&gl->gl_lockref.lock)
530__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100531{
Andreas Gruenbacher61444642021-08-10 00:43:55 +0200532 struct gfs2_holder *gh, *tmp, *first_gh;
Bob Petersondc732902021-08-19 20:51:23 +0200533 bool incompat_holders_demoted = false;
Bob Peterson60d8bae2021-10-06 07:59:59 -0500534 bool lock_released;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100535 int ret;
536
537restart:
Bob Petersondc732902021-08-19 20:51:23 +0200538 first_gh = find_first_strong_holder(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100539 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
Bob Peterson60d8bae2021-10-06 07:59:59 -0500540 lock_released = false;
541 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
Steven Whitehouse6802e342008-05-21 17:03:22 +0100542 continue;
Bob Peterson17a6ece2021-10-06 07:35:04 -0500543 if (!may_grant(gl, first_gh, gh)) {
544 /*
545 * If we get here, it means we may not grant this holder for
546 * some reason. If this holder is the head of the list, it
547 * means we have a blocked holder at the head, so return 1.
548 */
549 if (gh->gh_list.prev == &gl->gl_holders)
550 return 1;
551 do_error(gl, 0);
552 break;
553 }
554 if (!incompat_holders_demoted) {
555 demote_incompat_holders(gl, first_gh);
556 incompat_holders_demoted = true;
557 first_gh = gh;
558 }
Bob Petersonf2e70d82021-10-06 09:29:18 -0500559 if (test_bit(GLF_INSTANTIATE_NEEDED, &gl->gl_flags) &&
Bob Petersone6f85602021-10-06 08:59:52 -0500560 !(gh->gh_flags & GL_SKIP) && gl->gl_ops->go_instantiate) {
Bob Peterson60d8bae2021-10-06 07:59:59 -0500561 lock_released = true;
562 spin_unlock(&gl->gl_lockref.lock);
Bob Petersone6f85602021-10-06 08:59:52 -0500563 ret = gfs2_instantiate(gh);
Bob Peterson60d8bae2021-10-06 07:59:59 -0500564 spin_lock(&gl->gl_lockref.lock);
565 if (ret) {
566 if (ret == 1)
567 return 2;
568 gh->gh_error = ret;
569 list_del_init(&gh->gh_list);
570 trace_gfs2_glock_queue(gh, 0);
571 gfs2_holder_wake(gh);
572 goto restart;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100573 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100574 }
Bob Peterson17a6ece2021-10-06 07:35:04 -0500575 set_bit(HIF_HOLDER, &gh->gh_iflags);
576 trace_gfs2_promote(gh);
577 gfs2_holder_wake(gh);
Bob Peterson60d8bae2021-10-06 07:59:59 -0500578 /*
579 * If we released the gl_lockref.lock the holders list may have
580 * changed. For that reason, we start again at the start of
581 * the holders queue.
582 */
583 if (lock_released)
584 goto restart;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100585 }
586 return 0;
587}
588
589/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100590 * find_first_waiter - find the first gh that's waiting for the glock
591 * @gl: the glock
592 */
593
594static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
595{
596 struct gfs2_holder *gh;
597
598 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
599 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
600 return gh;
601 }
602 return NULL;
603}
604
605/**
606 * state_change - record that the glock is now in a different state
607 * @gl: the glock
Lee Jonesc551f662021-03-30 17:44:29 +0100608 * @new_state: the new state
Steven Whitehouse6802e342008-05-21 17:03:22 +0100609 */
610
611static void state_change(struct gfs2_glock *gl, unsigned int new_state)
612{
613 int held1, held2;
614
615 held1 = (gl->gl_state != LM_ST_UNLOCKED);
616 held2 = (new_state != LM_ST_UNLOCKED);
617
618 if (held1 != held2) {
Steven Whitehousee66cf162013-10-15 15:18:08 +0100619 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
Steven Whitehouse6802e342008-05-21 17:03:22 +0100620 if (held2)
Steven Whitehousee66cf162013-10-15 15:18:08 +0100621 gl->gl_lockref.count++;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100622 else
Steven Whitehousee66cf162013-10-15 15:18:08 +0100623 gl->gl_lockref.count--;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100624 }
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400625 if (new_state != gl->gl_target)
626 /* shorten our minimum hold time */
627 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
628 GL_GLOCK_MIN_HOLD);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100629 gl->gl_state = new_state;
630 gl->gl_tchange = jiffies;
631}
632
Andreas Gruenbacher35b6f8f2020-01-17 13:48:49 +0100633static void gfs2_set_demote(struct gfs2_glock *gl)
634{
635 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
636
637 set_bit(GLF_DEMOTE, &gl->gl_flags);
638 smp_mb();
639 wake_up(&sdp->sd_async_glock_wait);
640}
641
Steven Whitehouse6802e342008-05-21 17:03:22 +0100642static void gfs2_demote_wake(struct gfs2_glock *gl)
643{
644 gl->gl_demote_state = LM_ST_EXCLUSIVE;
645 clear_bit(GLF_DEMOTE, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100646 smp_mb__after_atomic();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100647 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
648}
649
650/**
651 * finish_xmote - The DLM has replied to one of our lock requests
652 * @gl: The glock
653 * @ret: The status from the DLM
654 *
655 */
656
657static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
658{
659 const struct gfs2_glock_operations *glops = gl->gl_ops;
660 struct gfs2_holder *gh;
661 unsigned state = ret & LM_OUT_ST_MASK;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000662 int rv;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500663
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500664 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse63997772009-06-12 08:49:20 +0100665 trace_gfs2_glock_state_change(gl, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100666 state_change(gl, state);
667 gh = find_first_waiter(gl);
668
669 /* Demote to UN request arrived during demote to SH or DF */
670 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
671 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
672 gl->gl_target = LM_ST_UNLOCKED;
673
674 /* Check for state != intended state */
675 if (unlikely(state != gl->gl_target)) {
676 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
677 /* move to back of queue and try next entry */
678 if (ret & LM_OUT_CANCELED) {
679 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
680 list_move_tail(&gh->gh_list, &gl->gl_holders);
681 gh = find_first_waiter(gl);
682 gl->gl_target = gh->gh_state;
683 goto retry;
684 }
685 /* Some error or failed "try lock" - report it */
686 if ((ret & LM_OUT_ERROR) ||
687 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
688 gl->gl_target = gl->gl_state;
689 do_error(gl, ret);
690 goto out;
691 }
692 }
693 switch(state) {
694 /* Unlocked due to conversion deadlock, try again */
695 case LM_ST_UNLOCKED:
696retry:
697 do_xmote(gl, gh, gl->gl_target);
698 break;
699 /* Conversion fails, unlock and try again */
700 case LM_ST_SHARED:
701 case LM_ST_DEFERRED:
702 do_xmote(gl, gh, LM_ST_UNLOCKED);
703 break;
704 default: /* Everything else */
Bob Petersone54c78a2018-10-03 08:47:36 -0500705 fs_err(gl->gl_name.ln_sbd, "wanted %u got %u\n",
706 gl->gl_target, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100707 GLOCK_BUG_ON(gl, 1);
708 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500709 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100710 return;
711 }
712
713 /* Fast path - we got what we asked for */
714 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
715 gfs2_demote_wake(gl);
716 if (state != LM_ST_UNLOCKED) {
717 if (glops->go_xmote_bh) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500718 spin_unlock(&gl->gl_lockref.lock);
Bob Petersonf68effb2021-03-19 07:56:44 -0400719 rv = glops->go_xmote_bh(gl);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500720 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100721 if (rv) {
722 do_error(gl, rv);
723 goto out;
724 }
725 }
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000726 rv = do_promote(gl);
727 if (rv == 2)
728 goto out_locked;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100729 }
730out:
731 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000732out_locked:
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500733 spin_unlock(&gl->gl_lockref.lock);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500734}
735
Bob Peterson865cc3e2021-05-18 09:14:31 -0400736static bool is_system_glock(struct gfs2_glock *gl)
737{
738 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
739 struct gfs2_inode *m_ip = GFS2_I(sdp->sd_statfs_inode);
740
741 if (gl == m_ip->i_gl)
742 return true;
743 return false;
744}
745
Steven Whitehouse6802e342008-05-21 17:03:22 +0100746/**
747 * do_xmote - Calls the DLM to change the state of a lock
748 * @gl: The lock state
749 * @gh: The holder (only for promotes)
750 * @target: The target lock state
751 *
752 */
753
754static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500755__releases(&gl->gl_lockref.lock)
756__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100757{
758 const struct gfs2_glock_operations *glops = gl->gl_ops;
Bob Peterson15562c42015-03-16 11:52:05 -0500759 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Bob Petersonb58bf402015-07-24 09:45:43 -0500760 unsigned int lck_flags = (unsigned int)(gh ? gh->gh_flags : 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100761 int ret;
762
Bob Peterson601ef0d2020-01-28 20:23:45 +0100763 if (target != LM_ST_UNLOCKED && glock_blocked_by_withdraw(gl) &&
764 gh && !(gh->gh_flags & LM_FLAG_NOEXP))
Bob Peterson0d1c7ae2017-03-03 12:37:14 -0500765 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100766 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
767 LM_FLAG_PRIORITY);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000768 GLOCK_BUG_ON(gl, gl->gl_state == target);
769 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100770 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
771 glops->go_inval) {
Bob Petersond99724c2019-11-15 10:45:41 -0500772 /*
773 * If another process is already doing the invalidate, let that
774 * finish first. The glock state machine will get back to this
775 * holder again later.
776 */
777 if (test_and_set_bit(GLF_INVALIDATE_IN_PROGRESS,
778 &gl->gl_flags))
779 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100780 do_error(gl, 0); /* Fail queued try locks */
781 }
Steven Whitehouse47a25382010-11-30 15:49:31 +0000782 gl->gl_req = target;
Steven Whitehousea2457692012-01-20 10:38:36 +0000783 set_bit(GLF_BLOCKING, &gl->gl_flags);
784 if ((gl->gl_req == LM_ST_UNLOCKED) ||
785 (gl->gl_state == LM_ST_EXCLUSIVE) ||
786 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
787 clear_bit(GLF_BLOCKING, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500788 spin_unlock(&gl->gl_lockref.lock);
Bob Peterson1c634f92019-11-13 14:09:28 -0600789 if (glops->go_sync) {
790 ret = glops->go_sync(gl);
791 /* If we had a problem syncing (due to io errors or whatever,
792 * we should not invalidate the metadata or tell dlm to
793 * release the glock to other nodes.
794 */
795 if (ret) {
796 if (cmpxchg(&sdp->sd_log_error, 0, ret)) {
797 fs_err(sdp, "Error %d syncing glock \n", ret);
798 gfs2_dump_glock(NULL, gl, true);
799 }
Bob Petersonb11e1a82020-05-07 12:12:23 -0500800 goto skip_inval;
Bob Peterson1c634f92019-11-13 14:09:28 -0600801 }
802 }
Bob Peterson33dbd1e2019-05-22 09:21:21 -0500803 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags)) {
804 /*
805 * The call to go_sync should have cleared out the ail list.
806 * If there are still items, we have a problem. We ought to
807 * withdraw, but we can't because the withdraw code also uses
808 * glocks. Warn about the error, dump the glock, then fall
809 * through and wait for logd to do the withdraw for us.
810 */
811 if ((atomic_read(&gl->gl_ail_count) != 0) &&
812 (!cmpxchg(&sdp->sd_log_error, 0, -EIO))) {
Bob Petersonea4e61c2020-05-23 08:13:50 -0500813 gfs2_glock_assert_warn(gl,
814 !atomic_read(&gl->gl_ail_count));
Bob Peterson33dbd1e2019-05-22 09:21:21 -0500815 gfs2_dump_glock(NULL, gl, true);
816 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100817 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
Bob Peterson33dbd1e2019-05-22 09:21:21 -0500818 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
819 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100820
Bob Petersonb11e1a82020-05-07 12:12:23 -0500821skip_inval:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100822 gfs2_glock_hold(gl);
Bob Petersond93ae382019-04-29 13:14:58 -0600823 /*
824 * Check for an error encountered since we called go_sync and go_inval.
825 * If so, we can't withdraw from the glock code because the withdraw
826 * code itself uses glocks (see function signal_our_withdraw) to
827 * change the mount to read-only. Most importantly, we must not call
828 * dlm to unlock the glock until the journal is in a known good state
829 * (after journal replay) otherwise other nodes may use the object
830 * (rgrp or dinode) and then later, journal replay will corrupt the
831 * file system. The best we can do here is wait for the logd daemon
832 * to see sd_log_error and withdraw, and in the meantime, requeue the
833 * work for later.
834 *
Bob Peterson865cc3e2021-05-18 09:14:31 -0400835 * We make a special exception for some system glocks, such as the
836 * system statfs inode glock, which needs to be granted before the
837 * gfs2_quotad daemon can exit, and that exit needs to finish before
838 * we can unmount the withdrawn file system.
839 *
Bob Petersond93ae382019-04-29 13:14:58 -0600840 * However, if we're just unlocking the lock (say, for unmount, when
841 * gfs2_gl_hash_clear calls clear_glock) and recovery is complete
842 * then it's okay to tell dlm to unlock it.
843 */
844 if (unlikely(sdp->sd_log_error && !gfs2_withdrawn(sdp)))
845 gfs2_withdraw_delayed(sdp);
Bob Peterson865cc3e2021-05-18 09:14:31 -0400846 if (glock_blocked_by_withdraw(gl) &&
847 (target != LM_ST_UNLOCKED ||
848 test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags))) {
849 if (!is_system_glock(gl)) {
Bob Petersond93ae382019-04-29 13:14:58 -0600850 gfs2_glock_queue_work(gl, GL_GLOCK_DFT_HOLD);
851 goto out;
Bob Peterson865cc3e2021-05-18 09:14:31 -0400852 } else {
853 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
Bob Petersond93ae382019-04-29 13:14:58 -0600854 }
855 }
856
Steven Whitehouse921169c2010-11-29 12:50:38 +0000857 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
858 /* lock_dlm */
859 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
Benjamin Marzinski3e11e5302016-03-23 14:29:59 -0400860 if (ret == -EINVAL && gl->gl_target == LM_ST_UNLOCKED &&
861 target == LM_ST_UNLOCKED &&
862 test_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags)) {
863 finish_xmote(gl, target);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500864 gfs2_glock_queue_work(gl, 0);
Bob Petersond93ae382019-04-29 13:14:58 -0600865 } else if (ret) {
Bob Petersone54c78a2018-10-03 08:47:36 -0500866 fs_err(sdp, "lm_lock ret %d\n", ret);
Bob Petersoneb43e662019-11-14 09:52:15 -0500867 GLOCK_BUG_ON(gl, !gfs2_withdrawn(sdp));
David Teiglanddba2d702012-11-14 13:46:53 -0500868 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000869 } else { /* lock_nolock */
870 finish_xmote(gl, target);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500871 gfs2_glock_queue_work(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100872 }
Bob Petersond93ae382019-04-29 13:14:58 -0600873out:
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500874 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100875}
876
877/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100878 * run_queue - do all outstanding tasks related to a glock
879 * @gl: The glock in question
880 * @nonblock: True if we must not block in run_queue
881 *
882 */
883
884static void run_queue(struct gfs2_glock *gl, const int nonblock)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500885__releases(&gl->gl_lockref.lock)
886__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100887{
888 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000889 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100890
891 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
892 return;
893
894 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
895
896 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
897 gl->gl_demote_state != gl->gl_state) {
898 if (find_first_holder(gl))
Steven Whitehoused8348de2009-02-05 10:12:38 +0000899 goto out_unlock;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100900 if (nonblock)
901 goto out_sched;
902 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100903 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100904 gl->gl_target = gl->gl_demote_state;
905 } else {
906 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
907 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000908 ret = do_promote(gl);
909 if (ret == 0)
Steven Whitehoused8348de2009-02-05 10:12:38 +0000910 goto out_unlock;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000911 if (ret == 2)
Steven Whitehousea228df62009-04-07 14:01:34 +0100912 goto out;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100913 gh = find_first_waiter(gl);
914 gl->gl_target = gh->gh_state;
915 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
916 do_error(gl, 0); /* Fail queued try locks */
917 }
918 do_xmote(gl, gh, gl->gl_target);
Steven Whitehousea228df62009-04-07 14:01:34 +0100919out:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100920 return;
921
922out_sched:
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100923 clear_bit(GLF_LOCK, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100924 smp_mb__after_atomic();
Steven Whitehousee66cf162013-10-15 15:18:08 +0100925 gl->gl_lockref.count++;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500926 __gfs2_glock_queue_work(gl, 0);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100927 return;
928
Steven Whitehoused8348de2009-02-05 10:12:38 +0000929out_unlock:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100930 clear_bit(GLF_LOCK, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100931 smp_mb__after_atomic();
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100932 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100933}
934
Andreas Gruenbacherf286d622020-01-13 21:21:49 +0100935void gfs2_inode_remember_delete(struct gfs2_glock *gl, u64 generation)
936{
937 struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr;
938
939 if (ri->ri_magic == 0)
940 ri->ri_magic = cpu_to_be32(GFS2_MAGIC);
941 if (ri->ri_magic == cpu_to_be32(GFS2_MAGIC))
942 ri->ri_generation_deleted = cpu_to_be64(generation);
943}
944
945bool gfs2_inode_already_deleted(struct gfs2_glock *gl, u64 generation)
946{
947 struct gfs2_inode_lvb *ri = (void *)gl->gl_lksb.sb_lvbptr;
948
949 if (ri->ri_magic != cpu_to_be32(GFS2_MAGIC))
950 return false;
951 return generation <= be64_to_cpu(ri->ri_generation_deleted);
952}
953
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100954static void gfs2_glock_poke(struct gfs2_glock *gl)
955{
956 int flags = LM_FLAG_TRY_1CB | LM_FLAG_ANY | GL_SKIP;
957 struct gfs2_holder gh;
958 int error;
959
Andreas Gruenbacherb016d9a2021-09-30 13:49:36 -0500960 __gfs2_holder_init(gl, LM_ST_SHARED, flags, &gh, _RET_IP_);
Andreas Gruenbacherc07bfb42020-07-27 19:18:57 +0200961 error = gfs2_glock_nq(&gh);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100962 if (!error)
963 gfs2_glock_dq(&gh);
Andreas Gruenbacherc07bfb42020-07-27 19:18:57 +0200964 gfs2_holder_uninit(&gh);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100965}
966
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100967static bool gfs2_try_evict(struct gfs2_glock *gl)
968{
969 struct gfs2_inode *ip;
970 bool evicted = false;
971
972 /*
973 * If there is contention on the iopen glock and we have an inode, try
974 * to grab and release the inode so that it can be evicted. This will
975 * allow the remote node to go ahead and delete the inode without us
976 * having to do it, which will avoid rgrp glock thrashing.
977 *
978 * The remote node is likely still holding the corresponding inode
979 * glock, so it will run before we get to verify that the delete has
980 * happened below.
981 */
982 spin_lock(&gl->gl_lockref.lock);
983 ip = gl->gl_object;
984 if (ip && !igrab(&ip->i_inode))
985 ip = NULL;
986 spin_unlock(&gl->gl_lockref.lock);
987 if (ip) {
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100988 struct gfs2_glock *inode_gl = NULL;
989
Andreas Gruenbacherb0dcffd2020-01-15 09:54:14 +0100990 gl->gl_no_formal_ino = ip->i_no_formal_ino;
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +0100991 set_bit(GIF_DEFERRED_DELETE, &ip->i_flags);
992 d_prune_aliases(&ip->i_inode);
993 iput(&ip->i_inode);
994
995 /* If the inode was evicted, gl->gl_object will now be NULL. */
996 spin_lock(&gl->gl_lockref.lock);
997 ip = gl->gl_object;
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +0100998 if (ip) {
999 inode_gl = ip->i_gl;
1000 lockref_get(&inode_gl->gl_lockref);
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001001 clear_bit(GIF_DEFERRED_DELETE, &ip->i_flags);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001002 }
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001003 spin_unlock(&gl->gl_lockref.lock);
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001004 if (inode_gl) {
1005 gfs2_glock_poke(inode_gl);
1006 gfs2_glock_put(inode_gl);
1007 }
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001008 evicted = !ip;
1009 }
1010 return evicted;
1011}
1012
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001013static void delete_work_func(struct work_struct *work)
1014{
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01001015 struct delayed_work *dwork = to_delayed_work(work);
1016 struct gfs2_glock *gl = container_of(dwork, struct gfs2_glock, gl_delete);
Bob Peterson15562c42015-03-16 11:52:05 -05001017 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Andreas Gruenbacherec5ec662016-06-14 12:23:59 -05001018 struct inode *inode;
Steven Whitehouse044b9412010-11-03 20:01:07 +00001019 u64 no_addr = gl->gl_name.ln_number;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001020
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01001021 spin_lock(&gl->gl_lockref.lock);
1022 clear_bit(GLF_PENDING_DELETE, &gl->gl_flags);
1023 spin_unlock(&gl->gl_lockref.lock);
1024
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001025 if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
1026 /*
1027 * If we can evict the inode, give the remote node trying to
1028 * delete the inode some time before verifying that the delete
1029 * has happened. Otherwise, if we cause contention on the inode glock
1030 * immediately, the remote node will think that we still have
1031 * the inode in use, and so it will give up waiting.
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001032 *
1033 * If we can't evict the inode, signal to the remote node that
1034 * the inode is still in use. We'll later try to delete the
1035 * inode locally in gfs2_evict_inode.
1036 *
1037 * FIXME: We only need to verify that the remote node has
1038 * deleted the inode because nodes before this remote delete
1039 * rework won't cooperate. At a later time, when we no longer
1040 * care about compatibility with such nodes, we can skip this
1041 * step entirely.
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001042 */
1043 if (gfs2_try_evict(gl)) {
1044 if (gfs2_queue_delete_work(gl, 5 * HZ))
1045 return;
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001046 }
Andreas Gruenbacher9e8990d2020-01-17 10:53:23 +01001047 goto out;
Andreas Gruenbacher8c7b9262020-01-13 22:16:17 +01001048 }
1049
Andreas Gruenbacherb0dcffd2020-01-15 09:54:14 +01001050 inode = gfs2_lookup_by_inum(sdp, no_addr, gl->gl_no_formal_ino,
1051 GFS2_BLKST_UNLINKED);
Kefeng Wang15a798f2019-06-05 22:24:24 +08001052 if (!IS_ERR_OR_NULL(inode)) {
Steven Whitehouse044b9412010-11-03 20:01:07 +00001053 d_prune_aliases(inode);
1054 iput(inode);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001055 }
Bob Petersona4923862015-12-07 16:24:27 -06001056out:
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001057 gfs2_glock_put(gl);
1058}
1059
Steven Whitehouse6802e342008-05-21 17:03:22 +01001060static void glock_work_func(struct work_struct *work)
1061{
1062 unsigned long delay = 0;
1063 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001064 unsigned int drop_refs = 1;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001065
Steven Whitehouse26bb7502009-11-27 10:31:11 +00001066 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001067 finish_xmote(gl, gl->gl_reply);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001068 drop_refs++;
Steven Whitehouse26bb7502009-11-27 10:31:11 +00001069 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001070 spin_lock(&gl->gl_lockref.lock);
Bob Petersonf90e5b52011-05-24 10:44:42 -04001071 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Steven Whitehouse265d529c2008-07-07 10:02:36 +01001072 gl->gl_state != LM_ST_UNLOCKED &&
1073 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001074 unsigned long holdtime, now = jiffies;
Bob Petersonf90e5b52011-05-24 10:44:42 -04001075
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001076 holdtime = gl->gl_tchange + gl->gl_hold_time;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001077 if (time_before(now, holdtime))
1078 delay = holdtime - now;
Bob Petersonf90e5b52011-05-24 10:44:42 -04001079
1080 if (!delay) {
1081 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
Andreas Gruenbacher35b6f8f2020-01-17 13:48:49 +01001082 gfs2_set_demote(gl);
Bob Petersonf90e5b52011-05-24 10:44:42 -04001083 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001084 }
1085 run_queue(gl, 0);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001086 if (delay) {
1087 /* Keep one glock reference for the work we requeue. */
1088 drop_refs--;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001089 if (gl->gl_name.ln_type != LM_TYPE_INODE)
1090 delay = 0;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001091 __gfs2_glock_queue_work(gl, delay);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001092 }
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001093
1094 /*
1095 * Drop the remaining glock references manually here. (Mind that
1096 * __gfs2_glock_queue_work depends on the lockref spinlock begin held
1097 * here as well.)
1098 */
1099 gl->gl_lockref.count -= drop_refs;
1100 if (!gl->gl_lockref.count) {
1101 __gfs2_glock_put(gl);
1102 return;
1103 }
1104 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001105}
1106
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001107static struct gfs2_glock *find_insert_glock(struct lm_lockname *name,
1108 struct gfs2_glock *new)
1109{
1110 struct wait_glock_queue wait;
Andreas Gruenbachera91323e2017-08-04 07:40:45 -05001111 wait_queue_head_t *wq = glock_waitqueue(name);
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001112 struct gfs2_glock *gl;
1113
Andreas Gruenbachera91323e2017-08-04 07:40:45 -05001114 wait.name = name;
1115 init_wait(&wait.wait);
1116 wait.wait.func = glock_wake_function;
1117
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001118again:
Andreas Gruenbachera91323e2017-08-04 07:40:45 -05001119 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001120 rcu_read_lock();
1121 if (new) {
1122 gl = rhashtable_lookup_get_insert_fast(&gl_hash_table,
1123 &new->gl_node, ht_parms);
1124 if (IS_ERR(gl))
1125 goto out;
1126 } else {
1127 gl = rhashtable_lookup_fast(&gl_hash_table,
1128 name, ht_parms);
1129 }
1130 if (gl && !lockref_get_not_dead(&gl->gl_lockref)) {
1131 rcu_read_unlock();
1132 schedule();
1133 goto again;
1134 }
1135out:
1136 rcu_read_unlock();
Andreas Gruenbachera91323e2017-08-04 07:40:45 -05001137 finish_wait(wq, &wait.wait);
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001138 return gl;
1139}
1140
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141/**
1142 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
1143 * @sdp: The GFS2 superblock
1144 * @number: the lock number
1145 * @glops: The glock_operations to use
1146 * @create: If 0, don't create the glock if it doesn't exist
1147 * @glp: the glock is returned here
1148 *
1149 * This does not lock a glock, just finds/creates structures for one.
1150 *
1151 * Returns: errno
1152 */
1153
Steven Whitehousecd915492006-09-04 12:49:07 -04001154int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001155 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001156 struct gfs2_glock **glp)
1157{
Steven Whitehouse009d8512009-12-08 12:12:13 +00001158 struct super_block *s = sdp->sd_vfs;
Bob Peterson15562c42015-03-16 11:52:05 -05001159 struct lm_lockname name = { .ln_number = number,
1160 .ln_type = glops->go_type,
1161 .ln_sbd = sdp };
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001162 struct gfs2_glock *gl, *tmp;
Steven Whitehouse009d8512009-12-08 12:12:13 +00001163 struct address_space *mapping;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001164 struct kmem_cache *cachep;
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001165 int ret = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001167 gl = find_insert_glock(&name, NULL);
1168 if (gl) {
1169 *glp = gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 return 0;
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001171 }
Steven Whitehouse64d576b2009-02-12 13:31:58 +00001172 if (!create)
1173 return -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001174
Steven Whitehouse009d8512009-12-08 12:12:13 +00001175 if (glops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001176 cachep = gfs2_glock_aspace_cachep;
Steven Whitehouse009d8512009-12-08 12:12:13 +00001177 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001178 cachep = gfs2_glock_cachep;
Steven Whitehousefe0bbd22014-06-23 14:50:20 +01001179 gl = kmem_cache_alloc(cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001180 if (!gl)
1181 return -ENOMEM;
1182
David Teiglanddba2d702012-11-14 13:46:53 -05001183 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
David Teiglanddba2d702012-11-14 13:46:53 -05001184
1185 if (glops->go_flags & GLOF_LVB) {
Andreas Gruenbacherf7be9872020-01-16 00:25:32 +01001186 gl->gl_lksb.sb_lvbptr = kzalloc(GDLM_LVB_SIZE, GFP_NOFS);
David Teigland4e2f8842012-11-14 13:47:37 -05001187 if (!gl->gl_lksb.sb_lvbptr) {
David Teiglanddba2d702012-11-14 13:46:53 -05001188 kmem_cache_free(cachep, gl);
1189 return -ENOMEM;
1190 }
David Teiglanddba2d702012-11-14 13:46:53 -05001191 }
1192
Steven Whitehouse8f052282010-01-29 15:21:27 +00001193 atomic_inc(&sdp->sd_glock_disposal);
Bob Peterson88ffbf32015-03-16 11:02:46 -05001194 gl->gl_node.next = NULL;
Bob Petersonf2e70d82021-10-06 09:29:18 -05001195 gl->gl_flags = glops->go_instantiate ? BIT(GLF_INSTANTIATE_NEEDED) : 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001196 gl->gl_name = name;
Alexander Aring515b2692020-11-23 10:53:35 -05001197 lockdep_set_subclass(&gl->gl_lockref.lock, glops->go_subclass);
Steven Whitehousee66cf162013-10-15 15:18:08 +01001198 gl->gl_lockref.count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001199 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001200 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001201 gl->gl_demote_state = LM_ST_EXCLUSIVE;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202 gl->gl_ops = glops;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001203 gl->gl_dstamp = 0;
Steven Whitehousea2457692012-01-20 10:38:36 +00001204 preempt_disable();
1205 /* We use the global stats to estimate the initial per-glock stats */
1206 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
1207 preempt_enable();
1208 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
1209 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001210 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -04001211 gl->gl_object = NULL;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001212 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001213 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
Bob Peterson2ffed522020-10-15 11:16:48 -05001214 if (gl->gl_name.ln_type == LM_TYPE_IOPEN)
1215 INIT_DELAYED_WORK(&gl->gl_delete, delete_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001216
Steven Whitehouse009d8512009-12-08 12:12:13 +00001217 mapping = gfs2_glock2aspace(gl);
1218 if (mapping) {
1219 mapping->a_ops = &gfs2_meta_aops;
1220 mapping->host = s->s_bdev->bd_inode;
1221 mapping->flags = 0;
1222 mapping_set_gfp_mask(mapping, GFP_NOFS);
Rafael Aquini252aa6f2012-12-11 16:02:35 -08001223 mapping->private_data = NULL;
Steven Whitehouse009d8512009-12-08 12:12:13 +00001224 mapping->writeback_index = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 }
1226
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001227 tmp = find_insert_glock(&name, gl);
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001228 if (!tmp) {
Bob Peterson88ffbf32015-03-16 11:02:46 -05001229 *glp = gl;
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001230 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001231 }
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001232 if (IS_ERR(tmp)) {
1233 ret = PTR_ERR(tmp);
1234 goto out_free;
1235 }
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001236 *glp = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001237
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001238out_free:
Bob Peterson88ffbf32015-03-16 11:02:46 -05001239 kfree(gl->gl_lksb.sb_lvbptr);
1240 kmem_cache_free(cachep, gl);
Alexander Aringda7d5542020-10-26 10:52:29 -04001241 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
1242 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +01001244out:
Bob Peterson88ffbf32015-03-16 11:02:46 -05001245 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001246}
1247
1248/**
1249 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
1250 * @gl: the glock
1251 * @state: the state we're requesting
1252 * @flags: the modifier flags
1253 * @gh: the holder structure
1254 *
1255 */
1256
Andreas Gruenbacherb016d9a2021-09-30 13:49:36 -05001257void __gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, u16 flags,
1258 struct gfs2_holder *gh, unsigned long ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259{
1260 INIT_LIST_HEAD(&gh->gh_list);
1261 gh->gh_gl = gl;
Andreas Gruenbacherb016d9a2021-09-30 13:49:36 -05001262 gh->gh_ip = ip;
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001263 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001264 gh->gh_state = state;
1265 gh->gh_flags = flags;
1266 gh->gh_error = 0;
1267 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001268 gfs2_glock_hold(gl);
1269}
1270
1271/**
1272 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
1273 * @state: the state we're requesting
1274 * @flags: the modifier flags
1275 * @gh: the holder structure
1276 *
1277 * Don't mess with the glock.
1278 *
1279 */
1280
Bob Petersonb58bf402015-07-24 09:45:43 -05001281void gfs2_holder_reinit(unsigned int state, u16 flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001282{
1283 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -04001284 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001285 gh->gh_iflags = 0;
Fabian Frederickd29c0af2014-10-03 20:15:36 +02001286 gh->gh_ip = _RET_IP_;
Markus Elfring30badc92014-11-18 11:31:23 +01001287 put_pid(gh->gh_owner_pid);
Bob Peterson1a0eae82010-04-14 11:58:16 -04001288 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001289}
1290
1291/**
1292 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
1293 * @gh: the holder structure
1294 *
1295 */
1296
1297void gfs2_holder_uninit(struct gfs2_holder *gh)
1298{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001299 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001300 gfs2_glock_put(gh->gh_gl);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -05001301 gfs2_holder_mark_uninitialized(gh);
Steven Whitehoused0dc80d2006-03-29 14:36:49 -05001302 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001303}
1304
Andreas Gruenbacher01123cf2019-08-30 12:31:01 -05001305static void gfs2_glock_update_hold_time(struct gfs2_glock *gl,
1306 unsigned long start_time)
1307{
1308 /* Have we waited longer that a second? */
1309 if (time_after(jiffies, start_time + HZ)) {
1310 /* Lengthen the minimum hold time. */
1311 gl->gl_hold_time = min(gl->gl_hold_time + GL_GLOCK_HOLD_INCR,
1312 GL_GLOCK_MAX_HOLD);
1313 }
1314}
1315
Steven Whitehousefe64d512009-05-19 10:01:18 +01001316/**
Bob Peterson07a79042012-08-09 12:48:44 -05001317 * gfs2_glock_wait - wait on a glock acquisition
1318 * @gh: the glock holder
1319 *
1320 * Returns: 0 on success
1321 */
1322
1323int gfs2_glock_wait(struct gfs2_holder *gh)
Steven Whitehousefee852e2007-01-17 15:33:23 +00001324{
Andreas Gruenbacher01123cf2019-08-30 12:31:01 -05001325 unsigned long start_time = jiffies;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001326
Steven Whitehousefee852e2007-01-17 15:33:23 +00001327 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001328 wait_on_bit(&gh->gh_iflags, HIF_WAIT, TASK_UNINTERRUPTIBLE);
Andreas Gruenbacher01123cf2019-08-30 12:31:01 -05001329 gfs2_glock_update_hold_time(gh->gh_gl, start_time);
Bob Peterson07a79042012-08-09 12:48:44 -05001330 return gh->gh_error;
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001331}
1332
Bob Petersonad269672019-08-30 12:31:02 -05001333static int glocks_pending(unsigned int num_gh, struct gfs2_holder *ghs)
1334{
1335 int i;
1336
1337 for (i = 0; i < num_gh; i++)
1338 if (test_bit(HIF_WAIT, &ghs[i].gh_iflags))
1339 return 1;
1340 return 0;
1341}
1342
1343/**
1344 * gfs2_glock_async_wait - wait on multiple asynchronous glock acquisitions
1345 * @num_gh: the number of holders in the array
1346 * @ghs: the glock holder array
1347 *
1348 * Returns: 0 on success, meaning all glocks have been granted and are held.
1349 * -ESTALE if the request timed out, meaning all glocks were released,
1350 * and the caller should retry the operation.
1351 */
1352
1353int gfs2_glock_async_wait(unsigned int num_gh, struct gfs2_holder *ghs)
1354{
1355 struct gfs2_sbd *sdp = ghs[0].gh_gl->gl_name.ln_sbd;
1356 int i, ret = 0, timeout = 0;
1357 unsigned long start_time = jiffies;
1358 bool keep_waiting;
1359
1360 might_sleep();
1361 /*
1362 * Total up the (minimum hold time * 2) of all glocks and use that to
1363 * determine the max amount of time we should wait.
1364 */
1365 for (i = 0; i < num_gh; i++)
1366 timeout += ghs[i].gh_gl->gl_hold_time << 1;
1367
1368wait_for_dlm:
1369 if (!wait_event_timeout(sdp->sd_async_glock_wait,
1370 !glocks_pending(num_gh, ghs), timeout))
1371 ret = -ESTALE; /* request timed out. */
1372
1373 /*
1374 * If dlm granted all our requests, we need to adjust the glock
1375 * minimum hold time values according to how long we waited.
1376 *
1377 * If our request timed out, we need to repeatedly release any held
1378 * glocks we acquired thus far to allow dlm to acquire the remaining
1379 * glocks without deadlocking. We cannot currently cancel outstanding
1380 * glock acquisitions.
1381 *
1382 * The HIF_WAIT bit tells us which requests still need a response from
1383 * dlm.
1384 *
1385 * If dlm sent us any errors, we return the first error we find.
1386 */
1387 keep_waiting = false;
1388 for (i = 0; i < num_gh; i++) {
1389 /* Skip holders we have already dequeued below. */
1390 if (!gfs2_holder_queued(&ghs[i]))
1391 continue;
1392 /* Skip holders with a pending DLM response. */
1393 if (test_bit(HIF_WAIT, &ghs[i].gh_iflags)) {
1394 keep_waiting = true;
1395 continue;
1396 }
1397
1398 if (test_bit(HIF_HOLDER, &ghs[i].gh_iflags)) {
1399 if (ret == -ESTALE)
1400 gfs2_glock_dq(&ghs[i]);
1401 else
1402 gfs2_glock_update_hold_time(ghs[i].gh_gl,
1403 start_time);
1404 }
1405 if (!ret)
1406 ret = ghs[i].gh_error;
1407 }
1408
1409 if (keep_waiting)
1410 goto wait_for_dlm;
1411
1412 /*
1413 * At this point, we've either acquired all locks or released them all.
1414 */
1415 return ret;
1416}
1417
David Teiglandb3b94fa2006-01-16 16:50:04 +00001418/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001419 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +00001420 * @gl: the glock
1421 * @state: the state the caller wants us to change to
Lee Jonesc551f662021-03-30 17:44:29 +01001422 * @delay: zero to demote immediately; otherwise pending demote
1423 * @remote: true if this came from a different cluster node
David Teiglandb3b94fa2006-01-16 16:50:04 +00001424 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001425 * There are only two requests that we are going to see in actual
1426 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +00001427 */
1428
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001429static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001430 unsigned long delay, bool remote)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001431{
Andreas Gruenbacher35b6f8f2020-01-17 13:48:49 +01001432 if (delay)
1433 set_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
1434 else
1435 gfs2_set_demote(gl);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001436 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +00001437 gl->gl_demote_state = state;
1438 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +01001439 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
1440 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001441 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001442 }
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001443 if (gl->gl_ops->go_callback)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001444 gl->gl_ops->go_callback(gl, remote);
Steven Whitehouse7bd8b2e2013-04-10 10:32:05 +01001445 trace_gfs2_demote_rq(gl, remote);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001446}
1447
Steven Whitehouse6802e342008-05-21 17:03:22 +01001448void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +00001449{
Joe Perches5e690692010-11-09 16:35:20 -08001450 struct va_format vaf;
Robert Peterson7c52b162007-03-16 10:26:37 +00001451 va_list args;
1452
1453 va_start(args, fmt);
Joe Perches5e690692010-11-09 16:35:20 -08001454
Steven Whitehouse6802e342008-05-21 17:03:22 +01001455 if (seq) {
Steven Whitehouse1bb49302012-06-11 13:26:50 +01001456 seq_vprintf(seq, fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001457 } else {
Joe Perches5e690692010-11-09 16:35:20 -08001458 vaf.fmt = fmt;
1459 vaf.va = &args;
1460
Joe Perchesd77d1b52014-03-06 12:10:45 -08001461 pr_err("%pV", &vaf);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001462 }
Joe Perches5e690692010-11-09 16:35:20 -08001463
Robert Peterson7c52b162007-03-16 10:26:37 +00001464 va_end(args);
1465}
1466
David Teiglandb3b94fa2006-01-16 16:50:04 +00001467/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001468 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1469 * @gh: the holder structure to add
1470 *
Steven Whitehouse6802e342008-05-21 17:03:22 +01001471 * Eventually we should move the recursive locking trap to a
1472 * debugging option or something like that. This is the fast
1473 * path and needs to have the minimum number of distractions.
1474 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001475 */
1476
Steven Whitehouse6802e342008-05-21 17:03:22 +01001477static inline void add_to_queue(struct gfs2_holder *gh)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001478__releases(&gl->gl_lockref.lock)
1479__acquires(&gl->gl_lockref.lock)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001480{
1481 struct gfs2_glock *gl = gh->gh_gl;
Bob Peterson15562c42015-03-16 11:52:05 -05001482 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001483 struct list_head *insert_pt = NULL;
1484 struct gfs2_holder *gh2;
Bob Petersone5dc76b2012-08-09 12:48:46 -05001485 int try_futile = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001486
Bob Petersonad269672019-08-30 12:31:02 -05001487 GLOCK_BUG_ON(gl, gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +00001488 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
Bob Petersonad269672019-08-30 12:31:02 -05001489 GLOCK_BUG_ON(gl, true);
Steven Whitehouse190562b2006-04-20 16:57:23 -04001490
Steven Whitehouse6802e342008-05-21 17:03:22 +01001491 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
Andreas Gruenbacher61444642021-08-10 00:43:55 +02001492 if (test_bit(GLF_LOCK, &gl->gl_flags)) {
1493 struct gfs2_holder *first_gh;
1494
Bob Petersondc732902021-08-19 20:51:23 +02001495 first_gh = find_first_strong_holder(gl);
Andreas Gruenbacher61444642021-08-10 00:43:55 +02001496 try_futile = !may_grant(gl, first_gh, gh);
1497 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001498 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
1499 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001500 }
1501
Steven Whitehouse6802e342008-05-21 17:03:22 +01001502 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
1503 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
Bob Petersondc732902021-08-19 20:51:23 +02001504 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK) &&
1505 !test_bit(HIF_MAY_DEMOTE, &gh2->gh_iflags)))
Steven Whitehouse6802e342008-05-21 17:03:22 +01001506 goto trap_recursive;
Bob Petersone5dc76b2012-08-09 12:48:46 -05001507 if (try_futile &&
1508 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001509fail:
1510 gh->gh_error = GLR_TRYFAILED;
1511 gfs2_holder_wake(gh);
1512 return;
1513 }
1514 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
1515 continue;
1516 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
1517 insert_pt = &gh2->gh_list;
1518 }
Steven Whitehouseedae38a2011-01-31 09:38:12 +00001519 trace_gfs2_glock_queue(gh, 1);
Steven Whitehousea2457692012-01-20 10:38:36 +00001520 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1521 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001522 if (likely(insert_pt == NULL)) {
1523 list_add_tail(&gh->gh_list, &gl->gl_holders);
1524 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1525 goto do_cancel;
1526 return;
1527 }
1528 list_add_tail(&gh->gh_list, insert_pt);
1529do_cancel:
Andreas Gruenbacher969183b2020-02-03 19:22:45 +01001530 gh = list_first_entry(&gl->gl_holders, struct gfs2_holder, gh_list);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001531 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001532 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse048bca22008-05-23 14:46:04 +01001533 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001534 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001535 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001536 }
1537 return;
1538
1539trap_recursive:
Bob Petersone54c78a2018-10-03 08:47:36 -05001540 fs_err(sdp, "original: %pSR\n", (void *)gh2->gh_ip);
1541 fs_err(sdp, "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1542 fs_err(sdp, "lock type: %d req lock state : %d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001543 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
Bob Petersone54c78a2018-10-03 08:47:36 -05001544 fs_err(sdp, "new: %pSR\n", (void *)gh->gh_ip);
1545 fs_err(sdp, "pid: %d\n", pid_nr(gh->gh_owner_pid));
1546 fs_err(sdp, "lock type: %d req lock state : %d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001547 gh->gh_gl->gl_name.ln_type, gh->gh_state);
Bob Peterson3792ce92019-05-09 09:21:48 -05001548 gfs2_dump_glock(NULL, gl, true);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001549 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001550}
1551
1552/**
1553 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1554 * @gh: the holder structure
1555 *
1556 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1557 *
1558 * Returns: 0, GLR_TRYFAILED, or errno on failure
1559 */
1560
1561int gfs2_glock_nq(struct gfs2_holder *gh)
1562{
1563 struct gfs2_glock *gl = gh->gh_gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001564 int error = 0;
1565
Bob Peterson601ef0d2020-01-28 20:23:45 +01001566 if (glock_blocked_by_withdraw(gl) && !(gh->gh_flags & LM_FLAG_NOEXP))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001567 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001568
Steven Whitehousef42ab082011-04-14 16:50:31 +01001569 if (test_bit(GLF_LRU, &gl->gl_flags))
1570 gfs2_glock_remove_from_lru(gl);
1571
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001572 spin_lock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001573 add_to_queue(gh);
Bob Peterson01b172b2014-03-12 10:32:20 -04001574 if (unlikely((LM_FLAG_NOEXP & gh->gh_flags) &&
1575 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001576 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Bob Peterson01b172b2014-03-12 10:32:20 -04001577 gl->gl_lockref.count++;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001578 __gfs2_glock_queue_work(gl, 0);
Bob Peterson01b172b2014-03-12 10:32:20 -04001579 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001580 run_queue(gl, 1);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001581 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001582
Steven Whitehouse6802e342008-05-21 17:03:22 +01001583 if (!(gh->gh_flags & GL_ASYNC))
1584 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001585
David Teiglandb3b94fa2006-01-16 16:50:04 +00001586 return error;
1587}
1588
1589/**
1590 * gfs2_glock_poll - poll to see if an async request has been completed
1591 * @gh: the holder
1592 *
1593 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1594 */
1595
1596int gfs2_glock_poll(struct gfs2_holder *gh)
1597{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001598 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001599}
1600
Bob Petersondc732902021-08-19 20:51:23 +02001601static inline bool needs_demote(struct gfs2_glock *gl)
1602{
1603 return (test_bit(GLF_DEMOTE, &gl->gl_flags) ||
1604 test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags));
1605}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001606
Bob Petersondc732902021-08-19 20:51:23 +02001607static void __gfs2_glock_dq(struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001608{
1609 struct gfs2_glock *gl = gh->gh_gl;
Bob Peterson601ef0d2020-01-28 20:23:45 +01001610 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001611 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001612 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001613
Bob Peterson601ef0d2020-01-28 20:23:45 +01001614 /*
Bob Petersondc732902021-08-19 20:51:23 +02001615 * This while loop is similar to function demote_incompat_holders:
1616 * If the glock is due to be demoted (which may be from another node
1617 * or even if this holder is GL_NOCACHE), the weak holders are
1618 * demoted as well, allowing the glock to be demoted.
Bob Peterson601ef0d2020-01-28 20:23:45 +01001619 */
Bob Petersondc732902021-08-19 20:51:23 +02001620 while (gh) {
1621 /*
1622 * If we're in the process of file system withdraw, we cannot
1623 * just dequeue any glocks until our journal is recovered, lest
1624 * we introduce file system corruption. We need two exceptions
1625 * to this rule: We need to allow unlocking of nondisk glocks
1626 * and the glock for our own journal that needs recovery.
1627 */
1628 if (test_bit(SDF_WITHDRAW_RECOVERY, &sdp->sd_flags) &&
1629 glock_blocked_by_withdraw(gl) &&
1630 gh->gh_gl != sdp->sd_jinode_gl) {
1631 sdp->sd_glock_dqs_held++;
1632 spin_unlock(&gl->gl_lockref.lock);
1633 might_sleep();
1634 wait_on_bit(&sdp->sd_flags, SDF_WITHDRAW_RECOVERY,
1635 TASK_UNINTERRUPTIBLE);
1636 spin_lock(&gl->gl_lockref.lock);
1637 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001638
Bob Petersondc732902021-08-19 20:51:23 +02001639 /*
1640 * This holder should not be cached, so mark it for demote.
1641 * Note: this should be done before the check for needs_demote
1642 * below.
1643 */
1644 if (gh->gh_flags & GL_NOCACHE)
1645 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
1646
1647 list_del_init(&gh->gh_list);
1648 clear_bit(HIF_HOLDER, &gh->gh_iflags);
1649 trace_gfs2_glock_queue(gh, 0);
1650
1651 /*
1652 * If there hasn't been a demote request we are done.
1653 * (Let the remaining holders, if any, keep holding it.)
1654 */
1655 if (!needs_demote(gl)) {
1656 if (list_empty(&gl->gl_holders))
1657 fast_path = 1;
1658 break;
1659 }
1660 /*
1661 * If we have another strong holder (we cannot auto-demote)
1662 * we are done. It keeps holding it until it is done.
1663 */
1664 if (find_first_strong_holder(gl))
1665 break;
1666
1667 /*
1668 * If we have a weak holder at the head of the list, it
1669 * (and all others like it) must be auto-demoted. If there
1670 * are no more weak holders, we exit the while loop.
1671 */
1672 gh = find_first_holder(gl);
1673 }
Bob Peterson08d73662021-08-02 09:08:51 -05001674
Ross Lagerwall7881ef32019-03-27 17:09:17 +00001675 if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
Bob Peterson4abb6ad92012-08-09 12:48:43 -05001676 gfs2_glock_add_to_lru(gl);
1677
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001678 if (unlikely(!fast_path)) {
1679 gl->gl_lockref.count++;
1680 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1681 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1682 gl->gl_name.ln_type == LM_TYPE_INODE)
1683 delay = gl->gl_hold_time;
1684 __gfs2_glock_queue_work(gl, delay);
1685 }
Bob Petersondc732902021-08-19 20:51:23 +02001686}
1687
1688/**
1689 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1690 * @gh: the glock holder
1691 *
1692 */
1693void gfs2_glock_dq(struct gfs2_holder *gh)
1694{
1695 struct gfs2_glock *gl = gh->gh_gl;
1696
1697 spin_lock(&gl->gl_lockref.lock);
1698 __gfs2_glock_dq(gh);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001699 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001700}
1701
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001702void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1703{
1704 struct gfs2_glock *gl = gh->gh_gl;
1705 gfs2_glock_dq(gh);
Bob Peterson81e1d452012-08-09 12:48:45 -05001706 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001707 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE);
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001708}
1709
David Teiglandb3b94fa2006-01-16 16:50:04 +00001710/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001711 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1712 * @gh: the holder structure
1713 *
1714 */
1715
1716void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1717{
1718 gfs2_glock_dq(gh);
1719 gfs2_holder_uninit(gh);
1720}
1721
1722/**
1723 * gfs2_glock_nq_num - acquire a glock based on lock number
1724 * @sdp: the filesystem
1725 * @number: the lock number
1726 * @glops: the glock operations for the type of glock
1727 * @state: the state to acquire the glock in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001728 * @flags: modifier flags for the acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +00001729 * @gh: the struct gfs2_holder
1730 *
1731 * Returns: errno
1732 */
1733
Steven Whitehousecd915492006-09-04 12:49:07 -04001734int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001735 const struct gfs2_glock_operations *glops,
Bob Petersonb58bf402015-07-24 09:45:43 -05001736 unsigned int state, u16 flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001737{
1738 struct gfs2_glock *gl;
1739 int error;
1740
1741 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1742 if (!error) {
1743 error = gfs2_glock_nq_init(gl, state, flags, gh);
1744 gfs2_glock_put(gl);
1745 }
1746
1747 return error;
1748}
1749
1750/**
1751 * glock_compare - Compare two struct gfs2_glock structures for sorting
1752 * @arg_a: the first structure
1753 * @arg_b: the second structure
1754 *
1755 */
1756
1757static int glock_compare(const void *arg_a, const void *arg_b)
1758{
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001759 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1760 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1761 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1762 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001763
1764 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a92006-09-09 17:07:05 -04001765 return 1;
1766 if (a->ln_number < b->ln_number)
1767 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001768 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 -04001769 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001770}
1771
1772/**
1773 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1774 * @num_gh: the number of structures
1775 * @ghs: an array of struct gfs2_holder structures
Lee Jonesc551f662021-03-30 17:44:29 +01001776 * @p: placeholder for the holder structure to pass back
David Teiglandb3b94fa2006-01-16 16:50:04 +00001777 *
1778 * Returns: 0 on success (all glocks acquired),
1779 * errno on failure (no glocks acquired)
1780 */
1781
1782static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1783 struct gfs2_holder **p)
1784{
1785 unsigned int x;
1786 int error = 0;
1787
1788 for (x = 0; x < num_gh; x++)
1789 p[x] = &ghs[x];
1790
1791 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1792
1793 for (x = 0; x < num_gh; x++) {
1794 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1795
1796 error = gfs2_glock_nq(p[x]);
1797 if (error) {
1798 while (x--)
1799 gfs2_glock_dq(p[x]);
1800 break;
1801 }
1802 }
1803
1804 return error;
1805}
1806
1807/**
1808 * gfs2_glock_nq_m - acquire multiple glocks
1809 * @num_gh: the number of structures
1810 * @ghs: an array of struct gfs2_holder structures
1811 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001812 *
1813 * Returns: 0 on success (all glocks acquired),
1814 * errno on failure (no glocks acquired)
1815 */
1816
1817int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1818{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001819 struct gfs2_holder *tmp[4];
1820 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001821 int error = 0;
1822
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001823 switch(num_gh) {
1824 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001825 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001826 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001827 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1828 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001829 default:
1830 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001831 break;
Kees Cook6da2ec52018-06-12 13:55:00 -07001832 pph = kmalloc_array(num_gh, sizeof(struct gfs2_holder *),
1833 GFP_NOFS);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001834 if (!pph)
1835 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001836 }
1837
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001838 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001839
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001840 if (pph != tmp)
1841 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001842
1843 return error;
1844}
1845
1846/**
1847 * gfs2_glock_dq_m - release multiple glocks
1848 * @num_gh: the number of structures
1849 * @ghs: an array of struct gfs2_holder structures
1850 *
1851 */
1852
1853void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1854{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001855 while (num_gh--)
1856 gfs2_glock_dq(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001857}
1858
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001859void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001860{
Bob Petersondc732902021-08-19 20:51:23 +02001861 struct gfs2_holder mock_gh = { .gh_gl = gl, .gh_state = state, };
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001862 unsigned long delay = 0;
1863 unsigned long holdtime;
1864 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001865
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001866 gfs2_glock_hold(gl);
Bob Petersone2c6c8a2020-10-12 13:57:37 -05001867 spin_lock(&gl->gl_lockref.lock);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001868 holdtime = gl->gl_tchange + gl->gl_hold_time;
Bob Petersone2c6c8a2020-10-12 13:57:37 -05001869 if (!list_empty(&gl->gl_holders) &&
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001870 gl->gl_name.ln_type == LM_TYPE_INODE) {
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001871 if (time_before(now, holdtime))
1872 delay = holdtime - now;
1873 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001874 delay = gl->gl_hold_time;
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001875 }
Bob Petersondc732902021-08-19 20:51:23 +02001876 /*
1877 * Note 1: We cannot call demote_incompat_holders from handle_callback
1878 * or gfs2_set_demote due to recursion problems like: gfs2_glock_dq ->
1879 * handle_callback -> demote_incompat_holders -> gfs2_glock_dq
1880 * Plus, we only want to demote the holders if the request comes from
1881 * a remote cluster node because local holder conflicts are resolved
1882 * elsewhere.
1883 *
1884 * Note 2: if a remote node wants this glock in EX mode, lock_dlm will
1885 * request that we set our state to UNLOCKED. Here we mock up a holder
1886 * to make it look like someone wants the lock EX locally. Any SH
1887 * and DF requests should be able to share the lock without demoting.
1888 *
1889 * Note 3: We only want to demote the demoteable holders when there
1890 * are no more strong holders. The demoteable holders might as well
1891 * keep the glock until the last strong holder is done with it.
1892 */
1893 if (!find_first_strong_holder(gl)) {
1894 if (state == LM_ST_UNLOCKED)
1895 mock_gh.gh_state = LM_ST_EXCLUSIVE;
1896 demote_incompat_holders(gl, &mock_gh);
1897 }
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001898 handle_callback(gl, state, delay, true);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001899 __gfs2_glock_queue_work(gl, delay);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001900 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001901}
1902
1903/**
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001904 * gfs2_should_freeze - Figure out if glock should be frozen
1905 * @gl: The glock in question
1906 *
1907 * Glocks are not frozen if (a) the result of the dlm operation is
1908 * an error, (b) the locking operation was an unlock operation or
1909 * (c) if there is a "noexp" flagged request anywhere in the queue
1910 *
1911 * Returns: 1 if freezing should occur, 0 otherwise
1912 */
1913
1914static int gfs2_should_freeze(const struct gfs2_glock *gl)
1915{
1916 const struct gfs2_holder *gh;
1917
1918 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1919 return 0;
1920 if (gl->gl_target == LM_ST_UNLOCKED)
1921 return 0;
1922
1923 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1924 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1925 continue;
1926 if (LM_FLAG_NOEXP & gh->gh_flags)
1927 return 0;
1928 }
1929
1930 return 1;
1931}
1932
1933/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001934 * gfs2_glock_complete - Callback used by locking
1935 * @gl: Pointer to the glock
1936 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001937 *
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001938 * The gl_reply field is under the gl_lockref.lock lock so that it is ok
Steven Whitehouse47a25382010-11-30 15:49:31 +00001939 * to use a bitfield shared with other glock state fields.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001940 */
1941
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001942void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001943{
Bob Peterson15562c42015-03-16 11:52:05 -05001944 struct lm_lockstruct *ls = &gl->gl_name.ln_sbd->sd_lockstruct;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001945
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001946 spin_lock(&gl->gl_lockref.lock);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001947 gl->gl_reply = ret;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001948
David Teiglande0c2a9a2012-01-09 17:18:05 -05001949 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001950 if (gfs2_should_freeze(gl)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001951 set_bit(GLF_FROZEN, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001952 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001953 return;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001954 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001955 }
Steven Whitehouse47a25382010-11-30 15:49:31 +00001956
Steven Whitehousee66cf162013-10-15 15:18:08 +01001957 gl->gl_lockref.count++;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001958 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001959 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001960 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001961}
1962
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07001963static int glock_cmp(void *priv, const struct list_head *a,
1964 const struct list_head *b)
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001965{
1966 struct gfs2_glock *gla, *glb;
1967
1968 gla = list_entry(a, struct gfs2_glock, gl_lru);
1969 glb = list_entry(b, struct gfs2_glock, gl_lru);
1970
1971 if (gla->gl_name.ln_number > glb->gl_name.ln_number)
1972 return 1;
1973 if (gla->gl_name.ln_number < glb->gl_name.ln_number)
1974 return -1;
1975
1976 return 0;
1977}
1978
1979/**
1980 * gfs2_dispose_glock_lru - Demote a list of glocks
1981 * @list: The list to dispose of
1982 *
1983 * Disposing of glocks may involve disk accesses, so that here we sort
1984 * the glocks by number (i.e. disk location of the inodes) so that if
1985 * there are any such accesses, they'll be sent in order (mostly).
1986 *
1987 * Must be called under the lru_lock, but may drop and retake this
1988 * lock. While the lru_lock is dropped, entries may vanish from the
1989 * list, but no new entries will appear on the list (since it is
1990 * private)
1991 */
1992
1993static void gfs2_dispose_glock_lru(struct list_head *list)
1994__releases(&lru_lock)
1995__acquires(&lru_lock)
1996{
1997 struct gfs2_glock *gl;
1998
1999 list_sort(NULL, list, glock_cmp);
2000
2001 while(!list_empty(list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +01002002 gl = list_first_entry(list, struct gfs2_glock, gl_lru);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002003 list_del_init(&gl->gl_lru);
Hillf Danton1ab19c52021-05-18 16:46:25 +08002004 clear_bit(GLF_LRU, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002005 if (!spin_trylock(&gl->gl_lockref.lock)) {
Steven Whitehouse94a09a32014-06-23 14:43:32 +01002006add_back_to_lru:
Steven Whitehousee66cf162013-10-15 15:18:08 +01002007 list_add(&gl->gl_lru, &lru_list);
Ross Lagerwall7881ef32019-03-27 17:09:17 +00002008 set_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehousee66cf162013-10-15 15:18:08 +01002009 atomic_inc(&lru_count);
2010 continue;
2011 }
Steven Whitehouse94a09a32014-06-23 14:43:32 +01002012 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002013 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse94a09a32014-06-23 14:43:32 +01002014 goto add_back_to_lru;
2015 }
Steven Whitehousee66cf162013-10-15 15:18:08 +01002016 gl->gl_lockref.count++;
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002017 if (demote_ok(gl))
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01002018 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002019 WARN_ON(!test_and_clear_bit(GLF_LOCK, &gl->gl_flags));
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05002020 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002021 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse94a09a32014-06-23 14:43:32 +01002022 cond_resched_lock(&lru_lock);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002023 }
2024}
2025
Steven Whitehouse2a005852012-12-14 12:28:30 +00002026/**
2027 * gfs2_scan_glock_lru - Scan the LRU looking for locks to demote
2028 * @nr: The number of entries to scan
2029 *
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002030 * This function selects the entries on the LRU which are able to
2031 * be demoted, and then kicks off the process by calling
2032 * gfs2_dispose_glock_lru() above.
Steven Whitehouse2a005852012-12-14 12:28:30 +00002033 */
David Teiglandb3b94fa2006-01-16 16:50:04 +00002034
Dave Chinner1ab6c492013-08-28 10:18:09 +10002035static long gfs2_scan_glock_lru(int nr)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002036{
2037 struct gfs2_glock *gl;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002038 LIST_HEAD(skipped);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002039 LIST_HEAD(dispose);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002040 long freed = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002041
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002042 spin_lock(&lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002043 while ((nr-- >= 0) && !list_empty(&lru_list)) {
Andreas Gruenbacher969183b2020-02-03 19:22:45 +01002044 gl = list_first_entry(&lru_list, struct gfs2_glock, gl_lru);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002045
2046 /* Test for being demotable */
Steven Whitehouse94a09a32014-06-23 14:43:32 +01002047 if (!test_bit(GLF_LOCK, &gl->gl_flags)) {
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002048 list_move(&gl->gl_lru, &dispose);
2049 atomic_dec(&lru_count);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002050 freed++;
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01002051 continue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002052 }
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002053
2054 list_move(&gl->gl_lru, &skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002055 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002056 list_splice(&skipped, &lru_list);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00002057 if (!list_empty(&dispose))
2058 gfs2_dispose_glock_lru(&dispose);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002059 spin_unlock(&lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +10002060
2061 return freed;
Steven Whitehouse2a005852012-12-14 12:28:30 +00002062}
2063
Dave Chinner1ab6c492013-08-28 10:18:09 +10002064static unsigned long gfs2_glock_shrink_scan(struct shrinker *shrink,
2065 struct shrink_control *sc)
Steven Whitehouse2a005852012-12-14 12:28:30 +00002066{
Dave Chinner1ab6c492013-08-28 10:18:09 +10002067 if (!(sc->gfp_mask & __GFP_FS))
2068 return SHRINK_STOP;
2069 return gfs2_scan_glock_lru(sc->nr_to_scan);
2070}
Steven Whitehouse2a005852012-12-14 12:28:30 +00002071
Dave Chinner1ab6c492013-08-28 10:18:09 +10002072static unsigned long gfs2_glock_shrink_count(struct shrinker *shrink,
2073 struct shrink_control *sc)
2074{
Glauber Costa55f841c2013-08-28 10:17:53 +10002075 return vfs_pressure_ratio(atomic_read(&lru_count));
David Teiglandb3b94fa2006-01-16 16:50:04 +00002076}
2077
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002078static struct shrinker glock_shrinker = {
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002079 .seeks = DEFAULT_SEEKS,
Dave Chinner1ab6c492013-08-28 10:18:09 +10002080 .count_objects = gfs2_glock_shrink_count,
2081 .scan_objects = gfs2_glock_shrink_scan,
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002082};
2083
David Teiglandb3b94fa2006-01-16 16:50:04 +00002084/**
Bob Petersondbffb292020-10-12 15:04:20 -05002085 * glock_hash_walk - Call a function for glock in a hash bucket
David Teiglandb3b94fa2006-01-16 16:50:04 +00002086 * @examiner: the function
2087 * @sdp: the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +00002088 *
Herbert Xu98687f42017-02-11 19:26:45 +08002089 * Note that the function can be called multiple times on the same
2090 * object. So the user must ensure that the function can cope with
2091 * that.
David Teiglandb3b94fa2006-01-16 16:50:04 +00002092 */
2093
Bob Peterson88ffbf32015-03-16 11:02:46 -05002094static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002095{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002096 struct gfs2_glock *gl;
Herbert Xu98687f42017-02-11 19:26:45 +08002097 struct rhashtable_iter iter;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002098
Herbert Xu98687f42017-02-11 19:26:45 +08002099 rhashtable_walk_enter(&gl_hash_table, &iter);
2100
2101 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08002102 rhashtable_walk_start(&iter);
Herbert Xu98687f42017-02-11 19:26:45 +08002103
Andreas Gruenbacher7427f3b2021-10-07 15:57:44 +02002104 while ((gl = rhashtable_walk_next(&iter)) && !IS_ERR(gl)) {
2105 if (gl->gl_name.ln_sbd == sdp)
Bob Peterson88ffbf32015-03-16 11:02:46 -05002106 examiner(gl);
Andreas Gruenbacher7427f3b2021-10-07 15:57:44 +02002107 }
Herbert Xu98687f42017-02-11 19:26:45 +08002108
2109 rhashtable_walk_stop(&iter);
2110 } while (cond_resched(), gl == ERR_PTR(-EAGAIN));
2111
2112 rhashtable_walk_exit(&iter);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002113}
2114
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01002115bool gfs2_queue_delete_work(struct gfs2_glock *gl, unsigned long delay)
2116{
2117 bool queued;
2118
2119 spin_lock(&gl->gl_lockref.lock);
2120 queued = queue_delayed_work(gfs2_delete_workqueue,
2121 &gl->gl_delete, delay);
2122 if (queued)
2123 set_bit(GLF_PENDING_DELETE, &gl->gl_flags);
2124 spin_unlock(&gl->gl_lockref.lock);
2125 return queued;
2126}
2127
2128void gfs2_cancel_delete_work(struct gfs2_glock *gl)
2129{
Andreas Gruenbacher486408d2021-10-11 20:53:02 +02002130 if (cancel_delayed_work(&gl->gl_delete)) {
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01002131 clear_bit(GLF_PENDING_DELETE, &gl->gl_flags);
2132 gfs2_glock_put(gl);
2133 }
2134}
2135
2136bool gfs2_delete_work_queued(const struct gfs2_glock *gl)
2137{
2138 return test_bit(GLF_PENDING_DELETE, &gl->gl_flags);
2139}
2140
2141static void flush_delete_work(struct gfs2_glock *gl)
2142{
Bob Peterson2ffed522020-10-15 11:16:48 -05002143 if (gl->gl_name.ln_type == LM_TYPE_IOPEN) {
2144 if (cancel_delayed_work(&gl->gl_delete)) {
2145 queue_delayed_work(gfs2_delete_workqueue,
2146 &gl->gl_delete, 0);
2147 }
Andreas Gruenbacher34244d72020-06-10 18:31:56 +02002148 }
Andreas Gruenbachera0e3cc62020-01-16 20:12:26 +01002149}
2150
2151void gfs2_flush_delete_work(struct gfs2_sbd *sdp)
2152{
2153 glock_hash_walk(flush_delete_work, sdp);
2154 flush_workqueue(gfs2_delete_workqueue);
2155}
2156
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002157/**
2158 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
2159 * @gl: The glock to thaw
2160 *
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002161 */
2162
2163static void thaw_glock(struct gfs2_glock *gl)
2164{
Andreas Gruenbacher7427f3b2021-10-07 15:57:44 +02002165 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05002166 return;
Andreas Gruenbacher7427f3b2021-10-07 15:57:44 +02002167 if (!lockref_get_not_dead(&gl->gl_lockref))
2168 return;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05002169 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
2170 gfs2_glock_queue_work(gl, 0);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002171}
2172
David Teiglandb3b94fa2006-01-16 16:50:04 +00002173/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00002174 * clear_glock - look at a glock and see if we can free it from glock cache
2175 * @gl: the glock to look at
2176 *
2177 */
2178
2179static void clear_glock(struct gfs2_glock *gl)
2180{
Steven Whitehousef42ab082011-04-14 16:50:31 +01002181 gfs2_glock_remove_from_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002182
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002183 spin_lock(&gl->gl_lockref.lock);
Andreas Gruenbacher7427f3b2021-10-07 15:57:44 +02002184 if (!__lockref_is_dead(&gl->gl_lockref)) {
2185 gl->gl_lockref.count++;
2186 if (gl->gl_state != LM_ST_UNLOCKED)
2187 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
2188 __gfs2_glock_queue_work(gl, 0);
2189 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002190 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002191}
2192
2193/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002194 * gfs2_glock_thaw - Thaw any frozen glocks
2195 * @sdp: The super block
2196 *
2197 */
2198
2199void gfs2_glock_thaw(struct gfs2_sbd *sdp)
2200{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002201 glock_hash_walk(thaw_glock, sdp);
2202}
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002203
Bob Peterson3792ce92019-05-09 09:21:48 -05002204static void dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002205{
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002206 spin_lock(&gl->gl_lockref.lock);
Bob Peterson3792ce92019-05-09 09:21:48 -05002207 gfs2_dump_glock(seq, gl, fsid);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002208 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002209}
2210
2211static void dump_glock_func(struct gfs2_glock *gl)
2212{
Bob Peterson3792ce92019-05-09 09:21:48 -05002213 dump_glock(NULL, gl, true);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002214}
2215
2216/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00002217 * gfs2_gl_hash_clear - Empty out the glock hash table
2218 * @sdp: the filesystem
David Teiglandb3b94fa2006-01-16 16:50:04 +00002219 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01002220 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00002221 */
2222
Steven Whitehousefefc03b2008-12-19 15:32:06 +00002223void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002224{
David Teiglandfb6791d2012-11-13 10:58:56 -05002225 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
Bob Peterson222cb532013-04-25 12:49:17 -04002226 flush_workqueue(glock_workqueue);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002227 glock_hash_walk(clear_glock, sdp);
Steven Whitehouse8f052282010-01-29 15:21:27 +00002228 flush_workqueue(glock_workqueue);
Bob Peterson2aba1b52015-05-19 09:11:23 -05002229 wait_event_timeout(sdp->sd_glock_wait,
2230 atomic_read(&sdp->sd_glock_disposal) == 0,
2231 HZ * 600);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002232 glock_hash_walk(dump_glock_func, sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002233}
2234
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002235void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
2236{
2237 struct gfs2_glock *gl = ip->i_gl;
2238 int ret;
2239
2240 ret = gfs2_truncatei_resume(ip);
Bob Petersonea4e61c2020-05-23 08:13:50 -05002241 gfs2_glock_assert_withdraw(gl, ret == 0);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002242
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002243 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002244 clear_bit(GLF_LOCK, &gl->gl_flags);
2245 run_queue(gl, 1);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05002246 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00002247}
2248
Steven Whitehouse6802e342008-05-21 17:03:22 +01002249static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05002250{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002251 switch(state) {
2252 case LM_ST_UNLOCKED:
2253 return "UN";
2254 case LM_ST_SHARED:
2255 return "SH";
2256 case LM_ST_DEFERRED:
2257 return "DF";
2258 case LM_ST_EXCLUSIVE:
2259 return "EX";
2260 }
2261 return "??";
2262}
Robert Peterson04b933f2007-03-23 17:05:15 -05002263
Bob Petersonb58bf402015-07-24 09:45:43 -05002264static const char *hflags2str(char *buf, u16 flags, unsigned long iflags)
Steven Whitehouse6802e342008-05-21 17:03:22 +01002265{
2266 char *p = buf;
2267 if (flags & LM_FLAG_TRY)
2268 *p++ = 't';
2269 if (flags & LM_FLAG_TRY_1CB)
2270 *p++ = 'T';
2271 if (flags & LM_FLAG_NOEXP)
2272 *p++ = 'e';
2273 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002274 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002275 if (flags & LM_FLAG_PRIORITY)
2276 *p++ = 'p';
Bob Peterson06e908c2018-04-18 13:58:19 -07002277 if (flags & LM_FLAG_NODE_SCOPE)
2278 *p++ = 'n';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002279 if (flags & GL_ASYNC)
2280 *p++ = 'a';
2281 if (flags & GL_EXACT)
2282 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002283 if (flags & GL_NOCACHE)
2284 *p++ = 'c';
2285 if (test_bit(HIF_HOLDER, &iflags))
2286 *p++ = 'H';
2287 if (test_bit(HIF_WAIT, &iflags))
2288 *p++ = 'W';
Bob Petersondc732902021-08-19 20:51:23 +02002289 if (test_bit(HIF_MAY_DEMOTE, &iflags))
2290 *p++ = 'D';
Bob Peterson4c690382021-09-13 12:40:09 -05002291 if (flags & GL_SKIP)
2292 *p++ = 's';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002293 *p = 0;
2294 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05002295}
2296
David Teiglandb3b94fa2006-01-16 16:50:04 +00002297/**
2298 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01002299 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00002300 * @gh: the glock holder
Bob Peterson3792ce92019-05-09 09:21:48 -05002301 * @fs_id_buf: pointer to file system id (if requested)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002302 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00002303 */
2304
Bob Peterson3792ce92019-05-09 09:21:48 -05002305static void dump_holder(struct seq_file *seq, const struct gfs2_holder *gh,
2306 const char *fs_id_buf)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002307{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002308 struct task_struct *gh_owner = NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002309 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00002310
Tetsuo Handa0b3a2c92014-01-02 19:52:20 +09002311 rcu_read_lock();
Steven Whitehouse6802e342008-05-21 17:03:22 +01002312 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08002313 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Bob Peterson3792ce92019-05-09 09:21:48 -05002314 gfs2_print_dbg(seq, "%s H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
2315 fs_id_buf, state2str(gh->gh_state),
Joe Perchescc181522010-11-05 16:12:36 -07002316 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
2317 gh->gh_error,
2318 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
2319 gh_owner ? gh_owner->comm : "(ended)",
2320 (void *)gh->gh_ip);
Tetsuo Handa0b3a2c92014-01-02 19:52:20 +09002321 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +00002322}
2323
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002324static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002325{
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002326 const unsigned long *gflags = &gl->gl_flags;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002327 char *p = buf;
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002328
Steven Whitehouse6802e342008-05-21 17:03:22 +01002329 if (test_bit(GLF_LOCK, gflags))
2330 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002331 if (test_bit(GLF_DEMOTE, gflags))
2332 *p++ = 'D';
2333 if (test_bit(GLF_PENDING_DEMOTE, gflags))
2334 *p++ = 'd';
2335 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
2336 *p++ = 'p';
2337 if (test_bit(GLF_DIRTY, gflags))
2338 *p++ = 'y';
2339 if (test_bit(GLF_LFLUSH, gflags))
2340 *p++ = 'f';
2341 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
2342 *p++ = 'i';
2343 if (test_bit(GLF_REPLY_PENDING, gflags))
2344 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002345 if (test_bit(GLF_INITIAL, gflags))
Steven Whitehoused8348de2009-02-05 10:12:38 +00002346 *p++ = 'I';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00002347 if (test_bit(GLF_FROZEN, gflags))
2348 *p++ = 'F';
Bob Petersone2c6c8a2020-10-12 13:57:37 -05002349 if (!list_empty(&gl->gl_holders))
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01002350 *p++ = 'q';
Steven Whitehouse627c10b2011-04-14 14:09:52 +01002351 if (test_bit(GLF_LRU, gflags))
2352 *p++ = 'L';
2353 if (gl->gl_object)
2354 *p++ = 'o';
Steven Whitehousea2457692012-01-20 10:38:36 +00002355 if (test_bit(GLF_BLOCKING, gflags))
2356 *p++ = 'b';
Bob Peterson5deaf1f2020-06-09 13:29:08 -04002357 if (test_bit(GLF_PENDING_DELETE, gflags))
2358 *p++ = 'P';
2359 if (test_bit(GLF_FREEING, gflags))
2360 *p++ = 'x';
Bob Petersonf2e70d82021-10-06 09:29:18 -05002361 if (test_bit(GLF_INSTANTIATE_NEEDED, gflags))
2362 *p++ = 'n';
2363 if (test_bit(GLF_INSTANTIATE_IN_PROG, gflags))
2364 *p++ = 'N';
Steven Whitehouse6802e342008-05-21 17:03:22 +01002365 *p = 0;
2366 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002367}
2368
2369/**
Steven Whitehouse8eae1ca02012-10-15 10:57:02 +01002370 * gfs2_dump_glock - print information about a glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01002371 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00002372 * @gl: the glock
Bob Peterson3792ce92019-05-09 09:21:48 -05002373 * @fsid: If true, also dump the file system id
Steven Whitehouse6802e342008-05-21 17:03:22 +01002374 *
2375 * The file format is as follows:
2376 * One line per object, capital letters are used to indicate objects
2377 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
2378 * other objects are indented by a single space and follow the glock to
2379 * which they are related. Fields are indicated by lower case letters
2380 * followed by a colon and the field value, except for strings which are in
2381 * [] so that its possible to see if they are composed of spaces for
2382 * example. The field's are n = number (id of the object), f = flags,
2383 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00002384 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00002385 */
2386
Bob Peterson3792ce92019-05-09 09:21:48 -05002387void gfs2_dump_glock(struct seq_file *seq, struct gfs2_glock *gl, bool fsid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00002388{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002389 const struct gfs2_glock_operations *glops = gl->gl_ops;
2390 unsigned long long dtime;
2391 const struct gfs2_holder *gh;
2392 char gflags_buf[32];
Bob Peterson3792ce92019-05-09 09:21:48 -05002393 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Bob Peterson98fb0572019-08-13 09:25:15 -04002394 char fs_id_buf[sizeof(sdp->sd_fsname) + 7];
Bob Peterson7e901d62020-05-22 13:57:41 -05002395 unsigned long nrpages = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00002396
Bob Peterson7e901d62020-05-22 13:57:41 -05002397 if (gl->gl_ops->go_flags & GLOF_ASPACE) {
2398 struct address_space *mapping = gfs2_glock2aspace(gl);
2399
2400 nrpages = mapping->nrpages;
2401 }
Bob Peterson3792ce92019-05-09 09:21:48 -05002402 memset(fs_id_buf, 0, sizeof(fs_id_buf));
2403 if (fsid && sdp) /* safety precaution */
2404 sprintf(fs_id_buf, "fsid=%s: ", sdp->sd_fsname);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002405 dtime = jiffies - gl->gl_demote_time;
2406 dtime *= 1000000/HZ; /* demote time in uSec */
2407 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
2408 dtime = 0;
Bob Peterson3792ce92019-05-09 09:21:48 -05002409 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 -05002410 "v:%d r:%d m:%ld p:%lu\n",
2411 fs_id_buf, state2str(gl->gl_state),
2412 gl->gl_name.ln_type,
2413 (unsigned long long)gl->gl_name.ln_number,
2414 gflags2str(gflags_buf, gl),
2415 state2str(gl->gl_target),
2416 state2str(gl->gl_demote_state), dtime,
2417 atomic_read(&gl->gl_ail_count),
2418 atomic_read(&gl->gl_revokes),
2419 (int)gl->gl_lockref.count, gl->gl_hold_time, nrpages);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002420
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002421 list_for_each_entry(gh, &gl->gl_holders, gh_list)
Bob Peterson3792ce92019-05-09 09:21:48 -05002422 dump_holder(seq, gh, fs_id_buf);
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002423
Steven Whitehouse6802e342008-05-21 17:03:22 +01002424 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
Bob Peterson3792ce92019-05-09 09:21:48 -05002425 glops->go_dump(seq, gl, fs_id_buf);
David Teiglandb3b94fa2006-01-16 16:50:04 +00002426}
2427
Steven Whitehousea2457692012-01-20 10:38:36 +00002428static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
2429{
2430 struct gfs2_glock *gl = iter_ptr;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002431
Ben Hutchings4d207132015-08-27 12:51:45 -05002432 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 +00002433 gl->gl_name.ln_type,
2434 (unsigned long long)gl->gl_name.ln_number,
Ben Hutchings4d207132015-08-27 12:51:45 -05002435 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
2436 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
2437 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
2438 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
2439 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
2440 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
2441 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
2442 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
Steven Whitehousea2457692012-01-20 10:38:36 +00002443 return 0;
2444}
David Teiglandb3b94fa2006-01-16 16:50:04 +00002445
Steven Whitehousea2457692012-01-20 10:38:36 +00002446static const char *gfs2_gltype[] = {
2447 "type",
2448 "reserved",
2449 "nondisk",
2450 "inode",
2451 "rgrp",
2452 "meta",
2453 "iopen",
2454 "flock",
2455 "plock",
2456 "quota",
2457 "journal",
2458};
2459
2460static const char *gfs2_stype[] = {
2461 [GFS2_LKS_SRTT] = "srtt",
2462 [GFS2_LKS_SRTTVAR] = "srttvar",
2463 [GFS2_LKS_SRTTB] = "srttb",
2464 [GFS2_LKS_SRTTVARB] = "srttvarb",
2465 [GFS2_LKS_SIRT] = "sirt",
2466 [GFS2_LKS_SIRTVAR] = "sirtvar",
2467 [GFS2_LKS_DCOUNT] = "dlm",
2468 [GFS2_LKS_QCOUNT] = "queue",
2469};
2470
2471#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
2472
2473static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
2474{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002475 struct gfs2_sbd *sdp = seq->private;
2476 loff_t pos = *(loff_t *)iter_ptr;
2477 unsigned index = pos >> 3;
2478 unsigned subindex = pos & 0x07;
Steven Whitehousea2457692012-01-20 10:38:36 +00002479 int i;
2480
2481 if (index == 0 && subindex != 0)
2482 return 0;
2483
2484 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
2485 (index == 0) ? "cpu": gfs2_stype[subindex]);
2486
2487 for_each_possible_cpu(i) {
2488 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
Andreas Gruenbacher8f7e0a82015-08-27 13:02:54 -05002489
2490 if (index == 0)
2491 seq_printf(seq, " %15u", i);
2492 else
2493 seq_printf(seq, " %15llu", (unsigned long long)lkstats->
2494 lkstats[index - 1].stats[subindex]);
Steven Whitehousea2457692012-01-20 10:38:36 +00002495 }
2496 seq_putc(seq, '\n');
2497 return 0;
2498}
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002499
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002500int __init gfs2_glock_init(void)
2501{
Andreas Gruenbacher05154802017-08-01 11:18:26 -05002502 int i, ret;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002503
2504 ret = rhashtable_init(&gl_hash_table, &ht_parms);
2505 if (ret < 0)
2506 return ret;
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002507
Steven Whitehoused2115772010-11-03 19:58:53 +00002508 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
Tejun Heo58a69cb2011-02-16 09:25:31 +01002509 WQ_HIGHPRI | WQ_FREEZABLE, 0);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002510 if (!glock_workqueue) {
2511 rhashtable_destroy(&gl_hash_table);
Dan Carpenterdfc46162013-08-15 10:54:43 +03002512 return -ENOMEM;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002513 }
Steven Whitehoused2115772010-11-03 19:58:53 +00002514 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
Tejun Heo58a69cb2011-02-16 09:25:31 +01002515 WQ_MEM_RECLAIM | WQ_FREEZABLE,
Steven Whitehoused2115772010-11-03 19:58:53 +00002516 0);
Dan Carpenterdfc46162013-08-15 10:54:43 +03002517 if (!gfs2_delete_workqueue) {
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05002518 destroy_workqueue(glock_workqueue);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002519 rhashtable_destroy(&gl_hash_table);
Dan Carpenterdfc46162013-08-15 10:54:43 +03002520 return -ENOMEM;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05002521 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002522
Chao Yue0d735c2016-09-21 12:09:40 -05002523 ret = register_shrinker(&glock_shrinker);
2524 if (ret) {
2525 destroy_workqueue(gfs2_delete_workqueue);
2526 destroy_workqueue(glock_workqueue);
2527 rhashtable_destroy(&gl_hash_table);
2528 return ret;
2529 }
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05002530
Andreas Gruenbacher05154802017-08-01 11:18:26 -05002531 for (i = 0; i < GLOCK_WAIT_TABLE_SIZE; i++)
2532 init_waitqueue_head(glock_wait_table + i);
2533
Steven Whitehouse85d1da62006-09-07 14:40:21 -04002534 return 0;
2535}
2536
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002537void gfs2_glock_exit(void)
2538{
Steven Whitehouse97cc10252008-11-20 13:39:47 +00002539 unregister_shrinker(&glock_shrinker);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002540 rhashtable_destroy(&gl_hash_table);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05002541 destroy_workqueue(glock_workqueue);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05002542 destroy_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01002543}
2544
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002545static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi, loff_t n)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002546{
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002547 struct gfs2_glock *gl = gi->gl;
2548
2549 if (gl) {
2550 if (n == 0)
2551 return;
2552 if (!lockref_put_not_zero(&gl->gl_lockref))
2553 gfs2_glock_queue_put(gl);
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002554 }
2555 for (;;) {
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002556 gl = rhashtable_walk_next(&gi->hti);
2557 if (IS_ERR_OR_NULL(gl)) {
2558 if (gl == ERR_PTR(-EAGAIN)) {
2559 n = 1;
2560 continue;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002561 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002562 gl = NULL;
2563 break;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002564 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002565 if (gl->gl_name.ln_sbd != gi->sdp)
2566 continue;
2567 if (n <= 1) {
2568 if (!lockref_get_not_dead(&gl->gl_lockref))
2569 continue;
2570 break;
2571 } else {
2572 if (__lockref_is_dead(&gl->gl_lockref))
2573 continue;
2574 n--;
2575 }
Dan Carpenter14d37562016-12-14 08:02:03 -06002576 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002577 gi->gl = gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00002578}
2579
Steven Whitehouse6802e342008-05-21 17:03:22 +01002580static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Bob Peterson27c3b412017-08-18 09:15:13 -05002581 __acquires(RCU)
Robert Peterson7c52b162007-03-16 10:26:37 +00002582{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002583 struct gfs2_glock_iter *gi = seq->private;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002584 loff_t n;
Robert Peterson7c52b162007-03-16 10:26:37 +00002585
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002586 /*
2587 * We can either stay where we are, skip to the next hash table
2588 * entry, or start from the beginning.
2589 */
2590 if (*pos < gi->last_pos) {
2591 rhashtable_walk_exit(&gi->hti);
2592 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
2593 n = *pos + 1;
2594 } else {
2595 n = *pos - gi->last_pos;
2596 }
Robert Peterson7c52b162007-03-16 10:26:37 +00002597
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002598 rhashtable_walk_start(&gi->hti);
Robert Peterson7c52b162007-03-16 10:26:37 +00002599
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002600 gfs2_glock_iter_next(gi, n);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01002601 gi->last_pos = *pos;
Steven Whitehouse6802e342008-05-21 17:03:22 +01002602 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00002603}
2604
Steven Whitehouse6802e342008-05-21 17:03:22 +01002605static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00002606 loff_t *pos)
2607{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002608 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00002609
2610 (*pos)++;
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01002611 gi->last_pos = *pos;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002612 gfs2_glock_iter_next(gi, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002613 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00002614}
2615
Steven Whitehouse6802e342008-05-21 17:03:22 +01002616static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Bob Peterson27c3b412017-08-18 09:15:13 -05002617 __releases(RCU)
Robert Peterson7c52b162007-03-16 10:26:37 +00002618{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002619 struct gfs2_glock_iter *gi = seq->private;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002620
Bob Peterson88ffbf32015-03-16 11:02:46 -05002621 rhashtable_walk_stop(&gi->hti);
Robert Peterson7c52b162007-03-16 10:26:37 +00002622}
2623
Steven Whitehouse6802e342008-05-21 17:03:22 +01002624static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00002625{
Bob Peterson3792ce92019-05-09 09:21:48 -05002626 dump_glock(seq, iter_ptr, false);
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002627 return 0;
Robert Peterson7c52b162007-03-16 10:26:37 +00002628}
2629
Steven Whitehousea2457692012-01-20 10:38:36 +00002630static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
2631{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002632 preempt_disable();
Steven Whitehousea2457692012-01-20 10:38:36 +00002633 if (*pos >= GFS2_NR_SBSTATS)
2634 return NULL;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002635 return pos;
Steven Whitehousea2457692012-01-20 10:38:36 +00002636}
2637
2638static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
2639 loff_t *pos)
2640{
Steven Whitehousea2457692012-01-20 10:38:36 +00002641 (*pos)++;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002642 if (*pos >= GFS2_NR_SBSTATS)
Steven Whitehousea2457692012-01-20 10:38:36 +00002643 return NULL;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002644 return pos;
Steven Whitehousea2457692012-01-20 10:38:36 +00002645}
2646
2647static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
2648{
2649 preempt_enable();
2650}
2651
Denis Cheng4ef29002007-07-31 18:31:11 +08002652static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002653 .start = gfs2_glock_seq_start,
2654 .next = gfs2_glock_seq_next,
2655 .stop = gfs2_glock_seq_stop,
2656 .show = gfs2_glock_seq_show,
2657};
2658
Steven Whitehousea2457692012-01-20 10:38:36 +00002659static const struct seq_operations gfs2_glstats_seq_ops = {
2660 .start = gfs2_glock_seq_start,
2661 .next = gfs2_glock_seq_next,
2662 .stop = gfs2_glock_seq_stop,
2663 .show = gfs2_glstats_seq_show,
2664};
2665
Liu Shixine8a80232020-09-16 10:50:21 +08002666static const struct seq_operations gfs2_sbstats_sops = {
Steven Whitehousea2457692012-01-20 10:38:36 +00002667 .start = gfs2_sbstats_seq_start,
2668 .next = gfs2_sbstats_seq_next,
2669 .stop = gfs2_sbstats_seq_stop,
2670 .show = gfs2_sbstats_seq_show,
2671};
2672
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002673#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
2674
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002675static int __gfs2_glocks_open(struct inode *inode, struct file *file,
2676 const struct seq_operations *ops)
Robert Peterson7c52b162007-03-16 10:26:37 +00002677{
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002678 int ret = seq_open_private(file, ops, sizeof(struct gfs2_glock_iter));
Steven Whitehouse6802e342008-05-21 17:03:22 +01002679 if (ret == 0) {
2680 struct seq_file *seq = file->private_data;
2681 struct gfs2_glock_iter *gi = seq->private;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002682
Steven Whitehouse6802e342008-05-21 17:03:22 +01002683 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002684 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01002685 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002686 seq->size = GFS2_SEQ_GOODSIZE;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002687 /*
2688 * Initially, we are "before" the first hash table entry; the
2689 * first call to rhashtable_walk_next gets us the first entry.
2690 */
2691 gi->last_pos = -1;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002692 gi->gl = NULL;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002693 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002694 }
2695 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00002696}
2697
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002698static int gfs2_glocks_open(struct inode *inode, struct file *file)
2699{
2700 return __gfs2_glocks_open(inode, file, &gfs2_glock_seq_ops);
2701}
2702
Bob Peterson88ffbf32015-03-16 11:02:46 -05002703static int gfs2_glocks_release(struct inode *inode, struct file *file)
2704{
2705 struct seq_file *seq = file->private_data;
2706 struct gfs2_glock_iter *gi = seq->private;
2707
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002708 if (gi->gl)
2709 gfs2_glock_put(gi->gl);
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002710 rhashtable_walk_exit(&gi->hti);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002711 return seq_release_private(inode, file);
2712}
2713
Steven Whitehousea2457692012-01-20 10:38:36 +00002714static int gfs2_glstats_open(struct inode *inode, struct file *file)
2715{
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002716 return __gfs2_glocks_open(inode, file, &gfs2_glstats_seq_ops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002717}
2718
Steven Whitehousea2457692012-01-20 10:38:36 +00002719static const struct file_operations gfs2_glocks_fops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002720 .owner = THIS_MODULE,
Steven Whitehousea2457692012-01-20 10:38:36 +00002721 .open = gfs2_glocks_open,
2722 .read = seq_read,
2723 .llseek = seq_lseek,
Bob Peterson88ffbf32015-03-16 11:02:46 -05002724 .release = gfs2_glocks_release,
Steven Whitehousea2457692012-01-20 10:38:36 +00002725};
2726
2727static const struct file_operations gfs2_glstats_fops = {
2728 .owner = THIS_MODULE,
2729 .open = gfs2_glstats_open,
2730 .read = seq_read,
2731 .llseek = seq_lseek,
Bob Peterson88ffbf32015-03-16 11:02:46 -05002732 .release = gfs2_glocks_release,
Steven Whitehousea2457692012-01-20 10:38:36 +00002733};
2734
Liu Shixine8a80232020-09-16 10:50:21 +08002735DEFINE_SEQ_ATTRIBUTE(gfs2_sbstats);
Robert Peterson7c52b162007-03-16 10:26:37 +00002736
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002737void gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
Robert Peterson7c52b162007-03-16 10:26:37 +00002738{
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002739 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
Steven Whitehousea2457692012-01-20 10:38:36 +00002740
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002741 debugfs_create_file("glocks", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2742 &gfs2_glocks_fops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002743
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002744 debugfs_create_file("glstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2745 &gfs2_glstats_fops);
Chengyu Song7b4ddfa2015-03-24 09:37:53 -05002746
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002747 debugfs_create_file("sbstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2748 &gfs2_sbstats_fops);
Robert Peterson7c52b162007-03-16 10:26:37 +00002749}
2750
2751void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2752{
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002753 debugfs_remove_recursive(sdp->debugfs_dir);
2754 sdp->debugfs_dir = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002755}
2756
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002757void gfs2_register_debugfs(void)
Robert Peterson7c52b162007-03-16 10:26:37 +00002758{
2759 gfs2_root = debugfs_create_dir("gfs2", NULL);
Robert Peterson7c52b162007-03-16 10:26:37 +00002760}
2761
2762void gfs2_unregister_debugfs(void)
2763{
2764 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002765 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002766}