-
Notifications
You must be signed in to change notification settings - Fork 10
/
sockq.c
203 lines (165 loc) · 5.38 KB
/
sockq.c
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
194
195
196
197
198
199
200
201
202
203
/* sockq.c - sockq extension module for crash
*
* Copyright (C) 2014 FUJITSU LIMITED
* Author: Qiao Nuohan <qiaonuohan cn fujitsu com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "defs.h" /* From the crash source top-level directory */
void sockq_init(void); /* constructor function */
void sockq_fini(void); /* destructor function (optional) */
void cmd_sockq(void); /* Declare the commands and their help data. */
char *help_sockq[];
static struct command_table_entry command_table[] = {
{ "sockq", cmd_sockq, help_sockq, 0}, /* One or more commands, */
{ NULL }, /* terminated by NULL, */
};
char *help_sockq[] = {
"sockq", /* command name */
"get socket receive queue into a file", /* short description */
"file_address outfile", /* argument synopsis */
" This command gets the data from the socket receive queue.",
" ",
" file_address A hexadecimal value of socket's file structure address.",
" outfile A name of output file. If the file already exists,",
" it is overwritten.",
NULL
};
void __attribute__((constructor))
sockq_init(void) /* Register the command set. */
{
register_extension(command_table);
}
/*
* This function is called if the shared object is unloaded.
* If desired, perform any cleanups here.
*/
void __attribute__((destructor))
sockq_fini(void) { }
static int
get_member_data(ulonglong addr, char *name, char *member, void* buf)
{
ulong member_offset;
member_offset = MEMBER_OFFSET(name, member);
if (!readmem(addr + member_offset, KVADDR, buf,
MEMBER_SIZE(name, member), name, FAULT_ON_ERROR))
return FALSE;
return TRUE;
}
/*
* write receive data in the specified file
*/
static int
write_data(int fd, char *buf, ulong addr, ulong size)
{
ulong wsize;
while (size > 0) {
/* size of the buffer is pagesize */
wsize = (size > PAGESIZE()) ? PAGESIZE() : size;
if (!readmem(addr, KVADDR, buf, wsize, "vaddr", FAULT_ON_ERROR)) {
fprintf(fp, "cannot read data from packet buffer\n");
return 1;
}
if (write(fd, buf, wsize) < 0) {
fprintf(fp, "cannot write data in a file\n");
return 1;
}
addr += wsize;
size -= wsize;
}
return 0;
}
int
do_sockq(ulong file_addr, char *output_file, int fd)
{
int rc = 1;
ulong pd, sk;
uint qlen;
char *buf = NULL;
ulong next, head;
unsigned int len;
ulong wnext;
if (!get_member_data(file_addr, "file", "private_data", &pd)) {
fprintf(fp, "cannot get private_data of file structure\n");
goto cleanup;
}
if (!get_member_data(pd, "socket", "sk", &sk)) {
fprintf(fp, "cannot get sk of socket structure\n");
goto cleanup;
}
if (!get_member_data(sk + MEMBER_OFFSET("sock", "sk_receive_queue"),
"sk_buff_head", "next", &next)) {
fprintf(fp, "cannot get the first queue of sock structure\n");
goto cleanup;
}
if (!get_member_data(sk + MEMBER_OFFSET("sock", "sk_receive_queue"),
"sk_buff_head", "qlen", &qlen)) {
fprintf(fp, "cannot get the number of queue list\n");
goto cleanup;
}
/* create a output file */
if (output_file != NULL &&
(fd = open(output_file,
O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
fprintf(fp, "cannot create %s\n", output_file);
goto cleanup;
}
if (qlen == 0) {
/* receive queue is empty */
rc = 0;
goto cleanup;
}
/* get work area */
buf = GETBUF(PAGESIZE());
while (qlen-- > 0) {
/* get packet buffer are info */
if (!get_member_data(next, "sk_buff", "head", &head)) {
fprintf(fp, "cannot head of sk_buff structure\n");
goto cleanup;
}
if (!get_member_data(next, "sk_buff", "len", &len)) {
fprintf(fp, "cannot tail of sk_buff structure\n");
goto cleanup;
}
/* write data in the output file */
if (write_data(fd, buf, head, len))
goto cleanup;
/* next receive queue */
wnext = next;
if (!get_member_data(wnext, "sk_buff", "next", &next)) {
fprintf(fp, "cannot get next of sk_buff structure\n");
goto cleanup;
}
}
/* all process normally ends */
rc = 0;
cleanup:
if (output_file != NULL)
close(fd);
if (buf)
FREEBUF(buf);
return rc;
}
void
cmd_sockq(void)
{
ulong file_addr;
if (argcnt != 3)
cmd_usage(pc->curcmd, SYNOPSIS);
optind++;
file_addr = htol(args[optind], FAULT_ON_ERROR, NULL);
optind++;
if (strlen(args[optind]) > PATH_MAX) {
fprintf(fp, "cannot create specified output file\n");
return;
}
do_sockq(file_addr, args[optind], -1);
}