Linux Audio

Check our new training course

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