blob: bbee058508010b3a8098644262d34d1f5e6cedce [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* /proc/net/ support for AF_RXRPC
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <net/sock.h>
14#include <net/af_rxrpc.h>
15#include "ar-internal.h"
16
Jan Engelhardt036c2e22008-01-30 18:55:45 -080017static const char *const rxrpc_conn_states[] = {
David Howells17926a72007-04-26 15:48:28 -070018 [RXRPC_CONN_UNUSED] = "Unused ",
19 [RXRPC_CONN_CLIENT] = "Client ",
20 [RXRPC_CONN_SERVER_UNSECURED] = "SvUnsec ",
21 [RXRPC_CONN_SERVER_CHALLENGING] = "SvChall ",
22 [RXRPC_CONN_SERVER] = "SvSecure",
23 [RXRPC_CONN_REMOTELY_ABORTED] = "RmtAbort",
24 [RXRPC_CONN_LOCALLY_ABORTED] = "LocAbort",
25 [RXRPC_CONN_NETWORK_ERROR] = "NetError",
26};
27
David Howells17926a72007-04-26 15:48:28 -070028/*
29 * generate a list of extant and dead calls in /proc/net/rxrpc_calls
30 */
31static void *rxrpc_call_seq_start(struct seq_file *seq, loff_t *_pos)
32{
David Howells17926a72007-04-26 15:48:28 -070033 read_lock(&rxrpc_call_lock);
Pavel Emelianov60f04382007-07-09 13:15:14 -070034 return seq_list_start_head(&rxrpc_calls, *_pos);
David Howells17926a72007-04-26 15:48:28 -070035}
36
37static void *rxrpc_call_seq_next(struct seq_file *seq, void *v, loff_t *pos)
38{
Pavel Emelianov60f04382007-07-09 13:15:14 -070039 return seq_list_next(v, &rxrpc_calls, pos);
David Howells17926a72007-04-26 15:48:28 -070040}
41
42static void rxrpc_call_seq_stop(struct seq_file *seq, void *v)
43{
44 read_unlock(&rxrpc_call_lock);
45}
46
47static int rxrpc_call_seq_show(struct seq_file *seq, void *v)
48{
49 struct rxrpc_transport *trans;
50 struct rxrpc_call *call;
51 char lbuff[4 + 4 + 4 + 4 + 5 + 1], rbuff[4 + 4 + 4 + 4 + 5 + 1];
52
Pavel Emelianov60f04382007-07-09 13:15:14 -070053 if (v == &rxrpc_calls) {
David Howells17926a72007-04-26 15:48:28 -070054 seq_puts(seq,
55 "Proto Local Remote "
56 " SvID ConnID CallID End Use State Abort "
57 " UserID\n");
58 return 0;
59 }
60
61 call = list_entry(v, struct rxrpc_call, link);
62 trans = call->conn->trans;
63
Harvey Harrison21454aa2008-10-31 00:54:56 -070064 sprintf(lbuff, "%pI4:%u",
65 &trans->local->srx.transport.sin.sin_addr,
David Howells17926a72007-04-26 15:48:28 -070066 ntohs(trans->local->srx.transport.sin.sin_port));
67
Harvey Harrison21454aa2008-10-31 00:54:56 -070068 sprintf(rbuff, "%pI4:%u",
69 &trans->peer->srx.transport.sin.sin_addr,
David Howells17926a72007-04-26 15:48:28 -070070 ntohs(trans->peer->srx.transport.sin.sin_port));
71
72 seq_printf(seq,
73 "UDP %-22.22s %-22.22s %4x %08x %08x %s %3u"
74 " %-8.8s %08x %lx\n",
75 lbuff,
76 rbuff,
David Howells19ffa012016-04-04 14:00:36 +010077 call->conn->params.service_id,
David Howells0d12f8a2016-03-04 15:53:46 +000078 call->cid,
79 call->call_id,
David Howells19ffa012016-04-04 14:00:36 +010080 rxrpc_conn_is_service(call->conn) ? "Svc" : "Clt",
David Howells17926a72007-04-26 15:48:28 -070081 atomic_read(&call->usage),
82 rxrpc_call_states[call->state],
David Howellsdc44b3a2016-04-07 17:23:30 +010083 call->remote_abort ?: call->local_abort,
David Howells17926a72007-04-26 15:48:28 -070084 call->user_call_ID);
85
86 return 0;
87}
88
Philippe De Muyter56b3d972007-07-10 23:07:31 -070089static const struct seq_operations rxrpc_call_seq_ops = {
David Howells17926a72007-04-26 15:48:28 -070090 .start = rxrpc_call_seq_start,
91 .next = rxrpc_call_seq_next,
92 .stop = rxrpc_call_seq_stop,
93 .show = rxrpc_call_seq_show,
94};
95
96static int rxrpc_call_seq_open(struct inode *inode, struct file *file)
97{
98 return seq_open(file, &rxrpc_call_seq_ops);
99}
100
Jan Engelhardt036c2e22008-01-30 18:55:45 -0800101const struct file_operations rxrpc_call_seq_fops = {
David Howells17926a72007-04-26 15:48:28 -0700102 .owner = THIS_MODULE,
103 .open = rxrpc_call_seq_open,
104 .read = seq_read,
105 .llseek = seq_lseek,
Pavel Emelyanov665bba12008-02-29 11:39:17 -0800106 .release = seq_release,
David Howells17926a72007-04-26 15:48:28 -0700107};
108
109/*
110 * generate a list of extant virtual connections in /proc/net/rxrpc_conns
111 */
112static void *rxrpc_connection_seq_start(struct seq_file *seq, loff_t *_pos)
113{
David Howells17926a72007-04-26 15:48:28 -0700114 read_lock(&rxrpc_connection_lock);
Pavel Emelianov60f04382007-07-09 13:15:14 -0700115 return seq_list_start_head(&rxrpc_connections, *_pos);
David Howells17926a72007-04-26 15:48:28 -0700116}
117
118static void *rxrpc_connection_seq_next(struct seq_file *seq, void *v,
119 loff_t *pos)
120{
Pavel Emelianov60f04382007-07-09 13:15:14 -0700121 return seq_list_next(v, &rxrpc_connections, pos);
David Howells17926a72007-04-26 15:48:28 -0700122}
123
124static void rxrpc_connection_seq_stop(struct seq_file *seq, void *v)
125{
126 read_unlock(&rxrpc_connection_lock);
127}
128
129static int rxrpc_connection_seq_show(struct seq_file *seq, void *v)
130{
131 struct rxrpc_connection *conn;
132 struct rxrpc_transport *trans;
133 char lbuff[4 + 4 + 4 + 4 + 5 + 1], rbuff[4 + 4 + 4 + 4 + 5 + 1];
134
Pavel Emelianov60f04382007-07-09 13:15:14 -0700135 if (v == &rxrpc_connections) {
David Howells17926a72007-04-26 15:48:28 -0700136 seq_puts(seq,
137 "Proto Local Remote "
138 " SvID ConnID Calls End Use State Key "
139 " Serial ISerial\n"
140 );
141 return 0;
142 }
143
144 conn = list_entry(v, struct rxrpc_connection, link);
145 trans = conn->trans;
146
Harvey Harrison21454aa2008-10-31 00:54:56 -0700147 sprintf(lbuff, "%pI4:%u",
148 &trans->local->srx.transport.sin.sin_addr,
David Howells17926a72007-04-26 15:48:28 -0700149 ntohs(trans->local->srx.transport.sin.sin_port));
150
Harvey Harrison21454aa2008-10-31 00:54:56 -0700151 sprintf(rbuff, "%pI4:%u",
152 &trans->peer->srx.transport.sin.sin_addr,
David Howells17926a72007-04-26 15:48:28 -0700153 ntohs(trans->peer->srx.transport.sin.sin_port));
154
155 seq_printf(seq,
156 "UDP %-22.22s %-22.22s %4x %08x %08x %s %3u"
157 " %s %08x %08x %08x\n",
158 lbuff,
159 rbuff,
David Howells19ffa012016-04-04 14:00:36 +0100160 conn->params.service_id,
161 conn->proto.cid,
David Howells17926a72007-04-26 15:48:28 -0700162 conn->call_counter,
David Howells19ffa012016-04-04 14:00:36 +0100163 rxrpc_conn_is_service(conn) ? "Svc" : "Clt",
David Howells17926a72007-04-26 15:48:28 -0700164 atomic_read(&conn->usage),
165 rxrpc_conn_states[conn->state],
David Howells19ffa012016-04-04 14:00:36 +0100166 key_serial(conn->params.key),
David Howells17926a72007-04-26 15:48:28 -0700167 atomic_read(&conn->serial),
168 atomic_read(&conn->hi_serial));
169
170 return 0;
171}
172
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700173static const struct seq_operations rxrpc_connection_seq_ops = {
David Howells17926a72007-04-26 15:48:28 -0700174 .start = rxrpc_connection_seq_start,
175 .next = rxrpc_connection_seq_next,
176 .stop = rxrpc_connection_seq_stop,
177 .show = rxrpc_connection_seq_show,
178};
179
180
181static int rxrpc_connection_seq_open(struct inode *inode, struct file *file)
182{
183 return seq_open(file, &rxrpc_connection_seq_ops);
184}
185
Jan Engelhardt036c2e22008-01-30 18:55:45 -0800186const struct file_operations rxrpc_connection_seq_fops = {
David Howells17926a72007-04-26 15:48:28 -0700187 .owner = THIS_MODULE,
188 .open = rxrpc_connection_seq_open,
189 .read = seq_read,
190 .llseek = seq_lseek,
Pavel Emelyanov665bba12008-02-29 11:39:17 -0800191 .release = seq_release,
David Howells17926a72007-04-26 15:48:28 -0700192};