blob: d6bbccb0ed152fe9b3bbc025b30f9b7cf079a64e [file] [log] [blame]
Thomas Gleixner2522fe42019-05-28 09:57:20 -07001// SPDX-License-Identifier: GPL-2.0-only
David Teiglande7fd4172006-01-18 09:30:29 +00002/******************************************************************************
3*******************************************************************************
4**
David Teigland892c4462009-01-07 16:48:52 -06005** Copyright (C) 2005-2009 Red Hat, Inc. All rights reserved.
David Teiglande7fd4172006-01-18 09:30:29 +00006**
David Teiglande7fd4172006-01-18 09:30:29 +00007**
8*******************************************************************************
9******************************************************************************/
10
11#include <linux/pagemap.h>
12#include <linux/seq_file.h>
Paul Gortmaker7963b8a2016-09-19 16:44:50 -040013#include <linux/init.h>
David Teiglande7fd4172006-01-18 09:30:29 +000014#include <linux/ctype.h>
15#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
David Teiglande7fd4172006-01-18 09:30:29 +000017
18#include "dlm_internal.h"
Josef Bacik916297a2007-05-16 15:56:13 -040019#include "lock.h"
David Teiglande7fd4172006-01-18 09:30:29 +000020
David Teigland5de63192006-07-25 13:44:31 -050021#define DLM_DEBUG_BUF_LEN 4096
22static char debug_buf[DLM_DEBUG_BUF_LEN];
23static struct mutex debug_buf_lock;
David Teiglande7fd4172006-01-18 09:30:29 +000024
25static struct dentry *dlm_root;
26
David Teiglande7fd4172006-01-18 09:30:29 +000027static char *print_lockmode(int mode)
28{
29 switch (mode) {
30 case DLM_LOCK_IV:
31 return "--";
32 case DLM_LOCK_NL:
33 return "NL";
34 case DLM_LOCK_CR:
35 return "CR";
36 case DLM_LOCK_CW:
37 return "CW";
38 case DLM_LOCK_PR:
39 return "PR";
40 case DLM_LOCK_PW:
41 return "PW";
42 case DLM_LOCK_EX:
43 return "EX";
44 default:
45 return "??";
46 }
47}
48
Joe Perchesd6d906b2014-09-29 16:08:23 -070049static void print_format1_lock(struct seq_file *s, struct dlm_lkb *lkb,
50 struct dlm_rsb *res)
David Teiglande7fd4172006-01-18 09:30:29 +000051{
52 seq_printf(s, "%08x %s", lkb->lkb_id, print_lockmode(lkb->lkb_grmode));
53
David Teigland892c4462009-01-07 16:48:52 -060054 if (lkb->lkb_status == DLM_LKSTS_CONVERT ||
55 lkb->lkb_status == DLM_LKSTS_WAITING)
David Teiglande7fd4172006-01-18 09:30:29 +000056 seq_printf(s, " (%s)", print_lockmode(lkb->lkb_rqmode));
57
David Teiglande7fd4172006-01-18 09:30:29 +000058 if (lkb->lkb_nodeid) {
59 if (lkb->lkb_nodeid != res->res_nodeid)
60 seq_printf(s, " Remote: %3d %08x", lkb->lkb_nodeid,
61 lkb->lkb_remid);
62 else
63 seq_printf(s, " Master: %08x", lkb->lkb_remid);
64 }
65
66 if (lkb->lkb_wait_type)
67 seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
68
Markus Elfring653996c2017-05-06 08:12:31 +020069 seq_putc(s, '\n');
David Teiglande7fd4172006-01-18 09:30:29 +000070}
71
Joe Perchesd6d906b2014-09-29 16:08:23 -070072static void print_format1(struct dlm_rsb *res, struct seq_file *s)
David Teiglande7fd4172006-01-18 09:30:29 +000073{
74 struct dlm_lkb *lkb;
David Teigland5de63192006-07-25 13:44:31 -050075 int i, lvblen = res->res_ls->ls_lvblen, recover_list, root_list;
David Teiglande7fd4172006-01-18 09:30:29 +000076
David Teigland9dd592d2007-05-29 08:47:04 -050077 lock_rsb(res);
78
Joe Perchesd6d906b2014-09-29 16:08:23 -070079 seq_printf(s, "\nResource %p Name (len=%d) \"", res, res->res_length);
David Teigland892c4462009-01-07 16:48:52 -060080
David Teiglande7fd4172006-01-18 09:30:29 +000081 for (i = 0; i < res->res_length; i++) {
82 if (isprint(res->res_name[i]))
83 seq_printf(s, "%c", res->res_name[i]);
84 else
85 seq_printf(s, "%c", '.');
86 }
David Teigland892c4462009-01-07 16:48:52 -060087
David Teiglande7fd4172006-01-18 09:30:29 +000088 if (res->res_nodeid > 0)
Joe Perchesd6d906b2014-09-29 16:08:23 -070089 seq_printf(s, "\"\nLocal Copy, Master is node %d\n",
90 res->res_nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +000091 else if (res->res_nodeid == 0)
Joe Perchesd6d906b2014-09-29 16:08:23 -070092 seq_puts(s, "\"\nMaster Copy\n");
David Teiglande7fd4172006-01-18 09:30:29 +000093 else if (res->res_nodeid == -1)
Joe Perchesd6d906b2014-09-29 16:08:23 -070094 seq_printf(s, "\"\nLooking up master (lkid %x)\n",
95 res->res_first_lkid);
David Teiglande7fd4172006-01-18 09:30:29 +000096 else
Joe Perchesd6d906b2014-09-29 16:08:23 -070097 seq_printf(s, "\"\nInvalid master %d\n", res->res_nodeid);
98 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -060099 goto out;
David Teiglande7fd4172006-01-18 09:30:29 +0000100
101 /* Print the LVB: */
102 if (res->res_lvbptr) {
Fabian Frederickc1d45182014-06-06 14:38:25 -0700103 seq_puts(s, "LVB: ");
David Teiglande7fd4172006-01-18 09:30:29 +0000104 for (i = 0; i < lvblen; i++) {
105 if (i == lvblen / 2)
Fabian Frederickc1d45182014-06-06 14:38:25 -0700106 seq_puts(s, "\n ");
David Teiglande7fd4172006-01-18 09:30:29 +0000107 seq_printf(s, "%02x ",
108 (unsigned char) res->res_lvbptr[i]);
109 }
110 if (rsb_flag(res, RSB_VALNOTVALID))
Fabian Frederickc1d45182014-06-06 14:38:25 -0700111 seq_puts(s, " (INVALID)");
Markus Elfring653996c2017-05-06 08:12:31 +0200112 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700113 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600114 goto out;
David Teiglande7fd4172006-01-18 09:30:29 +0000115 }
116
David Teigland5de63192006-07-25 13:44:31 -0500117 root_list = !list_empty(&res->res_root_list);
118 recover_list = !list_empty(&res->res_recover_list);
119
120 if (root_list || recover_list) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700121 seq_printf(s, "Recovery: root %d recover %d flags %lx count %d\n",
122 root_list, recover_list,
123 res->res_flags, res->res_recover_locks_count);
David Teigland5de63192006-07-25 13:44:31 -0500124 }
125
David Teiglande7fd4172006-01-18 09:30:29 +0000126 /* Print the locks attached to this resource */
Fabian Frederickc1d45182014-06-06 14:38:25 -0700127 seq_puts(s, "Granted Queue\n");
David Teigland892c4462009-01-07 16:48:52 -0600128 list_for_each_entry(lkb, &res->res_grantqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700129 print_format1_lock(s, lkb, res);
130 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600131 goto out;
132 }
David Teiglande7fd4172006-01-18 09:30:29 +0000133
Fabian Frederickc1d45182014-06-06 14:38:25 -0700134 seq_puts(s, "Conversion Queue\n");
David Teigland892c4462009-01-07 16:48:52 -0600135 list_for_each_entry(lkb, &res->res_convertqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700136 print_format1_lock(s, lkb, res);
137 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600138 goto out;
139 }
David Teiglande7fd4172006-01-18 09:30:29 +0000140
Fabian Frederickc1d45182014-06-06 14:38:25 -0700141 seq_puts(s, "Waiting Queue\n");
David Teigland892c4462009-01-07 16:48:52 -0600142 list_for_each_entry(lkb, &res->res_waitqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700143 print_format1_lock(s, lkb, res);
144 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600145 goto out;
146 }
David Teiglande7fd4172006-01-18 09:30:29 +0000147
David Teigland5de63192006-07-25 13:44:31 -0500148 if (list_empty(&res->res_lookup))
149 goto out;
150
Fabian Frederickc1d45182014-06-06 14:38:25 -0700151 seq_puts(s, "Lookup Queue\n");
David Teigland5de63192006-07-25 13:44:31 -0500152 list_for_each_entry(lkb, &res->res_lookup, lkb_rsb_lookup) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700153 seq_printf(s, "%08x %s",
154 lkb->lkb_id, print_lockmode(lkb->lkb_rqmode));
David Teigland5de63192006-07-25 13:44:31 -0500155 if (lkb->lkb_wait_type)
156 seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
Markus Elfring653996c2017-05-06 08:12:31 +0200157 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700158 if (seq_has_overflowed(s))
159 goto out;
David Teigland5de63192006-07-25 13:44:31 -0500160 }
161 out:
David Teigland9dd592d2007-05-29 08:47:04 -0500162 unlock_rsb(res);
David Teigland9dd592d2007-05-29 08:47:04 -0500163}
164
Joe Perchesd6d906b2014-09-29 16:08:23 -0700165static void print_format2_lock(struct seq_file *s, struct dlm_lkb *lkb,
166 struct dlm_rsb *r)
David Teigland9dd592d2007-05-29 08:47:04 -0500167{
David Teiglandeeda4182008-12-09 14:12:21 -0600168 u64 xid = 0;
169 u64 us;
David Teigland9dd592d2007-05-29 08:47:04 -0500170
171 if (lkb->lkb_flags & DLM_IFL_USER) {
David Teiglandd292c0c2008-02-06 23:27:04 -0600172 if (lkb->lkb_ua)
173 xid = lkb->lkb_ua->xid;
David Teigland9dd592d2007-05-29 08:47:04 -0500174 }
175
David Teiglandeeda4182008-12-09 14:12:21 -0600176 /* microseconds since lkb was added to current queue */
177 us = ktime_to_us(ktime_sub(ktime_get(), lkb->lkb_timestamp));
David Teigland9dd592d2007-05-29 08:47:04 -0500178
David Teiglandeeda4182008-12-09 14:12:21 -0600179 /* id nodeid remid pid xid exflags flags sts grmode rqmode time_us
David Teiglandac90a252007-07-06 09:47:08 -0500180 r_nodeid r_len r_name */
David Teigland9dd592d2007-05-29 08:47:04 -0500181
Joe Perchesd6d906b2014-09-29 16:08:23 -0700182 seq_printf(s, "%x %d %x %u %llu %x %x %d %d %d %llu %u %d \"%s\"\n",
183 lkb->lkb_id,
184 lkb->lkb_nodeid,
185 lkb->lkb_remid,
186 lkb->lkb_ownpid,
187 (unsigned long long)xid,
188 lkb->lkb_exflags,
189 lkb->lkb_flags,
190 lkb->lkb_status,
191 lkb->lkb_grmode,
192 lkb->lkb_rqmode,
193 (unsigned long long)us,
194 r->res_nodeid,
195 r->res_length,
196 r->res_name);
David Teigland9dd592d2007-05-29 08:47:04 -0500197}
198
Joe Perchesd6d906b2014-09-29 16:08:23 -0700199static void print_format2(struct dlm_rsb *r, struct seq_file *s)
David Teigland9dd592d2007-05-29 08:47:04 -0500200{
201 struct dlm_lkb *lkb;
202
203 lock_rsb(r);
204
David Teigland892c4462009-01-07 16:48:52 -0600205 list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700206 print_format2_lock(s, lkb, r);
207 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600208 goto out;
209 }
David Teigland9dd592d2007-05-29 08:47:04 -0500210
David Teigland892c4462009-01-07 16:48:52 -0600211 list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700212 print_format2_lock(s, lkb, r);
213 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600214 goto out;
215 }
David Teigland9dd592d2007-05-29 08:47:04 -0500216
David Teigland892c4462009-01-07 16:48:52 -0600217 list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700218 print_format2_lock(s, lkb, r);
219 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600220 goto out;
221 }
222 out:
David Teiglandd0225092008-12-16 14:53:23 -0600223 unlock_rsb(r);
David Teiglandd0225092008-12-16 14:53:23 -0600224}
225
Joe Perchesd6d906b2014-09-29 16:08:23 -0700226static void print_format3_lock(struct seq_file *s, struct dlm_lkb *lkb,
David Teigland892c4462009-01-07 16:48:52 -0600227 int rsb_lookup)
David Teiglandd0225092008-12-16 14:53:23 -0600228{
229 u64 xid = 0;
230
231 if (lkb->lkb_flags & DLM_IFL_USER) {
232 if (lkb->lkb_ua)
233 xid = lkb->lkb_ua->xid;
234 }
235
Joe Perchesd6d906b2014-09-29 16:08:23 -0700236 seq_printf(s, "lkb %x %d %x %u %llu %x %x %d %d %d %d %d %d %u %llu %llu\n",
237 lkb->lkb_id,
238 lkb->lkb_nodeid,
239 lkb->lkb_remid,
240 lkb->lkb_ownpid,
241 (unsigned long long)xid,
242 lkb->lkb_exflags,
243 lkb->lkb_flags,
244 lkb->lkb_status,
245 lkb->lkb_grmode,
246 lkb->lkb_rqmode,
247 lkb->lkb_last_bast.mode,
248 rsb_lookup,
249 lkb->lkb_wait_type,
250 lkb->lkb_lvbseq,
251 (unsigned long long)ktime_to_ns(lkb->lkb_timestamp),
252 (unsigned long long)ktime_to_ns(lkb->lkb_last_bast_time));
David Teiglandd0225092008-12-16 14:53:23 -0600253}
254
Joe Perchesd6d906b2014-09-29 16:08:23 -0700255static void print_format3(struct dlm_rsb *r, struct seq_file *s)
David Teiglandd0225092008-12-16 14:53:23 -0600256{
257 struct dlm_lkb *lkb;
258 int i, lvblen = r->res_ls->ls_lvblen;
259 int print_name = 1;
260
261 lock_rsb(r);
262
Joe Perchesd6d906b2014-09-29 16:08:23 -0700263 seq_printf(s, "rsb %p %d %x %lx %d %d %u %d ",
264 r,
265 r->res_nodeid,
266 r->res_first_lkid,
267 r->res_flags,
268 !list_empty(&r->res_root_list),
269 !list_empty(&r->res_recover_list),
270 r->res_recover_locks_count,
271 r->res_length);
272 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600273 goto out;
David Teiglandd0225092008-12-16 14:53:23 -0600274
275 for (i = 0; i < r->res_length; i++) {
276 if (!isascii(r->res_name[i]) || !isprint(r->res_name[i]))
277 print_name = 0;
278 }
279
Joe Perchesf365ef92014-09-29 16:08:24 -0700280 seq_puts(s, print_name ? "str " : "hex");
David Teiglandd0225092008-12-16 14:53:23 -0600281
282 for (i = 0; i < r->res_length; i++) {
283 if (print_name)
284 seq_printf(s, "%c", r->res_name[i]);
285 else
286 seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
287 }
Markus Elfring653996c2017-05-06 08:12:31 +0200288 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700289 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600290 goto out;
David Teiglandd0225092008-12-16 14:53:23 -0600291
292 if (!r->res_lvbptr)
293 goto do_locks;
294
295 seq_printf(s, "lvb %u %d", r->res_lvbseq, lvblen);
296
297 for (i = 0; i < lvblen; i++)
298 seq_printf(s, " %02x", (unsigned char)r->res_lvbptr[i]);
Markus Elfring653996c2017-05-06 08:12:31 +0200299 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700300 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600301 goto out;
David Teiglandd0225092008-12-16 14:53:23 -0600302
303 do_locks:
David Teigland892c4462009-01-07 16:48:52 -0600304 list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700305 print_format3_lock(s, lkb, 0);
306 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600307 goto out;
308 }
David Teiglandd0225092008-12-16 14:53:23 -0600309
David Teigland892c4462009-01-07 16:48:52 -0600310 list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700311 print_format3_lock(s, lkb, 0);
312 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600313 goto out;
314 }
David Teiglandd0225092008-12-16 14:53:23 -0600315
David Teigland892c4462009-01-07 16:48:52 -0600316 list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700317 print_format3_lock(s, lkb, 0);
318 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600319 goto out;
320 }
David Teiglandd0225092008-12-16 14:53:23 -0600321
David Teigland892c4462009-01-07 16:48:52 -0600322 list_for_each_entry(lkb, &r->res_lookup, lkb_rsb_lookup) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700323 print_format3_lock(s, lkb, 1);
324 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600325 goto out;
326 }
327 out:
David Teigland9dd592d2007-05-29 08:47:04 -0500328 unlock_rsb(r);
David Teiglande7fd4172006-01-18 09:30:29 +0000329}
330
Joe Perchesd6d906b2014-09-29 16:08:23 -0700331static void print_format4(struct dlm_rsb *r, struct seq_file *s)
David Teiglandc04fecb2012-05-10 10:18:07 -0500332{
333 int our_nodeid = dlm_our_nodeid();
334 int print_name = 1;
Joe Perchesd6d906b2014-09-29 16:08:23 -0700335 int i;
David Teiglandc04fecb2012-05-10 10:18:07 -0500336
337 lock_rsb(r);
338
Joe Perchesd6d906b2014-09-29 16:08:23 -0700339 seq_printf(s, "rsb %p %d %d %d %d %lu %lx %d ",
340 r,
341 r->res_nodeid,
342 r->res_master_nodeid,
343 r->res_dir_nodeid,
344 our_nodeid,
345 r->res_toss_time,
346 r->res_flags,
347 r->res_length);
David Teiglandc04fecb2012-05-10 10:18:07 -0500348
349 for (i = 0; i < r->res_length; i++) {
350 if (!isascii(r->res_name[i]) || !isprint(r->res_name[i]))
351 print_name = 0;
352 }
353
Joe Perchesf365ef92014-09-29 16:08:24 -0700354 seq_puts(s, print_name ? "str " : "hex");
David Teiglandc04fecb2012-05-10 10:18:07 -0500355
356 for (i = 0; i < r->res_length; i++) {
357 if (print_name)
358 seq_printf(s, "%c", r->res_name[i]);
359 else
360 seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
361 }
Markus Elfring653996c2017-05-06 08:12:31 +0200362 seq_putc(s, '\n');
David Teiglandc04fecb2012-05-10 10:18:07 -0500363 unlock_rsb(r);
David Teiglandc04fecb2012-05-10 10:18:07 -0500364}
365
David Teigland892c4462009-01-07 16:48:52 -0600366struct rsbtbl_iter {
367 struct dlm_rsb *rsb;
368 unsigned bucket;
369 int format;
370 int header;
371};
372
Joe Perchesd6d906b2014-09-29 16:08:23 -0700373/*
374 * If the buffer is full, seq_printf can be called again, but it
375 * does nothing. So, the these printing routines periodically check
376 * seq_has_overflowed to avoid wasting too much time trying to print to
377 * a full buffer.
378 */
David Teigland892c4462009-01-07 16:48:52 -0600379
380static int table_seq_show(struct seq_file *seq, void *iter_ptr)
David Teiglande7fd4172006-01-18 09:30:29 +0000381{
David Teigland892c4462009-01-07 16:48:52 -0600382 struct rsbtbl_iter *ri = iter_ptr;
David Teiglande7fd4172006-01-18 09:30:29 +0000383
David Teiglandd0225092008-12-16 14:53:23 -0600384 switch (ri->format) {
385 case 1:
Joe Perchesd6d906b2014-09-29 16:08:23 -0700386 print_format1(ri->rsb, seq);
David Teiglandd0225092008-12-16 14:53:23 -0600387 break;
388 case 2:
David Teigland9dd592d2007-05-29 08:47:04 -0500389 if (ri->header) {
Joe Perchesf365ef92014-09-29 16:08:24 -0700390 seq_puts(seq, "id nodeid remid pid xid exflags flags sts grmode rqmode time_ms r_nodeid r_len r_name\n");
David Teigland9dd592d2007-05-29 08:47:04 -0500391 ri->header = 0;
392 }
Joe Perchesd6d906b2014-09-29 16:08:23 -0700393 print_format2(ri->rsb, seq);
David Teiglandd0225092008-12-16 14:53:23 -0600394 break;
395 case 3:
396 if (ri->header) {
Joe Perchesf365ef92014-09-29 16:08:24 -0700397 seq_puts(seq, "version rsb 1.1 lvb 1.1 lkb 1.1\n");
David Teiglandd0225092008-12-16 14:53:23 -0600398 ri->header = 0;
399 }
Joe Perchesd6d906b2014-09-29 16:08:23 -0700400 print_format3(ri->rsb, seq);
David Teiglandd0225092008-12-16 14:53:23 -0600401 break;
David Teiglandc04fecb2012-05-10 10:18:07 -0500402 case 4:
403 if (ri->header) {
Joe Perchesf365ef92014-09-29 16:08:24 -0700404 seq_puts(seq, "version 4 rsb 2\n");
David Teiglandc04fecb2012-05-10 10:18:07 -0500405 ri->header = 0;
406 }
Joe Perchesd6d906b2014-09-29 16:08:23 -0700407 print_format4(ri->rsb, seq);
David Teiglandc04fecb2012-05-10 10:18:07 -0500408 break;
David Teigland9dd592d2007-05-29 08:47:04 -0500409 }
David Teiglande7fd4172006-01-18 09:30:29 +0000410
Joe Perchesd6d906b2014-09-29 16:08:23 -0700411 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000412}
413
James Morris88e9d342009-09-22 16:43:43 -0700414static const struct seq_operations format1_seq_ops;
415static const struct seq_operations format2_seq_ops;
416static const struct seq_operations format3_seq_ops;
David Teiglandc04fecb2012-05-10 10:18:07 -0500417static const struct seq_operations format4_seq_ops;
David Teigland892c4462009-01-07 16:48:52 -0600418
419static void *table_seq_start(struct seq_file *seq, loff_t *pos)
420{
David Teiglandc04fecb2012-05-10 10:18:07 -0500421 struct rb_root *tree;
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500422 struct rb_node *node;
David Teigland892c4462009-01-07 16:48:52 -0600423 struct dlm_ls *ls = seq->private;
424 struct rsbtbl_iter *ri;
425 struct dlm_rsb *r;
426 loff_t n = *pos;
427 unsigned bucket, entry;
David Teiglandc04fecb2012-05-10 10:18:07 -0500428 int toss = (seq->op == &format4_seq_ops);
David Teigland892c4462009-01-07 16:48:52 -0600429
430 bucket = n >> 32;
431 entry = n & ((1LL << 32) - 1);
432
433 if (bucket >= ls->ls_rsbtbl_size)
434 return NULL;
435
Markus Elfring2c257e92017-05-06 08:34:27 +0200436 ri = kzalloc(sizeof(*ri), GFP_NOFS);
David Teigland892c4462009-01-07 16:48:52 -0600437 if (!ri)
438 return NULL;
439 if (n == 0)
440 ri->header = 1;
441 if (seq->op == &format1_seq_ops)
442 ri->format = 1;
443 if (seq->op == &format2_seq_ops)
444 ri->format = 2;
445 if (seq->op == &format3_seq_ops)
446 ri->format = 3;
David Teiglandc04fecb2012-05-10 10:18:07 -0500447 if (seq->op == &format4_seq_ops)
448 ri->format = 4;
449
450 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep;
David Teigland892c4462009-01-07 16:48:52 -0600451
David Teiglandc7be7612009-01-07 16:50:41 -0600452 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teiglandc04fecb2012-05-10 10:18:07 -0500453 if (!RB_EMPTY_ROOT(tree)) {
454 for (node = rb_first(tree); node; node = rb_next(node)) {
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500455 r = rb_entry(node, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600456 if (!entry--) {
457 dlm_hold_rsb(r);
458 ri->rsb = r;
459 ri->bucket = bucket;
David Teiglandc7be7612009-01-07 16:50:41 -0600460 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600461 return ri;
462 }
463 }
464 }
David Teiglandc7be7612009-01-07 16:50:41 -0600465 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600466
467 /*
468 * move to the first rsb in the next non-empty bucket
469 */
470
471 /* zero the entry */
472 n &= ~((1LL << 32) - 1);
473
474 while (1) {
475 bucket++;
476 n += 1LL << 32;
477
478 if (bucket >= ls->ls_rsbtbl_size) {
479 kfree(ri);
480 return NULL;
481 }
David Teiglandc04fecb2012-05-10 10:18:07 -0500482 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep;
David Teigland892c4462009-01-07 16:48:52 -0600483
David Teiglandc7be7612009-01-07 16:50:41 -0600484 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teiglandc04fecb2012-05-10 10:18:07 -0500485 if (!RB_EMPTY_ROOT(tree)) {
486 node = rb_first(tree);
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500487 r = rb_entry(node, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600488 dlm_hold_rsb(r);
489 ri->rsb = r;
490 ri->bucket = bucket;
David Teiglandc7be7612009-01-07 16:50:41 -0600491 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600492 *pos = n;
493 return ri;
494 }
David Teiglandc7be7612009-01-07 16:50:41 -0600495 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600496 }
497}
498
499static void *table_seq_next(struct seq_file *seq, void *iter_ptr, loff_t *pos)
500{
501 struct dlm_ls *ls = seq->private;
502 struct rsbtbl_iter *ri = iter_ptr;
David Teiglandc04fecb2012-05-10 10:18:07 -0500503 struct rb_root *tree;
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500504 struct rb_node *next;
David Teigland892c4462009-01-07 16:48:52 -0600505 struct dlm_rsb *r, *rp;
506 loff_t n = *pos;
507 unsigned bucket;
David Teiglandc04fecb2012-05-10 10:18:07 -0500508 int toss = (seq->op == &format4_seq_ops);
David Teigland892c4462009-01-07 16:48:52 -0600509
510 bucket = n >> 32;
511
512 /*
513 * move to the next rsb in the same bucket
514 */
515
David Teiglandc7be7612009-01-07 16:50:41 -0600516 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600517 rp = ri->rsb;
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500518 next = rb_next(&rp->res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600519
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500520 if (next) {
521 r = rb_entry(next, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600522 dlm_hold_rsb(r);
523 ri->rsb = r;
David Teiglandc7be7612009-01-07 16:50:41 -0600524 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600525 dlm_put_rsb(rp);
526 ++*pos;
527 return ri;
528 }
David Teiglandc7be7612009-01-07 16:50:41 -0600529 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600530 dlm_put_rsb(rp);
531
532 /*
533 * move to the first rsb in the next non-empty bucket
534 */
535
536 /* zero the entry */
537 n &= ~((1LL << 32) - 1);
538
539 while (1) {
540 bucket++;
541 n += 1LL << 32;
542
543 if (bucket >= ls->ls_rsbtbl_size) {
544 kfree(ri);
545 return NULL;
546 }
David Teiglandc04fecb2012-05-10 10:18:07 -0500547 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep;
David Teigland892c4462009-01-07 16:48:52 -0600548
David Teiglandc7be7612009-01-07 16:50:41 -0600549 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teiglandc04fecb2012-05-10 10:18:07 -0500550 if (!RB_EMPTY_ROOT(tree)) {
551 next = rb_first(tree);
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500552 r = rb_entry(next, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600553 dlm_hold_rsb(r);
554 ri->rsb = r;
555 ri->bucket = bucket;
David Teiglandc7be7612009-01-07 16:50:41 -0600556 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600557 *pos = n;
558 return ri;
559 }
David Teiglandc7be7612009-01-07 16:50:41 -0600560 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600561 }
562}
563
564static void table_seq_stop(struct seq_file *seq, void *iter_ptr)
565{
566 struct rsbtbl_iter *ri = iter_ptr;
567
568 if (ri) {
569 dlm_put_rsb(ri->rsb);
570 kfree(ri);
571 }
572}
573
James Morris88e9d342009-09-22 16:43:43 -0700574static const struct seq_operations format1_seq_ops = {
David Teigland892c4462009-01-07 16:48:52 -0600575 .start = table_seq_start,
576 .next = table_seq_next,
577 .stop = table_seq_stop,
578 .show = table_seq_show,
David Teiglande7fd4172006-01-18 09:30:29 +0000579};
580
James Morris88e9d342009-09-22 16:43:43 -0700581static const struct seq_operations format2_seq_ops = {
David Teigland892c4462009-01-07 16:48:52 -0600582 .start = table_seq_start,
583 .next = table_seq_next,
584 .stop = table_seq_stop,
585 .show = table_seq_show,
586};
587
James Morris88e9d342009-09-22 16:43:43 -0700588static const struct seq_operations format3_seq_ops = {
David Teigland892c4462009-01-07 16:48:52 -0600589 .start = table_seq_start,
590 .next = table_seq_next,
591 .stop = table_seq_stop,
592 .show = table_seq_show,
593};
594
David Teiglandc04fecb2012-05-10 10:18:07 -0500595static const struct seq_operations format4_seq_ops = {
596 .start = table_seq_start,
597 .next = table_seq_next,
598 .stop = table_seq_stop,
599 .show = table_seq_show,
600};
601
David Teigland892c4462009-01-07 16:48:52 -0600602static const struct file_operations format1_fops;
603static const struct file_operations format2_fops;
604static const struct file_operations format3_fops;
David Teiglandc04fecb2012-05-10 10:18:07 -0500605static const struct file_operations format4_fops;
David Teigland892c4462009-01-07 16:48:52 -0600606
Eric Ren079d37d2016-08-25 17:20:59 +0800607static int table_open1(struct inode *inode, struct file *file)
David Teiglande7fd4172006-01-18 09:30:29 +0000608{
609 struct seq_file *seq;
Eric Ren079d37d2016-08-25 17:20:59 +0800610 int ret;
David Teiglande7fd4172006-01-18 09:30:29 +0000611
Eric Ren079d37d2016-08-25 17:20:59 +0800612 ret = seq_open(file, &format1_seq_ops);
613 if (ret)
614 return ret;
David Teigland892c4462009-01-07 16:48:52 -0600615
Eric Ren079d37d2016-08-25 17:20:59 +0800616 seq = file->private_data;
617 seq->private = inode->i_private; /* the dlm_ls */
618 return 0;
619}
620
621static int table_open2(struct inode *inode, struct file *file)
622{
623 struct seq_file *seq;
624 int ret;
625
626 ret = seq_open(file, &format2_seq_ops);
627 if (ret)
628 return ret;
629
630 seq = file->private_data;
631 seq->private = inode->i_private; /* the dlm_ls */
632 return 0;
633}
634
635static int table_open3(struct inode *inode, struct file *file)
636{
637 struct seq_file *seq;
638 int ret;
639
640 ret = seq_open(file, &format3_seq_ops);
641 if (ret)
642 return ret;
643
644 seq = file->private_data;
645 seq->private = inode->i_private; /* the dlm_ls */
646 return 0;
647}
648
649static int table_open4(struct inode *inode, struct file *file)
650{
651 struct seq_file *seq;
652 int ret;
653
654 ret = seq_open(file, &format4_seq_ops);
David Teiglande7fd4172006-01-18 09:30:29 +0000655 if (ret)
656 return ret;
657
658 seq = file->private_data;
David Teigland892c4462009-01-07 16:48:52 -0600659 seq->private = inode->i_private; /* the dlm_ls */
David Teiglande7fd4172006-01-18 09:30:29 +0000660 return 0;
661}
662
David Teigland892c4462009-01-07 16:48:52 -0600663static const struct file_operations format1_fops = {
David Teiglande7fd4172006-01-18 09:30:29 +0000664 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800665 .open = table_open1,
David Teiglande7fd4172006-01-18 09:30:29 +0000666 .read = seq_read,
667 .llseek = seq_lseek,
668 .release = seq_release
669};
670
David Teigland892c4462009-01-07 16:48:52 -0600671static const struct file_operations format2_fops = {
David Teigland9dd592d2007-05-29 08:47:04 -0500672 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800673 .open = table_open2,
David Teigland9dd592d2007-05-29 08:47:04 -0500674 .read = seq_read,
675 .llseek = seq_lseek,
676 .release = seq_release
677};
678
David Teigland892c4462009-01-07 16:48:52 -0600679static const struct file_operations format3_fops = {
David Teiglandd0225092008-12-16 14:53:23 -0600680 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800681 .open = table_open3,
David Teiglandd0225092008-12-16 14:53:23 -0600682 .read = seq_read,
683 .llseek = seq_lseek,
684 .release = seq_release
685};
686
David Teiglandc04fecb2012-05-10 10:18:07 -0500687static const struct file_operations format4_fops = {
688 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800689 .open = table_open4,
David Teiglandc04fecb2012-05-10 10:18:07 -0500690 .read = seq_read,
691 .llseek = seq_lseek,
692 .release = seq_release
693};
694
David Teiglandd0225092008-12-16 14:53:23 -0600695/*
David Teigland5de63192006-07-25 13:44:31 -0500696 * dump lkb's on the ls_waiters list
697 */
David Teigland5de63192006-07-25 13:44:31 -0500698static ssize_t waiters_read(struct file *file, char __user *userbuf,
699 size_t count, loff_t *ppos)
700{
701 struct dlm_ls *ls = file->private_data;
702 struct dlm_lkb *lkb;
David Teigland06442442006-08-08 11:31:30 -0500703 size_t len = DLM_DEBUG_BUF_LEN, pos = 0, ret, rv;
David Teigland5de63192006-07-25 13:44:31 -0500704
705 mutex_lock(&debug_buf_lock);
706 mutex_lock(&ls->ls_waiters_mutex);
707 memset(debug_buf, 0, sizeof(debug_buf));
708
709 list_for_each_entry(lkb, &ls->ls_waiters, lkb_wait_reply) {
David Teigland06442442006-08-08 11:31:30 -0500710 ret = snprintf(debug_buf + pos, len - pos, "%x %d %d %s\n",
711 lkb->lkb_id, lkb->lkb_wait_type,
712 lkb->lkb_nodeid, lkb->lkb_resource->res_name);
713 if (ret >= len - pos)
714 break;
715 pos += ret;
David Teigland5de63192006-07-25 13:44:31 -0500716 }
717 mutex_unlock(&ls->ls_waiters_mutex);
718
719 rv = simple_read_from_buffer(userbuf, count, ppos, debug_buf, pos);
720 mutex_unlock(&debug_buf_lock);
721 return rv;
722}
723
Arjan van de Ven00977a52007-02-12 00:55:34 -0800724static const struct file_operations waiters_fops = {
David Teigland5de63192006-07-25 13:44:31 -0500725 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -0700726 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200727 .read = waiters_read,
728 .llseek = default_llseek,
David Teigland5de63192006-07-25 13:44:31 -0500729};
730
David Teiglandd0225092008-12-16 14:53:23 -0600731void dlm_delete_debug_file(struct dlm_ls *ls)
732{
Fabian Fredericke0d9bf42014-08-08 14:23:37 -0700733 debugfs_remove(ls->ls_debug_rsb_dentry);
734 debugfs_remove(ls->ls_debug_waiters_dentry);
735 debugfs_remove(ls->ls_debug_locks_dentry);
736 debugfs_remove(ls->ls_debug_all_dentry);
737 debugfs_remove(ls->ls_debug_toss_dentry);
David Teiglandd0225092008-12-16 14:53:23 -0600738}
739
Greg Kroah-Hartmana48f9722019-06-12 17:25:36 +0200740void dlm_create_debug_file(struct dlm_ls *ls)
David Teiglande7fd4172006-01-18 09:30:29 +0000741{
Markus Elfring41922ce2017-05-06 08:22:35 +0200742 char name[DLM_LOCKSPACE_LEN + 8];
David Teigland5de63192006-07-25 13:44:31 -0500743
David Teiglandd0225092008-12-16 14:53:23 -0600744 /* format 1 */
745
David Teigland5de63192006-07-25 13:44:31 -0500746 ls->ls_debug_rsb_dentry = debugfs_create_file(ls->ls_name,
747 S_IFREG | S_IRUGO,
748 dlm_root,
749 ls,
David Teigland892c4462009-01-07 16:48:52 -0600750 &format1_fops);
David Teigland5de63192006-07-25 13:44:31 -0500751
David Teiglandd0225092008-12-16 14:53:23 -0600752 /* format 2 */
David Teigland5de63192006-07-25 13:44:31 -0500753
David Teigland9dd592d2007-05-29 08:47:04 -0500754 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200755 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_locks", ls->ls_name);
David Teigland9dd592d2007-05-29 08:47:04 -0500756
David Teiglandac90a252007-07-06 09:47:08 -0500757 ls->ls_debug_locks_dentry = debugfs_create_file(name,
758 S_IFREG | S_IRUGO,
759 dlm_root,
760 ls,
David Teigland892c4462009-01-07 16:48:52 -0600761 &format2_fops);
David Teiglandd0225092008-12-16 14:53:23 -0600762
763 /* format 3 */
764
765 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200766 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_all", ls->ls_name);
David Teiglandd0225092008-12-16 14:53:23 -0600767
768 ls->ls_debug_all_dentry = debugfs_create_file(name,
769 S_IFREG | S_IRUGO,
770 dlm_root,
771 ls,
David Teigland892c4462009-01-07 16:48:52 -0600772 &format3_fops);
David Teiglandd0225092008-12-16 14:53:23 -0600773
David Teiglandc04fecb2012-05-10 10:18:07 -0500774 /* format 4 */
775
776 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200777 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_toss", ls->ls_name);
David Teiglandc04fecb2012-05-10 10:18:07 -0500778
779 ls->ls_debug_toss_dentry = debugfs_create_file(name,
780 S_IFREG | S_IRUGO,
781 dlm_root,
782 ls,
783 &format4_fops);
David Teiglandc04fecb2012-05-10 10:18:07 -0500784
David Teiglandd0225092008-12-16 14:53:23 -0600785 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200786 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_waiters", ls->ls_name);
David Teiglandd0225092008-12-16 14:53:23 -0600787
788 ls->ls_debug_waiters_dentry = debugfs_create_file(name,
789 S_IFREG | S_IRUGO,
790 dlm_root,
791 ls,
792 &waiters_fops);
David Teiglande7fd4172006-01-18 09:30:29 +0000793}
794
Greg Kroah-Hartmana48f9722019-06-12 17:25:36 +0200795void __init dlm_register_debugfs(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000796{
David Teigland5de63192006-07-25 13:44:31 -0500797 mutex_init(&debug_buf_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000798 dlm_root = debugfs_create_dir("dlm", NULL);
David Teiglande7fd4172006-01-18 09:30:29 +0000799}
800
801void dlm_unregister_debugfs(void)
802{
803 debugfs_remove(dlm_root);
804}
805