blob: f0857c056df1b00f618c12eac06579f7031b79ed [file] [log] [blame]
Thomas Gleixner7336d0e2019-05-31 01:09:56 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglandb3b94fa2006-01-16 16:50:04 +00002/*
3 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersoncf45b752008-01-31 10:31:39 -06004 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00005 */
6
Joe Perchesd77d1b52014-03-06 12:10:45 -08007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
David Teiglandb3b94fa2006-01-16 16:50:04 +00009#include <linux/sched.h>
10#include <linux/slab.h>
11#include <linux/spinlock.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000012#include <linux/buffer_head.h>
13#include <linux/delay.h>
14#include <linux/sort.h>
Andreas Gruenbacher05154802017-08-01 11:18:26 -050015#include <linux/hash.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000016#include <linux/jhash.h>
Steven Whitehoused0dc80d2006-03-29 14:36:49 -050017#include <linux/kallsyms.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050018#include <linux/gfs2_ondisk.h>
Steven Whitehouse24264432006-09-11 21:40:30 -040019#include <linux/list.h>
Steven Whitehousefee852e2007-01-17 15:33:23 +000020#include <linux/wait.h>
akpm@linux-foundation.org95d97b72007-03-05 23:10:39 -080021#include <linux/module.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080022#include <linux/uaccess.h>
Robert Peterson7c52b162007-03-16 10:26:37 +000023#include <linux/seq_file.h>
24#include <linux/debugfs.h>
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +010025#include <linux/kthread.h>
26#include <linux/freezer.h>
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050027#include <linux/workqueue.h>
28#include <linux/jiffies.h>
Steven Whitehousebc015cb2011-01-19 09:30:01 +000029#include <linux/rcupdate.h>
30#include <linux/rculist_bl.h>
31#include <linux/bit_spinlock.h>
Steven Whitehousea2457692012-01-20 10:38:36 +000032#include <linux/percpu.h>
Steven Whitehouse4506a5192013-02-01 20:36:03 +000033#include <linux/list_sort.h>
Steven Whitehousee66cf162013-10-15 15:18:08 +010034#include <linux/lockref.h>
Bob Peterson88ffbf32015-03-16 11:02:46 -050035#include <linux/rhashtable.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000036
37#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050038#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000039#include "glock.h"
40#include "glops.h"
41#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000042#include "lops.h"
43#include "meta_io.h"
44#include "quota.h"
45#include "super.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050046#include "util.h"
Steven Whitehouse813e0c42008-11-18 13:38:48 +000047#include "bmap.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010048#define CREATE_TRACE_POINTS
49#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000050
Steven Whitehouse6802e342008-05-21 17:03:22 +010051struct gfs2_glock_iter {
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +010052 struct gfs2_sbd *sdp; /* incore superblock */
Bob Peterson88ffbf32015-03-16 11:02:46 -050053 struct rhashtable_iter hti; /* rhashtable iterator */
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +010054 struct gfs2_glock *gl; /* current glock struct */
55 loff_t last_pos; /* last position */
Robert Peterson7c52b162007-03-16 10:26:37 +000056};
57
David Teiglandb3b94fa2006-01-16 16:50:04 +000058typedef void (*glock_examiner) (struct gfs2_glock * gl);
59
Steven Whitehouse6802e342008-05-21 17:03:22 +010060static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050061
Robert Peterson7c52b162007-03-16 10:26:37 +000062static struct dentry *gfs2_root;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -050063static struct workqueue_struct *glock_workqueue;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -050064struct workqueue_struct *gfs2_delete_workqueue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +000065static LIST_HEAD(lru_list);
66static atomic_t lru_count = ATOMIC_INIT(0);
Julia Lawalleb8374e2008-12-25 15:35:27 +010067static DEFINE_SPINLOCK(lru_lock);
Adrian Bunk08bc2db2006-04-28 10:59:12 -040068
Steven Whitehouseb6397892006-09-12 10:10:01 -040069#define GFS2_GL_HASH_SHIFT 15
Fabian Frederick47a9a522016-08-02 12:05:27 -050070#define GFS2_GL_HASH_SIZE BIT(GFS2_GL_HASH_SHIFT)
Steven Whitehouse087efdd2006-09-09 16:59:11 -040071
Arvind Yadavd296b152017-08-30 07:50:03 -050072static const struct rhashtable_params ht_parms = {
Bob Peterson88ffbf32015-03-16 11:02:46 -050073 .nelem_hint = GFS2_GL_HASH_SIZE * 3 / 4,
Andreas Gruenbacher972b0442017-03-16 09:54:57 -040074 .key_len = offsetofend(struct lm_lockname, ln_type),
Bob Peterson88ffbf32015-03-16 11:02:46 -050075 .key_offset = offsetof(struct gfs2_glock, gl_name),
76 .head_offset = offsetof(struct gfs2_glock, gl_node),
77};
Steven Whitehouse087efdd2006-09-09 16:59:11 -040078
Bob Peterson88ffbf32015-03-16 11:02:46 -050079static struct rhashtable gl_hash_table;
David Teiglandb3b94fa2006-01-16 16:50:04 +000080
Andreas Gruenbacher05154802017-08-01 11:18:26 -050081#define GLOCK_WAIT_TABLE_BITS 12
82#define GLOCK_WAIT_TABLE_SIZE (1 << GLOCK_WAIT_TABLE_BITS)
83static wait_queue_head_t glock_wait_table[GLOCK_WAIT_TABLE_SIZE] __cacheline_aligned;
84
85struct wait_glock_queue {
86 struct lm_lockname *name;
87 wait_queue_entry_t wait;
88};
89
90static int glock_wake_function(wait_queue_entry_t *wait, unsigned int mode,
91 int sync, void *key)
92{
93 struct wait_glock_queue *wait_glock =
94 container_of(wait, struct wait_glock_queue, wait);
95 struct lm_lockname *wait_name = wait_glock->name;
96 struct lm_lockname *wake_name = key;
97
98 if (wake_name->ln_sbd != wait_name->ln_sbd ||
99 wake_name->ln_number != wait_name->ln_number ||
100 wake_name->ln_type != wait_name->ln_type)
101 return 0;
102 return autoremove_wake_function(wait, mode, sync, key);
103}
104
105static wait_queue_head_t *glock_waitqueue(struct lm_lockname *name)
106{
Andreas Gruenbacher605b0482019-03-06 15:41:57 +0100107 u32 hash = jhash2((u32 *)name, ht_parms.key_len / 4, 0);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500108
109 return glock_wait_table + hash_32(hash, GLOCK_WAIT_TABLE_BITS);
110}
111
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500112/**
113 * wake_up_glock - Wake up waiters on a glock
114 * @gl: the glock
115 */
116static void wake_up_glock(struct gfs2_glock *gl)
117{
118 wait_queue_head_t *wq = glock_waitqueue(&gl->gl_name);
119
120 if (waitqueue_active(wq))
121 __wake_up(wq, TASK_NORMAL, 1, &gl->gl_name);
122}
123
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500124static void gfs2_glock_dealloc(struct rcu_head *rcu)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000125{
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500126 struct gfs2_glock *gl = container_of(rcu, struct gfs2_glock, gl_rcu);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000127
David Teiglanddba2d702012-11-14 13:46:53 -0500128 if (gl->gl_ops->go_flags & GLOF_ASPACE) {
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000129 kmem_cache_free(gfs2_glock_aspace_cachep, gl);
David Teiglanddba2d702012-11-14 13:46:53 -0500130 } else {
David Teigland4e2f8842012-11-14 13:47:37 -0500131 kfree(gl->gl_lksb.sb_lvbptr);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000132 kmem_cache_free(gfs2_glock_cachep, gl);
David Teiglanddba2d702012-11-14 13:46:53 -0500133 }
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500134}
135
136void gfs2_glock_free(struct gfs2_glock *gl)
137{
138 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
139
Bob Peterson73118ca2019-04-05 04:41:38 +0100140 BUG_ON(test_bit(GLF_REVOKES, &gl->gl_flags));
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500141 rhashtable_remove_fast(&gl_hash_table, &gl->gl_node, ht_parms);
142 smp_mb();
143 wake_up_glock(gl);
Andreas Gruenbacher961ae1d2017-07-07 13:22:05 -0500144 call_rcu(&gl->gl_rcu, gfs2_glock_dealloc);
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000145 if (atomic_dec_and_test(&sdp->sd_glock_disposal))
146 wake_up(&sdp->sd_glock_wait);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147}
148
149/**
150 * gfs2_glock_hold() - increment reference count on glock
151 * @gl: The glock to hold
152 *
153 */
154
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -0500155void gfs2_glock_hold(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000156{
Steven Whitehousee66cf162013-10-15 15:18:08 +0100157 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
158 lockref_get(&gl->gl_lockref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000159}
160
161/**
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500162 * demote_ok - Check to see if it's ok to unlock a glock
163 * @gl: the glock
164 *
165 * Returns: 1 if it's ok
166 */
167
168static int demote_ok(const struct gfs2_glock *gl)
169{
170 const struct gfs2_glock_operations *glops = gl->gl_ops;
171
172 if (gl->gl_state == LM_ST_UNLOCKED)
173 return 0;
Steven Whitehousef42ab082011-04-14 16:50:31 +0100174 if (!list_empty(&gl->gl_holders))
Benjamin Marzinski8ff22a62009-07-10 18:04:24 -0500175 return 0;
176 if (glops->go_demote_ok)
177 return glops->go_demote_ok(gl);
178 return 1;
179}
180
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000181
Steven Whitehouse29687a22011-03-30 16:33:25 +0100182void gfs2_glock_add_to_lru(struct gfs2_glock *gl)
183{
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000184 if (!(gl->gl_ops->go_flags & GLOF_LRU))
185 return;
186
Steven Whitehouse29687a22011-03-30 16:33:25 +0100187 spin_lock(&lru_lock);
188
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000189 list_del(&gl->gl_lru);
Steven Whitehouse29687a22011-03-30 16:33:25 +0100190 list_add_tail(&gl->gl_lru, &lru_list);
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000191
192 if (!test_bit(GLF_LRU, &gl->gl_flags)) {
193 set_bit(GLF_LRU, &gl->gl_flags);
194 atomic_inc(&lru_count);
195 }
196
Steven Whitehouse29687a22011-03-30 16:33:25 +0100197 spin_unlock(&lru_lock);
198}
199
Bob Peterson8f6cb402015-01-05 13:25:10 -0500200static void gfs2_glock_remove_from_lru(struct gfs2_glock *gl)
Steven Whitehousef42ab082011-04-14 16:50:31 +0100201{
Bob Peterson645ebd42017-07-26 10:57:35 -0500202 if (!(gl->gl_ops->go_flags & GLOF_LRU))
203 return;
204
Bob Peterson8f6cb402015-01-05 13:25:10 -0500205 spin_lock(&lru_lock);
Ross Lagerwall7881ef32019-03-27 17:09:17 +0000206 if (test_bit(GLF_LRU, &gl->gl_flags)) {
Steven Whitehousef42ab082011-04-14 16:50:31 +0100207 list_del_init(&gl->gl_lru);
208 atomic_dec(&lru_count);
209 clear_bit(GLF_LRU, &gl->gl_flags);
210 }
211 spin_unlock(&lru_lock);
212}
213
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500214/*
215 * Enqueue the glock on the work queue. Passes one glock reference on to the
216 * work queue.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 */
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500218static void __gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
219 if (!queue_delayed_work(glock_workqueue, &gl->gl_work, delay)) {
220 /*
221 * We are holding the lockref spinlock, and the work was still
222 * queued above. The queued work (glock_work_func) takes that
223 * spinlock before dropping its glock reference(s), so it
224 * cannot have dropped them in the meantime.
225 */
226 GLOCK_BUG_ON(gl, gl->gl_lockref.count < 2);
227 gl->gl_lockref.count--;
228 }
229}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000230
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500231static void gfs2_glock_queue_work(struct gfs2_glock *gl, unsigned long delay) {
232 spin_lock(&gl->gl_lockref.lock);
233 __gfs2_glock_queue_work(gl, delay);
234 spin_unlock(&gl->gl_lockref.lock);
235}
236
237static void __gfs2_glock_put(struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238{
Bob Peterson15562c42015-03-16 11:52:05 -0500239 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000240 struct address_space *mapping = gfs2_glock2aspace(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000241
Steven Whitehousee66cf162013-10-15 15:18:08 +0100242 lockref_mark_dead(&gl->gl_lockref);
243
Bob Peterson8f6cb402015-01-05 13:25:10 -0500244 gfs2_glock_remove_from_lru(gl);
Steven Whitehousee66cf162013-10-15 15:18:08 +0100245 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehousee66cf162013-10-15 15:18:08 +0100246 GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
247 GLOCK_BUG_ON(gl, mapping && mapping->nrpages);
248 trace_gfs2_glock_put(gl);
249 sdp->sd_lockstruct.ls_ops->lm_put_lock(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000250}
251
Andreas Gruenbacher71c1b2132017-08-01 11:45:23 -0500252/*
253 * Cause the glock to be put in work queue context.
254 */
255void gfs2_glock_queue_put(struct gfs2_glock *gl)
256{
257 gfs2_glock_queue_work(gl, 0);
258}
259
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260/**
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500261 * gfs2_glock_put() - Decrement reference count on glock
262 * @gl: The glock to put
263 *
264 */
265
266void gfs2_glock_put(struct gfs2_glock *gl)
267{
268 if (lockref_put_or_lock(&gl->gl_lockref))
269 return;
270
271 __gfs2_glock_put(gl);
272}
273
274/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100275 * may_grant - check if its ok to grant a new lock
276 * @gl: The glock
277 * @gh: The lock request which we wish to grant
278 *
279 * Returns: true if its ok to grant the lock
280 */
281
282static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500283{
Steven Whitehouse6802e342008-05-21 17:03:22 +0100284 const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
285 if ((gh->gh_state == LM_ST_EXCLUSIVE ||
286 gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
287 return 0;
288 if (gl->gl_state == gh->gh_state)
289 return 1;
290 if (gh->gh_flags & GL_EXACT)
291 return 0;
Steven Whitehouse209806a2008-07-07 10:07:28 +0100292 if (gl->gl_state == LM_ST_EXCLUSIVE) {
293 if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
294 return 1;
295 if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
296 return 1;
297 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100298 if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
299 return 1;
300 return 0;
301}
302
303static void gfs2_holder_wake(struct gfs2_holder *gh)
304{
305 clear_bit(HIF_WAIT, &gh->gh_iflags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100306 smp_mb__after_atomic();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100307 wake_up_bit(&gh->gh_iflags, HIF_WAIT);
308}
309
310/**
Steven Whitehoused5341a92010-07-23 14:05:51 +0100311 * do_error - Something unexpected has happened during a lock request
312 *
313 */
314
Denys Vlasenkoa527b382016-04-12 12:39:12 -0400315static void do_error(struct gfs2_glock *gl, const int ret)
Steven Whitehoused5341a92010-07-23 14:05:51 +0100316{
317 struct gfs2_holder *gh, *tmp;
318
319 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
320 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
321 continue;
322 if (ret & LM_OUT_ERROR)
323 gh->gh_error = -EIO;
324 else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
325 gh->gh_error = GLR_TRYFAILED;
326 else
327 continue;
328 list_del_init(&gh->gh_list);
329 trace_gfs2_glock_queue(gh, 0);
330 gfs2_holder_wake(gh);
331 }
332}
333
334/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100335 * do_promote - promote as many requests as possible on the current queue
336 * @gl: The glock
337 *
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000338 * Returns: 1 if there is a blocked holder at the head of the list, or 2
339 * if a type specific operation is underway.
Steven Whitehouse6802e342008-05-21 17:03:22 +0100340 */
341
342static int do_promote(struct gfs2_glock *gl)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500343__releases(&gl->gl_lockref.lock)
344__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100345{
346 const struct gfs2_glock_operations *glops = gl->gl_ops;
347 struct gfs2_holder *gh, *tmp;
348 int ret;
349
350restart:
351 list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
352 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
353 continue;
354 if (may_grant(gl, gh)) {
355 if (gh->gh_list.prev == &gl->gl_holders &&
356 glops->go_lock) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500357 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100358 /* FIXME: eliminate this eventually */
359 ret = glops->go_lock(gh);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500360 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100361 if (ret) {
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000362 if (ret == 1)
363 return 2;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100364 gh->gh_error = ret;
365 list_del_init(&gh->gh_list);
Steven Whitehouse63997772009-06-12 08:49:20 +0100366 trace_gfs2_glock_queue(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100367 gfs2_holder_wake(gh);
368 goto restart;
369 }
370 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100371 trace_gfs2_promote(gh, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100372 gfs2_holder_wake(gh);
373 goto restart;
374 }
375 set_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse63997772009-06-12 08:49:20 +0100376 trace_gfs2_promote(gh, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100377 gfs2_holder_wake(gh);
378 continue;
379 }
380 if (gh->gh_list.prev == &gl->gl_holders)
381 return 1;
Steven Whitehoused5341a92010-07-23 14:05:51 +0100382 do_error(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100383 break;
384 }
385 return 0;
386}
387
388/**
Steven Whitehouse6802e342008-05-21 17:03:22 +0100389 * find_first_waiter - find the first gh that's waiting for the glock
390 * @gl: the glock
391 */
392
393static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
394{
395 struct gfs2_holder *gh;
396
397 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
398 if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
399 return gh;
400 }
401 return NULL;
402}
403
404/**
405 * state_change - record that the glock is now in a different state
406 * @gl: the glock
407 * @new_state the new state
408 *
409 */
410
411static void state_change(struct gfs2_glock *gl, unsigned int new_state)
412{
413 int held1, held2;
414
415 held1 = (gl->gl_state != LM_ST_UNLOCKED);
416 held2 = (new_state != LM_ST_UNLOCKED);
417
418 if (held1 != held2) {
Steven Whitehousee66cf162013-10-15 15:18:08 +0100419 GLOCK_BUG_ON(gl, __lockref_is_dead(&gl->gl_lockref));
Steven Whitehouse6802e342008-05-21 17:03:22 +0100420 if (held2)
Steven Whitehousee66cf162013-10-15 15:18:08 +0100421 gl->gl_lockref.count++;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100422 else
Steven Whitehousee66cf162013-10-15 15:18:08 +0100423 gl->gl_lockref.count--;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100424 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +0100425 if (held1 && held2 && list_empty(&gl->gl_holders))
426 clear_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100427
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400428 if (new_state != gl->gl_target)
429 /* shorten our minimum hold time */
430 gl->gl_hold_time = max(gl->gl_hold_time - GL_GLOCK_HOLD_DECR,
431 GL_GLOCK_MIN_HOLD);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100432 gl->gl_state = new_state;
433 gl->gl_tchange = jiffies;
434}
435
436static void gfs2_demote_wake(struct gfs2_glock *gl)
437{
438 gl->gl_demote_state = LM_ST_EXCLUSIVE;
439 clear_bit(GLF_DEMOTE, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100440 smp_mb__after_atomic();
Steven Whitehouse6802e342008-05-21 17:03:22 +0100441 wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
442}
443
444/**
445 * finish_xmote - The DLM has replied to one of our lock requests
446 * @gl: The glock
447 * @ret: The status from the DLM
448 *
449 */
450
451static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
452{
453 const struct gfs2_glock_operations *glops = gl->gl_ops;
454 struct gfs2_holder *gh;
455 unsigned state = ret & LM_OUT_ST_MASK;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000456 int rv;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500457
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500458 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse63997772009-06-12 08:49:20 +0100459 trace_gfs2_glock_state_change(gl, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100460 state_change(gl, state);
461 gh = find_first_waiter(gl);
462
463 /* Demote to UN request arrived during demote to SH or DF */
464 if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
465 state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
466 gl->gl_target = LM_ST_UNLOCKED;
467
468 /* Check for state != intended state */
469 if (unlikely(state != gl->gl_target)) {
470 if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
471 /* move to back of queue and try next entry */
472 if (ret & LM_OUT_CANCELED) {
473 if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
474 list_move_tail(&gh->gh_list, &gl->gl_holders);
475 gh = find_first_waiter(gl);
476 gl->gl_target = gh->gh_state;
477 goto retry;
478 }
479 /* Some error or failed "try lock" - report it */
480 if ((ret & LM_OUT_ERROR) ||
481 (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
482 gl->gl_target = gl->gl_state;
483 do_error(gl, ret);
484 goto out;
485 }
486 }
487 switch(state) {
488 /* Unlocked due to conversion deadlock, try again */
489 case LM_ST_UNLOCKED:
490retry:
491 do_xmote(gl, gh, gl->gl_target);
492 break;
493 /* Conversion fails, unlock and try again */
494 case LM_ST_SHARED:
495 case LM_ST_DEFERRED:
496 do_xmote(gl, gh, LM_ST_UNLOCKED);
497 break;
498 default: /* Everything else */
Bob Petersone54c78a2018-10-03 08:47:36 -0500499 fs_err(gl->gl_name.ln_sbd, "wanted %u got %u\n",
500 gl->gl_target, state);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100501 GLOCK_BUG_ON(gl, 1);
502 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500503 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100504 return;
505 }
506
507 /* Fast path - we got what we asked for */
508 if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
509 gfs2_demote_wake(gl);
510 if (state != LM_ST_UNLOCKED) {
511 if (glops->go_xmote_bh) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500512 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100513 rv = glops->go_xmote_bh(gl, gh);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500514 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100515 if (rv) {
516 do_error(gl, rv);
517 goto out;
518 }
519 }
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000520 rv = do_promote(gl);
521 if (rv == 2)
522 goto out_locked;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100523 }
524out:
525 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000526out_locked:
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500527 spin_unlock(&gl->gl_lockref.lock);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500528}
529
Steven Whitehouse6802e342008-05-21 17:03:22 +0100530/**
531 * do_xmote - Calls the DLM to change the state of a lock
532 * @gl: The lock state
533 * @gh: The holder (only for promotes)
534 * @target: The target lock state
535 *
536 */
537
538static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500539__releases(&gl->gl_lockref.lock)
540__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100541{
542 const struct gfs2_glock_operations *glops = gl->gl_ops;
Bob Peterson15562c42015-03-16 11:52:05 -0500543 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Bob Petersonb58bf402015-07-24 09:45:43 -0500544 unsigned int lck_flags = (unsigned int)(gh ? gh->gh_flags : 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100545 int ret;
546
Bob Petersoned175452017-05-05 09:43:02 -0500547 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) &&
548 target != LM_ST_UNLOCKED)
Bob Peterson0d1c7ae2017-03-03 12:37:14 -0500549 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100550 lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
551 LM_FLAG_PRIORITY);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000552 GLOCK_BUG_ON(gl, gl->gl_state == target);
553 GLOCK_BUG_ON(gl, gl->gl_state == gl->gl_target);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100554 if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
555 glops->go_inval) {
556 set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
557 do_error(gl, 0); /* Fail queued try locks */
558 }
Steven Whitehouse47a25382010-11-30 15:49:31 +0000559 gl->gl_req = target;
Steven Whitehousea2457692012-01-20 10:38:36 +0000560 set_bit(GLF_BLOCKING, &gl->gl_flags);
561 if ((gl->gl_req == LM_ST_UNLOCKED) ||
562 (gl->gl_state == LM_ST_EXCLUSIVE) ||
563 (lck_flags & (LM_FLAG_TRY|LM_FLAG_TRY_1CB)))
564 clear_bit(GLF_BLOCKING, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500565 spin_unlock(&gl->gl_lockref.lock);
Bob Peterson06dfc302012-10-24 14:41:05 -0400566 if (glops->go_sync)
567 glops->go_sync(gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100568 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
569 glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
570 clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
571
572 gfs2_glock_hold(gl);
Steven Whitehouse921169c2010-11-29 12:50:38 +0000573 if (sdp->sd_lockstruct.ls_ops->lm_lock) {
574 /* lock_dlm */
575 ret = sdp->sd_lockstruct.ls_ops->lm_lock(gl, target, lck_flags);
Benjamin Marzinski3e11e532016-03-23 14:29:59 -0400576 if (ret == -EINVAL && gl->gl_target == LM_ST_UNLOCKED &&
577 target == LM_ST_UNLOCKED &&
578 test_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags)) {
579 finish_xmote(gl, target);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500580 gfs2_glock_queue_work(gl, 0);
Benjamin Marzinski3e11e532016-03-23 14:29:59 -0400581 }
582 else if (ret) {
Bob Petersone54c78a2018-10-03 08:47:36 -0500583 fs_err(sdp, "lm_lock ret %d\n", ret);
Bob Petersoned175452017-05-05 09:43:02 -0500584 GLOCK_BUG_ON(gl, !test_bit(SDF_SHUTDOWN,
585 &sdp->sd_flags));
David Teiglanddba2d702012-11-14 13:46:53 -0500586 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000587 } else { /* lock_nolock */
588 finish_xmote(gl, target);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500589 gfs2_glock_queue_work(gl, 0);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100590 }
Steven Whitehouse921169c2010-11-29 12:50:38 +0000591
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500592 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100593}
594
595/**
596 * find_first_holder - find the first "holder" gh
597 * @gl: the glock
598 */
599
600static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
601{
602 struct gfs2_holder *gh;
603
604 if (!list_empty(&gl->gl_holders)) {
605 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
606 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
607 return gh;
608 }
609 return NULL;
610}
611
612/**
613 * run_queue - do all outstanding tasks related to a glock
614 * @gl: The glock in question
615 * @nonblock: True if we must not block in run_queue
616 *
617 */
618
619static void run_queue(struct gfs2_glock *gl, const int nonblock)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500620__releases(&gl->gl_lockref.lock)
621__acquires(&gl->gl_lockref.lock)
Steven Whitehouse6802e342008-05-21 17:03:22 +0100622{
623 struct gfs2_holder *gh = NULL;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000624 int ret;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100625
626 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
627 return;
628
629 GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
630
631 if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
632 gl->gl_demote_state != gl->gl_state) {
633 if (find_first_holder(gl))
Steven Whitehoused8348de2009-02-05 10:12:38 +0000634 goto out_unlock;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100635 if (nonblock)
636 goto out_sched;
637 set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100638 GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100639 gl->gl_target = gl->gl_demote_state;
640 } else {
641 if (test_bit(GLF_DEMOTE, &gl->gl_flags))
642 gfs2_demote_wake(gl);
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000643 ret = do_promote(gl);
644 if (ret == 0)
Steven Whitehoused8348de2009-02-05 10:12:38 +0000645 goto out_unlock;
Steven Whitehouse813e0c42008-11-18 13:38:48 +0000646 if (ret == 2)
Steven Whitehousea228df62009-04-07 14:01:34 +0100647 goto out;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100648 gh = find_first_waiter(gl);
649 gl->gl_target = gh->gh_state;
650 if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
651 do_error(gl, 0); /* Fail queued try locks */
652 }
653 do_xmote(gl, gh, gl->gl_target);
Steven Whitehousea228df62009-04-07 14:01:34 +0100654out:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100655 return;
656
657out_sched:
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100658 clear_bit(GLF_LOCK, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100659 smp_mb__after_atomic();
Steven Whitehousee66cf162013-10-15 15:18:08 +0100660 gl->gl_lockref.count++;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500661 __gfs2_glock_queue_work(gl, 0);
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100662 return;
663
Steven Whitehoused8348de2009-02-05 10:12:38 +0000664out_unlock:
Steven Whitehouse6802e342008-05-21 17:03:22 +0100665 clear_bit(GLF_LOCK, &gl->gl_flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100666 smp_mb__after_atomic();
Steven Whitehouse7e71c552009-09-22 10:56:16 +0100667 return;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100668}
669
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500670static void delete_work_func(struct work_struct *work)
671{
672 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
Bob Peterson15562c42015-03-16 11:52:05 -0500673 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Andreas Gruenbacherec5ec662016-06-14 12:23:59 -0500674 struct inode *inode;
Steven Whitehouse044b9412010-11-03 20:01:07 +0000675 u64 no_addr = gl->gl_name.ln_number;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500676
Bob Petersona4923862015-12-07 16:24:27 -0600677 /* If someone's using this glock to create a new dinode, the block must
678 have been freed by another node, then re-used, in which case our
679 iopen callback is too late after the fact. Ignore it. */
680 if (test_bit(GLF_INODE_CREATING, &gl->gl_flags))
681 goto out;
682
Andreas Gruenbacherec5ec662016-06-14 12:23:59 -0500683 inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
Steven Whitehouse044b9412010-11-03 20:01:07 +0000684 if (inode && !IS_ERR(inode)) {
685 d_prune_aliases(inode);
686 iput(inode);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500687 }
Bob Petersona4923862015-12-07 16:24:27 -0600688out:
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500689 gfs2_glock_put(gl);
690}
691
Steven Whitehouse6802e342008-05-21 17:03:22 +0100692static void glock_work_func(struct work_struct *work)
693{
694 unsigned long delay = 0;
695 struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500696 unsigned int drop_refs = 1;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100697
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000698 if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100699 finish_xmote(gl, gl->gl_reply);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500700 drop_refs++;
Steven Whitehouse26bb7502009-11-27 10:31:11 +0000701 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -0500702 spin_lock(&gl->gl_lockref.lock);
Bob Petersonf90e5b52011-05-24 10:44:42 -0400703 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
Steven Whitehouse265d529c2008-07-07 10:02:36 +0100704 gl->gl_state != LM_ST_UNLOCKED &&
705 gl->gl_demote_state != LM_ST_EXCLUSIVE) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100706 unsigned long holdtime, now = jiffies;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400707
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400708 holdtime = gl->gl_tchange + gl->gl_hold_time;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100709 if (time_before(now, holdtime))
710 delay = holdtime - now;
Bob Petersonf90e5b52011-05-24 10:44:42 -0400711
712 if (!delay) {
713 clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags);
714 set_bit(GLF_DEMOTE, &gl->gl_flags);
715 }
Steven Whitehouse6802e342008-05-21 17:03:22 +0100716 }
717 run_queue(gl, 0);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500718 if (delay) {
719 /* Keep one glock reference for the work we requeue. */
720 drop_refs--;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400721 if (gl->gl_name.ln_type != LM_TYPE_INODE)
722 delay = 0;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500723 __gfs2_glock_queue_work(gl, delay);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400724 }
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -0500725
726 /*
727 * Drop the remaining glock references manually here. (Mind that
728 * __gfs2_glock_queue_work depends on the lockref spinlock begin held
729 * here as well.)
730 */
731 gl->gl_lockref.count -= drop_refs;
732 if (!gl->gl_lockref.count) {
733 __gfs2_glock_put(gl);
734 return;
735 }
736 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100737}
738
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500739static struct gfs2_glock *find_insert_glock(struct lm_lockname *name,
740 struct gfs2_glock *new)
741{
742 struct wait_glock_queue wait;
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500743 wait_queue_head_t *wq = glock_waitqueue(name);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500744 struct gfs2_glock *gl;
745
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500746 wait.name = name;
747 init_wait(&wait.wait);
748 wait.wait.func = glock_wake_function;
749
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500750again:
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500751 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500752 rcu_read_lock();
753 if (new) {
754 gl = rhashtable_lookup_get_insert_fast(&gl_hash_table,
755 &new->gl_node, ht_parms);
756 if (IS_ERR(gl))
757 goto out;
758 } else {
759 gl = rhashtable_lookup_fast(&gl_hash_table,
760 name, ht_parms);
761 }
762 if (gl && !lockref_get_not_dead(&gl->gl_lockref)) {
763 rcu_read_unlock();
764 schedule();
765 goto again;
766 }
767out:
768 rcu_read_unlock();
Andreas Gruenbachera91323e2017-08-04 07:40:45 -0500769 finish_wait(wq, &wait.wait);
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500770 return gl;
771}
772
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773/**
774 * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
775 * @sdp: The GFS2 superblock
776 * @number: the lock number
777 * @glops: The glock_operations to use
778 * @create: If 0, don't create the glock if it doesn't exist
779 * @glp: the glock is returned here
780 *
781 * This does not lock a glock, just finds/creates structures for one.
782 *
783 * Returns: errno
784 */
785
Steven Whitehousecd915492006-09-04 12:49:07 -0400786int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -0400787 const struct gfs2_glock_operations *glops, int create,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788 struct gfs2_glock **glp)
789{
Steven Whitehouse009d8512009-12-08 12:12:13 +0000790 struct super_block *s = sdp->sd_vfs;
Bob Peterson15562c42015-03-16 11:52:05 -0500791 struct lm_lockname name = { .ln_number = number,
792 .ln_type = glops->go_type,
793 .ln_sbd = sdp };
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100794 struct gfs2_glock *gl, *tmp;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000795 struct address_space *mapping;
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000796 struct kmem_cache *cachep;
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100797 int ret = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500799 gl = find_insert_glock(&name, NULL);
800 if (gl) {
801 *glp = gl;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 return 0;
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500803 }
Steven Whitehouse64d576b2009-02-12 13:31:58 +0000804 if (!create)
805 return -ENOENT;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806
Steven Whitehouse009d8512009-12-08 12:12:13 +0000807 if (glops->go_flags & GLOF_ASPACE)
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000808 cachep = gfs2_glock_aspace_cachep;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000809 else
Steven Whitehousebc015cb2011-01-19 09:30:01 +0000810 cachep = gfs2_glock_cachep;
Steven Whitehousefe0bbd22014-06-23 14:50:20 +0100811 gl = kmem_cache_alloc(cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812 if (!gl)
813 return -ENOMEM;
814
David Teiglanddba2d702012-11-14 13:46:53 -0500815 memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
David Teiglanddba2d702012-11-14 13:46:53 -0500816
817 if (glops->go_flags & GLOF_LVB) {
Steven Whitehousefe0bbd22014-06-23 14:50:20 +0100818 gl->gl_lksb.sb_lvbptr = kzalloc(GFS2_MIN_LVB_SIZE, GFP_NOFS);
David Teigland4e2f8842012-11-14 13:47:37 -0500819 if (!gl->gl_lksb.sb_lvbptr) {
David Teiglanddba2d702012-11-14 13:46:53 -0500820 kmem_cache_free(cachep, gl);
821 return -ENOMEM;
822 }
David Teiglanddba2d702012-11-14 13:46:53 -0500823 }
824
Steven Whitehouse8f052282010-01-29 15:21:27 +0000825 atomic_inc(&sdp->sd_glock_disposal);
Bob Peterson88ffbf32015-03-16 11:02:46 -0500826 gl->gl_node.next = NULL;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400827 gl->gl_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000828 gl->gl_name = name;
Steven Whitehousee66cf162013-10-15 15:18:08 +0100829 gl->gl_lockref.count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000830 gl->gl_state = LM_ST_UNLOCKED;
Steven Whitehouse6802e342008-05-21 17:03:22 +0100831 gl->gl_target = LM_ST_UNLOCKED;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500832 gl->gl_demote_state = LM_ST_EXCLUSIVE;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000833 gl->gl_ops = glops;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100834 gl->gl_dstamp = 0;
Steven Whitehousea2457692012-01-20 10:38:36 +0000835 preempt_disable();
836 /* We use the global stats to estimate the initial per-glock stats */
837 gl->gl_stats = this_cpu_ptr(sdp->sd_lkstats)->lkstats[glops->go_type];
838 preempt_enable();
839 gl->gl_stats.stats[GFS2_LKS_DCOUNT] = 0;
840 gl->gl_stats.stats[GFS2_LKS_QCOUNT] = 0;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500841 gl->gl_tchange = jiffies;
Steven Whitehouseec45d9f2006-08-30 10:36:52 -0400842 gl->gl_object = NULL;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400843 gl->gl_hold_time = GL_GLOCK_DFT_HOLD;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500844 INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500845 INIT_WORK(&gl->gl_delete, delete_work_func);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846
Steven Whitehouse009d8512009-12-08 12:12:13 +0000847 mapping = gfs2_glock2aspace(gl);
848 if (mapping) {
849 mapping->a_ops = &gfs2_meta_aops;
850 mapping->host = s->s_bdev->bd_inode;
851 mapping->flags = 0;
852 mapping_set_gfp_mask(mapping, GFP_NOFS);
Rafael Aquini252aa6f2012-12-11 16:02:35 -0800853 mapping->private_data = NULL;
Steven Whitehouse009d8512009-12-08 12:12:13 +0000854 mapping->writeback_index = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855 }
856
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500857 tmp = find_insert_glock(&name, gl);
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100858 if (!tmp) {
Bob Peterson88ffbf32015-03-16 11:02:46 -0500859 *glp = gl;
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100860 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 }
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100862 if (IS_ERR(tmp)) {
863 ret = PTR_ERR(tmp);
864 goto out_free;
865 }
Andreas Gruenbacher05154802017-08-01 11:18:26 -0500866 *glp = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100868out_free:
Bob Peterson88ffbf32015-03-16 11:02:46 -0500869 kfree(gl->gl_lksb.sb_lvbptr);
870 kmem_cache_free(cachep, gl);
871 atomic_dec(&sdp->sd_glock_disposal);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000872
Andreas Gruenbacher0a52aba2017-02-21 23:19:10 +0100873out:
Bob Peterson88ffbf32015-03-16 11:02:46 -0500874 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000875}
876
877/**
878 * gfs2_holder_init - initialize a struct gfs2_holder in the default way
879 * @gl: the glock
880 * @state: the state we're requesting
881 * @flags: the modifier flags
882 * @gh: the holder structure
883 *
884 */
885
Bob Petersonb58bf402015-07-24 09:45:43 -0500886void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, u16 flags,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887 struct gfs2_holder *gh)
888{
889 INIT_LIST_HEAD(&gh->gh_list);
890 gh->gh_gl = gl;
Fabian Frederickd29c0af2014-10-03 20:15:36 +0200891 gh->gh_ip = _RET_IP_;
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800892 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000893 gh->gh_state = state;
894 gh->gh_flags = flags;
895 gh->gh_error = 0;
896 gh->gh_iflags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897 gfs2_glock_hold(gl);
898}
899
900/**
901 * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
902 * @state: the state we're requesting
903 * @flags: the modifier flags
904 * @gh: the holder structure
905 *
906 * Don't mess with the glock.
907 *
908 */
909
Bob Petersonb58bf402015-07-24 09:45:43 -0500910void gfs2_holder_reinit(unsigned int state, u16 flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911{
912 gh->gh_state = state;
Steven Whitehouse579b78a2006-04-26 14:58:26 -0400913 gh->gh_flags = flags;
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000914 gh->gh_iflags = 0;
Fabian Frederickd29c0af2014-10-03 20:15:36 +0200915 gh->gh_ip = _RET_IP_;
Markus Elfring30badc92014-11-18 11:31:23 +0100916 put_pid(gh->gh_owner_pid);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400917 gh->gh_owner_pid = get_pid(task_pid(current));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918}
919
920/**
921 * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
922 * @gh: the holder structure
923 *
924 */
925
926void gfs2_holder_uninit(struct gfs2_holder *gh)
927{
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -0800928 put_pid(gh->gh_owner_pid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000929 gfs2_glock_put(gh->gh_gl);
Andreas Gruenbacher6df9f9a2016-06-17 07:31:27 -0500930 gfs2_holder_mark_uninitialized(gh);
Steven Whitehoused0dc80d2006-03-29 14:36:49 -0500931 gh->gh_ip = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000932}
933
Steven Whitehousefe64d512009-05-19 10:01:18 +0100934/**
Bob Peterson07a79042012-08-09 12:48:44 -0500935 * gfs2_glock_wait - wait on a glock acquisition
936 * @gh: the glock holder
937 *
938 * Returns: 0 on success
939 */
940
941int gfs2_glock_wait(struct gfs2_holder *gh)
Steven Whitehousefee852e2007-01-17 15:33:23 +0000942{
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400943 unsigned long time1 = jiffies;
944
Steven Whitehousefee852e2007-01-17 15:33:23 +0000945 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +1000946 wait_on_bit(&gh->gh_iflags, HIF_WAIT, TASK_UNINTERRUPTIBLE);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -0400947 if (time_after(jiffies, time1 + HZ)) /* have we waited > a second? */
948 /* Lengthen the minimum hold time. */
949 gh->gh_gl->gl_hold_time = min(gh->gh_gl->gl_hold_time +
950 GL_GLOCK_HOLD_INCR,
951 GL_GLOCK_MAX_HOLD);
Bob Peterson07a79042012-08-09 12:48:44 -0500952 return gh->gh_error;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100953}
954
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955/**
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000956 * handle_callback - process a demote request
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 * @gl: the glock
958 * @state: the state the caller wants us to change to
959 *
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000960 * There are only two requests that we are going to see in actual
961 * practise: LM_ST_SHARED and LM_ST_UNLOCKED
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 */
963
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500964static void handle_callback(struct gfs2_glock *gl, unsigned int state,
Steven Whitehouse81ffbf62013-04-10 10:26:55 +0100965 unsigned long delay, bool remote)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000966{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500967 int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
968
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -0500969 set_bit(bit, &gl->gl_flags);
970 if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
Steven Whitehouse3b8249f2007-03-16 09:40:31 +0000971 gl->gl_demote_state = state;
972 gl->gl_demote_time = jiffies;
Josef Whiter26caee52007-07-23 10:02:40 +0100973 } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
974 gl->gl_demote_state != state) {
Steven Whitehouse6802e342008-05-21 17:03:22 +0100975 gl->gl_demote_state = LM_ST_UNLOCKED;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 }
Benjamin Marzinskib94a1702009-07-23 18:52:34 -0500977 if (gl->gl_ops->go_callback)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +0100978 gl->gl_ops->go_callback(gl, remote);
Steven Whitehouse7bd8b2e2013-04-10 10:32:05 +0100979 trace_gfs2_demote_rq(gl, remote);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000980}
981
Steven Whitehouse6802e342008-05-21 17:03:22 +0100982void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
Robert Peterson7c52b162007-03-16 10:26:37 +0000983{
Joe Perches5e690692010-11-09 16:35:20 -0800984 struct va_format vaf;
Robert Peterson7c52b162007-03-16 10:26:37 +0000985 va_list args;
986
987 va_start(args, fmt);
Joe Perches5e690692010-11-09 16:35:20 -0800988
Steven Whitehouse6802e342008-05-21 17:03:22 +0100989 if (seq) {
Steven Whitehouse1bb49302012-06-11 13:26:50 +0100990 seq_vprintf(seq, fmt, args);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100991 } else {
Joe Perches5e690692010-11-09 16:35:20 -0800992 vaf.fmt = fmt;
993 vaf.va = &args;
994
Joe Perchesd77d1b52014-03-06 12:10:45 -0800995 pr_err("%pV", &vaf);
Steven Whitehouse6802e342008-05-21 17:03:22 +0100996 }
Joe Perches5e690692010-11-09 16:35:20 -0800997
Robert Peterson7c52b162007-03-16 10:26:37 +0000998 va_end(args);
999}
1000
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001002 * add_to_queue - Add a holder to the wait queue (but look for recursion)
1003 * @gh: the holder structure to add
1004 *
Steven Whitehouse6802e342008-05-21 17:03:22 +01001005 * Eventually we should move the recursive locking trap to a
1006 * debugging option or something like that. This is the fast
1007 * path and needs to have the minimum number of distractions.
1008 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009 */
1010
Steven Whitehouse6802e342008-05-21 17:03:22 +01001011static inline void add_to_queue(struct gfs2_holder *gh)
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001012__releases(&gl->gl_lockref.lock)
1013__acquires(&gl->gl_lockref.lock)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014{
1015 struct gfs2_glock *gl = gh->gh_gl;
Bob Peterson15562c42015-03-16 11:52:05 -05001016 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001017 struct list_head *insert_pt = NULL;
1018 struct gfs2_holder *gh2;
Bob Petersone5dc76b2012-08-09 12:48:46 -05001019 int try_futile = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001020
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001021 BUG_ON(gh->gh_owner_pid == NULL);
Steven Whitehousefee852e2007-01-17 15:33:23 +00001022 if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
1023 BUG();
Steven Whitehouse190562b2006-04-20 16:57:23 -04001024
Steven Whitehouse6802e342008-05-21 17:03:22 +01001025 if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
1026 if (test_bit(GLF_LOCK, &gl->gl_flags))
Bob Petersone5dc76b2012-08-09 12:48:46 -05001027 try_futile = !may_grant(gl, gh);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001028 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
1029 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030 }
1031
Steven Whitehouse6802e342008-05-21 17:03:22 +01001032 list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
1033 if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
1034 (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
1035 goto trap_recursive;
Bob Petersone5dc76b2012-08-09 12:48:46 -05001036 if (try_futile &&
1037 !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001038fail:
1039 gh->gh_error = GLR_TRYFAILED;
1040 gfs2_holder_wake(gh);
1041 return;
1042 }
1043 if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
1044 continue;
1045 if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
1046 insert_pt = &gh2->gh_list;
1047 }
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001048 set_bit(GLF_QUEUED, &gl->gl_flags);
Steven Whitehouseedae38a2011-01-31 09:38:12 +00001049 trace_gfs2_glock_queue(gh, 1);
Steven Whitehousea2457692012-01-20 10:38:36 +00001050 gfs2_glstats_inc(gl, GFS2_LKS_QCOUNT);
1051 gfs2_sbstats_inc(gl, GFS2_LKS_QCOUNT);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001052 if (likely(insert_pt == NULL)) {
1053 list_add_tail(&gh->gh_list, &gl->gl_holders);
1054 if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
1055 goto do_cancel;
1056 return;
1057 }
1058 list_add_tail(&gh->gh_list, insert_pt);
1059do_cancel:
1060 gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
1061 if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001062 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse048bca22008-05-23 14:46:04 +01001063 if (sdp->sd_lockstruct.ls_ops->lm_cancel)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001064 sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001065 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001066 }
1067 return;
1068
1069trap_recursive:
Bob Petersone54c78a2018-10-03 08:47:36 -05001070 fs_err(sdp, "original: %pSR\n", (void *)gh2->gh_ip);
1071 fs_err(sdp, "pid: %d\n", pid_nr(gh2->gh_owner_pid));
1072 fs_err(sdp, "lock type: %d req lock state : %d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001073 gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
Bob Petersone54c78a2018-10-03 08:47:36 -05001074 fs_err(sdp, "new: %pSR\n", (void *)gh->gh_ip);
1075 fs_err(sdp, "pid: %d\n", pid_nr(gh->gh_owner_pid));
1076 fs_err(sdp, "lock type: %d req lock state : %d\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001077 gh->gh_gl->gl_name.ln_type, gh->gh_state);
Steven Whitehouse8eae1ca02012-10-15 10:57:02 +01001078 gfs2_dump_glock(NULL, gl);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001079 BUG();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080}
1081
1082/**
1083 * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
1084 * @gh: the holder structure
1085 *
1086 * if (gh->gh_flags & GL_ASYNC), this never returns an error
1087 *
1088 * Returns: 0, GLR_TRYFAILED, or errno on failure
1089 */
1090
1091int gfs2_glock_nq(struct gfs2_holder *gh)
1092{
1093 struct gfs2_glock *gl = gh->gh_gl;
Bob Peterson15562c42015-03-16 11:52:05 -05001094 struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001095 int error = 0;
1096
Steven Whitehouse6802e342008-05-21 17:03:22 +01001097 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001098 return -EIO;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001099
Steven Whitehousef42ab082011-04-14 16:50:31 +01001100 if (test_bit(GLF_LRU, &gl->gl_flags))
1101 gfs2_glock_remove_from_lru(gl);
1102
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001103 spin_lock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104 add_to_queue(gh);
Bob Peterson01b172b2014-03-12 10:32:20 -04001105 if (unlikely((LM_FLAG_NOEXP & gh->gh_flags) &&
1106 test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001107 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Bob Peterson01b172b2014-03-12 10:32:20 -04001108 gl->gl_lockref.count++;
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001109 __gfs2_glock_queue_work(gl, 0);
Bob Peterson01b172b2014-03-12 10:32:20 -04001110 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001111 run_queue(gl, 1);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001112 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113
Steven Whitehouse6802e342008-05-21 17:03:22 +01001114 if (!(gh->gh_flags & GL_ASYNC))
1115 error = gfs2_glock_wait(gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001116
David Teiglandb3b94fa2006-01-16 16:50:04 +00001117 return error;
1118}
1119
1120/**
1121 * gfs2_glock_poll - poll to see if an async request has been completed
1122 * @gh: the holder
1123 *
1124 * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
1125 */
1126
1127int gfs2_glock_poll(struct gfs2_holder *gh)
1128{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001129 return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001130}
1131
1132/**
1133 * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
1134 * @gh: the glock holder
1135 *
1136 */
1137
1138void gfs2_glock_dq(struct gfs2_holder *gh)
1139{
1140 struct gfs2_glock *gl = gh->gh_gl;
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001141 const struct gfs2_glock_operations *glops = gl->gl_ops;
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001142 unsigned delay = 0;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001143 int fast_path = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001144
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001145 spin_lock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001146 if (gh->gh_flags & GL_NOCACHE)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001147 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001148
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149 list_del_init(&gh->gh_list);
Bob Peterson7508abc2015-12-18 11:54:55 -06001150 clear_bit(HIF_HOLDER, &gh->gh_iflags);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001151 if (find_first_holder(gl) == NULL) {
Steven Whitehouse3042a2cc2007-11-02 08:39:34 +00001152 if (glops->go_unlock) {
Steven Whitehouse6802e342008-05-21 17:03:22 +01001153 GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001154 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001155 glops->go_unlock(gh);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001156 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001157 clear_bit(GLF_LOCK, &gl->gl_flags);
Steven Whitehouse3042a2cc2007-11-02 08:39:34 +00001158 }
Steven Whitehouse6802e342008-05-21 17:03:22 +01001159 if (list_empty(&gl->gl_holders) &&
1160 !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1161 !test_bit(GLF_DEMOTE, &gl->gl_flags))
1162 fast_path = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001163 }
Ross Lagerwall7881ef32019-03-27 17:09:17 +00001164 if (!test_bit(GLF_LFLUSH, &gl->gl_flags) && demote_ok(gl))
Bob Peterson4abb6ad92012-08-09 12:48:43 -05001165 gfs2_glock_add_to_lru(gl);
1166
Steven Whitehouse63997772009-06-12 08:49:20 +01001167 trace_gfs2_glock_queue(gh, 0);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001168 if (unlikely(!fast_path)) {
1169 gl->gl_lockref.count++;
1170 if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
1171 !test_bit(GLF_DEMOTE, &gl->gl_flags) &&
1172 gl->gl_name.ln_type == LM_TYPE_INODE)
1173 delay = gl->gl_hold_time;
1174 __gfs2_glock_queue_work(gl, delay);
1175 }
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001176 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177}
1178
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001179void gfs2_glock_dq_wait(struct gfs2_holder *gh)
1180{
1181 struct gfs2_glock *gl = gh->gh_gl;
1182 gfs2_glock_dq(gh);
Bob Peterson81e1d452012-08-09 12:48:45 -05001183 might_sleep();
NeilBrown74316202014-07-07 15:16:04 +10001184 wait_on_bit(&gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE);
Abhijith Dasd93cfa92007-06-11 08:22:32 +01001185}
1186
David Teiglandb3b94fa2006-01-16 16:50:04 +00001187/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001188 * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
1189 * @gh: the holder structure
1190 *
1191 */
1192
1193void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
1194{
1195 gfs2_glock_dq(gh);
1196 gfs2_holder_uninit(gh);
1197}
1198
1199/**
1200 * gfs2_glock_nq_num - acquire a glock based on lock number
1201 * @sdp: the filesystem
1202 * @number: the lock number
1203 * @glops: the glock operations for the type of glock
1204 * @state: the state to acquire the glock in
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001205 * @flags: modifier flags for the acquisition
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 * @gh: the struct gfs2_holder
1207 *
1208 * Returns: errno
1209 */
1210
Steven Whitehousecd915492006-09-04 12:49:07 -04001211int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
Steven Whitehouse8fb4b532006-08-30 09:30:00 -04001212 const struct gfs2_glock_operations *glops,
Bob Petersonb58bf402015-07-24 09:45:43 -05001213 unsigned int state, u16 flags, struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001214{
1215 struct gfs2_glock *gl;
1216 int error;
1217
1218 error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
1219 if (!error) {
1220 error = gfs2_glock_nq_init(gl, state, flags, gh);
1221 gfs2_glock_put(gl);
1222 }
1223
1224 return error;
1225}
1226
1227/**
1228 * glock_compare - Compare two struct gfs2_glock structures for sorting
1229 * @arg_a: the first structure
1230 * @arg_b: the second structure
1231 *
1232 */
1233
1234static int glock_compare(const void *arg_a, const void *arg_b)
1235{
Steven Whitehousea5e08a9e2006-09-09 17:07:05 -04001236 const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
1237 const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
1238 const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
1239 const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240
1241 if (a->ln_number > b->ln_number)
Steven Whitehousea5e08a9e2006-09-09 17:07:05 -04001242 return 1;
1243 if (a->ln_number < b->ln_number)
1244 return -1;
Steven Whitehouse1c0f4872007-01-22 12:10:39 -05001245 BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
Steven Whitehousea5e08a9e2006-09-09 17:07:05 -04001246 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001247}
1248
1249/**
1250 * nq_m_sync - synchonously acquire more than one glock in deadlock free order
1251 * @num_gh: the number of structures
1252 * @ghs: an array of struct gfs2_holder structures
1253 *
1254 * Returns: 0 on success (all glocks acquired),
1255 * errno on failure (no glocks acquired)
1256 */
1257
1258static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
1259 struct gfs2_holder **p)
1260{
1261 unsigned int x;
1262 int error = 0;
1263
1264 for (x = 0; x < num_gh; x++)
1265 p[x] = &ghs[x];
1266
1267 sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
1268
1269 for (x = 0; x < num_gh; x++) {
1270 p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1271
1272 error = gfs2_glock_nq(p[x]);
1273 if (error) {
1274 while (x--)
1275 gfs2_glock_dq(p[x]);
1276 break;
1277 }
1278 }
1279
1280 return error;
1281}
1282
1283/**
1284 * gfs2_glock_nq_m - acquire multiple glocks
1285 * @num_gh: the number of structures
1286 * @ghs: an array of struct gfs2_holder structures
1287 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288 *
1289 * Returns: 0 on success (all glocks acquired),
1290 * errno on failure (no glocks acquired)
1291 */
1292
1293int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1294{
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001295 struct gfs2_holder *tmp[4];
1296 struct gfs2_holder **pph = tmp;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001297 int error = 0;
1298
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001299 switch(num_gh) {
1300 case 0:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001301 return 0;
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001302 case 1:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001303 ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
1304 return gfs2_glock_nq(ghs);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001305 default:
1306 if (num_gh <= 4)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307 break;
Kees Cook6da2ec52018-06-12 13:55:00 -07001308 pph = kmalloc_array(num_gh, sizeof(struct gfs2_holder *),
1309 GFP_NOFS);
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001310 if (!pph)
1311 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001312 }
1313
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001314 error = nq_m_sync(num_gh, ghs, pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001315
Steven Whitehouseeaf5bd32007-06-19 15:38:17 +01001316 if (pph != tmp)
1317 kfree(pph);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001318
1319 return error;
1320}
1321
1322/**
1323 * gfs2_glock_dq_m - release multiple glocks
1324 * @num_gh: the number of structures
1325 * @ghs: an array of struct gfs2_holder structures
1326 *
1327 */
1328
1329void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
1330{
Bob Petersonfa1bbde2011-03-10 11:41:57 -05001331 while (num_gh--)
1332 gfs2_glock_dq(&ghs[num_gh]);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001333}
1334
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001335void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
Steven Whitehouseda755fd2008-01-30 15:34:04 +00001336{
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001337 unsigned long delay = 0;
1338 unsigned long holdtime;
1339 unsigned long now = jiffies;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001340
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001341 gfs2_glock_hold(gl);
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001342 holdtime = gl->gl_tchange + gl->gl_hold_time;
1343 if (test_bit(GLF_QUEUED, &gl->gl_flags) &&
1344 gl->gl_name.ln_type == LM_TYPE_INODE) {
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001345 if (time_before(now, holdtime))
1346 delay = holdtime - now;
1347 if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001348 delay = gl->gl_hold_time;
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001349 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001350
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001351 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001352 handle_callback(gl, state, delay, true);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001353 __gfs2_glock_queue_work(gl, delay);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001354 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001355}
1356
1357/**
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001358 * gfs2_should_freeze - Figure out if glock should be frozen
1359 * @gl: The glock in question
1360 *
1361 * Glocks are not frozen if (a) the result of the dlm operation is
1362 * an error, (b) the locking operation was an unlock operation or
1363 * (c) if there is a "noexp" flagged request anywhere in the queue
1364 *
1365 * Returns: 1 if freezing should occur, 0 otherwise
1366 */
1367
1368static int gfs2_should_freeze(const struct gfs2_glock *gl)
1369{
1370 const struct gfs2_holder *gh;
1371
1372 if (gl->gl_reply & ~LM_OUT_ST_MASK)
1373 return 0;
1374 if (gl->gl_target == LM_ST_UNLOCKED)
1375 return 0;
1376
1377 list_for_each_entry(gh, &gl->gl_holders, gh_list) {
1378 if (test_bit(HIF_HOLDER, &gh->gh_iflags))
1379 continue;
1380 if (LM_FLAG_NOEXP & gh->gh_flags)
1381 return 0;
1382 }
1383
1384 return 1;
1385}
1386
1387/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001388 * gfs2_glock_complete - Callback used by locking
1389 * @gl: Pointer to the glock
1390 * @ret: The return value from the dlm
David Teiglandb3b94fa2006-01-16 16:50:04 +00001391 *
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001392 * The gl_reply field is under the gl_lockref.lock lock so that it is ok
Steven Whitehouse47a25382010-11-30 15:49:31 +00001393 * to use a bitfield shared with other glock state fields.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001394 */
1395
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001396void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001397{
Bob Peterson15562c42015-03-16 11:52:05 -05001398 struct lm_lockstruct *ls = &gl->gl_name.ln_sbd->sd_lockstruct;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001399
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001400 spin_lock(&gl->gl_lockref.lock);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001401 gl->gl_reply = ret;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001402
David Teiglande0c2a9a2012-01-09 17:18:05 -05001403 if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_recover_flags))) {
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001404 if (gfs2_should_freeze(gl)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001405 set_bit(GLF_FROZEN, &gl->gl_flags);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001406 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001407 return;
Steven Whitehouse0809f6e2010-08-02 10:15:17 +01001408 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001409 }
Steven Whitehouse47a25382010-11-30 15:49:31 +00001410
Steven Whitehousee66cf162013-10-15 15:18:08 +01001411 gl->gl_lockref.count++;
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001412 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001413 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001414 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001415}
1416
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001417static int glock_cmp(void *priv, struct list_head *a, struct list_head *b)
1418{
1419 struct gfs2_glock *gla, *glb;
1420
1421 gla = list_entry(a, struct gfs2_glock, gl_lru);
1422 glb = list_entry(b, struct gfs2_glock, gl_lru);
1423
1424 if (gla->gl_name.ln_number > glb->gl_name.ln_number)
1425 return 1;
1426 if (gla->gl_name.ln_number < glb->gl_name.ln_number)
1427 return -1;
1428
1429 return 0;
1430}
1431
1432/**
1433 * gfs2_dispose_glock_lru - Demote a list of glocks
1434 * @list: The list to dispose of
1435 *
1436 * Disposing of glocks may involve disk accesses, so that here we sort
1437 * the glocks by number (i.e. disk location of the inodes) so that if
1438 * there are any such accesses, they'll be sent in order (mostly).
1439 *
1440 * Must be called under the lru_lock, but may drop and retake this
1441 * lock. While the lru_lock is dropped, entries may vanish from the
1442 * list, but no new entries will appear on the list (since it is
1443 * private)
1444 */
1445
1446static void gfs2_dispose_glock_lru(struct list_head *list)
1447__releases(&lru_lock)
1448__acquires(&lru_lock)
1449{
1450 struct gfs2_glock *gl;
1451
1452 list_sort(NULL, list, glock_cmp);
1453
1454 while(!list_empty(list)) {
1455 gl = list_entry(list->next, struct gfs2_glock, gl_lru);
1456 list_del_init(&gl->gl_lru);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001457 if (!spin_trylock(&gl->gl_lockref.lock)) {
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001458add_back_to_lru:
Steven Whitehousee66cf162013-10-15 15:18:08 +01001459 list_add(&gl->gl_lru, &lru_list);
Ross Lagerwall7881ef32019-03-27 17:09:17 +00001460 set_bit(GLF_LRU, &gl->gl_flags);
Steven Whitehousee66cf162013-10-15 15:18:08 +01001461 atomic_inc(&lru_count);
1462 continue;
1463 }
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001464 if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001465 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001466 goto add_back_to_lru;
1467 }
Steven Whitehousee66cf162013-10-15 15:18:08 +01001468 gl->gl_lockref.count++;
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001469 if (demote_ok(gl))
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001470 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001471 WARN_ON(!test_and_clear_bit(GLF_LOCK, &gl->gl_flags));
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001472 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001473 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001474 cond_resched_lock(&lru_lock);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001475 }
1476}
1477
Steven Whitehouse2a005852012-12-14 12:28:30 +00001478/**
1479 * gfs2_scan_glock_lru - Scan the LRU looking for locks to demote
1480 * @nr: The number of entries to scan
1481 *
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001482 * This function selects the entries on the LRU which are able to
1483 * be demoted, and then kicks off the process by calling
1484 * gfs2_dispose_glock_lru() above.
Steven Whitehouse2a005852012-12-14 12:28:30 +00001485 */
David Teiglandb3b94fa2006-01-16 16:50:04 +00001486
Dave Chinner1ab6c492013-08-28 10:18:09 +10001487static long gfs2_scan_glock_lru(int nr)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001488{
1489 struct gfs2_glock *gl;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001490 LIST_HEAD(skipped);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001491 LIST_HEAD(dispose);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001492 long freed = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001493
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001494 spin_lock(&lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001495 while ((nr-- >= 0) && !list_empty(&lru_list)) {
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001496 gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001497
1498 /* Test for being demotable */
Steven Whitehouse94a09a32014-06-23 14:43:32 +01001499 if (!test_bit(GLF_LOCK, &gl->gl_flags)) {
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001500 list_move(&gl->gl_lru, &dispose);
1501 atomic_dec(&lru_count);
Ross Lagerwall7881ef32019-03-27 17:09:17 +00001502 clear_bit(GLF_LRU, &gl->gl_flags);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001503 freed++;
Steven Whitehouse2163b1e2009-06-25 16:30:26 +01001504 continue;
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001505 }
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001506
1507 list_move(&gl->gl_lru, &skipped);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001508 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001509 list_splice(&skipped, &lru_list);
Steven Whitehouse4506a5192013-02-01 20:36:03 +00001510 if (!list_empty(&dispose))
1511 gfs2_dispose_glock_lru(&dispose);
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001512 spin_unlock(&lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +10001513
1514 return freed;
Steven Whitehouse2a005852012-12-14 12:28:30 +00001515}
1516
Dave Chinner1ab6c492013-08-28 10:18:09 +10001517static unsigned long gfs2_glock_shrink_scan(struct shrinker *shrink,
1518 struct shrink_control *sc)
Steven Whitehouse2a005852012-12-14 12:28:30 +00001519{
Dave Chinner1ab6c492013-08-28 10:18:09 +10001520 if (!(sc->gfp_mask & __GFP_FS))
1521 return SHRINK_STOP;
1522 return gfs2_scan_glock_lru(sc->nr_to_scan);
1523}
Steven Whitehouse2a005852012-12-14 12:28:30 +00001524
Dave Chinner1ab6c492013-08-28 10:18:09 +10001525static unsigned long gfs2_glock_shrink_count(struct shrinker *shrink,
1526 struct shrink_control *sc)
1527{
Glauber Costa55f841c2013-08-28 10:17:53 +10001528 return vfs_pressure_ratio(atomic_read(&lru_count));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001529}
1530
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001531static struct shrinker glock_shrinker = {
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001532 .seeks = DEFAULT_SEEKS,
Dave Chinner1ab6c492013-08-28 10:18:09 +10001533 .count_objects = gfs2_glock_shrink_count,
1534 .scan_objects = gfs2_glock_shrink_scan,
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001535};
1536
David Teiglandb3b94fa2006-01-16 16:50:04 +00001537/**
1538 * examine_bucket - Call a function for glock in a hash bucket
1539 * @examiner: the function
1540 * @sdp: the filesystem
1541 * @bucket: the bucket
1542 *
Herbert Xu98687f42017-02-11 19:26:45 +08001543 * Note that the function can be called multiple times on the same
1544 * object. So the user must ensure that the function can cope with
1545 * that.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001546 */
1547
Bob Peterson88ffbf32015-03-16 11:02:46 -05001548static void glock_hash_walk(glock_examiner examiner, const struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001549{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001550 struct gfs2_glock *gl;
Herbert Xu98687f42017-02-11 19:26:45 +08001551 struct rhashtable_iter iter;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001552
Herbert Xu98687f42017-02-11 19:26:45 +08001553 rhashtable_walk_enter(&gl_hash_table, &iter);
1554
1555 do {
Tom Herbert97a6ec42017-12-04 10:31:41 -08001556 rhashtable_walk_start(&iter);
Herbert Xu98687f42017-02-11 19:26:45 +08001557
1558 while ((gl = rhashtable_walk_next(&iter)) && !IS_ERR(gl))
Bob Peterson27c3b412017-08-18 09:15:13 -05001559 if (gl->gl_name.ln_sbd == sdp &&
Bob Peterson88ffbf32015-03-16 11:02:46 -05001560 lockref_get_not_dead(&gl->gl_lockref))
1561 examiner(gl);
Herbert Xu98687f42017-02-11 19:26:45 +08001562
1563 rhashtable_walk_stop(&iter);
1564 } while (cond_resched(), gl == ERR_PTR(-EAGAIN));
1565
1566 rhashtable_walk_exit(&iter);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001567}
1568
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001569/**
1570 * thaw_glock - thaw out a glock which has an unprocessed reply waiting
1571 * @gl: The glock to thaw
1572 *
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001573 */
1574
1575static void thaw_glock(struct gfs2_glock *gl)
1576{
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001577 if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags)) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001578 gfs2_glock_put(gl);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001579 return;
Steven Whitehouse7286b312013-08-20 09:35:09 +01001580 }
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001581 set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
1582 gfs2_glock_queue_work(gl, 0);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001583}
1584
David Teiglandb3b94fa2006-01-16 16:50:04 +00001585/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001586 * clear_glock - look at a glock and see if we can free it from glock cache
1587 * @gl: the glock to look at
1588 *
1589 */
1590
1591static void clear_glock(struct gfs2_glock *gl)
1592{
Steven Whitehousef42ab082011-04-14 16:50:31 +01001593 gfs2_glock_remove_from_lru(gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001594
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001595 spin_lock(&gl->gl_lockref.lock);
Steven Whitehousec741c452010-09-29 14:20:52 +01001596 if (gl->gl_state != LM_ST_UNLOCKED)
Steven Whitehouse81ffbf62013-04-10 10:26:55 +01001597 handle_callback(gl, LM_ST_UNLOCKED, 0, false);
Andreas Gruenbacher6b0c7442017-06-30 08:10:01 -05001598 __gfs2_glock_queue_work(gl, 0);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001599 spin_unlock(&gl->gl_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001600}
1601
1602/**
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001603 * gfs2_glock_thaw - Thaw any frozen glocks
1604 * @sdp: The super block
1605 *
1606 */
1607
1608void gfs2_glock_thaw(struct gfs2_sbd *sdp)
1609{
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001610 glock_hash_walk(thaw_glock, sdp);
1611}
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001612
Steven Whitehouseac3beb62014-01-16 10:31:13 +00001613static void dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001614{
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001615 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouseac3beb62014-01-16 10:31:13 +00001616 gfs2_dump_glock(seq, gl);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001617 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001618}
1619
1620static void dump_glock_func(struct gfs2_glock *gl)
1621{
1622 dump_glock(NULL, gl);
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001623}
1624
1625/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001626 * gfs2_gl_hash_clear - Empty out the glock hash table
1627 * @sdp: the filesystem
1628 * @wait: wait until it's all gone
1629 *
Steven Whitehouse1bdad602008-06-03 14:09:53 +01001630 * Called when unmounting the filesystem.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001631 */
1632
Steven Whitehousefefc03b2008-12-19 15:32:06 +00001633void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001634{
David Teiglandfb6791d2012-11-13 10:58:56 -05001635 set_bit(SDF_SKIP_DLM_UNLOCK, &sdp->sd_flags);
Bob Peterson222cb532013-04-25 12:49:17 -04001636 flush_workqueue(glock_workqueue);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001637 glock_hash_walk(clear_glock, sdp);
Steven Whitehouse8f052282010-01-29 15:21:27 +00001638 flush_workqueue(glock_workqueue);
Bob Peterson2aba1b52015-05-19 09:11:23 -05001639 wait_event_timeout(sdp->sd_glock_wait,
1640 atomic_read(&sdp->sd_glock_disposal) == 0,
1641 HZ * 600);
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001642 glock_hash_walk(dump_glock_func, sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001643}
1644
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001645void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
1646{
1647 struct gfs2_glock *gl = ip->i_gl;
1648 int ret;
1649
1650 ret = gfs2_truncatei_resume(ip);
Bob Peterson15562c42015-03-16 11:52:05 -05001651 gfs2_assert_withdraw(gl->gl_name.ln_sbd, ret == 0);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001652
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001653 spin_lock(&gl->gl_lockref.lock);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001654 clear_bit(GLF_LOCK, &gl->gl_flags);
1655 run_queue(gl, 1);
Andreas Gruenbacherf3dd1642015-10-29 10:58:09 -05001656 spin_unlock(&gl->gl_lockref.lock);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001657}
1658
Steven Whitehouse6802e342008-05-21 17:03:22 +01001659static const char *state2str(unsigned state)
Robert Peterson04b933f2007-03-23 17:05:15 -05001660{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001661 switch(state) {
1662 case LM_ST_UNLOCKED:
1663 return "UN";
1664 case LM_ST_SHARED:
1665 return "SH";
1666 case LM_ST_DEFERRED:
1667 return "DF";
1668 case LM_ST_EXCLUSIVE:
1669 return "EX";
1670 }
1671 return "??";
1672}
Robert Peterson04b933f2007-03-23 17:05:15 -05001673
Bob Petersonb58bf402015-07-24 09:45:43 -05001674static const char *hflags2str(char *buf, u16 flags, unsigned long iflags)
Steven Whitehouse6802e342008-05-21 17:03:22 +01001675{
1676 char *p = buf;
1677 if (flags & LM_FLAG_TRY)
1678 *p++ = 't';
1679 if (flags & LM_FLAG_TRY_1CB)
1680 *p++ = 'T';
1681 if (flags & LM_FLAG_NOEXP)
1682 *p++ = 'e';
1683 if (flags & LM_FLAG_ANY)
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001684 *p++ = 'A';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001685 if (flags & LM_FLAG_PRIORITY)
1686 *p++ = 'p';
1687 if (flags & GL_ASYNC)
1688 *p++ = 'a';
1689 if (flags & GL_EXACT)
1690 *p++ = 'E';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001691 if (flags & GL_NOCACHE)
1692 *p++ = 'c';
1693 if (test_bit(HIF_HOLDER, &iflags))
1694 *p++ = 'H';
1695 if (test_bit(HIF_WAIT, &iflags))
1696 *p++ = 'W';
1697 if (test_bit(HIF_FIRST, &iflags))
1698 *p++ = 'F';
1699 *p = 0;
1700 return buf;
Robert Peterson04b933f2007-03-23 17:05:15 -05001701}
1702
David Teiglandb3b94fa2006-01-16 16:50:04 +00001703/**
1704 * dump_holder - print information about a glock holder
Steven Whitehouse6802e342008-05-21 17:03:22 +01001705 * @seq: the seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001706 * @gh: the glock holder
1707 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001708 */
1709
Steven Whitehouseac3beb62014-01-16 10:31:13 +00001710static void dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001711{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001712 struct task_struct *gh_owner = NULL;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001713 char flags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001714
Tetsuo Handa0b3a2c92014-01-02 19:52:20 +09001715 rcu_read_lock();
Steven Whitehouse6802e342008-05-21 17:03:22 +01001716 if (gh->gh_owner_pid)
Pavel Emelyanovb1e058d2008-02-07 00:13:19 -08001717 gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
Joe Perchescc181522010-11-05 16:12:36 -07001718 gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %pS\n",
1719 state2str(gh->gh_state),
1720 hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
1721 gh->gh_error,
1722 gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
1723 gh_owner ? gh_owner->comm : "(ended)",
1724 (void *)gh->gh_ip);
Tetsuo Handa0b3a2c92014-01-02 19:52:20 +09001725 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001726}
1727
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001728static const char *gflags2str(char *buf, const struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001729{
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001730 const unsigned long *gflags = &gl->gl_flags;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001731 char *p = buf;
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001732
Steven Whitehouse6802e342008-05-21 17:03:22 +01001733 if (test_bit(GLF_LOCK, gflags))
1734 *p++ = 'l';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001735 if (test_bit(GLF_DEMOTE, gflags))
1736 *p++ = 'D';
1737 if (test_bit(GLF_PENDING_DEMOTE, gflags))
1738 *p++ = 'd';
1739 if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
1740 *p++ = 'p';
1741 if (test_bit(GLF_DIRTY, gflags))
1742 *p++ = 'y';
1743 if (test_bit(GLF_LFLUSH, gflags))
1744 *p++ = 'f';
1745 if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
1746 *p++ = 'i';
1747 if (test_bit(GLF_REPLY_PENDING, gflags))
1748 *p++ = 'r';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001749 if (test_bit(GLF_INITIAL, gflags))
Steven Whitehoused8348de2009-02-05 10:12:38 +00001750 *p++ = 'I';
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001751 if (test_bit(GLF_FROZEN, gflags))
1752 *p++ = 'F';
Steven Whitehouse7b5e3d52010-09-03 09:39:20 +01001753 if (test_bit(GLF_QUEUED, gflags))
1754 *p++ = 'q';
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001755 if (test_bit(GLF_LRU, gflags))
1756 *p++ = 'L';
1757 if (gl->gl_object)
1758 *p++ = 'o';
Steven Whitehousea2457692012-01-20 10:38:36 +00001759 if (test_bit(GLF_BLOCKING, gflags))
1760 *p++ = 'b';
Steven Whitehouse6802e342008-05-21 17:03:22 +01001761 *p = 0;
1762 return buf;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001763}
1764
1765/**
Steven Whitehouse8eae1ca02012-10-15 10:57:02 +01001766 * gfs2_dump_glock - print information about a glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001767 * @seq: The seq_file struct
David Teiglandb3b94fa2006-01-16 16:50:04 +00001768 * @gl: the glock
Steven Whitehouse6802e342008-05-21 17:03:22 +01001769 *
1770 * The file format is as follows:
1771 * One line per object, capital letters are used to indicate objects
1772 * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
1773 * other objects are indented by a single space and follow the glock to
1774 * which they are related. Fields are indicated by lower case letters
1775 * followed by a colon and the field value, except for strings which are in
1776 * [] so that its possible to see if they are composed of spaces for
1777 * example. The field's are n = number (id of the object), f = flags,
1778 * t = type, s = state, r = refcount, e = error, p = pid.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001779 *
David Teiglandb3b94fa2006-01-16 16:50:04 +00001780 */
1781
Bob Peterson27a2660f2018-04-18 12:05:01 -07001782void gfs2_dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001783{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001784 const struct gfs2_glock_operations *glops = gl->gl_ops;
1785 unsigned long long dtime;
1786 const struct gfs2_holder *gh;
1787 char gflags_buf[32];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001788
Steven Whitehouse6802e342008-05-21 17:03:22 +01001789 dtime = jiffies - gl->gl_demote_time;
1790 dtime *= 1000000/HZ; /* demote time in uSec */
1791 if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
1792 dtime = 0;
Bob Peterson7cf8dcd2011-06-15 11:41:48 -04001793 gfs2_print_dbg(seq, "G: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d v:%d r:%d m:%ld\n",
Steven Whitehouse6802e342008-05-21 17:03:22 +01001794 state2str(gl->gl_state),
1795 gl->gl_name.ln_type,
1796 (unsigned long long)gl->gl_name.ln_number,
Steven Whitehouse627c10b2011-04-14 14:09:52 +01001797 gflags2str(gflags_buf, gl),
Steven Whitehouse6802e342008-05-21 17:03:22 +01001798 state2str(gl->gl_target),
1799 state2str(gl->gl_demote_state), dtime,
Steven Whitehouse6802e342008-05-21 17:03:22 +01001800 atomic_read(&gl->gl_ail_count),
Bob Peterson73118ca2019-04-05 04:41:38 +01001801 test_bit(GLF_REVOKES, &gl->gl_flags) ? 1 : 0,
Steven Whitehousee66cf162013-10-15 15:18:08 +01001802 (int)gl->gl_lockref.count, gl->gl_hold_time);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001803
Steven Whitehouseac3beb62014-01-16 10:31:13 +00001804 list_for_each_entry(gh, &gl->gl_holders, gh_list)
1805 dump_holder(seq, gh);
1806
Steven Whitehouse6802e342008-05-21 17:03:22 +01001807 if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
Steven Whitehouseac3beb62014-01-16 10:31:13 +00001808 glops->go_dump(seq, gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001809}
1810
Steven Whitehousea2457692012-01-20 10:38:36 +00001811static int gfs2_glstats_seq_show(struct seq_file *seq, void *iter_ptr)
1812{
1813 struct gfs2_glock *gl = iter_ptr;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001814
Ben Hutchings4d207132015-08-27 12:51:45 -05001815 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 +00001816 gl->gl_name.ln_type,
1817 (unsigned long long)gl->gl_name.ln_number,
Ben Hutchings4d207132015-08-27 12:51:45 -05001818 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTT],
1819 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVAR],
1820 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTB],
1821 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SRTTVARB],
1822 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRT],
1823 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_SIRTVAR],
1824 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_DCOUNT],
1825 (unsigned long long)gl->gl_stats.stats[GFS2_LKS_QCOUNT]);
Steven Whitehousea2457692012-01-20 10:38:36 +00001826 return 0;
1827}
David Teiglandb3b94fa2006-01-16 16:50:04 +00001828
Steven Whitehousea2457692012-01-20 10:38:36 +00001829static const char *gfs2_gltype[] = {
1830 "type",
1831 "reserved",
1832 "nondisk",
1833 "inode",
1834 "rgrp",
1835 "meta",
1836 "iopen",
1837 "flock",
1838 "plock",
1839 "quota",
1840 "journal",
1841};
1842
1843static const char *gfs2_stype[] = {
1844 [GFS2_LKS_SRTT] = "srtt",
1845 [GFS2_LKS_SRTTVAR] = "srttvar",
1846 [GFS2_LKS_SRTTB] = "srttb",
1847 [GFS2_LKS_SRTTVARB] = "srttvarb",
1848 [GFS2_LKS_SIRT] = "sirt",
1849 [GFS2_LKS_SIRTVAR] = "sirtvar",
1850 [GFS2_LKS_DCOUNT] = "dlm",
1851 [GFS2_LKS_QCOUNT] = "queue",
1852};
1853
1854#define GFS2_NR_SBSTATS (ARRAY_SIZE(gfs2_gltype) * ARRAY_SIZE(gfs2_stype))
1855
1856static int gfs2_sbstats_seq_show(struct seq_file *seq, void *iter_ptr)
1857{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05001858 struct gfs2_sbd *sdp = seq->private;
1859 loff_t pos = *(loff_t *)iter_ptr;
1860 unsigned index = pos >> 3;
1861 unsigned subindex = pos & 0x07;
Steven Whitehousea2457692012-01-20 10:38:36 +00001862 int i;
1863
1864 if (index == 0 && subindex != 0)
1865 return 0;
1866
1867 seq_printf(seq, "%-10s %8s:", gfs2_gltype[index],
1868 (index == 0) ? "cpu": gfs2_stype[subindex]);
1869
1870 for_each_possible_cpu(i) {
1871 const struct gfs2_pcpu_lkstats *lkstats = per_cpu_ptr(sdp->sd_lkstats, i);
Andreas Gruenbacher8f7e0a82015-08-27 13:02:54 -05001872
1873 if (index == 0)
1874 seq_printf(seq, " %15u", i);
1875 else
1876 seq_printf(seq, " %15llu", (unsigned long long)lkstats->
1877 lkstats[index - 1].stats[subindex]);
Steven Whitehousea2457692012-01-20 10:38:36 +00001878 }
1879 seq_putc(seq, '\n');
1880 return 0;
1881}
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001882
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001883int __init gfs2_glock_init(void)
1884{
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001885 int i, ret;
Bob Peterson88ffbf32015-03-16 11:02:46 -05001886
1887 ret = rhashtable_init(&gl_hash_table, &ht_parms);
1888 if (ret < 0)
1889 return ret;
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001890
Steven Whitehoused2115772010-11-03 19:58:53 +00001891 glock_workqueue = alloc_workqueue("glock_workqueue", WQ_MEM_RECLAIM |
Tejun Heo58a69cb2011-02-16 09:25:31 +01001892 WQ_HIGHPRI | WQ_FREEZABLE, 0);
Bob Peterson88ffbf32015-03-16 11:02:46 -05001893 if (!glock_workqueue) {
1894 rhashtable_destroy(&gl_hash_table);
Dan Carpenterdfc46162013-08-15 10:54:43 +03001895 return -ENOMEM;
Bob Peterson88ffbf32015-03-16 11:02:46 -05001896 }
Steven Whitehoused2115772010-11-03 19:58:53 +00001897 gfs2_delete_workqueue = alloc_workqueue("delete_workqueue",
Tejun Heo58a69cb2011-02-16 09:25:31 +01001898 WQ_MEM_RECLAIM | WQ_FREEZABLE,
Steven Whitehoused2115772010-11-03 19:58:53 +00001899 0);
Dan Carpenterdfc46162013-08-15 10:54:43 +03001900 if (!gfs2_delete_workqueue) {
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001901 destroy_workqueue(glock_workqueue);
Bob Peterson88ffbf32015-03-16 11:02:46 -05001902 rhashtable_destroy(&gl_hash_table);
Dan Carpenterdfc46162013-08-15 10:54:43 +03001903 return -ENOMEM;
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001904 }
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001905
Chao Yue0d735c2016-09-21 12:09:40 -05001906 ret = register_shrinker(&glock_shrinker);
1907 if (ret) {
1908 destroy_workqueue(gfs2_delete_workqueue);
1909 destroy_workqueue(glock_workqueue);
1910 rhashtable_destroy(&gl_hash_table);
1911 return ret;
1912 }
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001913
Andreas Gruenbacher05154802017-08-01 11:18:26 -05001914 for (i = 0; i < GLOCK_WAIT_TABLE_SIZE; i++)
1915 init_waitqueue_head(glock_wait_table + i);
1916
Steven Whitehouse85d1da62006-09-07 14:40:21 -04001917 return 0;
1918}
1919
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001920void gfs2_glock_exit(void)
1921{
Steven Whitehouse97cc10252008-11-20 13:39:47 +00001922 unregister_shrinker(&glock_shrinker);
Bob Peterson88ffbf32015-03-16 11:02:46 -05001923 rhashtable_destroy(&gl_hash_table);
Benjamin Marzinskic4f68a12007-08-23 13:19:05 -05001924 destroy_workqueue(glock_workqueue);
Benjamin Marzinskib94a1702009-07-23 18:52:34 -05001925 destroy_workqueue(gfs2_delete_workqueue);
Steven Whitehouse8fbbfd22007-08-01 13:57:10 +01001926}
1927
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001928static void gfs2_glock_iter_next(struct gfs2_glock_iter *gi, loff_t n)
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001929{
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02001930 struct gfs2_glock *gl = gi->gl;
1931
1932 if (gl) {
1933 if (n == 0)
1934 return;
1935 if (!lockref_put_not_zero(&gl->gl_lockref))
1936 gfs2_glock_queue_put(gl);
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001937 }
1938 for (;;) {
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02001939 gl = rhashtable_walk_next(&gi->hti);
1940 if (IS_ERR_OR_NULL(gl)) {
1941 if (gl == ERR_PTR(-EAGAIN)) {
1942 n = 1;
1943 continue;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001944 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02001945 gl = NULL;
1946 break;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00001947 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02001948 if (gl->gl_name.ln_sbd != gi->sdp)
1949 continue;
1950 if (n <= 1) {
1951 if (!lockref_get_not_dead(&gl->gl_lockref))
1952 continue;
1953 break;
1954 } else {
1955 if (__lockref_is_dead(&gl->gl_lockref))
1956 continue;
1957 n--;
1958 }
Dan Carpenter14d37562016-12-14 08:02:03 -06001959 }
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02001960 gi->gl = gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001961}
1962
Steven Whitehouse6802e342008-05-21 17:03:22 +01001963static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
Bob Peterson27c3b412017-08-18 09:15:13 -05001964 __acquires(RCU)
Robert Peterson7c52b162007-03-16 10:26:37 +00001965{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001966 struct gfs2_glock_iter *gi = seq->private;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001967 loff_t n;
Robert Peterson7c52b162007-03-16 10:26:37 +00001968
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001969 /*
1970 * We can either stay where we are, skip to the next hash table
1971 * entry, or start from the beginning.
1972 */
1973 if (*pos < gi->last_pos) {
1974 rhashtable_walk_exit(&gi->hti);
1975 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
1976 n = *pos + 1;
1977 } else {
1978 n = *pos - gi->last_pos;
1979 }
Robert Peterson7c52b162007-03-16 10:26:37 +00001980
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001981 rhashtable_walk_start(&gi->hti);
Robert Peterson7c52b162007-03-16 10:26:37 +00001982
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001983 gfs2_glock_iter_next(gi, n);
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001984 gi->last_pos = *pos;
Steven Whitehouse6802e342008-05-21 17:03:22 +01001985 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001986}
1987
Steven Whitehouse6802e342008-05-21 17:03:22 +01001988static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
Robert Peterson7c52b162007-03-16 10:26:37 +00001989 loff_t *pos)
1990{
Steven Whitehouse6802e342008-05-21 17:03:22 +01001991 struct gfs2_glock_iter *gi = seq->private;
Robert Peterson7c52b162007-03-16 10:26:37 +00001992
1993 (*pos)++;
Steven Whitehouseba1ddcb2012-06-08 11:16:22 +01001994 gi->last_pos = *pos;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01001995 gfs2_glock_iter_next(gi, 1);
Steven Whitehouse6802e342008-05-21 17:03:22 +01001996 return gi->gl;
Robert Peterson7c52b162007-03-16 10:26:37 +00001997}
1998
Steven Whitehouse6802e342008-05-21 17:03:22 +01001999static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
Bob Peterson27c3b412017-08-18 09:15:13 -05002000 __releases(RCU)
Robert Peterson7c52b162007-03-16 10:26:37 +00002001{
Steven Whitehouse6802e342008-05-21 17:03:22 +01002002 struct gfs2_glock_iter *gi = seq->private;
Steven Whitehousebc015cb2011-01-19 09:30:01 +00002003
Bob Peterson88ffbf32015-03-16 11:02:46 -05002004 rhashtable_walk_stop(&gi->hti);
Robert Peterson7c52b162007-03-16 10:26:37 +00002005}
2006
Steven Whitehouse6802e342008-05-21 17:03:22 +01002007static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
Robert Peterson7c52b162007-03-16 10:26:37 +00002008{
Steven Whitehouseac3beb62014-01-16 10:31:13 +00002009 dump_glock(seq, iter_ptr);
2010 return 0;
Robert Peterson7c52b162007-03-16 10:26:37 +00002011}
2012
Steven Whitehousea2457692012-01-20 10:38:36 +00002013static void *gfs2_sbstats_seq_start(struct seq_file *seq, loff_t *pos)
2014{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002015 preempt_disable();
Steven Whitehousea2457692012-01-20 10:38:36 +00002016 if (*pos >= GFS2_NR_SBSTATS)
2017 return NULL;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002018 return pos;
Steven Whitehousea2457692012-01-20 10:38:36 +00002019}
2020
2021static void *gfs2_sbstats_seq_next(struct seq_file *seq, void *iter_ptr,
2022 loff_t *pos)
2023{
Steven Whitehousea2457692012-01-20 10:38:36 +00002024 (*pos)++;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002025 if (*pos >= GFS2_NR_SBSTATS)
Steven Whitehousea2457692012-01-20 10:38:36 +00002026 return NULL;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002027 return pos;
Steven Whitehousea2457692012-01-20 10:38:36 +00002028}
2029
2030static void gfs2_sbstats_seq_stop(struct seq_file *seq, void *iter_ptr)
2031{
2032 preempt_enable();
2033}
2034
Denis Cheng4ef29002007-07-31 18:31:11 +08002035static const struct seq_operations gfs2_glock_seq_ops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002036 .start = gfs2_glock_seq_start,
2037 .next = gfs2_glock_seq_next,
2038 .stop = gfs2_glock_seq_stop,
2039 .show = gfs2_glock_seq_show,
2040};
2041
Steven Whitehousea2457692012-01-20 10:38:36 +00002042static const struct seq_operations gfs2_glstats_seq_ops = {
2043 .start = gfs2_glock_seq_start,
2044 .next = gfs2_glock_seq_next,
2045 .stop = gfs2_glock_seq_stop,
2046 .show = gfs2_glstats_seq_show,
2047};
2048
2049static const struct seq_operations gfs2_sbstats_seq_ops = {
2050 .start = gfs2_sbstats_seq_start,
2051 .next = gfs2_sbstats_seq_next,
2052 .stop = gfs2_sbstats_seq_stop,
2053 .show = gfs2_sbstats_seq_show,
2054};
2055
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002056#define GFS2_SEQ_GOODSIZE min(PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER, 65536UL)
2057
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002058static int __gfs2_glocks_open(struct inode *inode, struct file *file,
2059 const struct seq_operations *ops)
Robert Peterson7c52b162007-03-16 10:26:37 +00002060{
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002061 int ret = seq_open_private(file, ops, sizeof(struct gfs2_glock_iter));
Steven Whitehouse6802e342008-05-21 17:03:22 +01002062 if (ret == 0) {
2063 struct seq_file *seq = file->private_data;
2064 struct gfs2_glock_iter *gi = seq->private;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002065
Steven Whitehouse6802e342008-05-21 17:03:22 +01002066 gi->sdp = inode->i_private;
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002067 seq->buf = kmalloc(GFS2_SEQ_GOODSIZE, GFP_KERNEL | __GFP_NOWARN);
Steven Whitehousedf5d2f52012-06-07 13:30:16 +01002068 if (seq->buf)
Steven Whitehouse0fe2f1e2012-06-11 13:49:47 +01002069 seq->size = GFS2_SEQ_GOODSIZE;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002070 /*
2071 * Initially, we are "before" the first hash table entry; the
2072 * first call to rhashtable_walk_next gets us the first entry.
2073 */
2074 gi->last_pos = -1;
Bob Peterson88ffbf32015-03-16 11:02:46 -05002075 gi->gl = NULL;
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002076 rhashtable_walk_enter(&gl_hash_table, &gi->hti);
Steven Whitehouse6802e342008-05-21 17:03:22 +01002077 }
2078 return ret;
Robert Peterson7c52b162007-03-16 10:26:37 +00002079}
2080
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002081static int gfs2_glocks_open(struct inode *inode, struct file *file)
2082{
2083 return __gfs2_glocks_open(inode, file, &gfs2_glock_seq_ops);
2084}
2085
Bob Peterson88ffbf32015-03-16 11:02:46 -05002086static int gfs2_glocks_release(struct inode *inode, struct file *file)
2087{
2088 struct seq_file *seq = file->private_data;
2089 struct gfs2_glock_iter *gi = seq->private;
2090
Andreas Gruenbacher3fd5d3a2018-03-28 12:05:35 +02002091 if (gi->gl)
2092 gfs2_glock_put(gi->gl);
Andreas Gruenbacher7ac07fd2018-01-08 22:35:43 +01002093 rhashtable_walk_exit(&gi->hti);
Bob Peterson88ffbf32015-03-16 11:02:46 -05002094 return seq_release_private(inode, file);
2095}
2096
Steven Whitehousea2457692012-01-20 10:38:36 +00002097static int gfs2_glstats_open(struct inode *inode, struct file *file)
2098{
Andreas Gruenbacher92ecd732017-03-09 09:48:05 -05002099 return __gfs2_glocks_open(inode, file, &gfs2_glstats_seq_ops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002100}
2101
2102static int gfs2_sbstats_open(struct inode *inode, struct file *file)
2103{
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002104 int ret = seq_open(file, &gfs2_sbstats_seq_ops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002105 if (ret == 0) {
2106 struct seq_file *seq = file->private_data;
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002107 seq->private = inode->i_private; /* sdp */
Steven Whitehousea2457692012-01-20 10:38:36 +00002108 }
2109 return ret;
2110}
2111
2112static const struct file_operations gfs2_glocks_fops = {
Robert Peterson7c52b162007-03-16 10:26:37 +00002113 .owner = THIS_MODULE,
Steven Whitehousea2457692012-01-20 10:38:36 +00002114 .open = gfs2_glocks_open,
2115 .read = seq_read,
2116 .llseek = seq_lseek,
Bob Peterson88ffbf32015-03-16 11:02:46 -05002117 .release = gfs2_glocks_release,
Steven Whitehousea2457692012-01-20 10:38:36 +00002118};
2119
2120static const struct file_operations gfs2_glstats_fops = {
2121 .owner = THIS_MODULE,
2122 .open = gfs2_glstats_open,
2123 .read = seq_read,
2124 .llseek = seq_lseek,
Bob Peterson88ffbf32015-03-16 11:02:46 -05002125 .release = gfs2_glocks_release,
Steven Whitehousea2457692012-01-20 10:38:36 +00002126};
2127
2128static const struct file_operations gfs2_sbstats_fops = {
2129 .owner = THIS_MODULE,
2130 .open = gfs2_sbstats_open,
Robert Peterson7c52b162007-03-16 10:26:37 +00002131 .read = seq_read,
2132 .llseek = seq_lseek,
Andreas Gruenbacher81648d02015-08-27 11:43:00 -05002133 .release = seq_release,
Robert Peterson7c52b162007-03-16 10:26:37 +00002134};
2135
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002136void gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
Robert Peterson7c52b162007-03-16 10:26:37 +00002137{
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002138 sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
Steven Whitehousea2457692012-01-20 10:38:36 +00002139
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002140 debugfs_create_file("glocks", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2141 &gfs2_glocks_fops);
Steven Whitehousea2457692012-01-20 10:38:36 +00002142
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002143 debugfs_create_file("glstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2144 &gfs2_glstats_fops);
Chengyu Song7b4ddfa2015-03-24 09:37:53 -05002145
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002146 debugfs_create_file("sbstats", S_IFREG | S_IRUGO, sdp->debugfs_dir, sdp,
2147 &gfs2_sbstats_fops);
Robert Peterson7c52b162007-03-16 10:26:37 +00002148}
2149
2150void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
2151{
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002152 debugfs_remove_recursive(sdp->debugfs_dir);
2153 sdp->debugfs_dir = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002154}
2155
Greg Kroah-Hartman2abbf9a2019-01-22 16:21:51 +01002156void gfs2_register_debugfs(void)
Robert Peterson7c52b162007-03-16 10:26:37 +00002157{
2158 gfs2_root = debugfs_create_dir("gfs2", NULL);
Robert Peterson7c52b162007-03-16 10:26:37 +00002159}
2160
2161void gfs2_unregister_debugfs(void)
2162{
2163 debugfs_remove(gfs2_root);
Robert Peterson5f882092007-04-18 11:41:11 -05002164 gfs2_root = NULL;
Robert Peterson7c52b162007-03-16 10:26:37 +00002165}