blob: fa08448e35dd7dd50fedaae4b95e48e974d343c4 [file] [log] [blame]
David Teiglande7fd4172006-01-18 09:30:29 +00001/******************************************************************************
2*******************************************************************************
3**
David Teigland892c4462009-01-07 16:48:52 -06004** Copyright (C) 2005-2009 Red Hat, Inc. All rights reserved.
David Teiglande7fd4172006-01-18 09:30:29 +00005**
6** This copyrighted material is made available to anyone wishing to use,
7** modify, copy, or redistribute it subject to the terms and conditions
8** of the GNU General Public License v.2.
9**
10*******************************************************************************
11******************************************************************************/
12
13#include <linux/pagemap.h>
14#include <linux/seq_file.h>
Paul Gortmaker7963b8a2016-09-19 16:44:50 -040015#include <linux/init.h>
David Teiglande7fd4172006-01-18 09:30:29 +000016#include <linux/ctype.h>
17#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
David Teiglande7fd4172006-01-18 09:30:29 +000019
20#include "dlm_internal.h"
Josef Bacik916297a2007-05-16 15:56:13 -040021#include "lock.h"
David Teiglande7fd4172006-01-18 09:30:29 +000022
David Teigland5de63192006-07-25 13:44:31 -050023#define DLM_DEBUG_BUF_LEN 4096
24static char debug_buf[DLM_DEBUG_BUF_LEN];
25static struct mutex debug_buf_lock;
David Teiglande7fd4172006-01-18 09:30:29 +000026
27static struct dentry *dlm_root;
28
David Teiglande7fd4172006-01-18 09:30:29 +000029static char *print_lockmode(int mode)
30{
31 switch (mode) {
32 case DLM_LOCK_IV:
33 return "--";
34 case DLM_LOCK_NL:
35 return "NL";
36 case DLM_LOCK_CR:
37 return "CR";
38 case DLM_LOCK_CW:
39 return "CW";
40 case DLM_LOCK_PR:
41 return "PR";
42 case DLM_LOCK_PW:
43 return "PW";
44 case DLM_LOCK_EX:
45 return "EX";
46 default:
47 return "??";
48 }
49}
50
Joe Perchesd6d906b2014-09-29 16:08:23 -070051static void print_format1_lock(struct seq_file *s, struct dlm_lkb *lkb,
52 struct dlm_rsb *res)
David Teiglande7fd4172006-01-18 09:30:29 +000053{
54 seq_printf(s, "%08x %s", lkb->lkb_id, print_lockmode(lkb->lkb_grmode));
55
David Teigland892c4462009-01-07 16:48:52 -060056 if (lkb->lkb_status == DLM_LKSTS_CONVERT ||
57 lkb->lkb_status == DLM_LKSTS_WAITING)
David Teiglande7fd4172006-01-18 09:30:29 +000058 seq_printf(s, " (%s)", print_lockmode(lkb->lkb_rqmode));
59
David Teiglande7fd4172006-01-18 09:30:29 +000060 if (lkb->lkb_nodeid) {
61 if (lkb->lkb_nodeid != res->res_nodeid)
62 seq_printf(s, " Remote: %3d %08x", lkb->lkb_nodeid,
63 lkb->lkb_remid);
64 else
65 seq_printf(s, " Master: %08x", lkb->lkb_remid);
66 }
67
68 if (lkb->lkb_wait_type)
69 seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
70
Markus Elfring653996c2017-05-06 08:12:31 +020071 seq_putc(s, '\n');
David Teiglande7fd4172006-01-18 09:30:29 +000072}
73
Joe Perchesd6d906b2014-09-29 16:08:23 -070074static void print_format1(struct dlm_rsb *res, struct seq_file *s)
David Teiglande7fd4172006-01-18 09:30:29 +000075{
76 struct dlm_lkb *lkb;
David Teigland5de63192006-07-25 13:44:31 -050077 int i, lvblen = res->res_ls->ls_lvblen, recover_list, root_list;
David Teiglande7fd4172006-01-18 09:30:29 +000078
David Teigland9dd592d2007-05-29 08:47:04 -050079 lock_rsb(res);
80
Joe Perchesd6d906b2014-09-29 16:08:23 -070081 seq_printf(s, "\nResource %p Name (len=%d) \"", res, res->res_length);
David Teigland892c4462009-01-07 16:48:52 -060082
David Teiglande7fd4172006-01-18 09:30:29 +000083 for (i = 0; i < res->res_length; i++) {
84 if (isprint(res->res_name[i]))
85 seq_printf(s, "%c", res->res_name[i]);
86 else
87 seq_printf(s, "%c", '.');
88 }
David Teigland892c4462009-01-07 16:48:52 -060089
David Teiglande7fd4172006-01-18 09:30:29 +000090 if (res->res_nodeid > 0)
Joe Perchesd6d906b2014-09-29 16:08:23 -070091 seq_printf(s, "\"\nLocal Copy, Master is node %d\n",
92 res->res_nodeid);
David Teiglande7fd4172006-01-18 09:30:29 +000093 else if (res->res_nodeid == 0)
Joe Perchesd6d906b2014-09-29 16:08:23 -070094 seq_puts(s, "\"\nMaster Copy\n");
David Teiglande7fd4172006-01-18 09:30:29 +000095 else if (res->res_nodeid == -1)
Joe Perchesd6d906b2014-09-29 16:08:23 -070096 seq_printf(s, "\"\nLooking up master (lkid %x)\n",
97 res->res_first_lkid);
David Teiglande7fd4172006-01-18 09:30:29 +000098 else
Joe Perchesd6d906b2014-09-29 16:08:23 -070099 seq_printf(s, "\"\nInvalid master %d\n", res->res_nodeid);
100 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600101 goto out;
David Teiglande7fd4172006-01-18 09:30:29 +0000102
103 /* Print the LVB: */
104 if (res->res_lvbptr) {
Fabian Frederickc1d45182014-06-06 14:38:25 -0700105 seq_puts(s, "LVB: ");
David Teiglande7fd4172006-01-18 09:30:29 +0000106 for (i = 0; i < lvblen; i++) {
107 if (i == lvblen / 2)
Fabian Frederickc1d45182014-06-06 14:38:25 -0700108 seq_puts(s, "\n ");
David Teiglande7fd4172006-01-18 09:30:29 +0000109 seq_printf(s, "%02x ",
110 (unsigned char) res->res_lvbptr[i]);
111 }
112 if (rsb_flag(res, RSB_VALNOTVALID))
Fabian Frederickc1d45182014-06-06 14:38:25 -0700113 seq_puts(s, " (INVALID)");
Markus Elfring653996c2017-05-06 08:12:31 +0200114 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700115 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600116 goto out;
David Teiglande7fd4172006-01-18 09:30:29 +0000117 }
118
David Teigland5de63192006-07-25 13:44:31 -0500119 root_list = !list_empty(&res->res_root_list);
120 recover_list = !list_empty(&res->res_recover_list);
121
122 if (root_list || recover_list) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700123 seq_printf(s, "Recovery: root %d recover %d flags %lx count %d\n",
124 root_list, recover_list,
125 res->res_flags, res->res_recover_locks_count);
David Teigland5de63192006-07-25 13:44:31 -0500126 }
127
David Teiglande7fd4172006-01-18 09:30:29 +0000128 /* Print the locks attached to this resource */
Fabian Frederickc1d45182014-06-06 14:38:25 -0700129 seq_puts(s, "Granted Queue\n");
David Teigland892c4462009-01-07 16:48:52 -0600130 list_for_each_entry(lkb, &res->res_grantqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700131 print_format1_lock(s, lkb, res);
132 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600133 goto out;
134 }
David Teiglande7fd4172006-01-18 09:30:29 +0000135
Fabian Frederickc1d45182014-06-06 14:38:25 -0700136 seq_puts(s, "Conversion Queue\n");
David Teigland892c4462009-01-07 16:48:52 -0600137 list_for_each_entry(lkb, &res->res_convertqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700138 print_format1_lock(s, lkb, res);
139 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600140 goto out;
141 }
David Teiglande7fd4172006-01-18 09:30:29 +0000142
Fabian Frederickc1d45182014-06-06 14:38:25 -0700143 seq_puts(s, "Waiting Queue\n");
David Teigland892c4462009-01-07 16:48:52 -0600144 list_for_each_entry(lkb, &res->res_waitqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700145 print_format1_lock(s, lkb, res);
146 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600147 goto out;
148 }
David Teiglande7fd4172006-01-18 09:30:29 +0000149
David Teigland5de63192006-07-25 13:44:31 -0500150 if (list_empty(&res->res_lookup))
151 goto out;
152
Fabian Frederickc1d45182014-06-06 14:38:25 -0700153 seq_puts(s, "Lookup Queue\n");
David Teigland5de63192006-07-25 13:44:31 -0500154 list_for_each_entry(lkb, &res->res_lookup, lkb_rsb_lookup) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700155 seq_printf(s, "%08x %s",
156 lkb->lkb_id, print_lockmode(lkb->lkb_rqmode));
David Teigland5de63192006-07-25 13:44:31 -0500157 if (lkb->lkb_wait_type)
158 seq_printf(s, " wait_type: %d", lkb->lkb_wait_type);
Markus Elfring653996c2017-05-06 08:12:31 +0200159 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700160 if (seq_has_overflowed(s))
161 goto out;
David Teigland5de63192006-07-25 13:44:31 -0500162 }
163 out:
David Teigland9dd592d2007-05-29 08:47:04 -0500164 unlock_rsb(res);
David Teigland9dd592d2007-05-29 08:47:04 -0500165}
166
Joe Perchesd6d906b2014-09-29 16:08:23 -0700167static void print_format2_lock(struct seq_file *s, struct dlm_lkb *lkb,
168 struct dlm_rsb *r)
David Teigland9dd592d2007-05-29 08:47:04 -0500169{
David Teiglandeeda4182008-12-09 14:12:21 -0600170 u64 xid = 0;
171 u64 us;
David Teigland9dd592d2007-05-29 08:47:04 -0500172
173 if (lkb->lkb_flags & DLM_IFL_USER) {
David Teiglandd292c0c2008-02-06 23:27:04 -0600174 if (lkb->lkb_ua)
175 xid = lkb->lkb_ua->xid;
David Teigland9dd592d2007-05-29 08:47:04 -0500176 }
177
David Teiglandeeda4182008-12-09 14:12:21 -0600178 /* microseconds since lkb was added to current queue */
179 us = ktime_to_us(ktime_sub(ktime_get(), lkb->lkb_timestamp));
David Teigland9dd592d2007-05-29 08:47:04 -0500180
David Teiglandeeda4182008-12-09 14:12:21 -0600181 /* id nodeid remid pid xid exflags flags sts grmode rqmode time_us
David Teiglandac90a252007-07-06 09:47:08 -0500182 r_nodeid r_len r_name */
David Teigland9dd592d2007-05-29 08:47:04 -0500183
Joe Perchesd6d906b2014-09-29 16:08:23 -0700184 seq_printf(s, "%x %d %x %u %llu %x %x %d %d %d %llu %u %d \"%s\"\n",
185 lkb->lkb_id,
186 lkb->lkb_nodeid,
187 lkb->lkb_remid,
188 lkb->lkb_ownpid,
189 (unsigned long long)xid,
190 lkb->lkb_exflags,
191 lkb->lkb_flags,
192 lkb->lkb_status,
193 lkb->lkb_grmode,
194 lkb->lkb_rqmode,
195 (unsigned long long)us,
196 r->res_nodeid,
197 r->res_length,
198 r->res_name);
David Teigland9dd592d2007-05-29 08:47:04 -0500199}
200
Joe Perchesd6d906b2014-09-29 16:08:23 -0700201static void print_format2(struct dlm_rsb *r, struct seq_file *s)
David Teigland9dd592d2007-05-29 08:47:04 -0500202{
203 struct dlm_lkb *lkb;
204
205 lock_rsb(r);
206
David Teigland892c4462009-01-07 16:48:52 -0600207 list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700208 print_format2_lock(s, lkb, r);
209 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600210 goto out;
211 }
David Teigland9dd592d2007-05-29 08:47:04 -0500212
David Teigland892c4462009-01-07 16:48:52 -0600213 list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700214 print_format2_lock(s, lkb, r);
215 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600216 goto out;
217 }
David Teigland9dd592d2007-05-29 08:47:04 -0500218
David Teigland892c4462009-01-07 16:48:52 -0600219 list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700220 print_format2_lock(s, lkb, r);
221 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600222 goto out;
223 }
224 out:
David Teiglandd0225092008-12-16 14:53:23 -0600225 unlock_rsb(r);
David Teiglandd0225092008-12-16 14:53:23 -0600226}
227
Joe Perchesd6d906b2014-09-29 16:08:23 -0700228static void print_format3_lock(struct seq_file *s, struct dlm_lkb *lkb,
David Teigland892c4462009-01-07 16:48:52 -0600229 int rsb_lookup)
David Teiglandd0225092008-12-16 14:53:23 -0600230{
231 u64 xid = 0;
232
233 if (lkb->lkb_flags & DLM_IFL_USER) {
234 if (lkb->lkb_ua)
235 xid = lkb->lkb_ua->xid;
236 }
237
Joe Perchesd6d906b2014-09-29 16:08:23 -0700238 seq_printf(s, "lkb %x %d %x %u %llu %x %x %d %d %d %d %d %d %u %llu %llu\n",
239 lkb->lkb_id,
240 lkb->lkb_nodeid,
241 lkb->lkb_remid,
242 lkb->lkb_ownpid,
243 (unsigned long long)xid,
244 lkb->lkb_exflags,
245 lkb->lkb_flags,
246 lkb->lkb_status,
247 lkb->lkb_grmode,
248 lkb->lkb_rqmode,
249 lkb->lkb_last_bast.mode,
250 rsb_lookup,
251 lkb->lkb_wait_type,
252 lkb->lkb_lvbseq,
253 (unsigned long long)ktime_to_ns(lkb->lkb_timestamp),
254 (unsigned long long)ktime_to_ns(lkb->lkb_last_bast_time));
David Teiglandd0225092008-12-16 14:53:23 -0600255}
256
Joe Perchesd6d906b2014-09-29 16:08:23 -0700257static void print_format3(struct dlm_rsb *r, struct seq_file *s)
David Teiglandd0225092008-12-16 14:53:23 -0600258{
259 struct dlm_lkb *lkb;
260 int i, lvblen = r->res_ls->ls_lvblen;
261 int print_name = 1;
262
263 lock_rsb(r);
264
Joe Perchesd6d906b2014-09-29 16:08:23 -0700265 seq_printf(s, "rsb %p %d %x %lx %d %d %u %d ",
266 r,
267 r->res_nodeid,
268 r->res_first_lkid,
269 r->res_flags,
270 !list_empty(&r->res_root_list),
271 !list_empty(&r->res_recover_list),
272 r->res_recover_locks_count,
273 r->res_length);
274 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600275 goto out;
David Teiglandd0225092008-12-16 14:53:23 -0600276
277 for (i = 0; i < r->res_length; i++) {
278 if (!isascii(r->res_name[i]) || !isprint(r->res_name[i]))
279 print_name = 0;
280 }
281
Joe Perchesf365ef92014-09-29 16:08:24 -0700282 seq_puts(s, print_name ? "str " : "hex");
David Teiglandd0225092008-12-16 14:53:23 -0600283
284 for (i = 0; i < r->res_length; i++) {
285 if (print_name)
286 seq_printf(s, "%c", r->res_name[i]);
287 else
288 seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
289 }
Markus Elfring653996c2017-05-06 08:12:31 +0200290 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700291 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600292 goto out;
David Teiglandd0225092008-12-16 14:53:23 -0600293
294 if (!r->res_lvbptr)
295 goto do_locks;
296
297 seq_printf(s, "lvb %u %d", r->res_lvbseq, lvblen);
298
299 for (i = 0; i < lvblen; i++)
300 seq_printf(s, " %02x", (unsigned char)r->res_lvbptr[i]);
Markus Elfring653996c2017-05-06 08:12:31 +0200301 seq_putc(s, '\n');
Joe Perchesd6d906b2014-09-29 16:08:23 -0700302 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600303 goto out;
David Teiglandd0225092008-12-16 14:53:23 -0600304
305 do_locks:
David Teigland892c4462009-01-07 16:48:52 -0600306 list_for_each_entry(lkb, &r->res_grantqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700307 print_format3_lock(s, lkb, 0);
308 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600309 goto out;
310 }
David Teiglandd0225092008-12-16 14:53:23 -0600311
David Teigland892c4462009-01-07 16:48:52 -0600312 list_for_each_entry(lkb, &r->res_convertqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700313 print_format3_lock(s, lkb, 0);
314 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600315 goto out;
316 }
David Teiglandd0225092008-12-16 14:53:23 -0600317
David Teigland892c4462009-01-07 16:48:52 -0600318 list_for_each_entry(lkb, &r->res_waitqueue, lkb_statequeue) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700319 print_format3_lock(s, lkb, 0);
320 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600321 goto out;
322 }
David Teiglandd0225092008-12-16 14:53:23 -0600323
David Teigland892c4462009-01-07 16:48:52 -0600324 list_for_each_entry(lkb, &r->res_lookup, lkb_rsb_lookup) {
Joe Perchesd6d906b2014-09-29 16:08:23 -0700325 print_format3_lock(s, lkb, 1);
326 if (seq_has_overflowed(s))
David Teigland892c4462009-01-07 16:48:52 -0600327 goto out;
328 }
329 out:
David Teigland9dd592d2007-05-29 08:47:04 -0500330 unlock_rsb(r);
David Teiglande7fd4172006-01-18 09:30:29 +0000331}
332
Joe Perchesd6d906b2014-09-29 16:08:23 -0700333static void print_format4(struct dlm_rsb *r, struct seq_file *s)
David Teiglandc04fecb2012-05-10 10:18:07 -0500334{
335 int our_nodeid = dlm_our_nodeid();
336 int print_name = 1;
Joe Perchesd6d906b2014-09-29 16:08:23 -0700337 int i;
David Teiglandc04fecb2012-05-10 10:18:07 -0500338
339 lock_rsb(r);
340
Joe Perchesd6d906b2014-09-29 16:08:23 -0700341 seq_printf(s, "rsb %p %d %d %d %d %lu %lx %d ",
342 r,
343 r->res_nodeid,
344 r->res_master_nodeid,
345 r->res_dir_nodeid,
346 our_nodeid,
347 r->res_toss_time,
348 r->res_flags,
349 r->res_length);
David Teiglandc04fecb2012-05-10 10:18:07 -0500350
351 for (i = 0; i < r->res_length; i++) {
352 if (!isascii(r->res_name[i]) || !isprint(r->res_name[i]))
353 print_name = 0;
354 }
355
Joe Perchesf365ef92014-09-29 16:08:24 -0700356 seq_puts(s, print_name ? "str " : "hex");
David Teiglandc04fecb2012-05-10 10:18:07 -0500357
358 for (i = 0; i < r->res_length; i++) {
359 if (print_name)
360 seq_printf(s, "%c", r->res_name[i]);
361 else
362 seq_printf(s, " %02x", (unsigned char)r->res_name[i]);
363 }
Markus Elfring653996c2017-05-06 08:12:31 +0200364 seq_putc(s, '\n');
David Teiglandc04fecb2012-05-10 10:18:07 -0500365 unlock_rsb(r);
David Teiglandc04fecb2012-05-10 10:18:07 -0500366}
367
David Teigland892c4462009-01-07 16:48:52 -0600368struct rsbtbl_iter {
369 struct dlm_rsb *rsb;
370 unsigned bucket;
371 int format;
372 int header;
373};
374
Joe Perchesd6d906b2014-09-29 16:08:23 -0700375/*
376 * If the buffer is full, seq_printf can be called again, but it
377 * does nothing. So, the these printing routines periodically check
378 * seq_has_overflowed to avoid wasting too much time trying to print to
379 * a full buffer.
380 */
David Teigland892c4462009-01-07 16:48:52 -0600381
382static int table_seq_show(struct seq_file *seq, void *iter_ptr)
David Teiglande7fd4172006-01-18 09:30:29 +0000383{
David Teigland892c4462009-01-07 16:48:52 -0600384 struct rsbtbl_iter *ri = iter_ptr;
David Teiglande7fd4172006-01-18 09:30:29 +0000385
David Teiglandd0225092008-12-16 14:53:23 -0600386 switch (ri->format) {
387 case 1:
Joe Perchesd6d906b2014-09-29 16:08:23 -0700388 print_format1(ri->rsb, seq);
David Teiglandd0225092008-12-16 14:53:23 -0600389 break;
390 case 2:
David Teigland9dd592d2007-05-29 08:47:04 -0500391 if (ri->header) {
Joe Perchesf365ef92014-09-29 16:08:24 -0700392 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 -0500393 ri->header = 0;
394 }
Joe Perchesd6d906b2014-09-29 16:08:23 -0700395 print_format2(ri->rsb, seq);
David Teiglandd0225092008-12-16 14:53:23 -0600396 break;
397 case 3:
398 if (ri->header) {
Joe Perchesf365ef92014-09-29 16:08:24 -0700399 seq_puts(seq, "version rsb 1.1 lvb 1.1 lkb 1.1\n");
David Teiglandd0225092008-12-16 14:53:23 -0600400 ri->header = 0;
401 }
Joe Perchesd6d906b2014-09-29 16:08:23 -0700402 print_format3(ri->rsb, seq);
David Teiglandd0225092008-12-16 14:53:23 -0600403 break;
David Teiglandc04fecb2012-05-10 10:18:07 -0500404 case 4:
405 if (ri->header) {
Joe Perchesf365ef92014-09-29 16:08:24 -0700406 seq_puts(seq, "version 4 rsb 2\n");
David Teiglandc04fecb2012-05-10 10:18:07 -0500407 ri->header = 0;
408 }
Joe Perchesd6d906b2014-09-29 16:08:23 -0700409 print_format4(ri->rsb, seq);
David Teiglandc04fecb2012-05-10 10:18:07 -0500410 break;
David Teigland9dd592d2007-05-29 08:47:04 -0500411 }
David Teiglande7fd4172006-01-18 09:30:29 +0000412
Joe Perchesd6d906b2014-09-29 16:08:23 -0700413 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000414}
415
James Morris88e9d342009-09-22 16:43:43 -0700416static const struct seq_operations format1_seq_ops;
417static const struct seq_operations format2_seq_ops;
418static const struct seq_operations format3_seq_ops;
David Teiglandc04fecb2012-05-10 10:18:07 -0500419static const struct seq_operations format4_seq_ops;
David Teigland892c4462009-01-07 16:48:52 -0600420
421static void *table_seq_start(struct seq_file *seq, loff_t *pos)
422{
David Teiglandc04fecb2012-05-10 10:18:07 -0500423 struct rb_root *tree;
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500424 struct rb_node *node;
David Teigland892c4462009-01-07 16:48:52 -0600425 struct dlm_ls *ls = seq->private;
426 struct rsbtbl_iter *ri;
427 struct dlm_rsb *r;
428 loff_t n = *pos;
429 unsigned bucket, entry;
David Teiglandc04fecb2012-05-10 10:18:07 -0500430 int toss = (seq->op == &format4_seq_ops);
David Teigland892c4462009-01-07 16:48:52 -0600431
432 bucket = n >> 32;
433 entry = n & ((1LL << 32) - 1);
434
435 if (bucket >= ls->ls_rsbtbl_size)
436 return NULL;
437
Markus Elfring2c257e92017-05-06 08:34:27 +0200438 ri = kzalloc(sizeof(*ri), GFP_NOFS);
David Teigland892c4462009-01-07 16:48:52 -0600439 if (!ri)
440 return NULL;
441 if (n == 0)
442 ri->header = 1;
443 if (seq->op == &format1_seq_ops)
444 ri->format = 1;
445 if (seq->op == &format2_seq_ops)
446 ri->format = 2;
447 if (seq->op == &format3_seq_ops)
448 ri->format = 3;
David Teiglandc04fecb2012-05-10 10:18:07 -0500449 if (seq->op == &format4_seq_ops)
450 ri->format = 4;
451
452 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep;
David Teigland892c4462009-01-07 16:48:52 -0600453
David Teiglandc7be7612009-01-07 16:50:41 -0600454 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teiglandc04fecb2012-05-10 10:18:07 -0500455 if (!RB_EMPTY_ROOT(tree)) {
456 for (node = rb_first(tree); node; node = rb_next(node)) {
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500457 r = rb_entry(node, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600458 if (!entry--) {
459 dlm_hold_rsb(r);
460 ri->rsb = r;
461 ri->bucket = bucket;
David Teiglandc7be7612009-01-07 16:50:41 -0600462 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600463 return ri;
464 }
465 }
466 }
David Teiglandc7be7612009-01-07 16:50:41 -0600467 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600468
469 /*
470 * move to the first rsb in the next non-empty bucket
471 */
472
473 /* zero the entry */
474 n &= ~((1LL << 32) - 1);
475
476 while (1) {
477 bucket++;
478 n += 1LL << 32;
479
480 if (bucket >= ls->ls_rsbtbl_size) {
481 kfree(ri);
482 return NULL;
483 }
David Teiglandc04fecb2012-05-10 10:18:07 -0500484 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep;
David Teigland892c4462009-01-07 16:48:52 -0600485
David Teiglandc7be7612009-01-07 16:50:41 -0600486 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teiglandc04fecb2012-05-10 10:18:07 -0500487 if (!RB_EMPTY_ROOT(tree)) {
488 node = rb_first(tree);
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500489 r = rb_entry(node, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600490 dlm_hold_rsb(r);
491 ri->rsb = r;
492 ri->bucket = bucket;
David Teiglandc7be7612009-01-07 16:50:41 -0600493 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600494 *pos = n;
495 return ri;
496 }
David Teiglandc7be7612009-01-07 16:50:41 -0600497 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600498 }
499}
500
501static void *table_seq_next(struct seq_file *seq, void *iter_ptr, loff_t *pos)
502{
503 struct dlm_ls *ls = seq->private;
504 struct rsbtbl_iter *ri = iter_ptr;
David Teiglandc04fecb2012-05-10 10:18:07 -0500505 struct rb_root *tree;
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500506 struct rb_node *next;
David Teigland892c4462009-01-07 16:48:52 -0600507 struct dlm_rsb *r, *rp;
508 loff_t n = *pos;
509 unsigned bucket;
David Teiglandc04fecb2012-05-10 10:18:07 -0500510 int toss = (seq->op == &format4_seq_ops);
David Teigland892c4462009-01-07 16:48:52 -0600511
512 bucket = n >> 32;
513
514 /*
515 * move to the next rsb in the same bucket
516 */
517
David Teiglandc7be7612009-01-07 16:50:41 -0600518 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600519 rp = ri->rsb;
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500520 next = rb_next(&rp->res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600521
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500522 if (next) {
523 r = rb_entry(next, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600524 dlm_hold_rsb(r);
525 ri->rsb = r;
David Teiglandc7be7612009-01-07 16:50:41 -0600526 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600527 dlm_put_rsb(rp);
528 ++*pos;
529 return ri;
530 }
David Teiglandc7be7612009-01-07 16:50:41 -0600531 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600532 dlm_put_rsb(rp);
533
534 /*
535 * move to the first rsb in the next non-empty bucket
536 */
537
538 /* zero the entry */
539 n &= ~((1LL << 32) - 1);
540
541 while (1) {
542 bucket++;
543 n += 1LL << 32;
544
545 if (bucket >= ls->ls_rsbtbl_size) {
546 kfree(ri);
547 return NULL;
548 }
David Teiglandc04fecb2012-05-10 10:18:07 -0500549 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep;
David Teigland892c4462009-01-07 16:48:52 -0600550
David Teiglandc7be7612009-01-07 16:50:41 -0600551 spin_lock(&ls->ls_rsbtbl[bucket].lock);
David Teiglandc04fecb2012-05-10 10:18:07 -0500552 if (!RB_EMPTY_ROOT(tree)) {
553 next = rb_first(tree);
Bob Peterson9beb3bf2011-10-26 15:24:55 -0500554 r = rb_entry(next, struct dlm_rsb, res_hashnode);
David Teigland892c4462009-01-07 16:48:52 -0600555 dlm_hold_rsb(r);
556 ri->rsb = r;
557 ri->bucket = bucket;
David Teiglandc7be7612009-01-07 16:50:41 -0600558 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600559 *pos = n;
560 return ri;
561 }
David Teiglandc7be7612009-01-07 16:50:41 -0600562 spin_unlock(&ls->ls_rsbtbl[bucket].lock);
David Teigland892c4462009-01-07 16:48:52 -0600563 }
564}
565
566static void table_seq_stop(struct seq_file *seq, void *iter_ptr)
567{
568 struct rsbtbl_iter *ri = iter_ptr;
569
570 if (ri) {
571 dlm_put_rsb(ri->rsb);
572 kfree(ri);
573 }
574}
575
James Morris88e9d342009-09-22 16:43:43 -0700576static const struct seq_operations format1_seq_ops = {
David Teigland892c4462009-01-07 16:48:52 -0600577 .start = table_seq_start,
578 .next = table_seq_next,
579 .stop = table_seq_stop,
580 .show = table_seq_show,
David Teiglande7fd4172006-01-18 09:30:29 +0000581};
582
James Morris88e9d342009-09-22 16:43:43 -0700583static const struct seq_operations format2_seq_ops = {
David Teigland892c4462009-01-07 16:48:52 -0600584 .start = table_seq_start,
585 .next = table_seq_next,
586 .stop = table_seq_stop,
587 .show = table_seq_show,
588};
589
James Morris88e9d342009-09-22 16:43:43 -0700590static const struct seq_operations format3_seq_ops = {
David Teigland892c4462009-01-07 16:48:52 -0600591 .start = table_seq_start,
592 .next = table_seq_next,
593 .stop = table_seq_stop,
594 .show = table_seq_show,
595};
596
David Teiglandc04fecb2012-05-10 10:18:07 -0500597static const struct seq_operations format4_seq_ops = {
598 .start = table_seq_start,
599 .next = table_seq_next,
600 .stop = table_seq_stop,
601 .show = table_seq_show,
602};
603
David Teigland892c4462009-01-07 16:48:52 -0600604static const struct file_operations format1_fops;
605static const struct file_operations format2_fops;
606static const struct file_operations format3_fops;
David Teiglandc04fecb2012-05-10 10:18:07 -0500607static const struct file_operations format4_fops;
David Teigland892c4462009-01-07 16:48:52 -0600608
Eric Ren079d37d2016-08-25 17:20:59 +0800609static int table_open1(struct inode *inode, struct file *file)
David Teiglande7fd4172006-01-18 09:30:29 +0000610{
611 struct seq_file *seq;
Eric Ren079d37d2016-08-25 17:20:59 +0800612 int ret;
David Teiglande7fd4172006-01-18 09:30:29 +0000613
Eric Ren079d37d2016-08-25 17:20:59 +0800614 ret = seq_open(file, &format1_seq_ops);
615 if (ret)
616 return ret;
David Teigland892c4462009-01-07 16:48:52 -0600617
Eric Ren079d37d2016-08-25 17:20:59 +0800618 seq = file->private_data;
619 seq->private = inode->i_private; /* the dlm_ls */
620 return 0;
621}
622
623static int table_open2(struct inode *inode, struct file *file)
624{
625 struct seq_file *seq;
626 int ret;
627
628 ret = seq_open(file, &format2_seq_ops);
629 if (ret)
630 return ret;
631
632 seq = file->private_data;
633 seq->private = inode->i_private; /* the dlm_ls */
634 return 0;
635}
636
637static int table_open3(struct inode *inode, struct file *file)
638{
639 struct seq_file *seq;
640 int ret;
641
642 ret = seq_open(file, &format3_seq_ops);
643 if (ret)
644 return ret;
645
646 seq = file->private_data;
647 seq->private = inode->i_private; /* the dlm_ls */
648 return 0;
649}
650
651static int table_open4(struct inode *inode, struct file *file)
652{
653 struct seq_file *seq;
654 int ret;
655
656 ret = seq_open(file, &format4_seq_ops);
David Teiglande7fd4172006-01-18 09:30:29 +0000657 if (ret)
658 return ret;
659
660 seq = file->private_data;
David Teigland892c4462009-01-07 16:48:52 -0600661 seq->private = inode->i_private; /* the dlm_ls */
David Teiglande7fd4172006-01-18 09:30:29 +0000662 return 0;
663}
664
David Teigland892c4462009-01-07 16:48:52 -0600665static const struct file_operations format1_fops = {
David Teiglande7fd4172006-01-18 09:30:29 +0000666 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800667 .open = table_open1,
David Teiglande7fd4172006-01-18 09:30:29 +0000668 .read = seq_read,
669 .llseek = seq_lseek,
670 .release = seq_release
671};
672
David Teigland892c4462009-01-07 16:48:52 -0600673static const struct file_operations format2_fops = {
David Teigland9dd592d2007-05-29 08:47:04 -0500674 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800675 .open = table_open2,
David Teigland9dd592d2007-05-29 08:47:04 -0500676 .read = seq_read,
677 .llseek = seq_lseek,
678 .release = seq_release
679};
680
David Teigland892c4462009-01-07 16:48:52 -0600681static const struct file_operations format3_fops = {
David Teiglandd0225092008-12-16 14:53:23 -0600682 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800683 .open = table_open3,
David Teiglandd0225092008-12-16 14:53:23 -0600684 .read = seq_read,
685 .llseek = seq_lseek,
686 .release = seq_release
687};
688
David Teiglandc04fecb2012-05-10 10:18:07 -0500689static const struct file_operations format4_fops = {
690 .owner = THIS_MODULE,
Eric Ren079d37d2016-08-25 17:20:59 +0800691 .open = table_open4,
David Teiglandc04fecb2012-05-10 10:18:07 -0500692 .read = seq_read,
693 .llseek = seq_lseek,
694 .release = seq_release
695};
696
David Teiglandd0225092008-12-16 14:53:23 -0600697/*
David Teigland5de63192006-07-25 13:44:31 -0500698 * dump lkb's on the ls_waiters list
699 */
David Teigland5de63192006-07-25 13:44:31 -0500700static ssize_t waiters_read(struct file *file, char __user *userbuf,
701 size_t count, loff_t *ppos)
702{
703 struct dlm_ls *ls = file->private_data;
704 struct dlm_lkb *lkb;
David Teigland06442442006-08-08 11:31:30 -0500705 size_t len = DLM_DEBUG_BUF_LEN, pos = 0, ret, rv;
David Teigland5de63192006-07-25 13:44:31 -0500706
707 mutex_lock(&debug_buf_lock);
708 mutex_lock(&ls->ls_waiters_mutex);
709 memset(debug_buf, 0, sizeof(debug_buf));
710
711 list_for_each_entry(lkb, &ls->ls_waiters, lkb_wait_reply) {
David Teigland06442442006-08-08 11:31:30 -0500712 ret = snprintf(debug_buf + pos, len - pos, "%x %d %d %s\n",
713 lkb->lkb_id, lkb->lkb_wait_type,
714 lkb->lkb_nodeid, lkb->lkb_resource->res_name);
715 if (ret >= len - pos)
716 break;
717 pos += ret;
David Teigland5de63192006-07-25 13:44:31 -0500718 }
719 mutex_unlock(&ls->ls_waiters_mutex);
720
721 rv = simple_read_from_buffer(userbuf, count, ppos, debug_buf, pos);
722 mutex_unlock(&debug_buf_lock);
723 return rv;
724}
725
Arjan van de Ven00977a52007-02-12 00:55:34 -0800726static const struct file_operations waiters_fops = {
David Teigland5de63192006-07-25 13:44:31 -0500727 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -0700728 .open = simple_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200729 .read = waiters_read,
730 .llseek = default_llseek,
David Teigland5de63192006-07-25 13:44:31 -0500731};
732
David Teiglandd0225092008-12-16 14:53:23 -0600733void dlm_delete_debug_file(struct dlm_ls *ls)
734{
Fabian Fredericke0d9bf42014-08-08 14:23:37 -0700735 debugfs_remove(ls->ls_debug_rsb_dentry);
736 debugfs_remove(ls->ls_debug_waiters_dentry);
737 debugfs_remove(ls->ls_debug_locks_dentry);
738 debugfs_remove(ls->ls_debug_all_dentry);
739 debugfs_remove(ls->ls_debug_toss_dentry);
David Teiglandd0225092008-12-16 14:53:23 -0600740}
741
David Teiglande7fd4172006-01-18 09:30:29 +0000742int dlm_create_debug_file(struct dlm_ls *ls)
743{
Markus Elfring41922ce2017-05-06 08:22:35 +0200744 char name[DLM_LOCKSPACE_LEN + 8];
David Teigland5de63192006-07-25 13:44:31 -0500745
David Teiglandd0225092008-12-16 14:53:23 -0600746 /* format 1 */
747
David Teigland5de63192006-07-25 13:44:31 -0500748 ls->ls_debug_rsb_dentry = debugfs_create_file(ls->ls_name,
749 S_IFREG | S_IRUGO,
750 dlm_root,
751 ls,
David Teigland892c4462009-01-07 16:48:52 -0600752 &format1_fops);
David Teigland20abf972006-07-26 08:29:06 -0500753 if (!ls->ls_debug_rsb_dentry)
David Teiglandd0225092008-12-16 14:53:23 -0600754 goto fail;
David Teigland5de63192006-07-25 13:44:31 -0500755
David Teiglandd0225092008-12-16 14:53:23 -0600756 /* format 2 */
David Teigland5de63192006-07-25 13:44:31 -0500757
David Teigland9dd592d2007-05-29 08:47:04 -0500758 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200759 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_locks", ls->ls_name);
David Teigland9dd592d2007-05-29 08:47:04 -0500760
David Teiglandac90a252007-07-06 09:47:08 -0500761 ls->ls_debug_locks_dentry = debugfs_create_file(name,
762 S_IFREG | S_IRUGO,
763 dlm_root,
764 ls,
David Teigland892c4462009-01-07 16:48:52 -0600765 &format2_fops);
David Teiglandd0225092008-12-16 14:53:23 -0600766 if (!ls->ls_debug_locks_dentry)
767 goto fail;
768
769 /* format 3 */
770
771 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200772 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_all", ls->ls_name);
David Teiglandd0225092008-12-16 14:53:23 -0600773
774 ls->ls_debug_all_dentry = debugfs_create_file(name,
775 S_IFREG | S_IRUGO,
776 dlm_root,
777 ls,
David Teigland892c4462009-01-07 16:48:52 -0600778 &format3_fops);
David Teiglandd0225092008-12-16 14:53:23 -0600779 if (!ls->ls_debug_all_dentry)
780 goto fail;
781
David Teiglandc04fecb2012-05-10 10:18:07 -0500782 /* format 4 */
783
784 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200785 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_toss", ls->ls_name);
David Teiglandc04fecb2012-05-10 10:18:07 -0500786
787 ls->ls_debug_toss_dentry = debugfs_create_file(name,
788 S_IFREG | S_IRUGO,
789 dlm_root,
790 ls,
791 &format4_fops);
792 if (!ls->ls_debug_toss_dentry)
793 goto fail;
794
David Teiglandd0225092008-12-16 14:53:23 -0600795 memset(name, 0, sizeof(name));
Markus Elfring41922ce2017-05-06 08:22:35 +0200796 snprintf(name, DLM_LOCKSPACE_LEN + 8, "%s_waiters", ls->ls_name);
David Teiglandd0225092008-12-16 14:53:23 -0600797
798 ls->ls_debug_waiters_dentry = debugfs_create_file(name,
799 S_IFREG | S_IRUGO,
800 dlm_root,
801 ls,
802 &waiters_fops);
803 if (!ls->ls_debug_waiters_dentry)
804 goto fail;
David Teigland9dd592d2007-05-29 08:47:04 -0500805
David Teigland5de63192006-07-25 13:44:31 -0500806 return 0;
David Teiglande7fd4172006-01-18 09:30:29 +0000807
David Teiglandd0225092008-12-16 14:53:23 -0600808 fail:
809 dlm_delete_debug_file(ls);
810 return -ENOMEM;
David Teiglande7fd4172006-01-18 09:30:29 +0000811}
812
Denis Cheng30727172008-02-02 01:53:46 +0800813int __init dlm_register_debugfs(void)
David Teiglande7fd4172006-01-18 09:30:29 +0000814{
David Teigland5de63192006-07-25 13:44:31 -0500815 mutex_init(&debug_buf_lock);
David Teiglande7fd4172006-01-18 09:30:29 +0000816 dlm_root = debugfs_create_dir("dlm", NULL);
817 return dlm_root ? 0 : -ENOMEM;
818}
819
820void dlm_unregister_debugfs(void)
821{
822 debugfs_remove(dlm_root);
823}
824