drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / dccp / probe.c
CommitLineData
e41542f5
IM
1/*
2 * dccp_probe - Observe the DCCP flow with kprobes.
3 *
4 * The idea for this came from Werner Almesberger's umlsim
5 * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
6 *
7 * Modified for DCCP from Stephen Hemminger's code
8 * Copyright (C) 2006, Ian McDonald <ian.mcdonald@jandi.co.nz>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25#include <linux/kernel.h>
26#include <linux/kprobes.h>
27#include <linux/socket.h>
28#include <linux/dccp.h>
29#include <linux/proc_fs.h>
30#include <linux/module.h>
31#include <linux/kfifo.h>
32#include <linux/vmalloc.h>
5a0e3ad6 33#include <linux/gfp.h>
457c4cbc 34#include <net/net_namespace.h>
e41542f5
IM
35
36#include "dccp.h"
37#include "ccid.h"
38#include "ccids/ccid3.h"
39
40static int port;
41
42static int bufsize = 64 * 1024;
43
44static const char procname[] = "dccpprobe";
45
1e2f0e5e 46static struct {
45465487 47 struct kfifo fifo;
e41542f5
IM
48 spinlock_t lock;
49 wait_queue_head_t wait;
cdd04d98 50 struct timespec tstart;
e41542f5
IM
51} dccpw;
52
53static void printl(const char *fmt, ...)
54{
55 va_list args;
56 int len;
cdd04d98 57 struct timespec now;
e41542f5
IM
58 char tbuf[256];
59
60 va_start(args, fmt);
cdd04d98 61 getnstimeofday(&now);
e41542f5 62
cdd04d98 63 now = timespec_sub(now, dccpw.tstart);
e41542f5
IM
64
65 len = sprintf(tbuf, "%lu.%06lu ",
66 (unsigned long) now.tv_sec,
cdd04d98 67 (unsigned long) now.tv_nsec / NSEC_PER_USEC);
e41542f5
IM
68 len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args);
69 va_end(args);
70
7acd72eb 71 kfifo_in_locked(&dccpw.fifo, tbuf, len, &dccpw.lock);
e41542f5
IM
72 wake_up(&dccpw.wait);
73}
74
75static int jdccp_sendmsg(struct kiocb *iocb, struct sock *sk,
76 struct msghdr *msg, size_t size)
77{
e41542f5 78 const struct inet_sock *inet = inet_sk(sk);
996ccf49 79 struct ccid3_hc_tx_sock *hc = NULL;
e41542f5 80
71c262a3 81 if (ccid_get_current_tx_ccid(dccp_sk(sk)) == DCCPC_CCID3)
996ccf49 82 hc = ccid3_hc_tx_sk(sk);
e41542f5 83
c720c7e8
ED
84 if (port == 0 || ntohs(inet->inet_dport) == port ||
85 ntohs(inet->inet_sport) == port) {
996ccf49 86 if (hc)
388d5e99 87 printl("%pI4:%u %pI4:%u %d %d %d %d %u %llu %llu %d\n",
c720c7e8
ED
88 &inet->inet_saddr, ntohs(inet->inet_sport),
89 &inet->inet_daddr, ntohs(inet->inet_dport), size,
996ccf49
GR
90 hc->tx_s, hc->tx_rtt, hc->tx_p,
91 hc->tx_x_calc, hc->tx_x_recv >> 6,
92 hc->tx_x >> 6, hc->tx_t_ipi);
e41542f5 93 else
21454aaa 94 printl("%pI4:%u %pI4:%u %d\n",
c720c7e8
ED
95 &inet->inet_saddr, ntohs(inet->inet_sport),
96 &inet->inet_daddr, ntohs(inet->inet_dport),
97 size);
e41542f5
IM
98 }
99
100 jprobe_return();
101 return 0;
102}
103
104static struct jprobe dccp_send_probe = {
e1b7441e
IM
105 .kp = {
106 .symbol_name = "dccp_sendmsg",
107 },
9e367d85 108 .entry = jdccp_sendmsg,
e41542f5
IM
109};
110
111static int dccpprobe_open(struct inode *inode, struct file *file)
112{
45465487 113 kfifo_reset(&dccpw.fifo);
cdd04d98 114 getnstimeofday(&dccpw.tstart);
e41542f5
IM
115 return 0;
116}
117
118static ssize_t dccpprobe_read(struct file *file, char __user *buf,
119 size_t len, loff_t *ppos)
120{
121 int error = 0, cnt = 0;
122 unsigned char *tbuf;
123
75202e76 124 if (!buf)
e41542f5
IM
125 return -EINVAL;
126
127 if (len == 0)
128 return 0;
129
130 tbuf = vmalloc(len);
131 if (!tbuf)
132 return -ENOMEM;
133
134 error = wait_event_interruptible(dccpw.wait,
e64c026d 135 kfifo_len(&dccpw.fifo) != 0);
e41542f5
IM
136 if (error)
137 goto out_free;
138
7acd72eb 139 cnt = kfifo_out_locked(&dccpw.fifo, tbuf, len, &dccpw.lock);
653252c2 140 error = copy_to_user(buf, tbuf, cnt) ? -EFAULT : 0;
e41542f5
IM
141
142out_free:
143 vfree(tbuf);
144
145 return error ? error : cnt;
146}
147
9a32144e 148static const struct file_operations dccpprobe_fops = {
e41542f5
IM
149 .owner = THIS_MODULE,
150 .open = dccpprobe_open,
151 .read = dccpprobe_read,
6038f373 152 .llseek = noop_llseek,
e41542f5
IM
153};
154
d984e619
DM
155static __init int setup_jprobe(void)
156{
157 int ret = register_jprobe(&dccp_send_probe);
158
159 if (ret) {
160 request_module("dccp");
161 ret = register_jprobe(&dccp_send_probe);
162 }
163 return ret;
164}
165
e41542f5
IM
166static __init int dccpprobe_init(void)
167{
168 int ret = -ENOMEM;
169
170 init_waitqueue_head(&dccpw.wait);
171 spin_lock_init(&dccpw.lock);
c1e13f25 172 if (kfifo_alloc(&dccpw.fifo, bufsize, GFP_KERNEL))
45465487 173 return ret;
d4beaa66 174 if (!proc_create(procname, S_IRUSR, init_net.proc_net, &dccpprobe_fops))
e41542f5
IM
175 goto err0;
176
d984e619 177 ret = setup_jprobe();
e41542f5
IM
178 if (ret)
179 goto err1;
180
181 pr_info("DCCP watch registered (port=%d)\n", port);
182 return 0;
183err1:
ece31ffd 184 remove_proc_entry(procname, init_net.proc_net);
e41542f5 185err0:
45465487 186 kfifo_free(&dccpw.fifo);
e41542f5
IM
187 return ret;
188}
189module_init(dccpprobe_init);
190
191static __exit void dccpprobe_exit(void)
192{
45465487 193 kfifo_free(&dccpw.fifo);
ece31ffd 194 remove_proc_entry(procname, init_net.proc_net);
e41542f5
IM
195 unregister_jprobe(&dccp_send_probe);
196
197}
198module_exit(dccpprobe_exit);
199
200MODULE_PARM_DESC(port, "Port to match (0=all)");
201module_param(port, int, 0);
202
203MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
204module_param(bufsize, int, 0);
205
206MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>");
207MODULE_DESCRIPTION("DCCP snooper");
208MODULE_LICENSE("GPL");