blob: c0d57bad8b790dc023e253947b1af89e0b833599 [file] [log] [blame]
James Chapman0ad66142010-04-02 06:19:33 +00001/*
2 * L2TP subsystem debugfs
3 *
4 * Copyright (c) 2010 Katalix Systems Ltd
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 <linux/skbuff.h>
14#include <linux/socket.h>
15#include <linux/hash.h>
16#include <linux/l2tp.h>
17#include <linux/in.h>
18#include <linux/etherdevice.h>
19#include <linux/spinlock.h>
20#include <linux/debugfs.h>
21#include <net/sock.h>
22#include <net/ip.h>
23#include <net/icmp.h>
24#include <net/udp.h>
25#include <net/inet_common.h>
26#include <net/inet_hashtables.h>
27#include <net/tcp_states.h>
28#include <net/protocol.h>
29#include <net/xfrm.h>
30#include <net/net_namespace.h>
31#include <net/netns/generic.h>
32
33#include "l2tp_core.h"
34
35static struct dentry *rootdir;
36static struct dentry *tunnels;
37
38struct l2tp_dfs_seq_data {
39 struct net *net;
40 int tunnel_idx; /* current tunnel */
41 int session_idx; /* index of session within current tunnel */
42 struct l2tp_tunnel *tunnel;
43 struct l2tp_session *session; /* NULL means get next tunnel */
44};
45
46static void l2tp_dfs_next_tunnel(struct l2tp_dfs_seq_data *pd)
47{
48 pd->tunnel = l2tp_tunnel_find_nth(pd->net, pd->tunnel_idx);
49 pd->tunnel_idx++;
50}
51
52static void l2tp_dfs_next_session(struct l2tp_dfs_seq_data *pd)
53{
54 pd->session = l2tp_session_find_nth(pd->tunnel, pd->session_idx);
55 pd->session_idx++;
56
57 if (pd->session == NULL) {
58 pd->session_idx = 0;
59 l2tp_dfs_next_tunnel(pd);
60 }
61
62}
63
64static void *l2tp_dfs_seq_start(struct seq_file *m, loff_t *offs)
65{
66 struct l2tp_dfs_seq_data *pd = SEQ_START_TOKEN;
67 loff_t pos = *offs;
68
69 if (!pos)
70 goto out;
71
72 BUG_ON(m->private == NULL);
73 pd = m->private;
74
75 if (pd->tunnel == NULL)
76 l2tp_dfs_next_tunnel(pd);
77 else
78 l2tp_dfs_next_session(pd);
79
80 /* NULL tunnel and session indicates end of list */
81 if ((pd->tunnel == NULL) && (pd->session == NULL))
82 pd = NULL;
83
84out:
85 return pd;
86}
87
88
89static void *l2tp_dfs_seq_next(struct seq_file *m, void *v, loff_t *pos)
90{
91 (*pos)++;
92 return NULL;
93}
94
95static void l2tp_dfs_seq_stop(struct seq_file *p, void *v)
96{
97 /* nothing to do */
98}
99
100static void l2tp_dfs_seq_tunnel_show(struct seq_file *m, void *v)
101{
102 struct l2tp_tunnel *tunnel = v;
103 int session_count = 0;
104 int hash;
105 struct hlist_node *walk;
106 struct hlist_node *tmp;
107
108 read_lock_bh(&tunnel->hlist_lock);
109 for (hash = 0; hash < L2TP_HASH_SIZE; hash++) {
110 hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
111 struct l2tp_session *session;
112
113 session = hlist_entry(walk, struct l2tp_session, hlist);
114 if (session->session_id == 0)
115 continue;
116
117 session_count++;
118 }
119 }
120 read_unlock_bh(&tunnel->hlist_lock);
121
122 seq_printf(m, "\nTUNNEL %u peer %u", tunnel->tunnel_id, tunnel->peer_tunnel_id);
123 if (tunnel->sock) {
124 struct inet_sock *inet = inet_sk(tunnel->sock);
Chris Elston2121c3f2012-04-29 21:48:51 +0000125
126#if IS_ENABLED(CONFIG_IPV6)
127 if (tunnel->sock->sk_family == AF_INET6) {
128 struct ipv6_pinfo *np = inet6_sk(tunnel->sock);
129 seq_printf(m, " from %pI6c to %pI6c\n",
130 &np->saddr, &np->daddr);
131 } else
132#endif
Joe Perchesa4fbf842010-04-15 15:37:13 -0700133 seq_printf(m, " from %pI4 to %pI4\n",
134 &inet->inet_saddr, &inet->inet_daddr);
James Chapman0ad66142010-04-02 06:19:33 +0000135 if (tunnel->encap == L2TP_ENCAPTYPE_UDP)
136 seq_printf(m, " source port %hu, dest port %hu\n",
137 ntohs(inet->inet_sport), ntohs(inet->inet_dport));
138 }
139 seq_printf(m, " L2TPv%d, %s\n", tunnel->version,
140 tunnel->encap == L2TP_ENCAPTYPE_UDP ? "UDP" :
141 tunnel->encap == L2TP_ENCAPTYPE_IP ? "IP" :
142 "");
143 seq_printf(m, " %d sessions, refcnt %d/%d\n", session_count,
144 tunnel->sock ? atomic_read(&tunnel->sock->sk_refcnt) : 0,
145 atomic_read(&tunnel->ref_count));
146
147 seq_printf(m, " %08x rx %llu/%llu/%llu rx %llu/%llu/%llu\n",
148 tunnel->debug,
149 (unsigned long long)tunnel->stats.tx_packets,
150 (unsigned long long)tunnel->stats.tx_bytes,
151 (unsigned long long)tunnel->stats.tx_errors,
152 (unsigned long long)tunnel->stats.rx_packets,
153 (unsigned long long)tunnel->stats.rx_bytes,
154 (unsigned long long)tunnel->stats.rx_errors);
155
156 if (tunnel->show != NULL)
157 tunnel->show(m, tunnel);
158}
159
160static void l2tp_dfs_seq_session_show(struct seq_file *m, void *v)
161{
162 struct l2tp_session *session = v;
163
164 seq_printf(m, " SESSION %u, peer %u, %s\n", session->session_id,
165 session->peer_session_id,
166 session->pwtype == L2TP_PWTYPE_ETH ? "ETH" :
167 session->pwtype == L2TP_PWTYPE_PPP ? "PPP" :
168 "");
169 if (session->send_seq || session->recv_seq)
170 seq_printf(m, " nr %hu, ns %hu\n", session->nr, session->ns);
171 seq_printf(m, " refcnt %d\n", atomic_read(&session->ref_count));
172 seq_printf(m, " config %d/%d/%c/%c/%s/%s %08x %u\n",
173 session->mtu, session->mru,
174 session->recv_seq ? 'R' : '-',
175 session->send_seq ? 'S' : '-',
176 session->data_seq == 1 ? "IPSEQ" :
177 session->data_seq == 2 ? "DATASEQ" : "-",
178 session->lns_mode ? "LNS" : "LAC",
179 session->debug,
180 jiffies_to_msecs(session->reorder_timeout));
181 seq_printf(m, " offset %hu l2specific %hu/%hu\n",
182 session->offset, session->l2specific_type, session->l2specific_len);
183 if (session->cookie_len) {
184 seq_printf(m, " cookie %02x%02x%02x%02x",
185 session->cookie[0], session->cookie[1],
186 session->cookie[2], session->cookie[3]);
187 if (session->cookie_len == 8)
188 seq_printf(m, "%02x%02x%02x%02x",
189 session->cookie[4], session->cookie[5],
190 session->cookie[6], session->cookie[7]);
191 seq_printf(m, "\n");
192 }
193 if (session->peer_cookie_len) {
194 seq_printf(m, " peer cookie %02x%02x%02x%02x",
195 session->peer_cookie[0], session->peer_cookie[1],
196 session->peer_cookie[2], session->peer_cookie[3]);
197 if (session->peer_cookie_len == 8)
198 seq_printf(m, "%02x%02x%02x%02x",
199 session->peer_cookie[4], session->peer_cookie[5],
200 session->peer_cookie[6], session->peer_cookie[7]);
201 seq_printf(m, "\n");
202 }
203
204 seq_printf(m, " %hu/%hu tx %llu/%llu/%llu rx %llu/%llu/%llu\n",
205 session->nr, session->ns,
206 (unsigned long long)session->stats.tx_packets,
207 (unsigned long long)session->stats.tx_bytes,
208 (unsigned long long)session->stats.tx_errors,
209 (unsigned long long)session->stats.rx_packets,
210 (unsigned long long)session->stats.rx_bytes,
211 (unsigned long long)session->stats.rx_errors);
212
213 if (session->show != NULL)
214 session->show(m, session);
215}
216
217static int l2tp_dfs_seq_show(struct seq_file *m, void *v)
218{
219 struct l2tp_dfs_seq_data *pd = v;
220
221 /* display header on line 1 */
222 if (v == SEQ_START_TOKEN) {
223 seq_puts(m, "TUNNEL ID, peer ID from IP to IP\n");
224 seq_puts(m, " L2TPv2/L2TPv3, UDP/IP\n");
225 seq_puts(m, " sessions session-count, refcnt refcnt/sk->refcnt\n");
226 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
227 seq_puts(m, " SESSION ID, peer ID, PWTYPE\n");
228 seq_puts(m, " refcnt cnt\n");
229 seq_puts(m, " offset OFFSET l2specific TYPE/LEN\n");
230 seq_puts(m, " [ cookie ]\n");
231 seq_puts(m, " [ peer cookie ]\n");
232 seq_puts(m, " config mtu/mru/rcvseq/sendseq/dataseq/lns debug reorderto\n");
233 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
234 goto out;
235 }
236
237 /* Show the tunnel or session context */
238 if (pd->session == NULL)
239 l2tp_dfs_seq_tunnel_show(m, pd->tunnel);
240 else
241 l2tp_dfs_seq_session_show(m, pd->session);
242
243out:
244 return 0;
245}
246
247static const struct seq_operations l2tp_dfs_seq_ops = {
248 .start = l2tp_dfs_seq_start,
249 .next = l2tp_dfs_seq_next,
250 .stop = l2tp_dfs_seq_stop,
251 .show = l2tp_dfs_seq_show,
252};
253
254static int l2tp_dfs_seq_open(struct inode *inode, struct file *file)
255{
256 struct l2tp_dfs_seq_data *pd;
257 struct seq_file *seq;
258 int rc = -ENOMEM;
259
Dr. David Alan Gilbert6f9b9012010-10-31 07:26:03 +0000260 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
James Chapman0ad66142010-04-02 06:19:33 +0000261 if (pd == NULL)
262 goto out;
263
264 /* Derive the network namespace from the pid opening the
265 * file.
266 */
267 pd->net = get_net_ns_by_pid(current->pid);
268 if (IS_ERR(pd->net)) {
Al Virob8f07a02011-06-05 00:54:03 +0000269 rc = PTR_ERR(pd->net);
James Chapman0ad66142010-04-02 06:19:33 +0000270 goto err_free_pd;
271 }
272
273 rc = seq_open(file, &l2tp_dfs_seq_ops);
274 if (rc)
275 goto err_free_net;
276
277 seq = file->private_data;
278 seq->private = pd;
279
280out:
281 return rc;
282
283err_free_net:
284 put_net(pd->net);
285err_free_pd:
286 kfree(pd);
287 goto out;
288}
289
290static int l2tp_dfs_seq_release(struct inode *inode, struct file *file)
291{
292 struct l2tp_dfs_seq_data *pd;
293 struct seq_file *seq;
294
295 seq = file->private_data;
296 pd = seq->private;
297 if (pd->net)
298 put_net(pd->net);
299 kfree(pd);
300 seq_release(inode, file);
301
302 return 0;
303}
304
305static const struct file_operations l2tp_dfs_fops = {
306 .owner = THIS_MODULE,
307 .open = l2tp_dfs_seq_open,
308 .read = seq_read,
309 .llseek = seq_lseek,
310 .release = l2tp_dfs_seq_release,
311};
312
313static int __init l2tp_debugfs_init(void)
314{
315 int rc = 0;
316
317 rootdir = debugfs_create_dir("l2tp", NULL);
318 if (IS_ERR(rootdir)) {
319 rc = PTR_ERR(rootdir);
320 rootdir = NULL;
321 goto out;
322 }
323
324 tunnels = debugfs_create_file("tunnels", 0600, rootdir, NULL, &l2tp_dfs_fops);
325 if (tunnels == NULL)
326 rc = -EIO;
327
328 printk(KERN_INFO "L2TP debugfs support\n");
329
330out:
331 if (rc)
332 printk(KERN_WARNING "l2tp debugfs: unable to init\n");
333
334 return rc;
335}
336
337static void __exit l2tp_debugfs_exit(void)
338{
339 debugfs_remove(tunnels);
340 debugfs_remove(rootdir);
341}
342
343module_init(l2tp_debugfs_init);
344module_exit(l2tp_debugfs_exit);
345
346MODULE_LICENSE("GPL");
347MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
348MODULE_DESCRIPTION("L2TP debugfs driver");
349MODULE_VERSION("1.0");