-
Notifications
You must be signed in to change notification settings - Fork 6
/
net_per_query.py
executable file
·193 lines (147 loc) · 4.49 KB
/
net_per_query.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/usr/bin/env python
#
# net_per_query Summarize network usage per query/backend.
# For Linux, uses BCC.
#
# usage: net_per_query $PG_BIN/postgres [-d] [-p PID]
from __future__ import print_function
import argparse
import signal
from time import sleep
from bcc import BPF
import utils
def get_pid_cmdline(pid):
try:
return open("/proc/{}/cmdline".format(pid)).read().strip()
except FileNotFoundError:
return "postgres: backend {}".format(pid)
# load BPF program
bpf_text = """
#include <linux/ptrace.h>
#include <uapi/linux/bpf_perf_event.h>
#define HASH_SIZE 2^14
#define QUERY_LEN 100
struct key_t {
int pid;
u64 namespace;
char name[TASK_COMM_LEN];
char query[QUERY_LEN];
};
struct backend {
int pid;
char query[QUERY_LEN];
};
BPF_HASH(send, struct key_t);
BPF_HASH(recv, struct key_t);
BPF_HASH(queries, u32, struct backend, HASH_SIZE);
static inline __attribute__((always_inline)) void get_key(struct key_t* key) {
key->pid = bpf_get_current_pid_tgid();
struct backend *data = queries.lookup(&(key->pid));
bpf_get_current_comm(&(key->name), sizeof(key->name));
if (data != NULL)
bpf_probe_read(&(key->query), QUERY_LEN, &(data->query));
}
int on_recv(struct pt_regs *ctx) {
struct key_t key = {};
get_key(&key);
SAVE_NAMESPACE
CHECK_NAMESPACE
u64 zero = 0, *val;
val = recv.lookup_or_init(&key, &zero);
(*val) += PT_REGS_PARM3(ctx);
return 0;
}
int on_send(struct pt_regs *ctx) {
struct key_t key = {};
get_key(&key);
SAVE_NAMESPACE
CHECK_NAMESPACE
u64 zero = 0, *val;
val = send.lookup_or_init(&key, &zero);
(*val) += PT_REGS_PARM3(ctx);
return 0;
}
void probe_exec_simple_query(struct pt_regs *ctx, const char *query_string)
{
u32 pid = bpf_get_current_pid_tgid();
struct backend data = {};
data.pid = pid;
bpf_probe_read(&data.query, QUERY_LEN, &(*query_string));
queries.update(&pid, &data);
}
void probe_exec_simple_query_finish(struct pt_regs *ctx)
{
u32 pid = bpf_get_current_pid_tgid();
queries.delete(&pid);
}
"""
# signal handler
def signal_ignore(sig, frame):
print()
def print_result(name, table):
print(name)
for (k, v) in table.items():
if k.name == b"postgres":
backend = k.query.decode("ascii") or get_pid_cmdline(k.pid)
print("[{}:{}] {}: {}".format(
k.pid, k.namespace, backend, utils.size(v.value)))
print()
def attach(bpf, args):
bpf.attach_uprobe(
name=args.path,
sym="exec_simple_query",
fn_name="probe_exec_simple_query",
pid=args.pid)
bpf.attach_uretprobe(
name=args.path,
sym="exec_simple_query",
fn_name="probe_exec_simple_query_finish",
pid=args.pid)
bpf.attach_kprobe(event="sys_sendto", fn_name="on_send")
bpf.attach_kprobe(event="sys_send", fn_name="on_send")
bpf.attach_kprobe(event="sys_recvfrom", fn_name="on_recv")
bpf.attach_kprobe(event="sys_recv", fn_name="on_recv")
def pre_process(text, args):
text = utils.replace_namespace(text, args)
return text
def run(args):
print("Attaching...")
debug = 4 if args.debug else 0
bpf = BPF(text=pre_process(bpf_text, args), debug=debug)
attach(bpf, args)
exiting = False
print("Listening...")
while True:
try:
sleep(1)
except KeyboardInterrupt:
exiting = True
# as cleanup can take many seconds, trap Ctrl-C:
signal.signal(signal.SIGINT, signal_ignore)
if exiting:
print()
print("Detaching...")
print()
break
print_result("Send", bpf.get_table('send'))
print_result("Receive", bpf.get_table('recv'))
def parse_args():
parser = argparse.ArgumentParser(
description="Summarize network usage per query/backend",
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument("path", type=str, help="path to PostgreSQL binary")
parser.add_argument(
"-p", "--pid", type=int, default=-1,
help="trace this PID only")
parser.add_argument(
"-c", "--container", type=str,
help="trace this container only")
parser.add_argument(
"-n", "--namespace", type=int,
help="trace this namespace only")
parser.add_argument(
"-d", "--debug", action='store_true', default=False,
help="debug mode")
return parser.parse_args()
if __name__ == "__main__":
run(parse_args())