blob: 4d0b452012b252f4bc3be3eb222b997fb6f50556 [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Kurt Hackel6714d8e2005-12-15 14:31:23 -08002/* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
4 *
5 * dlmdebug.c
6 *
7 * debug functionality for the dlm
8 *
Sunil Mushranc834cdb2008-03-10 15:16:29 -07009 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
Kurt Hackel6714d8e2005-12-15 14:31:23 -080010 */
11
12#include <linux/types.h>
13#include <linux/slab.h>
14#include <linux/highmem.h>
Kurt Hackel6714d8e2005-12-15 14:31:23 -080015#include <linux/sysctl.h>
16#include <linux/spinlock.h>
Sunil Mushran6325b4a2008-03-10 15:16:22 -070017#include <linux/debugfs.h>
Paul Gortmakerafeacc82011-05-26 16:00:52 -040018#include <linux/export.h>
Kurt Hackel6714d8e2005-12-15 14:31:23 -080019
20#include "cluster/heartbeat.h"
21#include "cluster/nodemanager.h"
22#include "cluster/tcp.h"
23
24#include "dlmapi.h"
25#include "dlmcommon.h"
Kurt Hackel6714d8e2005-12-15 14:31:23 -080026#include "dlmdomain.h"
Sunil Mushran6325b4a2008-03-10 15:16:22 -070027#include "dlmdebug.h"
Kurt Hackel6714d8e2005-12-15 14:31:23 -080028
29#define MLOG_MASK_PREFIX ML_DLM
30#include "cluster/masklog.h"
31
Adrian Bunk95642e52008-04-21 11:49:37 +030032static int stringify_lockname(const char *lockname, int locklen, char *buf,
33 int len);
Sunil Mushranc834cdb2008-03-10 15:16:29 -070034
Kurt Hackel6714d8e2005-12-15 14:31:23 -080035void dlm_print_one_lock_resource(struct dlm_lock_resource *res)
36{
Kurt Hackel6714d8e2005-12-15 14:31:23 -080037 spin_lock(&res->spinlock);
38 __dlm_print_one_lock_resource(res);
39 spin_unlock(&res->spinlock);
40}
41
Kurt Hackelba2bf212006-12-01 14:47:20 -080042static void dlm_print_lockres_refmap(struct dlm_lock_resource *res)
43{
44 int bit;
45 assert_spin_locked(&res->spinlock);
46
Sunil Mushran8f50eb92008-03-14 11:18:24 -070047 printk(" refmap nodes: [ ");
Kurt Hackelba2bf212006-12-01 14:47:20 -080048 bit = 0;
49 while (1) {
50 bit = find_next_bit(res->refmap, O2NM_MAX_NODES, bit);
51 if (bit >= O2NM_MAX_NODES)
52 break;
Sunil Mushran8f50eb92008-03-14 11:18:24 -070053 printk("%u ", bit);
Kurt Hackelba2bf212006-12-01 14:47:20 -080054 bit++;
55 }
Sunil Mushran8f50eb92008-03-14 11:18:24 -070056 printk("], inflight=%u\n", res->inflight_locks);
Sunil Mushranc834cdb2008-03-10 15:16:29 -070057}
58
59static void __dlm_print_lock(struct dlm_lock *lock)
60{
61 spin_lock(&lock->spinlock);
62
Sunil Mushran8f50eb92008-03-14 11:18:24 -070063 printk(" type=%d, conv=%d, node=%u, cookie=%u:%llu, "
Sunil Mushranc834cdb2008-03-10 15:16:29 -070064 "ref=%u, ast=(empty=%c,pend=%c), bast=(empty=%c,pend=%c), "
65 "pending=(conv=%c,lock=%c,cancel=%c,unlock=%c)\n",
66 lock->ml.type, lock->ml.convert_type, lock->ml.node,
67 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
68 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
Peter Zijlstra2c935bc2016-11-14 17:29:48 +010069 kref_read(&lock->lock_refs),
Sunil Mushranc834cdb2008-03-10 15:16:29 -070070 (list_empty(&lock->ast_list) ? 'y' : 'n'),
71 (lock->ast_pending ? 'y' : 'n'),
72 (list_empty(&lock->bast_list) ? 'y' : 'n'),
73 (lock->bast_pending ? 'y' : 'n'),
74 (lock->convert_pending ? 'y' : 'n'),
75 (lock->lock_pending ? 'y' : 'n'),
76 (lock->cancel_pending ? 'y' : 'n'),
77 (lock->unlock_pending ? 'y' : 'n'));
78
79 spin_unlock(&lock->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -080080}
81
Kurt Hackel6714d8e2005-12-15 14:31:23 -080082void __dlm_print_one_lock_resource(struct dlm_lock_resource *res)
83{
Kurt Hackel6714d8e2005-12-15 14:31:23 -080084 struct dlm_lock *lock;
Sunil Mushranc834cdb2008-03-10 15:16:29 -070085 char buf[DLM_LOCKID_NAME_MAX];
Kurt Hackel6714d8e2005-12-15 14:31:23 -080086
87 assert_spin_locked(&res->spinlock);
88
Sunil Mushranc834cdb2008-03-10 15:16:29 -070089 stringify_lockname(res->lockname.name, res->lockname.len,
Sunil Mushran86a06ab2010-02-05 17:55:56 -080090 buf, sizeof(buf));
Sunil Mushran8f50eb92008-03-14 11:18:24 -070091 printk("lockres: %s, owner=%u, state=%u\n",
Sunil Mushranc834cdb2008-03-10 15:16:29 -070092 buf, res->owner, res->state);
Sunil Mushran8f50eb92008-03-14 11:18:24 -070093 printk(" last used: %lu, refcnt: %u, on purge list: %s\n",
Peter Zijlstra2c935bc2016-11-14 17:29:48 +010094 res->last_used, kref_read(&res->refs),
Sunil Mushranc834cdb2008-03-10 15:16:29 -070095 list_empty(&res->purge) ? "no" : "yes");
Sunil Mushran8f50eb92008-03-14 11:18:24 -070096 printk(" on dirty list: %s, on reco list: %s, "
Sunil Mushranc834cdb2008-03-10 15:16:29 -070097 "migrating pending: %s\n",
98 list_empty(&res->dirty) ? "no" : "yes",
99 list_empty(&res->recovering) ? "no" : "yes",
100 res->migration_pending ? "yes" : "no");
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700101 printk(" inflight locks: %d, asts reserved: %d\n",
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700102 res->inflight_locks, atomic_read(&res->asts_reserved));
Kurt Hackelba2bf212006-12-01 14:47:20 -0800103 dlm_print_lockres_refmap(res);
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700104 printk(" granted queue:\n");
Dong Fangdf53cd32013-09-11 14:19:50 -0700105 list_for_each_entry(lock, &res->granted, list) {
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700106 __dlm_print_lock(lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800107 }
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700108 printk(" converting queue:\n");
Dong Fangdf53cd32013-09-11 14:19:50 -0700109 list_for_each_entry(lock, &res->converting, list) {
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700110 __dlm_print_lock(lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800111 }
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700112 printk(" blocked queue:\n");
Dong Fangdf53cd32013-09-11 14:19:50 -0700113 list_for_each_entry(lock, &res->blocked, list) {
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700114 __dlm_print_lock(lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800115 }
116}
117
118void dlm_print_one_lock(struct dlm_lock *lockid)
119{
120 dlm_print_one_lock_resource(lockid->lockres);
121}
122EXPORT_SYMBOL_GPL(dlm_print_one_lock);
123
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800124static const char *dlm_errnames[] = {
125 [DLM_NORMAL] = "DLM_NORMAL",
126 [DLM_GRANTED] = "DLM_GRANTED",
127 [DLM_DENIED] = "DLM_DENIED",
128 [DLM_DENIED_NOLOCKS] = "DLM_DENIED_NOLOCKS",
129 [DLM_WORKING] = "DLM_WORKING",
130 [DLM_BLOCKED] = "DLM_BLOCKED",
131 [DLM_BLOCKED_ORPHAN] = "DLM_BLOCKED_ORPHAN",
132 [DLM_DENIED_GRACE_PERIOD] = "DLM_DENIED_GRACE_PERIOD",
133 [DLM_SYSERR] = "DLM_SYSERR",
134 [DLM_NOSUPPORT] = "DLM_NOSUPPORT",
135 [DLM_CANCELGRANT] = "DLM_CANCELGRANT",
136 [DLM_IVLOCKID] = "DLM_IVLOCKID",
137 [DLM_SYNC] = "DLM_SYNC",
138 [DLM_BADTYPE] = "DLM_BADTYPE",
139 [DLM_BADRESOURCE] = "DLM_BADRESOURCE",
140 [DLM_MAXHANDLES] = "DLM_MAXHANDLES",
141 [DLM_NOCLINFO] = "DLM_NOCLINFO",
142 [DLM_NOLOCKMGR] = "DLM_NOLOCKMGR",
143 [DLM_NOPURGED] = "DLM_NOPURGED",
144 [DLM_BADARGS] = "DLM_BADARGS",
145 [DLM_VOID] = "DLM_VOID",
146 [DLM_NOTQUEUED] = "DLM_NOTQUEUED",
147 [DLM_IVBUFLEN] = "DLM_IVBUFLEN",
148 [DLM_CVTUNGRANT] = "DLM_CVTUNGRANT",
149 [DLM_BADPARAM] = "DLM_BADPARAM",
150 [DLM_VALNOTVALID] = "DLM_VALNOTVALID",
151 [DLM_REJECTED] = "DLM_REJECTED",
152 [DLM_ABORT] = "DLM_ABORT",
153 [DLM_CANCEL] = "DLM_CANCEL",
154 [DLM_IVRESHANDLE] = "DLM_IVRESHANDLE",
155 [DLM_DEADLOCK] = "DLM_DEADLOCK",
156 [DLM_DENIED_NOASTS] = "DLM_DENIED_NOASTS",
157 [DLM_FORWARD] = "DLM_FORWARD",
158 [DLM_TIMEOUT] = "DLM_TIMEOUT",
159 [DLM_IVGROUPID] = "DLM_IVGROUPID",
160 [DLM_VERS_CONFLICT] = "DLM_VERS_CONFLICT",
161 [DLM_BAD_DEVICE_PATH] = "DLM_BAD_DEVICE_PATH",
162 [DLM_NO_DEVICE_PERMISSION] = "DLM_NO_DEVICE_PERMISSION",
163 [DLM_NO_CONTROL_DEVICE ] = "DLM_NO_CONTROL_DEVICE ",
164 [DLM_RECOVERING] = "DLM_RECOVERING",
165 [DLM_MIGRATING] = "DLM_MIGRATING",
166 [DLM_MAXSTATS] = "DLM_MAXSTATS",
167};
168
169static const char *dlm_errmsgs[] = {
170 [DLM_NORMAL] = "request in progress",
171 [DLM_GRANTED] = "request granted",
172 [DLM_DENIED] = "request denied",
173 [DLM_DENIED_NOLOCKS] = "request denied, out of system resources",
174 [DLM_WORKING] = "async request in progress",
175 [DLM_BLOCKED] = "lock request blocked",
176 [DLM_BLOCKED_ORPHAN] = "lock request blocked by a orphan lock",
177 [DLM_DENIED_GRACE_PERIOD] = "topological change in progress",
178 [DLM_SYSERR] = "system error",
179 [DLM_NOSUPPORT] = "unsupported",
180 [DLM_CANCELGRANT] = "can't cancel convert: already granted",
181 [DLM_IVLOCKID] = "bad lockid",
182 [DLM_SYNC] = "synchronous request granted",
183 [DLM_BADTYPE] = "bad resource type",
184 [DLM_BADRESOURCE] = "bad resource handle",
185 [DLM_MAXHANDLES] = "no more resource handles",
186 [DLM_NOCLINFO] = "can't contact cluster manager",
187 [DLM_NOLOCKMGR] = "can't contact lock manager",
188 [DLM_NOPURGED] = "can't contact purge daemon",
189 [DLM_BADARGS] = "bad api args",
190 [DLM_VOID] = "no status",
191 [DLM_NOTQUEUED] = "NOQUEUE was specified and request failed",
192 [DLM_IVBUFLEN] = "invalid resource name length",
193 [DLM_CVTUNGRANT] = "attempted to convert ungranted lock",
194 [DLM_BADPARAM] = "invalid lock mode specified",
195 [DLM_VALNOTVALID] = "value block has been invalidated",
196 [DLM_REJECTED] = "request rejected, unrecognized client",
197 [DLM_ABORT] = "blocked lock request cancelled",
198 [DLM_CANCEL] = "conversion request cancelled",
199 [DLM_IVRESHANDLE] = "invalid resource handle",
200 [DLM_DEADLOCK] = "deadlock recovery refused this request",
201 [DLM_DENIED_NOASTS] = "failed to allocate AST",
202 [DLM_FORWARD] = "request must wait for primary's response",
203 [DLM_TIMEOUT] = "timeout value for lock has expired",
204 [DLM_IVGROUPID] = "invalid group specification",
205 [DLM_VERS_CONFLICT] = "version conflicts prevent request handling",
206 [DLM_BAD_DEVICE_PATH] = "Locks device does not exist or path wrong",
207 [DLM_NO_DEVICE_PERMISSION] = "Client has insufficient perms for device",
208 [DLM_NO_CONTROL_DEVICE] = "Cannot set options on opened device ",
209 [DLM_RECOVERING] = "lock resource being recovered",
210 [DLM_MIGRATING] = "lock resource being migrated",
211 [DLM_MAXSTATS] = "invalid error number",
212};
213
214const char *dlm_errmsg(enum dlm_status err)
215{
216 if (err >= DLM_MAXSTATS || err < 0)
217 return dlm_errmsgs[DLM_MAXSTATS];
218 return dlm_errmsgs[err];
219}
220EXPORT_SYMBOL_GPL(dlm_errmsg);
221
222const char *dlm_errname(enum dlm_status err)
223{
224 if (err >= DLM_MAXSTATS || err < 0)
225 return dlm_errnames[DLM_MAXSTATS];
226 return dlm_errnames[err];
227}
228EXPORT_SYMBOL_GPL(dlm_errname);
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700229
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700230/* NOTE: This function converts a lockname into a string. It uses knowledge
231 * of the format of the lockname that should be outside the purview of the dlm.
232 * We are adding only to make dlm debugging slightly easier.
233 *
234 * For more on lockname formats, please refer to dlmglue.c and ocfs2_lockid.h.
235 */
Adrian Bunk95642e52008-04-21 11:49:37 +0300236static int stringify_lockname(const char *lockname, int locklen, char *buf,
237 int len)
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700238{
239 int out = 0;
240 __be64 inode_blkno_be;
241
242#define OCFS2_DENTRY_LOCK_INO_START 18
243 if (*lockname == 'N') {
244 memcpy((__be64 *)&inode_blkno_be,
245 (char *)&lockname[OCFS2_DENTRY_LOCK_INO_START],
246 sizeof(__be64));
247 out += snprintf(buf + out, len - out, "%.*s%08x",
248 OCFS2_DENTRY_LOCK_INO_START - 1, lockname,
249 (unsigned int)be64_to_cpu(inode_blkno_be));
250 } else
251 out += snprintf(buf + out, len - out, "%.*s",
252 locklen, lockname);
253 return out;
254}
255
Sunil Mushrane5a03342008-03-10 15:16:28 -0700256static int stringify_nodemap(unsigned long *nodemap, int maxnodes,
257 char *buf, int len)
258{
259 int out = 0;
260 int i = -1;
261
262 while ((i = find_next_bit(nodemap, maxnodes, i + 1)) < maxnodes)
263 out += snprintf(buf + out, len - out, "%d ", i);
264
265 return out;
266}
267
268static int dump_mle(struct dlm_master_list_entry *mle, char *buf, int len)
269{
270 int out = 0;
Sunil Mushrane5a03342008-03-10 15:16:28 -0700271 char *mle_type;
272
Sunil Mushrane5a03342008-03-10 15:16:28 -0700273 if (mle->type == DLM_MLE_BLOCK)
274 mle_type = "BLK";
275 else if (mle->type == DLM_MLE_MASTER)
276 mle_type = "MAS";
277 else
278 mle_type = "MIG";
279
Sunil Mushran71415142009-02-26 15:00:47 -0800280 out += stringify_lockname(mle->mname, mle->mnamelen, buf + out, len - out);
Sunil Mushrane5a03342008-03-10 15:16:28 -0700281 out += snprintf(buf + out, len - out,
282 "\t%3s\tmas=%3u\tnew=%3u\tevt=%1d\tuse=%1d\tref=%3d\n",
283 mle_type, mle->master, mle->new_master,
284 !list_empty(&mle->hb_events),
285 !!mle->inuse,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100286 kref_read(&mle->mle_refs));
Sunil Mushrane5a03342008-03-10 15:16:28 -0700287
288 out += snprintf(buf + out, len - out, "Maybe=");
289 out += stringify_nodemap(mle->maybe_map, O2NM_MAX_NODES,
290 buf + out, len - out);
291 out += snprintf(buf + out, len - out, "\n");
292
293 out += snprintf(buf + out, len - out, "Vote=");
294 out += stringify_nodemap(mle->vote_map, O2NM_MAX_NODES,
295 buf + out, len - out);
296 out += snprintf(buf + out, len - out, "\n");
297
298 out += snprintf(buf + out, len - out, "Response=");
299 out += stringify_nodemap(mle->response_map, O2NM_MAX_NODES,
300 buf + out, len - out);
301 out += snprintf(buf + out, len - out, "\n");
302
303 out += snprintf(buf + out, len - out, "Node=");
304 out += stringify_nodemap(mle->node_map, O2NM_MAX_NODES,
305 buf + out, len - out);
306 out += snprintf(buf + out, len - out, "\n");
307
308 out += snprintf(buf + out, len - out, "\n");
309
310 return out;
311}
312
313void dlm_print_one_mle(struct dlm_master_list_entry *mle)
314{
315 char *buf;
316
Jia-Ju Bai99986572018-10-26 15:02:52 -0700317 buf = (char *) get_zeroed_page(GFP_ATOMIC);
Sunil Mushrane5a03342008-03-10 15:16:28 -0700318 if (buf) {
319 dump_mle(mle, buf, PAGE_SIZE - 1);
320 free_page((unsigned long)buf);
321 }
322}
323
324#ifdef CONFIG_DEBUG_FS
325
Fabian Frederick1a5c4e22014-06-04 16:06:06 -0700326static struct dentry *dlm_debugfs_root;
Sunil Mushrane5a03342008-03-10 15:16:28 -0700327
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700328#define DLM_DEBUGFS_DIR "o2dlm"
Sunil Mushran007dce52008-03-10 15:16:23 -0700329#define DLM_DEBUGFS_DLM_STATE "dlm_state"
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700330#define DLM_DEBUGFS_LOCKING_STATE "locking_state"
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700331#define DLM_DEBUGFS_MLE_STATE "mle_state"
Sunil Mushran72093002008-03-10 15:16:27 -0700332#define DLM_DEBUGFS_PURGE_LIST "purge_list"
Sunil Mushran007dce52008-03-10 15:16:23 -0700333
334/* begin - utils funcs */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800335static int debug_release(struct inode *inode, struct file *file)
Sunil Mushran007dce52008-03-10 15:16:23 -0700336{
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800337 free_page((unsigned long)file->private_data);
Sunil Mushran007dce52008-03-10 15:16:23 -0700338 return 0;
339}
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800340
341static ssize_t debug_read(struct file *file, char __user *buf,
342 size_t nbytes, loff_t *ppos)
343{
344 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
345 i_size_read(file->f_mapping->host));
346}
Sunil Mushran007dce52008-03-10 15:16:23 -0700347/* end - util funcs */
348
Sunil Mushran72093002008-03-10 15:16:27 -0700349/* begin - purge list funcs */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800350static int debug_purgelist_print(struct dlm_ctxt *dlm, char *buf, int len)
Sunil Mushran72093002008-03-10 15:16:27 -0700351{
352 struct dlm_lock_resource *res;
353 int out = 0;
354 unsigned long total = 0;
355
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800356 out += snprintf(buf + out, len - out,
Sunil Mushran72093002008-03-10 15:16:27 -0700357 "Dumping Purgelist for Domain: %s\n", dlm->name);
358
359 spin_lock(&dlm->spinlock);
360 list_for_each_entry(res, &dlm->purge_list, purge) {
361 ++total;
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800362 if (len - out < 100)
Sunil Mushran72093002008-03-10 15:16:27 -0700363 continue;
364 spin_lock(&res->spinlock);
365 out += stringify_lockname(res->lockname.name,
366 res->lockname.len,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800367 buf + out, len - out);
368 out += snprintf(buf + out, len - out, "\t%ld\n",
Sunil Mushran72093002008-03-10 15:16:27 -0700369 (jiffies - res->last_used)/HZ);
370 spin_unlock(&res->spinlock);
371 }
372 spin_unlock(&dlm->spinlock);
373
alex chen79c83ea2015-02-10 14:08:51 -0800374 out += snprintf(buf + out, len - out, "Total on list: %lu\n", total);
Sunil Mushran72093002008-03-10 15:16:27 -0700375
376 return out;
377}
378
379static int debug_purgelist_open(struct inode *inode, struct file *file)
380{
381 struct dlm_ctxt *dlm = inode->i_private;
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800382 char *buf = NULL;
Sunil Mushran72093002008-03-10 15:16:27 -0700383
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800384 buf = (char *) get_zeroed_page(GFP_NOFS);
385 if (!buf)
Sunil Mushran72093002008-03-10 15:16:27 -0700386 goto bail;
387
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800388 i_size_write(inode, debug_purgelist_print(dlm, buf, PAGE_SIZE - 1));
Sunil Mushran72093002008-03-10 15:16:27 -0700389
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800390 file->private_data = buf;
Sunil Mushran72093002008-03-10 15:16:27 -0700391
392 return 0;
393bail:
394 return -ENOMEM;
395}
396
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700397static const struct file_operations debug_purgelist_fops = {
Sunil Mushran72093002008-03-10 15:16:27 -0700398 .open = debug_purgelist_open,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800399 .release = debug_release,
400 .read = debug_read,
401 .llseek = generic_file_llseek,
Sunil Mushran72093002008-03-10 15:16:27 -0700402};
403/* end - purge list funcs */
404
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700405/* begin - debug mle funcs */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800406static int debug_mle_print(struct dlm_ctxt *dlm, char *buf, int len)
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700407{
408 struct dlm_master_list_entry *mle;
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800409 struct hlist_head *bucket;
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800410 int i, out = 0;
Joel Becker93f3b862010-09-15 17:00:58 -0700411 unsigned long total = 0, longest = 0, bucket_count = 0;
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700412
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800413 out += snprintf(buf + out, len - out,
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700414 "Dumping MLEs for Domain: %s\n", dlm->name);
415
416 spin_lock(&dlm->master_lock);
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800417 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
418 bucket = dlm_master_hash(dlm, i);
Dong Fangdf53cd32013-09-11 14:19:50 -0700419 hlist_for_each_entry(mle, bucket, master_hash_node) {
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800420 ++total;
Joel Becker93f3b862010-09-15 17:00:58 -0700421 ++bucket_count;
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800422 if (len - out < 200)
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800423 continue;
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800424 out += dump_mle(mle, buf + out, len - out);
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800425 }
Joel Becker93f3b862010-09-15 17:00:58 -0700426 longest = max(longest, bucket_count);
427 bucket_count = 0;
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700428 }
429 spin_unlock(&dlm->master_lock);
430
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800431 out += snprintf(buf + out, len - out,
alex chen79c83ea2015-02-10 14:08:51 -0800432 "Total: %lu, Longest: %lu\n", total, longest);
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700433 return out;
434}
435
436static int debug_mle_open(struct inode *inode, struct file *file)
437{
438 struct dlm_ctxt *dlm = inode->i_private;
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800439 char *buf = NULL;
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700440
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800441 buf = (char *) get_zeroed_page(GFP_NOFS);
442 if (!buf)
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700443 goto bail;
444
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800445 i_size_write(inode, debug_mle_print(dlm, buf, PAGE_SIZE - 1));
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700446
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800447 file->private_data = buf;
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700448
449 return 0;
450bail:
451 return -ENOMEM;
452}
453
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700454static const struct file_operations debug_mle_fops = {
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700455 .open = debug_mle_open,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800456 .release = debug_release,
457 .read = debug_read,
458 .llseek = generic_file_llseek,
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700459};
460
461/* end - debug mle funcs */
462
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700463/* begin - debug lockres funcs */
464static int dump_lock(struct dlm_lock *lock, int list_type, char *buf, int len)
465{
466 int out;
467
468#define DEBUG_LOCK_VERSION 1
469 spin_lock(&lock->spinlock);
470 out = snprintf(buf, len, "LOCK:%d,%d,%d,%d,%d,%d:%lld,%d,%d,%d,%d,%d,"
471 "%d,%d,%d,%d\n",
472 DEBUG_LOCK_VERSION,
473 list_type, lock->ml.type, lock->ml.convert_type,
474 lock->ml.node,
475 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
476 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
477 !list_empty(&lock->ast_list),
478 !list_empty(&lock->bast_list),
479 lock->ast_pending, lock->bast_pending,
480 lock->convert_pending, lock->lock_pending,
481 lock->cancel_pending, lock->unlock_pending,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100482 kref_read(&lock->lock_refs));
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700483 spin_unlock(&lock->spinlock);
484
485 return out;
486}
487
488static int dump_lockres(struct dlm_lock_resource *res, char *buf, int len)
489{
490 struct dlm_lock *lock;
491 int i;
492 int out = 0;
493
494 out += snprintf(buf + out, len - out, "NAME:");
495 out += stringify_lockname(res->lockname.name, res->lockname.len,
496 buf + out, len - out);
497 out += snprintf(buf + out, len - out, "\n");
498
499#define DEBUG_LRES_VERSION 1
500 out += snprintf(buf + out, len - out,
501 "LRES:%d,%d,%d,%ld,%d,%d,%d,%d,%d,%d,%d\n",
502 DEBUG_LRES_VERSION,
503 res->owner, res->state, res->last_used,
504 !list_empty(&res->purge),
505 !list_empty(&res->dirty),
506 !list_empty(&res->recovering),
507 res->inflight_locks, res->migration_pending,
508 atomic_read(&res->asts_reserved),
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100509 kref_read(&res->refs));
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700510
511 /* refmap */
512 out += snprintf(buf + out, len - out, "RMAP:");
513 out += stringify_nodemap(res->refmap, O2NM_MAX_NODES,
514 buf + out, len - out);
515 out += snprintf(buf + out, len - out, "\n");
516
517 /* lvb */
518 out += snprintf(buf + out, len - out, "LVBX:");
519 for (i = 0; i < DLM_LVB_LEN; i++)
520 out += snprintf(buf + out, len - out,
521 "%02x", (unsigned char)res->lvb[i]);
522 out += snprintf(buf + out, len - out, "\n");
523
524 /* granted */
525 list_for_each_entry(lock, &res->granted, list)
526 out += dump_lock(lock, 0, buf + out, len - out);
527
528 /* converting */
529 list_for_each_entry(lock, &res->converting, list)
530 out += dump_lock(lock, 1, buf + out, len - out);
531
532 /* blocked */
533 list_for_each_entry(lock, &res->blocked, list)
534 out += dump_lock(lock, 2, buf + out, len - out);
535
536 out += snprintf(buf + out, len - out, "\n");
537
538 return out;
539}
540
541static void *lockres_seq_start(struct seq_file *m, loff_t *pos)
542{
543 struct debug_lockres *dl = m->private;
544 struct dlm_ctxt *dlm = dl->dl_ctxt;
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800545 struct dlm_lock_resource *oldres = dl->dl_res;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700546 struct dlm_lock_resource *res = NULL;
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800547 struct list_head *track_list;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700548
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800549 spin_lock(&dlm->track_lock);
550 if (oldres)
551 track_list = &oldres->tracking;
Tristan Ye228ac632010-09-10 10:16:33 +0800552 else {
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800553 track_list = &dlm->tracking_list;
Tristan Ye228ac632010-09-10 10:16:33 +0800554 if (list_empty(track_list)) {
555 dl = NULL;
556 spin_unlock(&dlm->track_lock);
557 goto bail;
558 }
559 }
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700560
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800561 list_for_each_entry(res, track_list, tracking) {
562 if (&res->tracking == &dlm->tracking_list)
563 res = NULL;
564 else
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700565 dlm_lockres_get(res);
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800566 break;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700567 }
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800568 spin_unlock(&dlm->track_lock);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700569
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800570 if (oldres)
571 dlm_lockres_put(oldres);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700572
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800573 dl->dl_res = res;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700574
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800575 if (res) {
576 spin_lock(&res->spinlock);
577 dump_lockres(res, dl->dl_buf, dl->dl_len - 1);
578 spin_unlock(&res->spinlock);
579 } else
580 dl = NULL;
581
Tristan Ye228ac632010-09-10 10:16:33 +0800582bail:
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800583 /* passed to seq_show */
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700584 return dl;
585}
586
587static void lockres_seq_stop(struct seq_file *m, void *v)
588{
589}
590
591static void *lockres_seq_next(struct seq_file *m, void *v, loff_t *pos)
592{
593 return NULL;
594}
595
596static int lockres_seq_show(struct seq_file *s, void *v)
597{
598 struct debug_lockres *dl = (struct debug_lockres *)v;
599
600 seq_printf(s, "%s", dl->dl_buf);
601
602 return 0;
603}
604
James Morris88e9d342009-09-22 16:43:43 -0700605static const struct seq_operations debug_lockres_ops = {
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700606 .start = lockres_seq_start,
607 .stop = lockres_seq_stop,
608 .next = lockres_seq_next,
609 .show = lockres_seq_show,
610};
611
612static int debug_lockres_open(struct inode *inode, struct file *file)
613{
614 struct dlm_ctxt *dlm = inode->i_private;
Rob Jones8f9ac032014-10-09 15:25:05 -0700615 struct debug_lockres *dl;
616 void *buf;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700617
Rob Jones8f9ac032014-10-09 15:25:05 -0700618 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
619 if (!buf)
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700620 goto bail;
Rob Jones8f9ac032014-10-09 15:25:05 -0700621
622 dl = __seq_open_private(file, &debug_lockres_ops, sizeof(*dl));
623 if (!dl)
624 goto bailfree;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700625
626 dl->dl_len = PAGE_SIZE;
Rob Jones8f9ac032014-10-09 15:25:05 -0700627 dl->dl_buf = buf;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700628
629 dlm_grab(dlm);
630 dl->dl_ctxt = dlm;
631
632 return 0;
Rob Jones8f9ac032014-10-09 15:25:05 -0700633
634bailfree:
635 kfree(buf);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700636bail:
Rob Jones8f9ac032014-10-09 15:25:05 -0700637 mlog_errno(-ENOMEM);
638 return -ENOMEM;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700639}
640
641static int debug_lockres_release(struct inode *inode, struct file *file)
642{
Joe Perches33fa1d92010-07-12 13:50:19 -0700643 struct seq_file *seq = file->private_data;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700644 struct debug_lockres *dl = (struct debug_lockres *)seq->private;
645
646 if (dl->dl_res)
647 dlm_lockres_put(dl->dl_res);
648 dlm_put(dl->dl_ctxt);
649 kfree(dl->dl_buf);
650 return seq_release_private(inode, file);
651}
652
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700653static const struct file_operations debug_lockres_fops = {
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700654 .open = debug_lockres_open,
655 .release = debug_lockres_release,
656 .read = seq_read,
657 .llseek = seq_lseek,
658};
659/* end - debug lockres funcs */
660
Sunil Mushran007dce52008-03-10 15:16:23 -0700661/* begin - debug state funcs */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800662static int debug_state_print(struct dlm_ctxt *dlm, char *buf, int len)
Sunil Mushran007dce52008-03-10 15:16:23 -0700663{
664 int out = 0;
665 struct dlm_reco_node_data *node;
666 char *state;
Sunil Mushrane64ff142009-02-26 15:00:46 -0800667 int cur_mles = 0, tot_mles = 0;
668 int i;
Sunil Mushran007dce52008-03-10 15:16:23 -0700669
670 spin_lock(&dlm->spinlock);
671
672 switch (dlm->dlm_state) {
673 case DLM_CTXT_NEW:
674 state = "NEW"; break;
675 case DLM_CTXT_JOINED:
676 state = "JOINED"; break;
677 case DLM_CTXT_IN_SHUTDOWN:
678 state = "SHUTDOWN"; break;
679 case DLM_CTXT_LEAVING:
680 state = "LEAVING"; break;
681 default:
682 state = "UNKNOWN"; break;
683 }
684
685 /* Domain: xxxxxxxxxx Key: 0xdfbac769 */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800686 out += snprintf(buf + out, len - out,
Sunil Mushranb1365d02010-10-06 17:55:34 -0700687 "Domain: %s Key: 0x%08x Protocol: %d.%d\n",
688 dlm->name, dlm->key, dlm->dlm_locking_proto.pv_major,
689 dlm->dlm_locking_proto.pv_minor);
Sunil Mushran007dce52008-03-10 15:16:23 -0700690
691 /* Thread Pid: xxx Node: xxx State: xxxxx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800692 out += snprintf(buf + out, len - out,
Sunil Mushran007dce52008-03-10 15:16:23 -0700693 "Thread Pid: %d Node: %d State: %s\n",
Sunil Mushran37096a72010-12-20 16:35:00 -0800694 task_pid_nr(dlm->dlm_thread_task), dlm->node_num, state);
Sunil Mushran007dce52008-03-10 15:16:23 -0700695
696 /* Number of Joins: xxx Joining Node: xxx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800697 out += snprintf(buf + out, len - out,
Sunil Mushran007dce52008-03-10 15:16:23 -0700698 "Number of Joins: %d Joining Node: %d\n",
699 dlm->num_joins, dlm->joining_node);
700
701 /* Domain Map: xx xx xx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800702 out += snprintf(buf + out, len - out, "Domain Map: ");
Sunil Mushran007dce52008-03-10 15:16:23 -0700703 out += stringify_nodemap(dlm->domain_map, O2NM_MAX_NODES,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800704 buf + out, len - out);
705 out += snprintf(buf + out, len - out, "\n");
Sunil Mushran007dce52008-03-10 15:16:23 -0700706
Sunil Mushranbddefde2011-05-19 14:34:11 -0700707 /* Exit Domain Map: xx xx xx */
708 out += snprintf(buf + out, len - out, "Exit Domain Map: ");
709 out += stringify_nodemap(dlm->exit_domain_map, O2NM_MAX_NODES,
710 buf + out, len - out);
711 out += snprintf(buf + out, len - out, "\n");
712
Sunil Mushran007dce52008-03-10 15:16:23 -0700713 /* Live Map: xx xx xx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800714 out += snprintf(buf + out, len - out, "Live Map: ");
Sunil Mushran007dce52008-03-10 15:16:23 -0700715 out += stringify_nodemap(dlm->live_nodes_map, O2NM_MAX_NODES,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800716 buf + out, len - out);
717 out += snprintf(buf + out, len - out, "\n");
Sunil Mushran007dce52008-03-10 15:16:23 -0700718
Sunil Mushrane64ff142009-02-26 15:00:46 -0800719 /* Lock Resources: xxx (xxx) */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800720 out += snprintf(buf + out, len - out,
Sunil Mushrane64ff142009-02-26 15:00:46 -0800721 "Lock Resources: %d (%d)\n",
722 atomic_read(&dlm->res_cur_count),
723 atomic_read(&dlm->res_tot_count));
724
725 for (i = 0; i < DLM_MLE_NUM_TYPES; ++i)
726 tot_mles += atomic_read(&dlm->mle_tot_count[i]);
727
728 for (i = 0; i < DLM_MLE_NUM_TYPES; ++i)
729 cur_mles += atomic_read(&dlm->mle_cur_count[i]);
730
731 /* MLEs: xxx (xxx) */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800732 out += snprintf(buf + out, len - out,
Sunil Mushrane64ff142009-02-26 15:00:46 -0800733 "MLEs: %d (%d)\n", cur_mles, tot_mles);
734
735 /* Blocking: xxx (xxx) */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800736 out += snprintf(buf + out, len - out,
Sunil Mushrane64ff142009-02-26 15:00:46 -0800737 " Blocking: %d (%d)\n",
738 atomic_read(&dlm->mle_cur_count[DLM_MLE_BLOCK]),
739 atomic_read(&dlm->mle_tot_count[DLM_MLE_BLOCK]));
740
741 /* Mastery: xxx (xxx) */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800742 out += snprintf(buf + out, len - out,
Sunil Mushrane64ff142009-02-26 15:00:46 -0800743 " Mastery: %d (%d)\n",
744 atomic_read(&dlm->mle_cur_count[DLM_MLE_MASTER]),
745 atomic_read(&dlm->mle_tot_count[DLM_MLE_MASTER]));
746
747 /* Migration: xxx (xxx) */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800748 out += snprintf(buf + out, len - out,
Sunil Mushrane64ff142009-02-26 15:00:46 -0800749 " Migration: %d (%d)\n",
750 atomic_read(&dlm->mle_cur_count[DLM_MLE_MIGRATION]),
751 atomic_read(&dlm->mle_tot_count[DLM_MLE_MIGRATION]));
752
Sunil Mushran007dce52008-03-10 15:16:23 -0700753 /* Lists: Dirty=Empty Purge=InUse PendingASTs=Empty ... */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800754 out += snprintf(buf + out, len - out,
Sunil Mushran007dce52008-03-10 15:16:23 -0700755 "Lists: Dirty=%s Purge=%s PendingASTs=%s "
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800756 "PendingBASTs=%s\n",
Sunil Mushran007dce52008-03-10 15:16:23 -0700757 (list_empty(&dlm->dirty_list) ? "Empty" : "InUse"),
758 (list_empty(&dlm->purge_list) ? "Empty" : "InUse"),
759 (list_empty(&dlm->pending_asts) ? "Empty" : "InUse"),
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800760 (list_empty(&dlm->pending_basts) ? "Empty" : "InUse"));
Sunil Mushran007dce52008-03-10 15:16:23 -0700761
762 /* Purge Count: xxx Refs: xxx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800763 out += snprintf(buf + out, len - out,
Sunil Mushran007dce52008-03-10 15:16:23 -0700764 "Purge Count: %d Refs: %d\n", dlm->purge_count,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100765 kref_read(&dlm->dlm_refs));
Sunil Mushran007dce52008-03-10 15:16:23 -0700766
767 /* Dead Node: xxx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800768 out += snprintf(buf + out, len - out,
Sunil Mushran007dce52008-03-10 15:16:23 -0700769 "Dead Node: %d\n", dlm->reco.dead_node);
770
771 /* What about DLM_RECO_STATE_FINALIZE? */
772 if (dlm->reco.state == DLM_RECO_STATE_ACTIVE)
773 state = "ACTIVE";
774 else
775 state = "INACTIVE";
776
777 /* Recovery Pid: xxxx Master: xxx State: xxxx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800778 out += snprintf(buf + out, len - out,
Sunil Mushran007dce52008-03-10 15:16:23 -0700779 "Recovery Pid: %d Master: %d State: %s\n",
Sunil Mushran37096a72010-12-20 16:35:00 -0800780 task_pid_nr(dlm->dlm_reco_thread_task),
Sunil Mushran007dce52008-03-10 15:16:23 -0700781 dlm->reco.new_master, state);
782
783 /* Recovery Map: xx xx */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800784 out += snprintf(buf + out, len - out, "Recovery Map: ");
Sunil Mushran007dce52008-03-10 15:16:23 -0700785 out += stringify_nodemap(dlm->recovery_map, O2NM_MAX_NODES,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800786 buf + out, len - out);
787 out += snprintf(buf + out, len - out, "\n");
Sunil Mushran007dce52008-03-10 15:16:23 -0700788
789 /* Recovery Node State: */
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800790 out += snprintf(buf + out, len - out, "Recovery Node State:\n");
Sunil Mushran007dce52008-03-10 15:16:23 -0700791 list_for_each_entry(node, &dlm->reco.node_data, list) {
792 switch (node->state) {
793 case DLM_RECO_NODE_DATA_INIT:
794 state = "INIT";
795 break;
796 case DLM_RECO_NODE_DATA_REQUESTING:
797 state = "REQUESTING";
798 break;
799 case DLM_RECO_NODE_DATA_DEAD:
800 state = "DEAD";
801 break;
802 case DLM_RECO_NODE_DATA_RECEIVING:
803 state = "RECEIVING";
804 break;
805 case DLM_RECO_NODE_DATA_REQUESTED:
806 state = "REQUESTED";
807 break;
808 case DLM_RECO_NODE_DATA_DONE:
809 state = "DONE";
810 break;
811 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
812 state = "FINALIZE-SENT";
813 break;
814 default:
815 state = "BAD";
816 break;
817 }
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800818 out += snprintf(buf + out, len - out, "\t%u - %s\n",
Sunil Mushran007dce52008-03-10 15:16:23 -0700819 node->node_num, state);
820 }
821
822 spin_unlock(&dlm->spinlock);
823
824 return out;
825}
826
827static int debug_state_open(struct inode *inode, struct file *file)
828{
829 struct dlm_ctxt *dlm = inode->i_private;
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800830 char *buf = NULL;
Sunil Mushran007dce52008-03-10 15:16:23 -0700831
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800832 buf = (char *) get_zeroed_page(GFP_NOFS);
833 if (!buf)
Sunil Mushran007dce52008-03-10 15:16:23 -0700834 goto bail;
835
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800836 i_size_write(inode, debug_state_print(dlm, buf, PAGE_SIZE - 1));
Sunil Mushran007dce52008-03-10 15:16:23 -0700837
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800838 file->private_data = buf;
Sunil Mushran007dce52008-03-10 15:16:23 -0700839
840 return 0;
841bail:
842 return -ENOMEM;
843}
844
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700845static const struct file_operations debug_state_fops = {
Sunil Mushran007dce52008-03-10 15:16:23 -0700846 .open = debug_state_open,
Sunil Mushran02bd9c32010-12-20 16:34:59 -0800847 .release = debug_release,
848 .read = debug_read,
849 .llseek = generic_file_llseek,
Sunil Mushran007dce52008-03-10 15:16:23 -0700850};
851/* end - debug state funcs */
852
853/* files in subroot */
Greg Kroah-Hartmane5815952019-07-11 20:53:12 -0700854void dlm_debug_init(struct dlm_ctxt *dlm)
Sunil Mushran007dce52008-03-10 15:16:23 -0700855{
Sunil Mushran007dce52008-03-10 15:16:23 -0700856 /* for dumping dlm_ctxt */
Greg Kroah-Hartman5e7a3ed2019-09-23 15:33:15 -0700857 debugfs_create_file(DLM_DEBUGFS_DLM_STATE, S_IFREG|S_IRUSR,
858 dlm->dlm_debugfs_subroot, dlm, &debug_state_fops);
Sunil Mushran007dce52008-03-10 15:16:23 -0700859
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700860 /* for dumping lockres */
Greg Kroah-Hartman5e7a3ed2019-09-23 15:33:15 -0700861 debugfs_create_file(DLM_DEBUGFS_LOCKING_STATE, S_IFREG|S_IRUSR,
862 dlm->dlm_debugfs_subroot, dlm, &debug_lockres_fops);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700863
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700864 /* for dumping mles */
Greg Kroah-Hartman5e7a3ed2019-09-23 15:33:15 -0700865 debugfs_create_file(DLM_DEBUGFS_MLE_STATE, S_IFREG|S_IRUSR,
866 dlm->dlm_debugfs_subroot, dlm, &debug_mle_fops);
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700867
Sunil Mushran72093002008-03-10 15:16:27 -0700868 /* for dumping lockres on the purge list */
Greg Kroah-Hartman5e7a3ed2019-09-23 15:33:15 -0700869 debugfs_create_file(DLM_DEBUGFS_PURGE_LIST, S_IFREG|S_IRUSR,
870 dlm->dlm_debugfs_subroot, dlm,
871 &debug_purgelist_fops);
Sunil Mushran007dce52008-03-10 15:16:23 -0700872}
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700873
874/* subroot - domain dir */
Greg Kroah-Hartman5e7a3ed2019-09-23 15:33:15 -0700875void dlm_create_debugfs_subroot(struct dlm_ctxt *dlm)
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700876{
Greg Kroah-Hartmane5815952019-07-11 20:53:12 -0700877 dlm->dlm_debugfs_subroot = debugfs_create_dir(dlm->name,
878 dlm_debugfs_root);
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700879}
880
881void dlm_destroy_debugfs_subroot(struct dlm_ctxt *dlm)
882{
Greg Kroah-Hartman5e7a3ed2019-09-23 15:33:15 -0700883 debugfs_remove_recursive(dlm->dlm_debugfs_subroot);
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700884}
885
886/* debugfs root */
Greg Kroah-Hartmane5815952019-07-11 20:53:12 -0700887void dlm_create_debugfs_root(void)
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700888{
889 dlm_debugfs_root = debugfs_create_dir(DLM_DEBUGFS_DIR, NULL);
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700890}
891
892void dlm_destroy_debugfs_root(void)
893{
Sunil Mushran37096a72010-12-20 16:35:00 -0800894 debugfs_remove(dlm_debugfs_root);
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700895}
896#endif /* CONFIG_DEBUG_FS */