-
Notifications
You must be signed in to change notification settings - Fork 354
/
ngx-chain-bufs
executable file
·177 lines (131 loc) · 3.74 KB
/
ngx-chain-bufs
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
#!/usr/bin/env perl
# Copyright (C) Yichun Zhang (agentzh)
use 5.006001;
use strict;
use warnings;
use Getopt::Std qw( getopts );
my %opts;
getopts("a:dhp:", \%opts)
or die usage();
if ($opts{h}) {
print usage();
exit;
}
my $pid = $opts{p}
or die "No nginx process pid specified by the -p option\n";
if ($pid !~ /^\d+$/) {
die "Bad -p option value \"$pid\": not look like a pid\n";
}
my $stap_args = $opts{a} || '';
my $chain_ptr = shift
or die "No chain pointer specified.\n";
if ($^O ne 'linux') {
die "Only linux is supported but I am on $^O.\n";
}
my $exec_file = "/proc/$pid/exe";
if (!-f $exec_file) {
die "Nginx process $pid is not running or ",
"you do not have enough permissions.\n";
}
my $nginx_path = readlink $exec_file;
my $ver = `stap --version 2>&1`;
if (!defined $ver) {
die "Systemtap not installed or its \"stap\" utility is not visible to the PATH environment: $!\n";
}
if ($ver =~ /version\s+(\d+\.\d+)/i) {
my $v = $1;
if ($v < 2.1) {
die "ERROR: at least systemtap 2.1 is required but found $v\n";
}
} else {
die "ERROR: unknown version of systemtap:\n$ver\n";
}
my $preamble = <<_EOC_;
probe begin {
printf("Tracing %d ($nginx_path)...\\n\\n", target())
}
_EOC_
chop $preamble;
my $c = '@cast(c, "ngx_connection_t")';
my $r = '@cast(r, "ngx_http_request_t")';
my $u = '@cast(u, "ngx_http_upstream_t")';
my $p = '@cast(p, "ngx_event_pipe_t")';
my $need_blank_line;
my ($check_upstream_code, $check_pool_init_code, $check_pool_code);
my $fin_code = '';
my $cl = '@cast(cl, "ngx_chain_t")';
my $buf = '@cast(buf, "ngx_buf_t")';
my $stap_src = <<_EOC_;
$preamble
probe process("$nginx_path").function("ngx_process_events_and_timers"),
process("$nginx_path").function("ngx_http_handler")
{
if (pid() == target()) {
begin = local_clock_us()
if (!$chain_ptr) {
printf("NULL\\n")
exit()
}
total_size = 0
nlinks = 0
cl = $chain_ptr
while (cl) {
nlinks++;
buf = $cl->buf
if ($buf->temporary || $buf->memory || $buf->mmap) {
size = $buf->last - $buf->pos
printf("[%s]", text_str(user_string_n($buf->pos, size)))
total_size += size
} else {
printf("\\"\\"")
}
if ($buf->last_buf) {
printf("<last_buf>")
}
if ($buf->last_in_chain) {
printf("<last_in_chain>")
}
if ($buf->sync) {
printf("<sync>")
}
if ($buf->flush) {
printf("<flush>")
}
if ($buf->in_file) {
printf("<in_file>")
}
cl = $cl->next
if (cl) {
printf(" ")
}
}
printf("\\n\\nFor total %d chain links and %d bytes data found.\\n\\n",
nlinks, total_size)
elapsed = local_clock_us() - begin
printf("%d microseconds elapsed in the probe handler.\\n", elapsed)
exit()
} /* pid() == target() */
}
_EOC_
if ($opts{d}) {
print $stap_src;
exit;
}
open my $in, "|stap --skip-badvars -x $pid $stap_args -"
or die "Cannot run stap: $!\n";
print $in $stap_src;
close $in;
sub usage {
return <<'_EOC_';
Usage:
ngx-chain-bufs [optoins] <chain-link-pointer>
Options:
-a <args> Pass extra arguments to the stap utility.
-d Dump out the systemtap script source.
-h Print this usage.
-p <pid> Specify the nginx (worker) process pid.
Examples:
ngx-chain-bufs -p 12345 0x6789a
ngx-chain-bufs -p 12345 -a '-DMAXACTION=100000' 0x6789a
_EOC_
}