]>
git.saurik.com Git - apple/network_cmds.git/blob - unbound/testcode/memstats.c
2 * testcode/memstats.c - debug tool to show memory allocation statistics.
4 * Copyright (c) 2007, NLnet Labs. All rights reserved.
6 * This software is open source.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
15 * Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
19 * Neither the name of the NLNET LABS nor the names of its contributors may
20 * be used to endorse or promote products derived from this software without
21 * specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
29 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
30 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * This program reads a log file and prints the memory allocation summed
44 #include "util/rbtree.h"
45 #include "util/locks.h"
46 #include "util/fptr_wlist.h"
50 * The allocation statistics block
55 /** the name of the file:linenumber */
57 /** the name of the function */
59 /** number of bytes allocated */
61 /** number of bytes freed */
63 /** number allocations and frees */
67 /** print usage and exit */
71 printf("usage: memstats <logfile>\n");
72 printf("statistics are printed on stdout.\n");
76 /** match logfile line to see if it needs accounting processing */
81 * [1187340064] unbound[24604:0] info: ul/rb.c:81 r_create malloc(12)
82 * 0123456789 123456789 123456789 123456789
84 * Sep 16 15:18:20 unbound[1:0] info: ul/nh.c:143 memdup malloc(11)
86 if(strlen(line
) < 32) /* up to 'info: ' */
88 if(!strstr(line
, " info: "))
90 if(strstr(line
, "info: stat "))
91 return 0; /* skip the hex dumps */
92 if(strstr(line
+30, "malloc("))
94 else if(strstr(line
+30, "calloc("))
100 /** find or alloc codeline in tree */
101 static struct codeline
*
102 get_codeline(rbtree_t
* tree
, char* key
, char* func
)
104 struct codeline
* cl
= (struct codeline
*)rbtree_search(tree
, key
);
106 cl
= calloc(1, sizeof(*cl
));
108 cl
->codeline
= strdup(key
);
109 if(!cl
->codeline
) return 0;
110 cl
->func
= strdup(func
);
111 if(!cl
->func
) return 0;
113 cl
->node
.key
= cl
->codeline
;
114 (void)rbtree_insert(tree
, &cl
->node
);
119 /** read up the malloc stats */
121 read_malloc_stat(char* line
, rbtree_t
* tree
)
123 char codeline
[10240];
127 struct codeline
* cl
= 0;
128 line
= strstr(line
, "info: ")+6;
129 if(sscanf(line
, "%s %s %n", codeline
, name
, &skip
) != 2) {
130 printf("%s\n", line
);
131 fatal_exit("unhandled malloc");
133 if(sscanf(line
+skip
+7, "%ld", &num
) != 1) {
134 printf("%s\n%s\n", line
, line
+skip
+7);
135 fatal_exit("unhandled malloc");
137 cl
= get_codeline(tree
, codeline
, name
);
139 fatal_exit("alloc failure");
144 /** read up the calloc stats */
146 read_calloc_stat(char* line
, rbtree_t
* tree
)
148 char codeline
[10240];
151 long num
= 0, sz
= 0;
152 struct codeline
* cl
= 0;
153 line
= strstr(line
, "info: ")+6;
154 if(sscanf(line
, "%s %s %n", codeline
, name
, &skip
) != 2) {
155 printf("%s\n", line
);
156 fatal_exit("unhandled calloc");
158 if(sscanf(line
+skip
+7, "%ld, %ld", &num
, &sz
) != 2) {
159 printf("%s\n%s\n", line
, line
+skip
+7);
160 fatal_exit("unhandled calloc");
163 cl
= get_codeline(tree
, codeline
, name
);
165 fatal_exit("alloc failure");
170 /** get size of file */
172 get_file_size(const char* fname
)
175 if(stat(fname
, &s
) < 0) {
176 fatal_exit("could not stat %s: %s", fname
, strerror(errno
));
181 /** read the logfile */
183 readfile(rbtree_t
* tree
, const char* fname
)
185 off_t total
= get_file_size(fname
);
186 off_t done
= (off_t
)0;
188 FILE* in
= fopen(fname
, "r");
191 fatal_exit("could not open %s: %s", fname
, strerror(errno
));
192 printf("Reading %s of size " ARG_LL
"d\n", fname
, (long long)total
);
193 while(fgets(buf
, 102400, in
)) {
195 done
+= (off_t
)strlen(buf
);
197 if((int)(((double)done
/ (double)total
)*100.) > report
) {
198 report
= (int)(((double)done
/ (double)total
)*100.);
199 fprintf(stderr
, " %d%%", report
);
204 else if(strstr(buf
+30, "malloc("))
205 read_malloc_stat(buf
, tree
);
206 else if(strstr(buf
+30, "calloc("))
207 read_calloc_stat(buf
, tree
);
210 fatal_exit("unhandled input");
213 fprintf(stderr
, " done\n");
217 /** print memory stats */
219 printstats(rbtree_t
* tree
)
222 uint64_t total
= 0, tcalls
= 0;
223 RBTREE_FOR(cl
, struct codeline
*, tree
) {
224 printf("%12lld / %8lld in %s %s\n", (long long)cl
->alloc
,
225 (long long)cl
->calls
, cl
->codeline
, cl
->func
);
229 printf("------------\n");
230 printf("%12lld / %8lld total in %ld code lines\n", (long long)total
,
231 (long long)tcalls
, (long)tree
->count
);
236 int main(int argc
, const char* argv
[])
242 tree
= rbtree_create(codeline_cmp
);
244 fatal_exit("alloc failure");
245 readfile(tree
, argv
[1]);