blob: 336a98e82ebaab33e87e45ee9cc824b94f2eb418 [file] [log] [blame]
Kurt Hackel6714d8e2005-12-15 14:31:23 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * dlmdebug.c
5 *
6 * debug functionality for the dlm
7 *
Sunil Mushranc834cdb2008-03-10 15:16:29 -07008 * Copyright (C) 2004, 2008 Oracle. All rights reserved.
Kurt Hackel6714d8e2005-12-15 14:31:23 -08009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 *
25 */
26
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/highmem.h>
30#include <linux/utsname.h>
31#include <linux/sysctl.h>
32#include <linux/spinlock.h>
Sunil Mushran6325b4a2008-03-10 15:16:22 -070033#include <linux/debugfs.h>
Kurt Hackel6714d8e2005-12-15 14:31:23 -080034
35#include "cluster/heartbeat.h"
36#include "cluster/nodemanager.h"
37#include "cluster/tcp.h"
38
39#include "dlmapi.h"
40#include "dlmcommon.h"
Kurt Hackel6714d8e2005-12-15 14:31:23 -080041#include "dlmdomain.h"
Sunil Mushran6325b4a2008-03-10 15:16:22 -070042#include "dlmdebug.h"
Kurt Hackel6714d8e2005-12-15 14:31:23 -080043
44#define MLOG_MASK_PREFIX ML_DLM
45#include "cluster/masklog.h"
46
Adrian Bunk95642e52008-04-21 11:49:37 +030047static int stringify_lockname(const char *lockname, int locklen, char *buf,
48 int len);
Sunil Mushranc834cdb2008-03-10 15:16:29 -070049
Kurt Hackel6714d8e2005-12-15 14:31:23 -080050void dlm_print_one_lock_resource(struct dlm_lock_resource *res)
51{
Kurt Hackel6714d8e2005-12-15 14:31:23 -080052 spin_lock(&res->spinlock);
53 __dlm_print_one_lock_resource(res);
54 spin_unlock(&res->spinlock);
55}
56
Kurt Hackelba2bf212006-12-01 14:47:20 -080057static void dlm_print_lockres_refmap(struct dlm_lock_resource *res)
58{
59 int bit;
60 assert_spin_locked(&res->spinlock);
61
Sunil Mushran8f50eb92008-03-14 11:18:24 -070062 printk(" refmap nodes: [ ");
Kurt Hackelba2bf212006-12-01 14:47:20 -080063 bit = 0;
64 while (1) {
65 bit = find_next_bit(res->refmap, O2NM_MAX_NODES, bit);
66 if (bit >= O2NM_MAX_NODES)
67 break;
Sunil Mushran8f50eb92008-03-14 11:18:24 -070068 printk("%u ", bit);
Kurt Hackelba2bf212006-12-01 14:47:20 -080069 bit++;
70 }
Sunil Mushran8f50eb92008-03-14 11:18:24 -070071 printk("], inflight=%u\n", res->inflight_locks);
Sunil Mushranc834cdb2008-03-10 15:16:29 -070072}
73
74static void __dlm_print_lock(struct dlm_lock *lock)
75{
76 spin_lock(&lock->spinlock);
77
Sunil Mushran8f50eb92008-03-14 11:18:24 -070078 printk(" type=%d, conv=%d, node=%u, cookie=%u:%llu, "
Sunil Mushranc834cdb2008-03-10 15:16:29 -070079 "ref=%u, ast=(empty=%c,pend=%c), bast=(empty=%c,pend=%c), "
80 "pending=(conv=%c,lock=%c,cancel=%c,unlock=%c)\n",
81 lock->ml.type, lock->ml.convert_type, lock->ml.node,
82 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
83 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
84 atomic_read(&lock->lock_refs.refcount),
85 (list_empty(&lock->ast_list) ? 'y' : 'n'),
86 (lock->ast_pending ? 'y' : 'n'),
87 (list_empty(&lock->bast_list) ? 'y' : 'n'),
88 (lock->bast_pending ? 'y' : 'n'),
89 (lock->convert_pending ? 'y' : 'n'),
90 (lock->lock_pending ? 'y' : 'n'),
91 (lock->cancel_pending ? 'y' : 'n'),
92 (lock->unlock_pending ? 'y' : 'n'));
93
94 spin_unlock(&lock->spinlock);
Kurt Hackelba2bf212006-12-01 14:47:20 -080095}
96
Kurt Hackel6714d8e2005-12-15 14:31:23 -080097void __dlm_print_one_lock_resource(struct dlm_lock_resource *res)
98{
99 struct list_head *iter2;
100 struct dlm_lock *lock;
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700101 char buf[DLM_LOCKID_NAME_MAX];
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800102
103 assert_spin_locked(&res->spinlock);
104
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700105 stringify_lockname(res->lockname.name, res->lockname.len,
106 buf, sizeof(buf) - 1);
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700107 printk("lockres: %s, owner=%u, state=%u\n",
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700108 buf, res->owner, res->state);
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700109 printk(" last used: %lu, refcnt: %u, on purge list: %s\n",
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700110 res->last_used, atomic_read(&res->refs.refcount),
111 list_empty(&res->purge) ? "no" : "yes");
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700112 printk(" on dirty list: %s, on reco list: %s, "
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700113 "migrating pending: %s\n",
114 list_empty(&res->dirty) ? "no" : "yes",
115 list_empty(&res->recovering) ? "no" : "yes",
116 res->migration_pending ? "yes" : "no");
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700117 printk(" inflight locks: %d, asts reserved: %d\n",
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700118 res->inflight_locks, atomic_read(&res->asts_reserved));
Kurt Hackelba2bf212006-12-01 14:47:20 -0800119 dlm_print_lockres_refmap(res);
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700120 printk(" granted queue:\n");
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800121 list_for_each(iter2, &res->granted) {
122 lock = list_entry(iter2, struct dlm_lock, list);
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700123 __dlm_print_lock(lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800124 }
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700125 printk(" converting queue:\n");
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800126 list_for_each(iter2, &res->converting) {
127 lock = list_entry(iter2, struct dlm_lock, list);
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700128 __dlm_print_lock(lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800129 }
Sunil Mushran8f50eb92008-03-14 11:18:24 -0700130 printk(" blocked queue:\n");
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800131 list_for_each(iter2, &res->blocked) {
132 lock = list_entry(iter2, struct dlm_lock, list);
Sunil Mushranc834cdb2008-03-10 15:16:29 -0700133 __dlm_print_lock(lock);
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800134 }
135}
136
137void dlm_print_one_lock(struct dlm_lock *lockid)
138{
139 dlm_print_one_lock_resource(lockid->lockres);
140}
141EXPORT_SYMBOL_GPL(dlm_print_one_lock);
142
Kurt Hackel6714d8e2005-12-15 14:31:23 -0800143static const char *dlm_errnames[] = {
144 [DLM_NORMAL] = "DLM_NORMAL",
145 [DLM_GRANTED] = "DLM_GRANTED",
146 [DLM_DENIED] = "DLM_DENIED",
147 [DLM_DENIED_NOLOCKS] = "DLM_DENIED_NOLOCKS",
148 [DLM_WORKING] = "DLM_WORKING",
149 [DLM_BLOCKED] = "DLM_BLOCKED",
150 [DLM_BLOCKED_ORPHAN] = "DLM_BLOCKED_ORPHAN",
151 [DLM_DENIED_GRACE_PERIOD] = "DLM_DENIED_GRACE_PERIOD",
152 [DLM_SYSERR] = "DLM_SYSERR",
153 [DLM_NOSUPPORT] = "DLM_NOSUPPORT",
154 [DLM_CANCELGRANT] = "DLM_CANCELGRANT",
155 [DLM_IVLOCKID] = "DLM_IVLOCKID",
156 [DLM_SYNC] = "DLM_SYNC",
157 [DLM_BADTYPE] = "DLM_BADTYPE",
158 [DLM_BADRESOURCE] = "DLM_BADRESOURCE",
159 [DLM_MAXHANDLES] = "DLM_MAXHANDLES",
160 [DLM_NOCLINFO] = "DLM_NOCLINFO",
161 [DLM_NOLOCKMGR] = "DLM_NOLOCKMGR",
162 [DLM_NOPURGED] = "DLM_NOPURGED",
163 [DLM_BADARGS] = "DLM_BADARGS",
164 [DLM_VOID] = "DLM_VOID",
165 [DLM_NOTQUEUED] = "DLM_NOTQUEUED",
166 [DLM_IVBUFLEN] = "DLM_IVBUFLEN",
167 [DLM_CVTUNGRANT] = "DLM_CVTUNGRANT",
168 [DLM_BADPARAM] = "DLM_BADPARAM",
169 [DLM_VALNOTVALID] = "DLM_VALNOTVALID",
170 [DLM_REJECTED] = "DLM_REJECTED",
171 [DLM_ABORT] = "DLM_ABORT",
172 [DLM_CANCEL] = "DLM_CANCEL",
173 [DLM_IVRESHANDLE] = "DLM_IVRESHANDLE",
174 [DLM_DEADLOCK] = "DLM_DEADLOCK",
175 [DLM_DENIED_NOASTS] = "DLM_DENIED_NOASTS",
176 [DLM_FORWARD] = "DLM_FORWARD",
177 [DLM_TIMEOUT] = "DLM_TIMEOUT",
178 [DLM_IVGROUPID] = "DLM_IVGROUPID",
179 [DLM_VERS_CONFLICT] = "DLM_VERS_CONFLICT",
180 [DLM_BAD_DEVICE_PATH] = "DLM_BAD_DEVICE_PATH",
181 [DLM_NO_DEVICE_PERMISSION] = "DLM_NO_DEVICE_PERMISSION",
182 [DLM_NO_CONTROL_DEVICE ] = "DLM_NO_CONTROL_DEVICE ",
183 [DLM_RECOVERING] = "DLM_RECOVERING",
184 [DLM_MIGRATING] = "DLM_MIGRATING",
185 [DLM_MAXSTATS] = "DLM_MAXSTATS",
186};
187
188static const char *dlm_errmsgs[] = {
189 [DLM_NORMAL] = "request in progress",
190 [DLM_GRANTED] = "request granted",
191 [DLM_DENIED] = "request denied",
192 [DLM_DENIED_NOLOCKS] = "request denied, out of system resources",
193 [DLM_WORKING] = "async request in progress",
194 [DLM_BLOCKED] = "lock request blocked",
195 [DLM_BLOCKED_ORPHAN] = "lock request blocked by a orphan lock",
196 [DLM_DENIED_GRACE_PERIOD] = "topological change in progress",
197 [DLM_SYSERR] = "system error",
198 [DLM_NOSUPPORT] = "unsupported",
199 [DLM_CANCELGRANT] = "can't cancel convert: already granted",
200 [DLM_IVLOCKID] = "bad lockid",
201 [DLM_SYNC] = "synchronous request granted",
202 [DLM_BADTYPE] = "bad resource type",
203 [DLM_BADRESOURCE] = "bad resource handle",
204 [DLM_MAXHANDLES] = "no more resource handles",
205 [DLM_NOCLINFO] = "can't contact cluster manager",
206 [DLM_NOLOCKMGR] = "can't contact lock manager",
207 [DLM_NOPURGED] = "can't contact purge daemon",
208 [DLM_BADARGS] = "bad api args",
209 [DLM_VOID] = "no status",
210 [DLM_NOTQUEUED] = "NOQUEUE was specified and request failed",
211 [DLM_IVBUFLEN] = "invalid resource name length",
212 [DLM_CVTUNGRANT] = "attempted to convert ungranted lock",
213 [DLM_BADPARAM] = "invalid lock mode specified",
214 [DLM_VALNOTVALID] = "value block has been invalidated",
215 [DLM_REJECTED] = "request rejected, unrecognized client",
216 [DLM_ABORT] = "blocked lock request cancelled",
217 [DLM_CANCEL] = "conversion request cancelled",
218 [DLM_IVRESHANDLE] = "invalid resource handle",
219 [DLM_DEADLOCK] = "deadlock recovery refused this request",
220 [DLM_DENIED_NOASTS] = "failed to allocate AST",
221 [DLM_FORWARD] = "request must wait for primary's response",
222 [DLM_TIMEOUT] = "timeout value for lock has expired",
223 [DLM_IVGROUPID] = "invalid group specification",
224 [DLM_VERS_CONFLICT] = "version conflicts prevent request handling",
225 [DLM_BAD_DEVICE_PATH] = "Locks device does not exist or path wrong",
226 [DLM_NO_DEVICE_PERMISSION] = "Client has insufficient perms for device",
227 [DLM_NO_CONTROL_DEVICE] = "Cannot set options on opened device ",
228 [DLM_RECOVERING] = "lock resource being recovered",
229 [DLM_MIGRATING] = "lock resource being migrated",
230 [DLM_MAXSTATS] = "invalid error number",
231};
232
233const char *dlm_errmsg(enum dlm_status err)
234{
235 if (err >= DLM_MAXSTATS || err < 0)
236 return dlm_errmsgs[DLM_MAXSTATS];
237 return dlm_errmsgs[err];
238}
239EXPORT_SYMBOL_GPL(dlm_errmsg);
240
241const char *dlm_errname(enum dlm_status err)
242{
243 if (err >= DLM_MAXSTATS || err < 0)
244 return dlm_errnames[DLM_MAXSTATS];
245 return dlm_errnames[err];
246}
247EXPORT_SYMBOL_GPL(dlm_errname);
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700248
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700249/* NOTE: This function converts a lockname into a string. It uses knowledge
250 * of the format of the lockname that should be outside the purview of the dlm.
251 * We are adding only to make dlm debugging slightly easier.
252 *
253 * For more on lockname formats, please refer to dlmglue.c and ocfs2_lockid.h.
254 */
Adrian Bunk95642e52008-04-21 11:49:37 +0300255static int stringify_lockname(const char *lockname, int locklen, char *buf,
256 int len)
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700257{
258 int out = 0;
259 __be64 inode_blkno_be;
260
261#define OCFS2_DENTRY_LOCK_INO_START 18
262 if (*lockname == 'N') {
263 memcpy((__be64 *)&inode_blkno_be,
264 (char *)&lockname[OCFS2_DENTRY_LOCK_INO_START],
265 sizeof(__be64));
266 out += snprintf(buf + out, len - out, "%.*s%08x",
267 OCFS2_DENTRY_LOCK_INO_START - 1, lockname,
268 (unsigned int)be64_to_cpu(inode_blkno_be));
269 } else
270 out += snprintf(buf + out, len - out, "%.*s",
271 locklen, lockname);
272 return out;
273}
274
Sunil Mushrane5a03342008-03-10 15:16:28 -0700275static int stringify_nodemap(unsigned long *nodemap, int maxnodes,
276 char *buf, int len)
277{
278 int out = 0;
279 int i = -1;
280
281 while ((i = find_next_bit(nodemap, maxnodes, i + 1)) < maxnodes)
282 out += snprintf(buf + out, len - out, "%d ", i);
283
284 return out;
285}
286
287static int dump_mle(struct dlm_master_list_entry *mle, char *buf, int len)
288{
289 int out = 0;
290 unsigned int namelen;
Sunil Mushranf77a9a72009-02-26 15:00:38 -0800291 unsigned char *name;
Sunil Mushrane5a03342008-03-10 15:16:28 -0700292 char *mle_type;
293
294 if (mle->type != DLM_MLE_MASTER) {
Sunil Mushranf77a9a72009-02-26 15:00:38 -0800295 name = mle->u.mlename.name;
296 namelen = mle->u.mlename.len;
Sunil Mushrane5a03342008-03-10 15:16:28 -0700297 } else {
Sunil Mushranf77a9a72009-02-26 15:00:38 -0800298 name = (unsigned char *)mle->u.mleres->lockname.name;
299 namelen = mle->u.mleres->lockname.len;
Sunil Mushrane5a03342008-03-10 15:16:28 -0700300 }
301
302 if (mle->type == DLM_MLE_BLOCK)
303 mle_type = "BLK";
304 else if (mle->type == DLM_MLE_MASTER)
305 mle_type = "MAS";
306 else
307 mle_type = "MIG";
308
309 out += stringify_lockname(name, namelen, buf + out, len - out);
310 out += snprintf(buf + out, len - out,
311 "\t%3s\tmas=%3u\tnew=%3u\tevt=%1d\tuse=%1d\tref=%3d\n",
312 mle_type, mle->master, mle->new_master,
313 !list_empty(&mle->hb_events),
314 !!mle->inuse,
315 atomic_read(&mle->mle_refs.refcount));
316
317 out += snprintf(buf + out, len - out, "Maybe=");
318 out += stringify_nodemap(mle->maybe_map, O2NM_MAX_NODES,
319 buf + out, len - out);
320 out += snprintf(buf + out, len - out, "\n");
321
322 out += snprintf(buf + out, len - out, "Vote=");
323 out += stringify_nodemap(mle->vote_map, O2NM_MAX_NODES,
324 buf + out, len - out);
325 out += snprintf(buf + out, len - out, "\n");
326
327 out += snprintf(buf + out, len - out, "Response=");
328 out += stringify_nodemap(mle->response_map, O2NM_MAX_NODES,
329 buf + out, len - out);
330 out += snprintf(buf + out, len - out, "\n");
331
332 out += snprintf(buf + out, len - out, "Node=");
333 out += stringify_nodemap(mle->node_map, O2NM_MAX_NODES,
334 buf + out, len - out);
335 out += snprintf(buf + out, len - out, "\n");
336
337 out += snprintf(buf + out, len - out, "\n");
338
339 return out;
340}
341
342void dlm_print_one_mle(struct dlm_master_list_entry *mle)
343{
344 char *buf;
345
346 buf = (char *) get_zeroed_page(GFP_NOFS);
347 if (buf) {
348 dump_mle(mle, buf, PAGE_SIZE - 1);
349 free_page((unsigned long)buf);
350 }
351}
352
353#ifdef CONFIG_DEBUG_FS
354
355static struct dentry *dlm_debugfs_root = NULL;
356
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700357#define DLM_DEBUGFS_DIR "o2dlm"
Sunil Mushran007dce52008-03-10 15:16:23 -0700358#define DLM_DEBUGFS_DLM_STATE "dlm_state"
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700359#define DLM_DEBUGFS_LOCKING_STATE "locking_state"
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700360#define DLM_DEBUGFS_MLE_STATE "mle_state"
Sunil Mushran72093002008-03-10 15:16:27 -0700361#define DLM_DEBUGFS_PURGE_LIST "purge_list"
Sunil Mushran007dce52008-03-10 15:16:23 -0700362
363/* begin - utils funcs */
364static void dlm_debug_free(struct kref *kref)
365{
366 struct dlm_debug_ctxt *dc;
367
368 dc = container_of(kref, struct dlm_debug_ctxt, debug_refcnt);
369
370 kfree(dc);
371}
372
Adrian Bunk95642e52008-04-21 11:49:37 +0300373static void dlm_debug_put(struct dlm_debug_ctxt *dc)
Sunil Mushran007dce52008-03-10 15:16:23 -0700374{
375 if (dc)
376 kref_put(&dc->debug_refcnt, dlm_debug_free);
377}
378
379static void dlm_debug_get(struct dlm_debug_ctxt *dc)
380{
381 kref_get(&dc->debug_refcnt);
382}
383
Sunil Mushran007dce52008-03-10 15:16:23 -0700384static struct debug_buffer *debug_buffer_allocate(void)
385{
386 struct debug_buffer *db = NULL;
387
388 db = kzalloc(sizeof(struct debug_buffer), GFP_KERNEL);
389 if (!db)
390 goto bail;
391
392 db->len = PAGE_SIZE;
393 db->buf = kmalloc(db->len, GFP_KERNEL);
394 if (!db->buf)
395 goto bail;
396
397 return db;
398bail:
399 kfree(db);
400 return NULL;
401}
402
403static ssize_t debug_buffer_read(struct file *file, char __user *buf,
404 size_t nbytes, loff_t *ppos)
405{
406 struct debug_buffer *db = file->private_data;
407
408 return simple_read_from_buffer(buf, nbytes, ppos, db->buf, db->len);
409}
410
411static loff_t debug_buffer_llseek(struct file *file, loff_t off, int whence)
412{
413 struct debug_buffer *db = file->private_data;
414 loff_t new = -1;
415
416 switch (whence) {
417 case 0:
418 new = off;
419 break;
420 case 1:
421 new = file->f_pos + off;
422 break;
423 }
424
425 if (new < 0 || new > db->len)
426 return -EINVAL;
427
428 return (file->f_pos = new);
429}
430
431static int debug_buffer_release(struct inode *inode, struct file *file)
432{
433 struct debug_buffer *db = (struct debug_buffer *)file->private_data;
434
435 if (db)
436 kfree(db->buf);
437 kfree(db);
438
439 return 0;
440}
441/* end - util funcs */
442
Sunil Mushran72093002008-03-10 15:16:27 -0700443/* begin - purge list funcs */
444static int debug_purgelist_print(struct dlm_ctxt *dlm, struct debug_buffer *db)
445{
446 struct dlm_lock_resource *res;
447 int out = 0;
448 unsigned long total = 0;
449
450 out += snprintf(db->buf + out, db->len - out,
451 "Dumping Purgelist for Domain: %s\n", dlm->name);
452
453 spin_lock(&dlm->spinlock);
454 list_for_each_entry(res, &dlm->purge_list, purge) {
455 ++total;
456 if (db->len - out < 100)
457 continue;
458 spin_lock(&res->spinlock);
459 out += stringify_lockname(res->lockname.name,
460 res->lockname.len,
461 db->buf + out, db->len - out);
462 out += snprintf(db->buf + out, db->len - out, "\t%ld\n",
463 (jiffies - res->last_used)/HZ);
464 spin_unlock(&res->spinlock);
465 }
466 spin_unlock(&dlm->spinlock);
467
468 out += snprintf(db->buf + out, db->len - out,
469 "Total on list: %ld\n", total);
470
471 return out;
472}
473
474static int debug_purgelist_open(struct inode *inode, struct file *file)
475{
476 struct dlm_ctxt *dlm = inode->i_private;
477 struct debug_buffer *db;
478
479 db = debug_buffer_allocate();
480 if (!db)
481 goto bail;
482
483 db->len = debug_purgelist_print(dlm, db);
484
485 file->private_data = db;
486
487 return 0;
488bail:
489 return -ENOMEM;
490}
491
492static struct file_operations debug_purgelist_fops = {
493 .open = debug_purgelist_open,
494 .release = debug_buffer_release,
495 .read = debug_buffer_read,
496 .llseek = debug_buffer_llseek,
497};
498/* end - purge list funcs */
499
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700500/* begin - debug mle funcs */
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700501static int debug_mle_print(struct dlm_ctxt *dlm, struct debug_buffer *db)
502{
503 struct dlm_master_list_entry *mle;
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800504 struct hlist_head *bucket;
505 struct hlist_node *list;
506 int i, out = 0;
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700507 unsigned long total = 0;
508
509 out += snprintf(db->buf + out, db->len - out,
510 "Dumping MLEs for Domain: %s\n", dlm->name);
511
512 spin_lock(&dlm->master_lock);
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800513 for (i = 0; i < DLM_HASH_BUCKETS; i++) {
514 bucket = dlm_master_hash(dlm, i);
515 hlist_for_each(list, bucket) {
516 mle = hlist_entry(list, struct dlm_master_list_entry,
517 master_hash_node);
518 ++total;
519 if (db->len - out < 200)
520 continue;
521 out += dump_mle(mle, db->buf + out, db->len - out);
522 }
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700523 }
524 spin_unlock(&dlm->master_lock);
525
526 out += snprintf(db->buf + out, db->len - out,
527 "Total on list: %ld\n", total);
528 return out;
529}
530
531static int debug_mle_open(struct inode *inode, struct file *file)
532{
533 struct dlm_ctxt *dlm = inode->i_private;
534 struct debug_buffer *db;
535
536 db = debug_buffer_allocate();
537 if (!db)
538 goto bail;
539
540 db->len = debug_mle_print(dlm, db);
541
542 file->private_data = db;
543
544 return 0;
545bail:
546 return -ENOMEM;
547}
548
549static struct file_operations debug_mle_fops = {
550 .open = debug_mle_open,
551 .release = debug_buffer_release,
552 .read = debug_buffer_read,
553 .llseek = debug_buffer_llseek,
554};
555
556/* end - debug mle funcs */
557
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700558/* begin - debug lockres funcs */
559static int dump_lock(struct dlm_lock *lock, int list_type, char *buf, int len)
560{
561 int out;
562
563#define DEBUG_LOCK_VERSION 1
564 spin_lock(&lock->spinlock);
565 out = snprintf(buf, len, "LOCK:%d,%d,%d,%d,%d,%d:%lld,%d,%d,%d,%d,%d,"
566 "%d,%d,%d,%d\n",
567 DEBUG_LOCK_VERSION,
568 list_type, lock->ml.type, lock->ml.convert_type,
569 lock->ml.node,
570 dlm_get_lock_cookie_node(be64_to_cpu(lock->ml.cookie)),
571 dlm_get_lock_cookie_seq(be64_to_cpu(lock->ml.cookie)),
572 !list_empty(&lock->ast_list),
573 !list_empty(&lock->bast_list),
574 lock->ast_pending, lock->bast_pending,
575 lock->convert_pending, lock->lock_pending,
576 lock->cancel_pending, lock->unlock_pending,
577 atomic_read(&lock->lock_refs.refcount));
578 spin_unlock(&lock->spinlock);
579
580 return out;
581}
582
583static int dump_lockres(struct dlm_lock_resource *res, char *buf, int len)
584{
585 struct dlm_lock *lock;
586 int i;
587 int out = 0;
588
589 out += snprintf(buf + out, len - out, "NAME:");
590 out += stringify_lockname(res->lockname.name, res->lockname.len,
591 buf + out, len - out);
592 out += snprintf(buf + out, len - out, "\n");
593
594#define DEBUG_LRES_VERSION 1
595 out += snprintf(buf + out, len - out,
596 "LRES:%d,%d,%d,%ld,%d,%d,%d,%d,%d,%d,%d\n",
597 DEBUG_LRES_VERSION,
598 res->owner, res->state, res->last_used,
599 !list_empty(&res->purge),
600 !list_empty(&res->dirty),
601 !list_empty(&res->recovering),
602 res->inflight_locks, res->migration_pending,
603 atomic_read(&res->asts_reserved),
604 atomic_read(&res->refs.refcount));
605
606 /* refmap */
607 out += snprintf(buf + out, len - out, "RMAP:");
608 out += stringify_nodemap(res->refmap, O2NM_MAX_NODES,
609 buf + out, len - out);
610 out += snprintf(buf + out, len - out, "\n");
611
612 /* lvb */
613 out += snprintf(buf + out, len - out, "LVBX:");
614 for (i = 0; i < DLM_LVB_LEN; i++)
615 out += snprintf(buf + out, len - out,
616 "%02x", (unsigned char)res->lvb[i]);
617 out += snprintf(buf + out, len - out, "\n");
618
619 /* granted */
620 list_for_each_entry(lock, &res->granted, list)
621 out += dump_lock(lock, 0, buf + out, len - out);
622
623 /* converting */
624 list_for_each_entry(lock, &res->converting, list)
625 out += dump_lock(lock, 1, buf + out, len - out);
626
627 /* blocked */
628 list_for_each_entry(lock, &res->blocked, list)
629 out += dump_lock(lock, 2, buf + out, len - out);
630
631 out += snprintf(buf + out, len - out, "\n");
632
633 return out;
634}
635
636static void *lockres_seq_start(struct seq_file *m, loff_t *pos)
637{
638 struct debug_lockres *dl = m->private;
639 struct dlm_ctxt *dlm = dl->dl_ctxt;
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800640 struct dlm_lock_resource *oldres = dl->dl_res;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700641 struct dlm_lock_resource *res = NULL;
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800642 struct list_head *track_list;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700643
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800644 spin_lock(&dlm->track_lock);
645 if (oldres)
646 track_list = &oldres->tracking;
647 else
648 track_list = &dlm->tracking_list;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700649
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800650 list_for_each_entry(res, track_list, tracking) {
651 if (&res->tracking == &dlm->tracking_list)
652 res = NULL;
653 else
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700654 dlm_lockres_get(res);
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800655 break;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700656 }
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800657 spin_unlock(&dlm->track_lock);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700658
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800659 if (oldres)
660 dlm_lockres_put(oldres);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700661
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800662 dl->dl_res = res;
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700663
Sunil Mushranb0d4f8172008-12-16 15:49:22 -0800664 if (res) {
665 spin_lock(&res->spinlock);
666 dump_lockres(res, dl->dl_buf, dl->dl_len - 1);
667 spin_unlock(&res->spinlock);
668 } else
669 dl = NULL;
670
671 /* passed to seq_show */
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700672 return dl;
673}
674
675static void lockres_seq_stop(struct seq_file *m, void *v)
676{
677}
678
679static void *lockres_seq_next(struct seq_file *m, void *v, loff_t *pos)
680{
681 return NULL;
682}
683
684static int lockres_seq_show(struct seq_file *s, void *v)
685{
686 struct debug_lockres *dl = (struct debug_lockres *)v;
687
688 seq_printf(s, "%s", dl->dl_buf);
689
690 return 0;
691}
692
693static struct seq_operations debug_lockres_ops = {
694 .start = lockres_seq_start,
695 .stop = lockres_seq_stop,
696 .next = lockres_seq_next,
697 .show = lockres_seq_show,
698};
699
700static int debug_lockres_open(struct inode *inode, struct file *file)
701{
702 struct dlm_ctxt *dlm = inode->i_private;
703 int ret = -ENOMEM;
704 struct seq_file *seq;
705 struct debug_lockres *dl = NULL;
706
707 dl = kzalloc(sizeof(struct debug_lockres), GFP_KERNEL);
708 if (!dl) {
709 mlog_errno(ret);
710 goto bail;
711 }
712
713 dl->dl_len = PAGE_SIZE;
714 dl->dl_buf = kmalloc(dl->dl_len, GFP_KERNEL);
715 if (!dl->dl_buf) {
716 mlog_errno(ret);
717 goto bail;
718 }
719
720 ret = seq_open(file, &debug_lockres_ops);
721 if (ret) {
722 mlog_errno(ret);
723 goto bail;
724 }
725
726 seq = (struct seq_file *) file->private_data;
727 seq->private = dl;
728
729 dlm_grab(dlm);
730 dl->dl_ctxt = dlm;
731
732 return 0;
733bail:
734 if (dl)
735 kfree(dl->dl_buf);
736 kfree(dl);
737 return ret;
738}
739
740static int debug_lockres_release(struct inode *inode, struct file *file)
741{
742 struct seq_file *seq = (struct seq_file *)file->private_data;
743 struct debug_lockres *dl = (struct debug_lockres *)seq->private;
744
745 if (dl->dl_res)
746 dlm_lockres_put(dl->dl_res);
747 dlm_put(dl->dl_ctxt);
748 kfree(dl->dl_buf);
749 return seq_release_private(inode, file);
750}
751
752static struct file_operations debug_lockres_fops = {
753 .open = debug_lockres_open,
754 .release = debug_lockres_release,
755 .read = seq_read,
756 .llseek = seq_lseek,
757};
758/* end - debug lockres funcs */
759
Sunil Mushran007dce52008-03-10 15:16:23 -0700760/* begin - debug state funcs */
761static int debug_state_print(struct dlm_ctxt *dlm, struct debug_buffer *db)
762{
763 int out = 0;
764 struct dlm_reco_node_data *node;
765 char *state;
766 int lres, rres, ures, tres;
767
768 lres = atomic_read(&dlm->local_resources);
769 rres = atomic_read(&dlm->remote_resources);
770 ures = atomic_read(&dlm->unknown_resources);
771 tres = lres + rres + ures;
772
773 spin_lock(&dlm->spinlock);
774
775 switch (dlm->dlm_state) {
776 case DLM_CTXT_NEW:
777 state = "NEW"; break;
778 case DLM_CTXT_JOINED:
779 state = "JOINED"; break;
780 case DLM_CTXT_IN_SHUTDOWN:
781 state = "SHUTDOWN"; break;
782 case DLM_CTXT_LEAVING:
783 state = "LEAVING"; break;
784 default:
785 state = "UNKNOWN"; break;
786 }
787
788 /* Domain: xxxxxxxxxx Key: 0xdfbac769 */
789 out += snprintf(db->buf + out, db->len - out,
790 "Domain: %s Key: 0x%08x\n", dlm->name, dlm->key);
791
792 /* Thread Pid: xxx Node: xxx State: xxxxx */
793 out += snprintf(db->buf + out, db->len - out,
794 "Thread Pid: %d Node: %d State: %s\n",
795 dlm->dlm_thread_task->pid, dlm->node_num, state);
796
797 /* Number of Joins: xxx Joining Node: xxx */
798 out += snprintf(db->buf + out, db->len - out,
799 "Number of Joins: %d Joining Node: %d\n",
800 dlm->num_joins, dlm->joining_node);
801
802 /* Domain Map: xx xx xx */
803 out += snprintf(db->buf + out, db->len - out, "Domain Map: ");
804 out += stringify_nodemap(dlm->domain_map, O2NM_MAX_NODES,
805 db->buf + out, db->len - out);
806 out += snprintf(db->buf + out, db->len - out, "\n");
807
808 /* Live Map: xx xx xx */
809 out += snprintf(db->buf + out, db->len - out, "Live Map: ");
810 out += stringify_nodemap(dlm->live_nodes_map, O2NM_MAX_NODES,
811 db->buf + out, db->len - out);
812 out += snprintf(db->buf + out, db->len - out, "\n");
813
814 /* Mastered Resources Total: xxx Locally: xxx Remotely: ... */
815 out += snprintf(db->buf + out, db->len - out,
816 "Mastered Resources Total: %d Locally: %d "
817 "Remotely: %d Unknown: %d\n",
818 tres, lres, rres, ures);
819
820 /* Lists: Dirty=Empty Purge=InUse PendingASTs=Empty ... */
821 out += snprintf(db->buf + out, db->len - out,
822 "Lists: Dirty=%s Purge=%s PendingASTs=%s "
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800823 "PendingBASTs=%s\n",
Sunil Mushran007dce52008-03-10 15:16:23 -0700824 (list_empty(&dlm->dirty_list) ? "Empty" : "InUse"),
825 (list_empty(&dlm->purge_list) ? "Empty" : "InUse"),
826 (list_empty(&dlm->pending_asts) ? "Empty" : "InUse"),
Sunil Mushran2ed6c752009-02-26 15:00:41 -0800827 (list_empty(&dlm->pending_basts) ? "Empty" : "InUse"));
Sunil Mushran007dce52008-03-10 15:16:23 -0700828
829 /* Purge Count: xxx Refs: xxx */
830 out += snprintf(db->buf + out, db->len - out,
831 "Purge Count: %d Refs: %d\n", dlm->purge_count,
832 atomic_read(&dlm->dlm_refs.refcount));
833
834 /* Dead Node: xxx */
835 out += snprintf(db->buf + out, db->len - out,
836 "Dead Node: %d\n", dlm->reco.dead_node);
837
838 /* What about DLM_RECO_STATE_FINALIZE? */
839 if (dlm->reco.state == DLM_RECO_STATE_ACTIVE)
840 state = "ACTIVE";
841 else
842 state = "INACTIVE";
843
844 /* Recovery Pid: xxxx Master: xxx State: xxxx */
845 out += snprintf(db->buf + out, db->len - out,
846 "Recovery Pid: %d Master: %d State: %s\n",
847 dlm->dlm_reco_thread_task->pid,
848 dlm->reco.new_master, state);
849
850 /* Recovery Map: xx xx */
851 out += snprintf(db->buf + out, db->len - out, "Recovery Map: ");
852 out += stringify_nodemap(dlm->recovery_map, O2NM_MAX_NODES,
853 db->buf + out, db->len - out);
854 out += snprintf(db->buf + out, db->len - out, "\n");
855
856 /* Recovery Node State: */
857 out += snprintf(db->buf + out, db->len - out, "Recovery Node State:\n");
858 list_for_each_entry(node, &dlm->reco.node_data, list) {
859 switch (node->state) {
860 case DLM_RECO_NODE_DATA_INIT:
861 state = "INIT";
862 break;
863 case DLM_RECO_NODE_DATA_REQUESTING:
864 state = "REQUESTING";
865 break;
866 case DLM_RECO_NODE_DATA_DEAD:
867 state = "DEAD";
868 break;
869 case DLM_RECO_NODE_DATA_RECEIVING:
870 state = "RECEIVING";
871 break;
872 case DLM_RECO_NODE_DATA_REQUESTED:
873 state = "REQUESTED";
874 break;
875 case DLM_RECO_NODE_DATA_DONE:
876 state = "DONE";
877 break;
878 case DLM_RECO_NODE_DATA_FINALIZE_SENT:
879 state = "FINALIZE-SENT";
880 break;
881 default:
882 state = "BAD";
883 break;
884 }
885 out += snprintf(db->buf + out, db->len - out, "\t%u - %s\n",
886 node->node_num, state);
887 }
888
889 spin_unlock(&dlm->spinlock);
890
891 return out;
892}
893
894static int debug_state_open(struct inode *inode, struct file *file)
895{
896 struct dlm_ctxt *dlm = inode->i_private;
897 struct debug_buffer *db = NULL;
898
899 db = debug_buffer_allocate();
900 if (!db)
901 goto bail;
902
903 db->len = debug_state_print(dlm, db);
904
905 file->private_data = db;
906
907 return 0;
908bail:
909 return -ENOMEM;
910}
911
912static struct file_operations debug_state_fops = {
913 .open = debug_state_open,
914 .release = debug_buffer_release,
915 .read = debug_buffer_read,
916 .llseek = debug_buffer_llseek,
917};
918/* end - debug state funcs */
919
920/* files in subroot */
921int dlm_debug_init(struct dlm_ctxt *dlm)
922{
923 struct dlm_debug_ctxt *dc = dlm->dlm_debug_ctxt;
924
925 /* for dumping dlm_ctxt */
926 dc->debug_state_dentry = debugfs_create_file(DLM_DEBUGFS_DLM_STATE,
927 S_IFREG|S_IRUSR,
928 dlm->dlm_debugfs_subroot,
929 dlm, &debug_state_fops);
930 if (!dc->debug_state_dentry) {
931 mlog_errno(-ENOMEM);
932 goto bail;
933 }
934
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700935 /* for dumping lockres */
936 dc->debug_lockres_dentry =
937 debugfs_create_file(DLM_DEBUGFS_LOCKING_STATE,
938 S_IFREG|S_IRUSR,
939 dlm->dlm_debugfs_subroot,
940 dlm, &debug_lockres_fops);
941 if (!dc->debug_lockres_dentry) {
942 mlog_errno(-ENOMEM);
943 goto bail;
944 }
945
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700946 /* for dumping mles */
947 dc->debug_mle_dentry = debugfs_create_file(DLM_DEBUGFS_MLE_STATE,
948 S_IFREG|S_IRUSR,
949 dlm->dlm_debugfs_subroot,
950 dlm, &debug_mle_fops);
951 if (!dc->debug_mle_dentry) {
952 mlog_errno(-ENOMEM);
953 goto bail;
954 }
955
Sunil Mushran72093002008-03-10 15:16:27 -0700956 /* for dumping lockres on the purge list */
957 dc->debug_purgelist_dentry =
958 debugfs_create_file(DLM_DEBUGFS_PURGE_LIST,
959 S_IFREG|S_IRUSR,
960 dlm->dlm_debugfs_subroot,
961 dlm, &debug_purgelist_fops);
962 if (!dc->debug_purgelist_dentry) {
963 mlog_errno(-ENOMEM);
964 goto bail;
965 }
966
Sunil Mushran007dce52008-03-10 15:16:23 -0700967 dlm_debug_get(dc);
968 return 0;
969
970bail:
971 dlm_debug_shutdown(dlm);
972 return -ENOMEM;
973}
974
975void dlm_debug_shutdown(struct dlm_ctxt *dlm)
976{
977 struct dlm_debug_ctxt *dc = dlm->dlm_debug_ctxt;
978
979 if (dc) {
Sunil Mushran72093002008-03-10 15:16:27 -0700980 if (dc->debug_purgelist_dentry)
981 debugfs_remove(dc->debug_purgelist_dentry);
Sunil Mushrand0129ac2008-03-10 15:16:26 -0700982 if (dc->debug_mle_dentry)
983 debugfs_remove(dc->debug_mle_dentry);
Sunil Mushran4e3d24e2008-03-10 15:16:24 -0700984 if (dc->debug_lockres_dentry)
985 debugfs_remove(dc->debug_lockres_dentry);
Sunil Mushran007dce52008-03-10 15:16:23 -0700986 if (dc->debug_state_dentry)
987 debugfs_remove(dc->debug_state_dentry);
988 dlm_debug_put(dc);
989 }
990}
Sunil Mushran6325b4a2008-03-10 15:16:22 -0700991
992/* subroot - domain dir */
993int dlm_create_debugfs_subroot(struct dlm_ctxt *dlm)
994{
995 dlm->dlm_debugfs_subroot = debugfs_create_dir(dlm->name,
996 dlm_debugfs_root);
997 if (!dlm->dlm_debugfs_subroot) {
998 mlog_errno(-ENOMEM);
999 goto bail;
1000 }
1001
Sunil Mushran007dce52008-03-10 15:16:23 -07001002 dlm->dlm_debug_ctxt = kzalloc(sizeof(struct dlm_debug_ctxt),
1003 GFP_KERNEL);
1004 if (!dlm->dlm_debug_ctxt) {
1005 mlog_errno(-ENOMEM);
1006 goto bail;
1007 }
1008 kref_init(&dlm->dlm_debug_ctxt->debug_refcnt);
1009
Sunil Mushran6325b4a2008-03-10 15:16:22 -07001010 return 0;
1011bail:
1012 dlm_destroy_debugfs_subroot(dlm);
1013 return -ENOMEM;
1014}
1015
1016void dlm_destroy_debugfs_subroot(struct dlm_ctxt *dlm)
1017{
1018 if (dlm->dlm_debugfs_subroot)
1019 debugfs_remove(dlm->dlm_debugfs_subroot);
1020}
1021
1022/* debugfs root */
1023int dlm_create_debugfs_root(void)
1024{
1025 dlm_debugfs_root = debugfs_create_dir(DLM_DEBUGFS_DIR, NULL);
1026 if (!dlm_debugfs_root) {
1027 mlog_errno(-ENOMEM);
1028 return -ENOMEM;
1029 }
1030 return 0;
1031}
1032
1033void dlm_destroy_debugfs_root(void)
1034{
1035 if (dlm_debugfs_root)
1036 debugfs_remove(dlm_debugfs_root);
1037}
1038#endif /* CONFIG_DEBUG_FS */