]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/sctp/proc.c
[SCTP]: Switch sctp_bind_addr_match() to net-endian.
[mirror_ubuntu-bionic-kernel.git] / net / sctp / proc.c
CommitLineData
1da177e4
LT
1/* SCTP kernel reference Implementation
2 * Copyright (c) 2003 International Business Machines, Corp.
3 *
4 * This file is part of the SCTP kernel reference Implementation
5 *
6 * The SCTP reference implementation is free software;
7 * you can redistribute it and/or modify it under the terms of
8 * the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * The SCTP reference implementation is distributed in the hope that it
13 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
14 * ************************
15 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 * See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with GNU CC; see the file COPYING. If not, write to
20 * the Free Software Foundation, 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
22 *
23 * Please send any bug reports or fixes you make to the
24 * email address(es):
25 * lksctp developers <lksctp-developers@lists.sourceforge.net>
26 *
27 * Or submit a bug report through the following website:
28 * http://www.sf.net/projects/lksctp
29 *
30 * Written or modified by:
31 * Sridhar Samudrala <sri@us.ibm.com>
32 *
33 * Any bugs reported given to us we will try to fix... any fixes shared will
34 * be incorporated into the next SCTP release.
35 */
36
37#include <linux/types.h>
38#include <linux/seq_file.h>
39#include <linux/init.h>
40#include <net/sctp/sctp.h>
41
42static struct snmp_mib sctp_snmp_list[] = {
43 SNMP_MIB_ITEM("SctpCurrEstab", SCTP_MIB_CURRESTAB),
44 SNMP_MIB_ITEM("SctpActiveEstabs", SCTP_MIB_ACTIVEESTABS),
45 SNMP_MIB_ITEM("SctpPassiveEstabs", SCTP_MIB_PASSIVEESTABS),
46 SNMP_MIB_ITEM("SctpAborteds", SCTP_MIB_ABORTEDS),
47 SNMP_MIB_ITEM("SctpShutdowns", SCTP_MIB_SHUTDOWNS),
48 SNMP_MIB_ITEM("SctpOutOfBlues", SCTP_MIB_OUTOFBLUES),
49 SNMP_MIB_ITEM("SctpChecksumErrors", SCTP_MIB_CHECKSUMERRORS),
50 SNMP_MIB_ITEM("SctpOutCtrlChunks", SCTP_MIB_OUTCTRLCHUNKS),
51 SNMP_MIB_ITEM("SctpOutOrderChunks", SCTP_MIB_OUTORDERCHUNKS),
52 SNMP_MIB_ITEM("SctpOutUnorderChunks", SCTP_MIB_OUTUNORDERCHUNKS),
53 SNMP_MIB_ITEM("SctpInCtrlChunks", SCTP_MIB_INCTRLCHUNKS),
54 SNMP_MIB_ITEM("SctpInOrderChunks", SCTP_MIB_INORDERCHUNKS),
55 SNMP_MIB_ITEM("SctpInUnorderChunks", SCTP_MIB_INUNORDERCHUNKS),
56 SNMP_MIB_ITEM("SctpFragUsrMsgs", SCTP_MIB_FRAGUSRMSGS),
57 SNMP_MIB_ITEM("SctpReasmUsrMsgs", SCTP_MIB_REASMUSRMSGS),
58 SNMP_MIB_ITEM("SctpOutSCTPPacks", SCTP_MIB_OUTSCTPPACKS),
59 SNMP_MIB_ITEM("SctpInSCTPPacks", SCTP_MIB_INSCTPPACKS),
ac0b0462
SS
60 SNMP_MIB_ITEM("SctpT1InitExpireds", SCTP_MIB_T1_INIT_EXPIREDS),
61 SNMP_MIB_ITEM("SctpT1CookieExpireds", SCTP_MIB_T1_COOKIE_EXPIREDS),
62 SNMP_MIB_ITEM("SctpT2ShutdownExpireds", SCTP_MIB_T2_SHUTDOWN_EXPIREDS),
63 SNMP_MIB_ITEM("SctpT3RtxExpireds", SCTP_MIB_T3_RTX_EXPIREDS),
64 SNMP_MIB_ITEM("SctpT4RtoExpireds", SCTP_MIB_T4_RTO_EXPIREDS),
65 SNMP_MIB_ITEM("SctpT5ShutdownGuardExpireds", SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS),
66 SNMP_MIB_ITEM("SctpDelaySackExpireds", SCTP_MIB_DELAY_SACK_EXPIREDS),
67 SNMP_MIB_ITEM("SctpAutocloseExpireds", SCTP_MIB_AUTOCLOSE_EXPIREDS),
68 SNMP_MIB_ITEM("SctpT3Retransmits", SCTP_MIB_T3_RETRANSMITS),
69 SNMP_MIB_ITEM("SctpPmtudRetransmits", SCTP_MIB_PMTUD_RETRANSMITS),
70 SNMP_MIB_ITEM("SctpFastRetransmits", SCTP_MIB_FAST_RETRANSMITS),
71 SNMP_MIB_ITEM("SctpInPktSoftirq", SCTP_MIB_IN_PKT_SOFTIRQ),
72 SNMP_MIB_ITEM("SctpInPktBacklog", SCTP_MIB_IN_PKT_BACKLOG),
73 SNMP_MIB_ITEM("SctpInPktDiscards", SCTP_MIB_IN_PKT_DISCARDS),
74 SNMP_MIB_ITEM("SctpInDataChunkDiscards", SCTP_MIB_IN_DATA_CHUNK_DISCARDS),
d2287f84 75 SNMP_MIB_SENTINEL
1da177e4
LT
76};
77
78/* Return the current value of a particular entry in the mib by adding its
79 * per cpu counters.
80 */
81static unsigned long
82fold_field(void *mib[], int nr)
83{
84 unsigned long res = 0;
85 int i;
86
6f912042 87 for_each_possible_cpu(i) {
1da177e4
LT
88 res +=
89 *((unsigned long *) (((void *) per_cpu_ptr(mib[0], i)) +
90 sizeof (unsigned long) * nr));
91 res +=
92 *((unsigned long *) (((void *) per_cpu_ptr(mib[1], i)) +
93 sizeof (unsigned long) * nr));
94 }
95 return res;
96}
97
98/* Display sctp snmp mib statistics(/proc/net/sctp/snmp). */
99static int sctp_snmp_seq_show(struct seq_file *seq, void *v)
100{
101 int i;
102
103 for (i = 0; sctp_snmp_list[i].name != NULL; i++)
104 seq_printf(seq, "%-32s\t%ld\n", sctp_snmp_list[i].name,
105 fold_field((void **)sctp_statistics,
106 sctp_snmp_list[i].entry));
107
108 return 0;
109}
110
111/* Initialize the seq file operations for 'snmp' object. */
112static int sctp_snmp_seq_open(struct inode *inode, struct file *file)
113{
114 return single_open(file, sctp_snmp_seq_show, NULL);
115}
116
117static struct file_operations sctp_snmp_seq_fops = {
118 .owner = THIS_MODULE,
119 .open = sctp_snmp_seq_open,
120 .read = seq_read,
121 .llseek = seq_lseek,
122 .release = single_release,
123};
124
125/* Set up the proc fs entry for 'snmp' object. */
126int __init sctp_snmp_proc_init(void)
127{
128 struct proc_dir_entry *p;
129
130 p = create_proc_entry("snmp", S_IRUGO, proc_net_sctp);
131 if (!p)
132 return -ENOMEM;
133
134 p->proc_fops = &sctp_snmp_seq_fops;
135
136 return 0;
137}
138
139/* Cleanup the proc fs entry for 'snmp' object. */
140void sctp_snmp_proc_exit(void)
141{
142 remove_proc_entry("snmp", proc_net_sctp);
143}
144
145/* Dump local addresses of an association/endpoint. */
146static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb)
147{
148 struct list_head *pos;
bca735bd 149 struct sctp_association *asoc;
1da177e4 150 struct sctp_sockaddr_entry *laddr;
bca735bd
VY
151 struct sctp_transport *peer;
152 union sctp_addr *addr, *primary = NULL;
1da177e4
LT
153 struct sctp_af *af;
154
bca735bd
VY
155 if (epb->type == SCTP_EP_TYPE_ASSOCIATION) {
156 asoc = sctp_assoc(epb);
157 peer = asoc->peer.primary_path;
5f242a13 158 primary = &peer->saddr;
bca735bd
VY
159 }
160
1da177e4
LT
161 list_for_each(pos, &epb->bind_addr.address_list) {
162 laddr = list_entry(pos, struct sctp_sockaddr_entry, list);
5f242a13 163 addr = &laddr->a;
1da177e4 164 af = sctp_get_af_specific(addr->sa.sa_family);
bca735bd
VY
165 if (primary && af->cmp_addr(addr, primary)) {
166 seq_printf(seq, "*");
167 }
5f242a13 168 af->seq_dump_addr(seq, addr);
1da177e4
LT
169 }
170}
171
172/* Dump remote addresses of an association. */
173static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_association *assoc)
174{
175 struct list_head *pos;
176 struct sctp_transport *transport;
bca735bd 177 union sctp_addr *addr, *primary;
5f242a13 178 union sctp_addr tmp;
1da177e4
LT
179 struct sctp_af *af;
180
bca735bd 181 primary = &(assoc->peer.primary_addr);
5f242a13 182 flip_to_n(&tmp, primary);
1da177e4
LT
183 list_for_each(pos, &assoc->peer.transport_addr_list) {
184 transport = list_entry(pos, struct sctp_transport, transports);
5f242a13 185 addr = &transport->ipaddr;
1da177e4 186 af = sctp_get_af_specific(addr->sa.sa_family);
5f242a13 187 if (af->cmp_addr(addr, &tmp)) {
bca735bd
VY
188 seq_printf(seq, "*");
189 }
5f242a13 190 af->seq_dump_addr(seq, addr);
1da177e4
LT
191 }
192}
193
bca735bd
VY
194static void * sctp_eps_seq_start(struct seq_file *seq, loff_t *pos)
195{
49392e5e 196 if (*pos >= sctp_ep_hashsize)
bca735bd
VY
197 return NULL;
198
199 if (*pos < 0)
200 *pos = 0;
201
202 if (*pos == 0)
203 seq_printf(seq, " ENDPT SOCK STY SST HBKT LPORT UID INODE LADDRS\n");
204
bca735bd
VY
205 return (void *)pos;
206}
207
208static void sctp_eps_seq_stop(struct seq_file *seq, void *v)
209{
210 return;
211}
212
213
214static void * sctp_eps_seq_next(struct seq_file *seq, void *v, loff_t *pos)
215{
49392e5e 216 if (++*pos >= sctp_ep_hashsize)
bca735bd
VY
217 return NULL;
218
bca735bd
VY
219 return pos;
220}
221
222
1da177e4
LT
223/* Display sctp endpoints (/proc/net/sctp/eps). */
224static int sctp_eps_seq_show(struct seq_file *seq, void *v)
225{
226 struct sctp_hashbucket *head;
227 struct sctp_ep_common *epb;
228 struct sctp_endpoint *ep;
229 struct sock *sk;
38b0e42a 230 int hash = *(loff_t *)v;
bca735bd 231
49392e5e 232 if (hash >= sctp_ep_hashsize)
bca735bd
VY
233 return -ENOMEM;
234
49392e5e 235 head = &sctp_ep_hashtable[hash];
bca735bd
VY
236 sctp_local_bh_disable();
237 read_lock(&head->lock);
238 for (epb = head->chain; epb; epb = epb->next) {
239 ep = sctp_ep(epb);
240 sk = epb->sk;
241 seq_printf(seq, "%8p %8p %-3d %-3d %-4d %-5d %5d %5lu ", ep, sk,
49392e5e 242 sctp_sk(sk)->type, sk->sk_state, hash,
bca735bd
VY
243 epb->bind_addr.port,
244 sock_i_uid(sk), sock_i_ino(sk));
245
246 sctp_seq_dump_local_addrs(seq, epb);
247 seq_printf(seq, "\n");
1da177e4 248 }
bca735bd
VY
249 read_unlock(&head->lock);
250 sctp_local_bh_enable();
1da177e4
LT
251
252 return 0;
253}
254
bca735bd
VY
255static struct seq_operations sctp_eps_ops = {
256 .start = sctp_eps_seq_start,
257 .next = sctp_eps_seq_next,
258 .stop = sctp_eps_seq_stop,
259 .show = sctp_eps_seq_show,
260};
261
262
1da177e4
LT
263/* Initialize the seq file operations for 'eps' object. */
264static int sctp_eps_seq_open(struct inode *inode, struct file *file)
265{
bca735bd 266 return seq_open(file, &sctp_eps_ops);
1da177e4
LT
267}
268
269static struct file_operations sctp_eps_seq_fops = {
270 .open = sctp_eps_seq_open,
271 .read = seq_read,
272 .llseek = seq_lseek,
bca735bd 273 .release = seq_release,
1da177e4
LT
274};
275
276/* Set up the proc fs entry for 'eps' object. */
277int __init sctp_eps_proc_init(void)
278{
279 struct proc_dir_entry *p;
280
281 p = create_proc_entry("eps", S_IRUGO, proc_net_sctp);
282 if (!p)
283 return -ENOMEM;
284
285 p->proc_fops = &sctp_eps_seq_fops;
286
287 return 0;
288}
289
290/* Cleanup the proc fs entry for 'eps' object. */
291void sctp_eps_proc_exit(void)
292{
293 remove_proc_entry("eps", proc_net_sctp);
294}
295
bca735bd
VY
296
297static void * sctp_assocs_seq_start(struct seq_file *seq, loff_t *pos)
298{
49392e5e 299 if (*pos >= sctp_assoc_hashsize)
bca735bd
VY
300 return NULL;
301
302 if (*pos < 0)
303 *pos = 0;
304
305 if (*pos == 0)
306 seq_printf(seq, " ASSOC SOCK STY SST ST HBKT ASSOC-ID TX_QUEUE RX_QUEUE UID INODE LPORT "
307 "RPORT LADDRS <-> RADDRS\n");
308
bca735bd
VY
309 return (void *)pos;
310}
311
312static void sctp_assocs_seq_stop(struct seq_file *seq, void *v)
313{
314 return;
315}
316
317
318static void * sctp_assocs_seq_next(struct seq_file *seq, void *v, loff_t *pos)
319{
49392e5e 320 if (++*pos >= sctp_assoc_hashsize)
bca735bd
VY
321 return NULL;
322
bca735bd
VY
323 return pos;
324}
325
1da177e4
LT
326/* Display sctp associations (/proc/net/sctp/assocs). */
327static int sctp_assocs_seq_show(struct seq_file *seq, void *v)
328{
329 struct sctp_hashbucket *head;
330 struct sctp_ep_common *epb;
331 struct sctp_association *assoc;
332 struct sock *sk;
38b0e42a 333 int hash = *(loff_t *)v;
bca735bd 334
49392e5e 335 if (hash >= sctp_assoc_hashsize)
bca735bd
VY
336 return -ENOMEM;
337
49392e5e 338 head = &sctp_assoc_hashtable[hash];
bca735bd
VY
339 sctp_local_bh_disable();
340 read_lock(&head->lock);
341 for (epb = head->chain; epb; epb = epb->next) {
342 assoc = sctp_assoc(epb);
343 sk = epb->sk;
344 seq_printf(seq,
345 "%8p %8p %-3d %-3d %-2d %-4d %4d %8d %8d %7d %5lu %-5d %5d ",
346 assoc, sk, sctp_sk(sk)->type, sk->sk_state,
49392e5e 347 assoc->state, hash, assoc->assoc_id,
bca735bd 348 assoc->sndbuf_used,
6aa2551c 349 atomic_read(&assoc->rmem_alloc),
bca735bd
VY
350 sock_i_uid(sk), sock_i_ino(sk),
351 epb->bind_addr.port,
352 assoc->peer.port);
353
354 seq_printf(seq, " ");
355 sctp_seq_dump_local_addrs(seq, epb);
356 seq_printf(seq, "<-> ");
357 sctp_seq_dump_remote_addrs(seq, assoc);
358 seq_printf(seq, "\n");
1da177e4 359 }
bca735bd
VY
360 read_unlock(&head->lock);
361 sctp_local_bh_enable();
1da177e4
LT
362
363 return 0;
364}
365
bca735bd
VY
366static struct seq_operations sctp_assoc_ops = {
367 .start = sctp_assocs_seq_start,
368 .next = sctp_assocs_seq_next,
369 .stop = sctp_assocs_seq_stop,
370 .show = sctp_assocs_seq_show,
371};
372
1da177e4
LT
373/* Initialize the seq file operations for 'assocs' object. */
374static int sctp_assocs_seq_open(struct inode *inode, struct file *file)
375{
bca735bd 376 return seq_open(file, &sctp_assoc_ops);
1da177e4
LT
377}
378
379static struct file_operations sctp_assocs_seq_fops = {
380 .open = sctp_assocs_seq_open,
381 .read = seq_read,
382 .llseek = seq_lseek,
bca735bd 383 .release = seq_release,
1da177e4
LT
384};
385
386/* Set up the proc fs entry for 'assocs' object. */
387int __init sctp_assocs_proc_init(void)
388{
389 struct proc_dir_entry *p;
390
391 p = create_proc_entry("assocs", S_IRUGO, proc_net_sctp);
392 if (!p)
393 return -ENOMEM;
394
395 p->proc_fops = &sctp_assocs_seq_fops;
396
397 return 0;
398}
399
400/* Cleanup the proc fs entry for 'assocs' object. */
401void sctp_assocs_proc_exit(void)
402{
403 remove_proc_entry("assocs", proc_net_sctp);
404}