hc
2025-02-14 bbb9540dc49f70f6b703d1c8d1b85fa5f602d86e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// SPDX-License-Identifier: GPL-2.0-or-later
/* SCTP kernel implementation
 * (C) Copyright IBM Corp. 2001, 2004
 *
 * This file is part of the SCTP kernel implementation
 *
 * Support for memory object debugging.  This allows one to monitor the
 * object allocations/deallocations for types instrumented for this
 * via the proc fs.
 *
 * Please send any bug reports or fixes you make to the
 * email address(es):
 *    lksctp developers <linux-sctp@vger.kernel.org>
 *
 * Written or modified by:
 *    Jon Grimm             <jgrimm@us.ibm.com>
 */
 
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
#include <linux/kernel.h>
#include <net/sctp/sctp.h>
 
/*
 * Global counters to count raw object allocation counts.
 * To add new counters, choose a unique suffix for the variable
 * name as the helper macros key off this suffix to make
 * life easier for the programmer.
 */
 
SCTP_DBG_OBJCNT(sock);
SCTP_DBG_OBJCNT(ep);
SCTP_DBG_OBJCNT(transport);
SCTP_DBG_OBJCNT(assoc);
SCTP_DBG_OBJCNT(bind_addr);
SCTP_DBG_OBJCNT(bind_bucket);
SCTP_DBG_OBJCNT(chunk);
SCTP_DBG_OBJCNT(addr);
SCTP_DBG_OBJCNT(datamsg);
SCTP_DBG_OBJCNT(keys);
 
/* An array to make it easy to pretty print the debug information
 * to the proc fs.
 */
static struct sctp_dbg_objcnt_entry sctp_dbg_objcnt[] = {
   SCTP_DBG_OBJCNT_ENTRY(sock),
   SCTP_DBG_OBJCNT_ENTRY(ep),
   SCTP_DBG_OBJCNT_ENTRY(assoc),
   SCTP_DBG_OBJCNT_ENTRY(transport),
   SCTP_DBG_OBJCNT_ENTRY(chunk),
   SCTP_DBG_OBJCNT_ENTRY(bind_addr),
   SCTP_DBG_OBJCNT_ENTRY(bind_bucket),
   SCTP_DBG_OBJCNT_ENTRY(addr),
   SCTP_DBG_OBJCNT_ENTRY(datamsg),
   SCTP_DBG_OBJCNT_ENTRY(keys),
};
 
/* Callback from procfs to read out objcount information.
 * Walk through the entries in the sctp_dbg_objcnt array, dumping
 * the raw object counts for each monitored type.
 */
static int sctp_objcnt_seq_show(struct seq_file *seq, void *v)
{
   int i;
 
   i = (int)*(loff_t *)v;
   seq_setwidth(seq, 127);
   seq_printf(seq, "%s: %d", sctp_dbg_objcnt[i].label,
               atomic_read(sctp_dbg_objcnt[i].counter));
   seq_pad(seq, '\n');
   return 0;
}
 
static void *sctp_objcnt_seq_start(struct seq_file *seq, loff_t *pos)
{
   return (*pos >= ARRAY_SIZE(sctp_dbg_objcnt)) ? NULL : (void *)pos;
}
 
static void sctp_objcnt_seq_stop(struct seq_file *seq, void *v)
{
}
 
static void *sctp_objcnt_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{
   ++*pos;
   return (*pos >= ARRAY_SIZE(sctp_dbg_objcnt)) ? NULL : (void *)pos;
}
 
static const struct seq_operations sctp_objcnt_seq_ops = {
   .start = sctp_objcnt_seq_start,
   .next  = sctp_objcnt_seq_next,
   .stop  = sctp_objcnt_seq_stop,
   .show  = sctp_objcnt_seq_show,
};
 
/* Initialize the objcount in the proc filesystem.  */
void sctp_dbg_objcnt_init(struct net *net)
{
   struct proc_dir_entry *ent;
 
   ent = proc_create_seq("sctp_dbg_objcnt", 0,
             net->sctp.proc_net_sctp, &sctp_objcnt_seq_ops);
   if (!ent)
       pr_warn("sctp_dbg_objcnt: Unable to create /proc entry.\n");
}