blob: bca75bef82828ef5ed785b1b76a95f4ddd9075c2 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Tom Parkin20dcb112020-07-22 17:32:06 +01002/* L2TP subsystem debugfs
James Chapman0ad66142010-04-02 06:19:33 +00003 *
4 * Copyright (c) 2010 Katalix Systems Ltd
James Chapman0ad66142010-04-02 06:19:33 +00005 */
6
Joe Perchesa4ca44f2012-05-16 09:55:56 +00007#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
James Chapman0ad66142010-04-02 06:19:33 +00009#include <linux/module.h>
10#include <linux/skbuff.h>
11#include <linux/socket.h>
12#include <linux/hash.h>
13#include <linux/l2tp.h>
14#include <linux/in.h>
15#include <linux/etherdevice.h>
16#include <linux/spinlock.h>
17#include <linux/debugfs.h>
18#include <net/sock.h>
19#include <net/ip.h>
20#include <net/icmp.h>
21#include <net/udp.h>
22#include <net/inet_common.h>
23#include <net/inet_hashtables.h>
24#include <net/tcp_states.h>
25#include <net/protocol.h>
26#include <net/xfrm.h>
27#include <net/net_namespace.h>
28#include <net/netns/generic.h>
29
30#include "l2tp_core.h"
31
32static struct dentry *rootdir;
James Chapman0ad66142010-04-02 06:19:33 +000033
34struct l2tp_dfs_seq_data {
35 struct net *net;
36 int tunnel_idx; /* current tunnel */
37 int session_idx; /* index of session within current tunnel */
38 struct l2tp_tunnel *tunnel;
39 struct l2tp_session *session; /* NULL means get next tunnel */
40};
41
42static void l2tp_dfs_next_tunnel(struct l2tp_dfs_seq_data *pd)
43{
Guillaume Naultf7262142018-04-12 20:50:35 +020044 /* Drop reference taken during previous invocation */
45 if (pd->tunnel)
46 l2tp_tunnel_dec_refcount(pd->tunnel);
47
48 pd->tunnel = l2tp_tunnel_get_nth(pd->net, pd->tunnel_idx);
James Chapman0ad66142010-04-02 06:19:33 +000049 pd->tunnel_idx++;
50}
51
52static void l2tp_dfs_next_session(struct l2tp_dfs_seq_data *pd)
53{
Guillaume Nault83494402018-04-25 19:54:14 +020054 /* Drop reference taken during previous invocation */
55 if (pd->session)
56 l2tp_session_dec_refcount(pd->session);
57
Guillaume Naulta4346212017-10-31 17:36:42 +010058 pd->session = l2tp_session_get_nth(pd->tunnel, pd->session_idx);
James Chapman0ad66142010-04-02 06:19:33 +000059 pd->session_idx++;
60
Tom Parkin0febc7b2020-07-23 12:29:50 +010061 if (!pd->session) {
James Chapman0ad66142010-04-02 06:19:33 +000062 pd->session_idx = 0;
63 l2tp_dfs_next_tunnel(pd);
64 }
James Chapman0ad66142010-04-02 06:19:33 +000065}
66
67static void *l2tp_dfs_seq_start(struct seq_file *m, loff_t *offs)
68{
69 struct l2tp_dfs_seq_data *pd = SEQ_START_TOKEN;
70 loff_t pos = *offs;
71
72 if (!pos)
73 goto out;
74
Tom Parkin7a379552020-07-24 16:31:50 +010075 if (WARN_ON(!m->private)) {
76 pd = NULL;
77 goto out;
78 }
James Chapman0ad66142010-04-02 06:19:33 +000079 pd = m->private;
80
Tom Parkin0febc7b2020-07-23 12:29:50 +010081 if (!pd->tunnel)
James Chapman0ad66142010-04-02 06:19:33 +000082 l2tp_dfs_next_tunnel(pd);
83 else
84 l2tp_dfs_next_session(pd);
85
86 /* NULL tunnel and session indicates end of list */
Tom Parkin0febc7b2020-07-23 12:29:50 +010087 if (!pd->tunnel && !pd->session)
James Chapman0ad66142010-04-02 06:19:33 +000088 pd = NULL;
89
90out:
91 return pd;
92}
93
James Chapman0ad66142010-04-02 06:19:33 +000094static void *l2tp_dfs_seq_next(struct seq_file *m, void *v, loff_t *pos)
95{
96 (*pos)++;
97 return NULL;
98}
99
100static void l2tp_dfs_seq_stop(struct seq_file *p, void *v)
101{
Guillaume Naultf7262142018-04-12 20:50:35 +0200102 struct l2tp_dfs_seq_data *pd = v;
103
104 if (!pd || pd == SEQ_START_TOKEN)
105 return;
106
Guillaume Nault83494402018-04-25 19:54:14 +0200107 /* Drop reference taken by last invocation of l2tp_dfs_next_session()
108 * or l2tp_dfs_next_tunnel().
109 */
110 if (pd->session) {
111 l2tp_session_dec_refcount(pd->session);
112 pd->session = NULL;
113 }
Guillaume Nault5411b6182018-04-19 16:20:48 +0200114 if (pd->tunnel) {
Guillaume Naultf7262142018-04-12 20:50:35 +0200115 l2tp_tunnel_dec_refcount(pd->tunnel);
Guillaume Nault5411b6182018-04-19 16:20:48 +0200116 pd->tunnel = NULL;
Guillaume Nault5411b6182018-04-19 16:20:48 +0200117 }
James Chapman0ad66142010-04-02 06:19:33 +0000118}
119
120static void l2tp_dfs_seq_tunnel_show(struct seq_file *m, void *v)
121{
122 struct l2tp_tunnel *tunnel = v;
123 int session_count = 0;
124 int hash;
125 struct hlist_node *walk;
126 struct hlist_node *tmp;
127
128 read_lock_bh(&tunnel->hlist_lock);
129 for (hash = 0; hash < L2TP_HASH_SIZE; hash++) {
130 hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
131 struct l2tp_session *session;
132
133 session = hlist_entry(walk, struct l2tp_session, hlist);
134 if (session->session_id == 0)
135 continue;
136
137 session_count++;
138 }
139 }
140 read_unlock_bh(&tunnel->hlist_lock);
141
142 seq_printf(m, "\nTUNNEL %u peer %u", tunnel->tunnel_id, tunnel->peer_tunnel_id);
143 if (tunnel->sock) {
144 struct inet_sock *inet = inet_sk(tunnel->sock);
Chris Elston2121c3f2012-04-29 21:48:51 +0000145
146#if IS_ENABLED(CONFIG_IPV6)
147 if (tunnel->sock->sk_family == AF_INET6) {
Eric Dumazetefe42082013-10-03 15:42:29 -0700148 const struct ipv6_pinfo *np = inet6_sk(tunnel->sock);
149
Chris Elston2121c3f2012-04-29 21:48:51 +0000150 seq_printf(m, " from %pI6c to %pI6c\n",
Tom Parkin8ce9825a2020-07-22 17:32:08 +0100151 &np->saddr, &tunnel->sock->sk_v6_daddr);
Tom Parkin26d9a272020-07-23 12:29:52 +0100152 }
Chris Elston2121c3f2012-04-29 21:48:51 +0000153#endif
Tom Parkin26d9a272020-07-23 12:29:52 +0100154 if (tunnel->sock->sk_family == AF_INET)
155 seq_printf(m, " from %pI4 to %pI4\n",
156 &inet->inet_saddr, &inet->inet_daddr);
157
James Chapman0ad66142010-04-02 06:19:33 +0000158 if (tunnel->encap == L2TP_ENCAPTYPE_UDP)
159 seq_printf(m, " source port %hu, dest port %hu\n",
160 ntohs(inet->inet_sport), ntohs(inet->inet_dport));
161 }
162 seq_printf(m, " L2TPv%d, %s\n", tunnel->version,
163 tunnel->encap == L2TP_ENCAPTYPE_UDP ? "UDP" :
164 tunnel->encap == L2TP_ENCAPTYPE_IP ? "IP" :
165 "");
166 seq_printf(m, " %d sessions, refcnt %d/%d\n", session_count,
Reshetova, Elena41c6d652017-06-30 13:08:01 +0300167 tunnel->sock ? refcount_read(&tunnel->sock->sk_refcnt) : 0,
Reshetova, Elenafbea9e02017-07-04 15:52:57 +0300168 refcount_read(&tunnel->ref_count));
Tom Parkin7b7c0712013-03-19 06:11:22 +0000169 seq_printf(m, " %08x rx %ld/%ld/%ld rx %ld/%ld/%ld\n",
Tom Parkineee049c2020-08-22 15:59:08 +0100170 0,
Tom Parkin7b7c0712013-03-19 06:11:22 +0000171 atomic_long_read(&tunnel->stats.tx_packets),
172 atomic_long_read(&tunnel->stats.tx_bytes),
173 atomic_long_read(&tunnel->stats.tx_errors),
174 atomic_long_read(&tunnel->stats.rx_packets),
175 atomic_long_read(&tunnel->stats.rx_bytes),
176 atomic_long_read(&tunnel->stats.rx_errors));
James Chapman0ad66142010-04-02 06:19:33 +0000177}
178
179static void l2tp_dfs_seq_session_show(struct seq_file *m, void *v)
180{
181 struct l2tp_session *session = v;
182
183 seq_printf(m, " SESSION %u, peer %u, %s\n", session->session_id,
184 session->peer_session_id,
185 session->pwtype == L2TP_PWTYPE_ETH ? "ETH" :
186 session->pwtype == L2TP_PWTYPE_PPP ? "PPP" :
187 "");
188 if (session->send_seq || session->recv_seq)
189 seq_printf(m, " nr %hu, ns %hu\n", session->nr, session->ns);
Reshetova, Elenafbea9e02017-07-04 15:52:57 +0300190 seq_printf(m, " refcnt %d\n", refcount_read(&session->ref_count));
Guillaume Naulte9697e22018-08-03 12:38:39 +0200191 seq_printf(m, " config 0/0/%c/%c/-/%s %08x %u\n",
James Chapman0ad66142010-04-02 06:19:33 +0000192 session->recv_seq ? 'R' : '-',
193 session->send_seq ? 'S' : '-',
James Chapman0ad66142010-04-02 06:19:33 +0000194 session->lns_mode ? "LNS" : "LAC",
Tom Parkineee049c2020-08-22 15:59:08 +0100195 0,
James Chapman0ad66142010-04-02 06:19:33 +0000196 jiffies_to_msecs(session->reorder_timeout));
James Chapman900631e2018-01-03 22:48:06 +0000197 seq_printf(m, " offset 0 l2specific %hu/%hu\n",
Lorenzo Bianconi9afa6582018-01-16 23:01:56 +0100198 session->l2specific_type, l2tp_get_l2specific_len(session));
James Chapman0ad66142010-04-02 06:19:33 +0000199 if (session->cookie_len) {
200 seq_printf(m, " cookie %02x%02x%02x%02x",
201 session->cookie[0], session->cookie[1],
202 session->cookie[2], session->cookie[3]);
203 if (session->cookie_len == 8)
204 seq_printf(m, "%02x%02x%02x%02x",
205 session->cookie[4], session->cookie[5],
206 session->cookie[6], session->cookie[7]);
Tom Parkinbdf98662020-07-22 17:32:12 +0100207 seq_puts(m, "\n");
James Chapman0ad66142010-04-02 06:19:33 +0000208 }
209 if (session->peer_cookie_len) {
210 seq_printf(m, " peer cookie %02x%02x%02x%02x",
211 session->peer_cookie[0], session->peer_cookie[1],
212 session->peer_cookie[2], session->peer_cookie[3]);
213 if (session->peer_cookie_len == 8)
214 seq_printf(m, "%02x%02x%02x%02x",
215 session->peer_cookie[4], session->peer_cookie[5],
216 session->peer_cookie[6], session->peer_cookie[7]);
Tom Parkinbdf98662020-07-22 17:32:12 +0100217 seq_puts(m, "\n");
James Chapman0ad66142010-04-02 06:19:33 +0000218 }
219
Tom Parkin7b7c0712013-03-19 06:11:22 +0000220 seq_printf(m, " %hu/%hu tx %ld/%ld/%ld rx %ld/%ld/%ld\n",
James Chapman0ad66142010-04-02 06:19:33 +0000221 session->nr, session->ns,
Tom Parkin7b7c0712013-03-19 06:11:22 +0000222 atomic_long_read(&session->stats.tx_packets),
223 atomic_long_read(&session->stats.tx_bytes),
224 atomic_long_read(&session->stats.tx_errors),
225 atomic_long_read(&session->stats.rx_packets),
226 atomic_long_read(&session->stats.rx_bytes),
227 atomic_long_read(&session->stats.rx_errors));
James Chapman0ad66142010-04-02 06:19:33 +0000228
Tom Parkin0febc7b2020-07-23 12:29:50 +0100229 if (session->show)
James Chapman0ad66142010-04-02 06:19:33 +0000230 session->show(m, session);
231}
232
233static int l2tp_dfs_seq_show(struct seq_file *m, void *v)
234{
235 struct l2tp_dfs_seq_data *pd = v;
236
237 /* display header on line 1 */
238 if (v == SEQ_START_TOKEN) {
239 seq_puts(m, "TUNNEL ID, peer ID from IP to IP\n");
240 seq_puts(m, " L2TPv2/L2TPv3, UDP/IP\n");
241 seq_puts(m, " sessions session-count, refcnt refcnt/sk->refcnt\n");
242 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
243 seq_puts(m, " SESSION ID, peer ID, PWTYPE\n");
244 seq_puts(m, " refcnt cnt\n");
James Chapman863def12018-01-03 22:48:04 +0000245 seq_puts(m, " offset OFFSET l2specific TYPE/LEN\n");
James Chapman0ad66142010-04-02 06:19:33 +0000246 seq_puts(m, " [ cookie ]\n");
247 seq_puts(m, " [ peer cookie ]\n");
248 seq_puts(m, " config mtu/mru/rcvseq/sendseq/dataseq/lns debug reorderto\n");
249 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
250 goto out;
251 }
252
Guillaume Nault83494402018-04-25 19:54:14 +0200253 if (!pd->session)
James Chapman0ad66142010-04-02 06:19:33 +0000254 l2tp_dfs_seq_tunnel_show(m, pd->tunnel);
Guillaume Nault83494402018-04-25 19:54:14 +0200255 else
James Chapman0ad66142010-04-02 06:19:33 +0000256 l2tp_dfs_seq_session_show(m, pd->session);
257
258out:
259 return 0;
260}
261
262static const struct seq_operations l2tp_dfs_seq_ops = {
263 .start = l2tp_dfs_seq_start,
264 .next = l2tp_dfs_seq_next,
265 .stop = l2tp_dfs_seq_stop,
266 .show = l2tp_dfs_seq_show,
267};
268
269static int l2tp_dfs_seq_open(struct inode *inode, struct file *file)
270{
271 struct l2tp_dfs_seq_data *pd;
272 struct seq_file *seq;
273 int rc = -ENOMEM;
274
Dr. David Alan Gilbert6f9b9012010-10-31 07:26:03 +0000275 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
Tom Parkin0febc7b2020-07-23 12:29:50 +0100276 if (!pd)
James Chapman0ad66142010-04-02 06:19:33 +0000277 goto out;
278
279 /* Derive the network namespace from the pid opening the
280 * file.
281 */
282 pd->net = get_net_ns_by_pid(current->pid);
283 if (IS_ERR(pd->net)) {
Al Virob8f07a02011-06-05 00:54:03 +0000284 rc = PTR_ERR(pd->net);
James Chapman0ad66142010-04-02 06:19:33 +0000285 goto err_free_pd;
286 }
287
288 rc = seq_open(file, &l2tp_dfs_seq_ops);
289 if (rc)
290 goto err_free_net;
291
292 seq = file->private_data;
293 seq->private = pd;
294
295out:
296 return rc;
297
298err_free_net:
299 put_net(pd->net);
300err_free_pd:
301 kfree(pd);
302 goto out;
303}
304
305static int l2tp_dfs_seq_release(struct inode *inode, struct file *file)
306{
307 struct l2tp_dfs_seq_data *pd;
308 struct seq_file *seq;
309
310 seq = file->private_data;
311 pd = seq->private;
312 if (pd->net)
313 put_net(pd->net);
314 kfree(pd);
315 seq_release(inode, file);
316
317 return 0;
318}
319
320static const struct file_operations l2tp_dfs_fops = {
321 .owner = THIS_MODULE,
322 .open = l2tp_dfs_seq_open,
323 .read = seq_read,
324 .llseek = seq_lseek,
325 .release = l2tp_dfs_seq_release,
326};
327
328static int __init l2tp_debugfs_init(void)
329{
James Chapman0ad66142010-04-02 06:19:33 +0000330 rootdir = debugfs_create_dir("l2tp", NULL);
James Chapman0ad66142010-04-02 06:19:33 +0000331
Greg Kroah-Hartman3adcfa42019-06-14 09:04:38 +0200332 debugfs_create_file("tunnels", 0600, rootdir, NULL, &l2tp_dfs_fops);
James Chapman0ad66142010-04-02 06:19:33 +0000333
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000334 pr_info("L2TP debugfs support\n");
James Chapman0ad66142010-04-02 06:19:33 +0000335
Greg Kroah-Hartman3adcfa42019-06-14 09:04:38 +0200336 return 0;
James Chapman0ad66142010-04-02 06:19:33 +0000337}
338
339static void __exit l2tp_debugfs_exit(void)
340{
Greg Kroah-Hartman3adcfa42019-06-14 09:04:38 +0200341 debugfs_remove_recursive(rootdir);
James Chapman0ad66142010-04-02 06:19:33 +0000342}
343
344module_init(l2tp_debugfs_init);
345module_exit(l2tp_debugfs_exit);
346
347MODULE_LICENSE("GPL");
348MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
349MODULE_DESCRIPTION("L2TP debugfs driver");
350MODULE_VERSION("1.0");