blob: 61df89cedded17c551b2d8bb97ed474ad7c1ad82 [file] [log] [blame]
Sunil Mushran2309e9e2008-04-14 10:46:19 -07001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * netdebug.c
5 *
6 * debug functionality for o2net
7 *
8 * Copyright (C) 2005, 2008 Oracle. All rights reserved.
9 *
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#ifdef CONFIG_DEBUG_FS
28
29#include <linux/module.h>
30#include <linux/types.h>
31#include <linux/slab.h>
32#include <linux/idr.h>
33#include <linux/kref.h>
34#include <linux/seq_file.h>
35#include <linux/debugfs.h>
36
37#include <linux/uaccess.h>
38
39#include "tcp.h"
40#include "nodemanager.h"
41#define MLOG_MASK_PREFIX ML_TCP
42#include "masklog.h"
43
44#include "tcp_internal.h"
45
46#define O2NET_DEBUG_DIR "o2net"
47#define SC_DEBUG_NAME "sock_containers"
48#define NST_DEBUG_NAME "send_tracking"
Sunil Mushrandb027542010-12-22 12:39:42 -080049#define STATS_DEBUG_NAME "stats"
50
51#define SHOW_SOCK_CONTAINERS 0
52#define SHOW_SOCK_STATS 1
Sunil Mushran2309e9e2008-04-14 10:46:19 -070053
54static struct dentry *o2net_dentry;
55static struct dentry *sc_dentry;
56static struct dentry *nst_dentry;
Sunil Mushrandb027542010-12-22 12:39:42 -080057static struct dentry *stats_dentry;
Sunil Mushran2309e9e2008-04-14 10:46:19 -070058
59static DEFINE_SPINLOCK(o2net_debug_lock);
60
61static LIST_HEAD(sock_containers);
62static LIST_HEAD(send_tracking);
63
64void o2net_debug_add_nst(struct o2net_send_tracking *nst)
65{
66 spin_lock(&o2net_debug_lock);
67 list_add(&nst->st_net_debug_item, &send_tracking);
68 spin_unlock(&o2net_debug_lock);
69}
70
71void o2net_debug_del_nst(struct o2net_send_tracking *nst)
72{
73 spin_lock(&o2net_debug_lock);
74 if (!list_empty(&nst->st_net_debug_item))
75 list_del_init(&nst->st_net_debug_item);
76 spin_unlock(&o2net_debug_lock);
77}
78
79static struct o2net_send_tracking
80 *next_nst(struct o2net_send_tracking *nst_start)
81{
82 struct o2net_send_tracking *nst, *ret = NULL;
83
84 assert_spin_locked(&o2net_debug_lock);
85
86 list_for_each_entry(nst, &nst_start->st_net_debug_item,
87 st_net_debug_item) {
88 /* discover the head of the list */
89 if (&nst->st_net_debug_item == &send_tracking)
90 break;
91
92 /* use st_task to detect real nsts in the list */
93 if (nst->st_task != NULL) {
94 ret = nst;
95 break;
96 }
97 }
98
99 return ret;
100}
101
102static void *nst_seq_start(struct seq_file *seq, loff_t *pos)
103{
104 struct o2net_send_tracking *nst, *dummy_nst = seq->private;
105
106 spin_lock(&o2net_debug_lock);
107 nst = next_nst(dummy_nst);
108 spin_unlock(&o2net_debug_lock);
109
110 return nst;
111}
112
113static void *nst_seq_next(struct seq_file *seq, void *v, loff_t *pos)
114{
115 struct o2net_send_tracking *nst, *dummy_nst = seq->private;
116
117 spin_lock(&o2net_debug_lock);
118 nst = next_nst(dummy_nst);
119 list_del_init(&dummy_nst->st_net_debug_item);
120 if (nst)
121 list_add(&dummy_nst->st_net_debug_item,
122 &nst->st_net_debug_item);
123 spin_unlock(&o2net_debug_lock);
124
125 return nst; /* unused, just needs to be null when done */
126}
127
128static int nst_seq_show(struct seq_file *seq, void *v)
129{
130 struct o2net_send_tracking *nst, *dummy_nst = seq->private;
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800131 ktime_t now;
132 s64 sock, send, status;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700133
134 spin_lock(&o2net_debug_lock);
135 nst = next_nst(dummy_nst);
136
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800137 now = ktime_get();
138 sock = ktime_to_us(ktime_sub(now, nst->st_sock_time));
139 send = ktime_to_us(ktime_sub(now, nst->st_send_time));
140 status = ktime_to_us(ktime_sub(now, nst->st_status_time));
141
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700142 if (nst != NULL) {
143 /* get_task_comm isn't exported. oh well. */
144 seq_printf(seq, "%p:\n"
145 " pid: %lu\n"
146 " tgid: %lu\n"
147 " process name: %s\n"
148 " node: %u\n"
149 " sc: %p\n"
150 " message id: %d\n"
151 " message type: %u\n"
152 " message key: 0x%08x\n"
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800153 " sock acquiry: %lld usecs ago\n"
154 " send start: %lld usecs ago\n"
155 " wait start: %lld usecs ago\n",
Sunil Mushran37096a72010-12-20 16:35:00 -0800156 nst, (unsigned long)task_pid_nr(nst->st_task),
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700157 (unsigned long)nst->st_task->tgid,
158 nst->st_task->comm, nst->st_node,
159 nst->st_sc, nst->st_id, nst->st_msg_type,
160 nst->st_msg_key,
Sunil Mushran3f9c14f2010-12-22 12:39:38 -0800161 (long long)sock,
162 (long long)send,
163 (long long)status);
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700164 }
165
166 spin_unlock(&o2net_debug_lock);
167
168 return 0;
169}
170
171static void nst_seq_stop(struct seq_file *seq, void *v)
172{
173}
174
James Morris88e9d342009-09-22 16:43:43 -0700175static const struct seq_operations nst_seq_ops = {
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700176 .start = nst_seq_start,
177 .next = nst_seq_next,
178 .stop = nst_seq_stop,
179 .show = nst_seq_show,
180};
181
182static int nst_fop_open(struct inode *inode, struct file *file)
183{
184 struct o2net_send_tracking *dummy_nst;
185 struct seq_file *seq;
186 int ret;
187
188 dummy_nst = kmalloc(sizeof(struct o2net_send_tracking), GFP_KERNEL);
189 if (dummy_nst == NULL) {
190 ret = -ENOMEM;
191 goto out;
192 }
193 dummy_nst->st_task = NULL;
194
195 ret = seq_open(file, &nst_seq_ops);
196 if (ret)
197 goto out;
198
199 seq = file->private_data;
200 seq->private = dummy_nst;
201 o2net_debug_add_nst(dummy_nst);
202
203 dummy_nst = NULL;
204
205out:
206 kfree(dummy_nst);
207 return ret;
208}
209
210static int nst_fop_release(struct inode *inode, struct file *file)
211{
212 struct seq_file *seq = file->private_data;
213 struct o2net_send_tracking *dummy_nst = seq->private;
214
215 o2net_debug_del_nst(dummy_nst);
216 return seq_release_private(inode, file);
217}
218
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700219static const struct file_operations nst_seq_fops = {
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700220 .open = nst_fop_open,
221 .read = seq_read,
222 .llseek = seq_lseek,
223 .release = nst_fop_release,
224};
225
226void o2net_debug_add_sc(struct o2net_sock_container *sc)
227{
228 spin_lock(&o2net_debug_lock);
229 list_add(&sc->sc_net_debug_item, &sock_containers);
230 spin_unlock(&o2net_debug_lock);
231}
232
233void o2net_debug_del_sc(struct o2net_sock_container *sc)
234{
235 spin_lock(&o2net_debug_lock);
236 list_del_init(&sc->sc_net_debug_item);
237 spin_unlock(&o2net_debug_lock);
238}
239
Sunil Mushrandb027542010-12-22 12:39:42 -0800240struct o2net_sock_debug {
241 int dbg_ctxt;
242 struct o2net_sock_container *dbg_sock;
243};
244
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700245static struct o2net_sock_container
246 *next_sc(struct o2net_sock_container *sc_start)
247{
248 struct o2net_sock_container *sc, *ret = NULL;
249
250 assert_spin_locked(&o2net_debug_lock);
251
252 list_for_each_entry(sc, &sc_start->sc_net_debug_item,
253 sc_net_debug_item) {
254 /* discover the head of the list miscast as a sc */
255 if (&sc->sc_net_debug_item == &sock_containers)
256 break;
257
258 /* use sc_page to detect real scs in the list */
259 if (sc->sc_page != NULL) {
260 ret = sc;
261 break;
262 }
263 }
264
265 return ret;
266}
267
268static void *sc_seq_start(struct seq_file *seq, loff_t *pos)
269{
Sunil Mushrandb027542010-12-22 12:39:42 -0800270 struct o2net_sock_debug *sd = seq->private;
271 struct o2net_sock_container *sc, *dummy_sc = sd->dbg_sock;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700272
273 spin_lock(&o2net_debug_lock);
274 sc = next_sc(dummy_sc);
275 spin_unlock(&o2net_debug_lock);
276
277 return sc;
278}
279
280static void *sc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
281{
Sunil Mushrandb027542010-12-22 12:39:42 -0800282 struct o2net_sock_debug *sd = seq->private;
283 struct o2net_sock_container *sc, *dummy_sc = sd->dbg_sock;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700284
285 spin_lock(&o2net_debug_lock);
286 sc = next_sc(dummy_sc);
287 list_del_init(&dummy_sc->sc_net_debug_item);
288 if (sc)
289 list_add(&dummy_sc->sc_net_debug_item, &sc->sc_net_debug_item);
290 spin_unlock(&o2net_debug_lock);
291
292 return sc; /* unused, just needs to be null when done */
293}
294
Sunil Mushrandb027542010-12-22 12:39:42 -0800295#ifdef CONFIG_OCFS2_FS_STATS
296# define sc_send_count(_s) ((_s)->sc_send_count)
297# define sc_recv_count(_s) ((_s)->sc_recv_count)
298# define sc_tv_acquiry_total_ns(_s) (ktime_to_ns((_s)->sc_tv_acquiry_total))
299# define sc_tv_send_total_ns(_s) (ktime_to_ns((_s)->sc_tv_send_total))
300# define sc_tv_status_total_ns(_s) (ktime_to_ns((_s)->sc_tv_status_total))
301# define sc_tv_process_total_ns(_s) (ktime_to_ns((_s)->sc_tv_process_total))
302#else
303# define sc_send_count(_s) (0U)
304# define sc_recv_count(_s) (0U)
305# define sc_tv_acquiry_total_ns(_s) (0LL)
306# define sc_tv_send_total_ns(_s) (0LL)
307# define sc_tv_status_total_ns(_s) (0LL)
308# define sc_tv_process_total_ns(_s) (0LL)
309#endif
310
311/* So that debugfs.ocfs2 can determine which format is being used */
312#define O2NET_STATS_STR_VERSION 1
313static void sc_show_sock_stats(struct seq_file *seq,
314 struct o2net_sock_container *sc)
315{
316 if (!sc)
317 return;
318
319 seq_printf(seq, "%d,%u,%lu,%lld,%lld,%lld,%lu,%lld\n", O2NET_STATS_STR_VERSION,
320 sc->sc_node->nd_num, (unsigned long)sc_send_count(sc),
321 (long long)sc_tv_acquiry_total_ns(sc),
322 (long long)sc_tv_send_total_ns(sc),
323 (long long)sc_tv_status_total_ns(sc),
324 (unsigned long)sc_recv_count(sc),
325 (long long)sc_tv_process_total_ns(sc));
326}
327
328static void sc_show_sock_container(struct seq_file *seq,
329 struct o2net_sock_container *sc)
330{
331 struct inet_sock *inet = NULL;
332 __be32 saddr = 0, daddr = 0;
333 __be16 sport = 0, dport = 0;
334
335 if (!sc)
336 return;
337
338 if (sc->sc_sock) {
339 inet = inet_sk(sc->sc_sock->sk);
340 /* the stack's structs aren't sparse endian clean */
341 saddr = (__force __be32)inet->inet_saddr;
342 daddr = (__force __be32)inet->inet_daddr;
343 sport = (__force __be16)inet->inet_sport;
344 dport = (__force __be16)inet->inet_dport;
345 }
346
347 /* XXX sigh, inet-> doesn't have sparse annotation so any
348 * use of it here generates a warning with -Wbitwise */
349 seq_printf(seq, "%p:\n"
350 " krefs: %d\n"
351 " sock: %pI4:%u -> "
352 "%pI4:%u\n"
353 " remote node: %s\n"
354 " page off: %zu\n"
355 " handshake ok: %u\n"
356 " timer: %lld usecs\n"
357 " data ready: %lld usecs\n"
358 " advance start: %lld usecs\n"
359 " advance stop: %lld usecs\n"
360 " func start: %lld usecs\n"
361 " func stop: %lld usecs\n"
362 " func key: 0x%08x\n"
363 " func type: %u\n",
364 sc,
365 atomic_read(&sc->sc_kref.refcount),
366 &saddr, inet ? ntohs(sport) : 0,
367 &daddr, inet ? ntohs(dport) : 0,
368 sc->sc_node->nd_name,
369 sc->sc_page_off,
370 sc->sc_handshake_ok,
371 (long long)ktime_to_us(sc->sc_tv_timer),
372 (long long)ktime_to_us(sc->sc_tv_data_ready),
373 (long long)ktime_to_us(sc->sc_tv_advance_start),
374 (long long)ktime_to_us(sc->sc_tv_advance_stop),
375 (long long)ktime_to_us(sc->sc_tv_func_start),
376 (long long)ktime_to_us(sc->sc_tv_func_stop),
377 sc->sc_msg_key,
378 sc->sc_msg_type);
379}
380
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700381static int sc_seq_show(struct seq_file *seq, void *v)
382{
Sunil Mushrandb027542010-12-22 12:39:42 -0800383 struct o2net_sock_debug *sd = seq->private;
384 struct o2net_sock_container *sc, *dummy_sc = sd->dbg_sock;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700385
386 spin_lock(&o2net_debug_lock);
387 sc = next_sc(dummy_sc);
388
Sunil Mushrandb027542010-12-22 12:39:42 -0800389 if (sc) {
390 if (sd->dbg_ctxt == SHOW_SOCK_CONTAINERS)
391 sc_show_sock_container(seq, sc);
392 else
393 sc_show_sock_stats(seq, sc);
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700394 }
395
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700396 spin_unlock(&o2net_debug_lock);
397
398 return 0;
399}
400
401static void sc_seq_stop(struct seq_file *seq, void *v)
402{
403}
404
James Morris88e9d342009-09-22 16:43:43 -0700405static const struct seq_operations sc_seq_ops = {
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700406 .start = sc_seq_start,
407 .next = sc_seq_next,
408 .stop = sc_seq_stop,
409 .show = sc_seq_show,
410};
411
Sunil Mushrandb027542010-12-22 12:39:42 -0800412static int sc_common_open(struct file *file, struct o2net_sock_debug *sd)
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700413{
414 struct o2net_sock_container *dummy_sc;
415 struct seq_file *seq;
416 int ret;
417
418 dummy_sc = kmalloc(sizeof(struct o2net_sock_container), GFP_KERNEL);
419 if (dummy_sc == NULL) {
420 ret = -ENOMEM;
421 goto out;
422 }
423 dummy_sc->sc_page = NULL;
424
425 ret = seq_open(file, &sc_seq_ops);
426 if (ret)
427 goto out;
428
429 seq = file->private_data;
Sunil Mushrandb027542010-12-22 12:39:42 -0800430 seq->private = sd;
431 sd->dbg_sock = dummy_sc;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700432 o2net_debug_add_sc(dummy_sc);
433
434 dummy_sc = NULL;
435
436out:
437 kfree(dummy_sc);
438 return ret;
439}
440
441static int sc_fop_release(struct inode *inode, struct file *file)
442{
443 struct seq_file *seq = file->private_data;
Sunil Mushrandb027542010-12-22 12:39:42 -0800444 struct o2net_sock_debug *sd = seq->private;
445 struct o2net_sock_container *dummy_sc = sd->dbg_sock;
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700446
447 o2net_debug_del_sc(dummy_sc);
448 return seq_release_private(inode, file);
449}
450
Sunil Mushrandb027542010-12-22 12:39:42 -0800451static int stats_fop_open(struct inode *inode, struct file *file)
452{
453 struct o2net_sock_debug *sd;
454
455 sd = kmalloc(sizeof(struct o2net_sock_debug), GFP_KERNEL);
456 if (sd == NULL)
457 return -ENOMEM;
458
459 sd->dbg_ctxt = SHOW_SOCK_STATS;
460 sd->dbg_sock = NULL;
461
462 return sc_common_open(file, sd);
463}
464
465static const struct file_operations stats_seq_fops = {
466 .open = stats_fop_open,
467 .read = seq_read,
468 .llseek = seq_lseek,
469 .release = sc_fop_release,
470};
471
472static int sc_fop_open(struct inode *inode, struct file *file)
473{
474 struct o2net_sock_debug *sd;
475
476 sd = kmalloc(sizeof(struct o2net_sock_debug), GFP_KERNEL);
477 if (sd == NULL)
478 return -ENOMEM;
479
480 sd->dbg_ctxt = SHOW_SOCK_CONTAINERS;
481 sd->dbg_sock = NULL;
482
483 return sc_common_open(file, sd);
484}
485
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700486static const struct file_operations sc_seq_fops = {
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700487 .open = sc_fop_open,
488 .read = seq_read,
489 .llseek = seq_lseek,
490 .release = sc_fop_release,
491};
492
493int o2net_debugfs_init(void)
494{
495 o2net_dentry = debugfs_create_dir(O2NET_DEBUG_DIR, NULL);
496 if (!o2net_dentry) {
497 mlog_errno(-ENOMEM);
498 goto bail;
499 }
500
501 nst_dentry = debugfs_create_file(NST_DEBUG_NAME, S_IFREG|S_IRUSR,
502 o2net_dentry, NULL,
503 &nst_seq_fops);
504 if (!nst_dentry) {
505 mlog_errno(-ENOMEM);
506 goto bail;
507 }
508
509 sc_dentry = debugfs_create_file(SC_DEBUG_NAME, S_IFREG|S_IRUSR,
510 o2net_dentry, NULL,
511 &sc_seq_fops);
512 if (!sc_dentry) {
513 mlog_errno(-ENOMEM);
514 goto bail;
515 }
516
Sunil Mushrandb027542010-12-22 12:39:42 -0800517 stats_dentry = debugfs_create_file(STATS_DEBUG_NAME, S_IFREG|S_IRUSR,
518 o2net_dentry, NULL,
519 &stats_seq_fops);
520 if (!stats_dentry) {
521 mlog_errno(-ENOMEM);
522 goto bail;
523 }
524
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700525 return 0;
526bail:
Sunil Mushrandb027542010-12-22 12:39:42 -0800527 debugfs_remove(stats_dentry);
Sunil Mushran37096a72010-12-20 16:35:00 -0800528 debugfs_remove(sc_dentry);
529 debugfs_remove(nst_dentry);
530 debugfs_remove(o2net_dentry);
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700531 return -ENOMEM;
532}
533
534void o2net_debugfs_exit(void)
535{
Sunil Mushrandb027542010-12-22 12:39:42 -0800536 debugfs_remove(stats_dentry);
Sunil Mushran37096a72010-12-20 16:35:00 -0800537 debugfs_remove(sc_dentry);
538 debugfs_remove(nst_dentry);
539 debugfs_remove(o2net_dentry);
Sunil Mushran2309e9e2008-04-14 10:46:19 -0700540}
541
542#endif /* CONFIG_DEBUG_FS */