mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: David Howells <dhowells@redhat.com>
To: linux-afs@lists.infradead.org
Cc: dhowells@redhat.com, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH 09/11] rxrpc: Add /proc/net/rxrpc_peers to display the known remote endpoints
Date: Mon, 07 Mar 2016 14:39:02 +0000	[thread overview]
Message-ID: <20160307143902.18567.80508.stgit@warthog.procyon.org.uk> (raw)
In-Reply-To: <20160307143759.18567.8234.stgit@warthog.procyon.org.uk>

Add /proc/net/rxrpc_peers to display the remote endpoint records that are
resident in the peer cache.

Signed-off-by: David Howells <dhowells@redhat.com>
---

 net/rxrpc/af_rxrpc.c    |    3 +++
 net/rxrpc/peer-object.c |   32 ++++++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/net/rxrpc/af_rxrpc.c b/net/rxrpc/af_rxrpc.c
index 5f0ffb5f8306..b1849c4e3fd3 100644
--- a/net/rxrpc/af_rxrpc.c
+++ b/net/rxrpc/af_rxrpc.c
@@ -845,6 +845,8 @@ static int __init af_rxrpc_init(void)
 		    &rxrpc_connection_seq_fops);
 	proc_create_data("rxrpc_locals", 0, init_net.proc_net,
 			 &objcache_seq_fops, &rxrpc_local_cache);
+	proc_create_data("rxrpc_peers", 0, init_net.proc_net,
+			 &objcache_seq_fops, &rxrpc_peer_cache);
 #endif
 	return 0;
 
@@ -887,6 +889,7 @@ static void __exit af_rxrpc_exit(void)
 
 	_debug("flush scheduled work");
 	flush_workqueue(rxrpc_workqueue);
+	remove_proc_entry("rxrpc_peers", init_net.proc_net);
 	remove_proc_entry("rxrpc_locals", init_net.proc_net);
 	remove_proc_entry("rxrpc_conns", init_net.proc_net);
 	remove_proc_entry("rxrpc_calls", init_net.proc_net);
diff --git a/net/rxrpc/peer-object.c b/net/rxrpc/peer-object.c
index 35157c659bf7..2dd8c241302d 100644
--- a/net/rxrpc/peer-object.c
+++ b/net/rxrpc/peer-object.c
@@ -21,6 +21,7 @@
 #include <net/route.h>
 #include "ar-internal.h"
 
+static int rxrpc_peer_seq_show(struct seq_file *, void *);
 static unsigned long rxrpc_peer_hash_key(const void *);
 static int rxrpc_peer_cmp_key(const struct obj_node *, const void *);
 static void rxrpc_peer_gc_rcu(struct rcu_head *);
@@ -29,6 +30,7 @@ static struct hlist_head rxrpc_peer_cache_hash[256];
 
 struct objcache rxrpc_peer_cache = {
 	.name		= "peers",
+	.seq_show	= rxrpc_peer_seq_show,
 	.gc_rcu		= rxrpc_peer_gc_rcu,
 	.hash_key	= rxrpc_peer_hash_key,
 	.cmp_key	= rxrpc_peer_cmp_key,
@@ -261,3 +263,33 @@ struct rxrpc_peer *rxrpc_lookup_peer(struct sockaddr_rxrpc *srx, gfp_t gfp)
 	_leave(" = %p {u=%d}", peer, usage);
 	return peer;
 }
+
+/*
+ * Display a remote endpoint in /proc/net/rxrpc_peers.
+ */
+static int rxrpc_peer_seq_show(struct seq_file *seq, void *v)
+{
+	struct rxrpc_peer *peer;
+
+	if (v == SEQ_START_TOKEN) {
+		seq_puts(seq, "Use SvID Proto MTU   RTT   RPort Remote\n");
+		return 0;
+	}
+
+	peer = hlist_entry(v, struct rxrpc_peer, obj.link);
+
+	switch (peer->srx.transport.family) {
+	case AF_INET:
+		seq_printf(seq,
+			   "%3d %4x UDP   %5u %5lu %5hu %pI4\n",
+			   atomic_read(&peer->obj.usage),
+			   peer->srx.srx_service,
+			   peer->mtu,
+			   peer->rtt,
+			   ntohs(peer->srx.transport.sin.sin_port),
+			   &peer->srx.transport.sin.sin_addr);
+		break;
+	}
+
+	return 0;
+}

  parent reply	other threads:[~2016-03-07 14:40 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-07 14:37 [PATCH 00/11] RxRPC: Rewrite part 2 David Howells
2016-03-07 14:38 ` [PATCH 01/11] rxrpc: Add a common object cache David Howells
2016-03-07 18:42   ` David Miller
2016-03-07 22:45   ` David Howells
2016-03-08  4:07     ` David Miller
2016-03-08 11:39     ` David Howells
2016-03-08 20:13       ` David Miller
2016-03-08 21:11       ` David Howells
2016-03-09  3:00         ` David Miller
2016-03-08 13:02     ` David Howells
2016-03-08 20:15       ` David Miller
2016-03-07 14:38 ` [PATCH 02/11] rxrpc: Do procfs lists through objcache David Howells
2016-03-07 14:38 ` [PATCH 03/11] rxrpc: Separate local endpoint object handling out into its own file David Howells
2016-03-07 14:38 ` [PATCH 04/11] rxrpc: Implement local endpoint cache David Howells
2016-03-07 14:38 ` [PATCH 05/11] rxrpc: procfs file to list local endpoints David Howells
2016-03-07 14:38 ` [PATCH 06/11] rxrpc: Rename ar-local.c to local-event.c David Howells
2016-03-07 14:38 ` [PATCH 07/11] rxrpc: Rename ar-peer.c to peer-object.c David Howells
2016-03-07 14:38 ` [PATCH 08/11] rxrpc: Implement peer endpoint cache David Howells
2016-03-07 14:39 ` David Howells [this message]
2016-03-07 14:39 ` [PATCH 10/11] rxrpc: Rename ar-error.c to peer-event.c David Howells
2016-03-07 14:39 ` [PATCH 11/11] rxrpc: Rename rxrpc_UDP_error_report() to rxrpc_error_report() David Howells

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160307143902.18567.80508.stgit@warthog.procyon.org.uk \
    --to=dhowells@redhat.com \
    --cc=linux-afs@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®