blob: 7b7aa7c9fe1d39c12acd0c0534d46bfb88b64645 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Paul Mundt8b2d02e2005-05-20 17:22:18 +00002/*
3 * readprofile.c - used to read /proc/profile
4 *
5 * Copyright (C) 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it)
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Paul Mundt8b2d02e2005-05-20 17:22:18 +00008 */
9
10/*
Denis Vlasenko1d426652008-03-17 09:09:09 +000011 * 1999-02-22 Arkadiusz Mickiewicz <misiek@pld.ORG.PL>
Paul Mundt8b2d02e2005-05-20 17:22:18 +000012 * - added Native Language Support
13 * 1999-09-01 Stephane Eranian <eranian@cello.hpl.hp.com>
14 * - 64bit clean patch
15 * 3Feb2001 Andrew Morton <andrewm@uow.edu.au>
16 * - -M option to write profile multiplier.
17 * 2001-11-07 Werner Almesberger <wa@almesberger.net>
18 * - byte order auto-detection and -n option
19 * 2001-11-09 Werner Almesberger <wa@almesberger.net>
20 * - skip step size (index 0)
21 * 2002-03-09 John Levon <moz@compsoc.man.ac.uk>
22 * - make maplineno do something
23 * 2002-11-28 Mads Martin Joergensen +
24 * - also try /boot/System.map-`uname -r`
25 * 2003-04-09 Werner Almesberger <wa@almesberger.net>
26 * - fixed off-by eight error and improved heuristics in byte order detection
27 * 2003-08-12 Nikita Danilov <Nikita@Namesys.COM>
28 * - added -s option; example of use:
29 * "readprofile -s -m /boot/System.map-test | grep __d_lookup | sort -n -k3"
30 *
31 * Taken from util-linux and adapted for busybox by
32 * Paul Mundt <lethal@linux-sh.org>.
33 */
34
Pere Orga5bc8c002011-04-11 03:29:49 +020035//usage:#define readprofile_trivial_usage
36//usage: "[OPTIONS]"
37//usage:#define readprofile_full_usage "\n\n"
38//usage: "Options:"
39//usage: "\n -m mapfile (Default: /boot/System.map)"
40//usage: "\n -p profile (Default: /proc/profile)"
41//usage: "\n -M NUM Set the profiling multiplier to NUM"
42//usage: "\n -i Print only info about the sampling step"
43//usage: "\n -v Verbose"
44//usage: "\n -a Print all symbols, even if count is 0"
45//usage: "\n -b Print individual histogram-bin counts"
46//usage: "\n -s Print individual counters within functions"
47//usage: "\n -r Reset all the counters (root only)"
48//usage: "\n -n Disable byte order auto-detection"
49
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000050#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000051#include <sys/utsname.h>
Paul Mundt8b2d02e2005-05-20 17:22:18 +000052
53#define S_LEN 128
54
55/* These are the defaults */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000056static const char defaultmap[] ALIGN1 = "/boot/System.map";
57static const char defaultpro[] ALIGN1 = "/proc/profile";
Paul Mundt8b2d02e2005-05-20 17:22:18 +000058
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000059int readprofile_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000060int readprofile_main(int argc UNUSED_PARAM, char **argv)
Paul Mundt8b2d02e2005-05-20 17:22:18 +000061{
62 FILE *map;
Denis Vlasenko1d426652008-03-17 09:09:09 +000063 const char *mapFile, *proFile;
Denis Vlasenko92258542006-11-01 10:25:35 +000064 unsigned long indx = 1;
Denis Vlasenkoea620772006-10-14 02:23:43 +000065 size_t len;
Denis Vlasenko92258542006-11-01 10:25:35 +000066 uint64_t add0 = 0;
Paul Mundt8b2d02e2005-05-20 17:22:18 +000067 unsigned int step;
68 unsigned int *buf, total, fn_len;
Denis Vlasenkocad36682006-09-22 08:39:49 +000069 unsigned long long fn_add, next_add; /* current and next address */
Paul Mundt8b2d02e2005-05-20 17:22:18 +000070 char fn_name[S_LEN], next_name[S_LEN]; /* current and next name */
Paul Mundt8b2d02e2005-05-20 17:22:18 +000071 char mapline[S_LEN];
Denis Vlasenko92258542006-11-01 10:25:35 +000072 char mode[8];
Denis Vlasenko92258542006-11-01 10:25:35 +000073 int maplineno = 1;
Paul Mundt8b2d02e2005-05-20 17:22:18 +000074 int header_printed;
Denis Vlasenko1d426652008-03-17 09:09:09 +000075 int multiplier = 0;
76 unsigned opt;
77 enum {
78 OPT_M = (1 << 0),
79 OPT_m = (1 << 1),
80 OPT_p = (1 << 2),
81 OPT_n = (1 << 3),
82 OPT_a = (1 << 4),
83 OPT_b = (1 << 5),
84 OPT_s = (1 << 6),
85 OPT_i = (1 << 7),
86 OPT_r = (1 << 8),
87 OPT_v = (1 << 9),
88 };
89#define optMult (opt & OPT_M)
90#define optNative (opt & OPT_n)
91#define optAll (opt & OPT_a)
92#define optBins (opt & OPT_b)
93#define optSub (opt & OPT_s)
94#define optInfo (opt & OPT_i)
95#define optReset (opt & OPT_r)
96#define optVerbose (opt & OPT_v)
Paul Mundt8b2d02e2005-05-20 17:22:18 +000097
98#define next (current^1)
99
100 proFile = defaultpro;
101 mapFile = defaultmap;
102
Denis Vlasenko1d426652008-03-17 09:09:09 +0000103 opt_complementary = "M+"; /* -M N */
104 opt = getopt32(argv, "M:m:p:nabsirv", &multiplier, &mapFile, &proFile);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000105
Denis Vlasenko1d426652008-03-17 09:09:09 +0000106 if (opt & (OPT_M|OPT_r)) { /* mult or reset, or both */
107 int fd, to_write;
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000108
109 /*
110 * When writing the multiplier, if the length of the write is
111 * not sizeof(int), the multiplier is not changed
112 */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000113 to_write = sizeof(int);
114 if (!optMult)
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200115 to_write = 1; /* sth different from sizeof(int) */
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000116
Denis Vlasenko92258542006-11-01 10:25:35 +0000117 fd = xopen(defaultpro, O_WRONLY);
Denis Vlasenkoa89d50f2007-11-13 17:51:40 +0000118 xwrite(fd, &multiplier, to_write);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000119 close(fd);
120 return EXIT_SUCCESS;
121 }
122
123 /*
124 * Use an fd for the profiling buffer, to skip stdio overhead
125 */
Denis Vlasenkod67cef22007-06-13 06:47:47 +0000126 len = MAXINT(ssize_t);
Denis Vlasenkof3745ea2008-04-19 19:32:08 +0000127 buf = xmalloc_xopen_read_close(proFile, &len);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000128 if (!optNative) {
Denis Vlasenkof3745ea2008-04-19 19:32:08 +0000129 int entries = len / sizeof(*buf);
Denis Vlasenko92258542006-11-01 10:25:35 +0000130 int big = 0, small = 0, i;
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000131 unsigned *p;
132
133 for (p = buf+1; p < buf+entries; p++) {
134 if (*p & ~0U << (sizeof(*buf)*4))
135 big++;
136 if (*p & ((1 << (sizeof(*buf)*4))-1))
137 small++;
138 }
139 if (big > small) {
Denis Vlasenkoea620772006-10-14 02:23:43 +0000140 bb_error_msg("assuming reversed byte order, "
141 "use -n to force native byte order");
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000142 for (p = buf; p < buf+entries; p++)
143 for (i = 0; i < sizeof(*buf)/2; i++) {
144 unsigned char *b = (unsigned char *) p;
145 unsigned char tmp;
146
147 tmp = b[i];
148 b[i] = b[sizeof(*buf)-i-1];
149 b[sizeof(*buf)-i-1] = tmp;
150 }
151 }
152 }
153
154 step = buf[0];
155 if (optInfo) {
156 printf("Sampling_step: %i\n", step);
157 return EXIT_SUCCESS;
158 }
159
160 total = 0;
161
Denis Vlasenko5415c852008-07-21 23:05:26 +0000162 map = xfopen_for_read(mapFile);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000163
Denis Vlasenko92258542006-11-01 10:25:35 +0000164 while (fgets(mapline, S_LEN, map)) {
165 if (sscanf(mapline, "%llx %s %s", &fn_add, mode, fn_name) != 3)
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000166 bb_error_msg_and_die("%s(%i): wrong map line",
167 mapFile, maplineno);
168
Denis Vlasenko92258542006-11-01 10:25:35 +0000169 if (!strcmp(fn_name, "_stext")) /* only elf works like this */ {
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000170 add0 = fn_add;
171 break;
172 }
173 maplineno++;
174 }
175
176 if (!add0)
Rob Landleyb7285002005-09-14 15:28:15 +0000177 bb_error_msg_and_die("can't find \"_stext\" in %s", mapFile);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000178
179 /*
180 * Main loop.
181 */
Denis Vlasenko92258542006-11-01 10:25:35 +0000182 while (fgets(mapline, S_LEN, map)) {
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000183 unsigned int this = 0;
184
Denis Vlasenko92258542006-11-01 10:25:35 +0000185 if (sscanf(mapline, "%llx %s %s", &next_add, mode, next_name) != 3)
Rob Landleyb7285002005-09-14 15:28:15 +0000186 bb_error_msg_and_die("%s(%i): wrong map line",
Denis Vlasenko92258542006-11-01 10:25:35 +0000187 mapFile, maplineno);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000188
189 header_printed = 0;
190
191 /* ignore any LEADING (before a '[tT]' symbol is found)
192 Absolute symbols */
193 if ((*mode == 'A' || *mode == '?') && total == 0) continue;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100194 if (*mode != 'T' && *mode != 't'
195 && *mode != 'W' && *mode != 'w'
196 ) {
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200197 break; /* only text is profiled */
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100198 }
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000199
200 if (indx >= len / sizeof(*buf))
201 bb_error_msg_and_die("profile address out of range. "
202 "Wrong map file?");
203
204 while (indx < (next_add-add0)/step) {
205 if (optBins && (buf[indx] || optAll)) {
206 if (!header_printed) {
Denis Vlasenko92258542006-11-01 10:25:35 +0000207 printf("%s:\n", fn_name);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000208 header_printed = 1;
209 }
Denis Vlasenko92258542006-11-01 10:25:35 +0000210 printf("\t%"PRIx64"\t%u\n", (indx - 1)*step + add0, buf[indx]);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000211 }
212 this += buf[indx++];
213 }
214 total += this;
215
216 if (optBins) {
217 if (optVerbose || this > 0)
Denis Vlasenko92258542006-11-01 10:25:35 +0000218 printf(" total\t\t\t\t%u\n", this);
Denis Vlasenko1d426652008-03-17 09:09:09 +0000219 } else if ((this || optAll)
220 && (fn_len = next_add-fn_add) != 0
221 ) {
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000222 if (optVerbose)
223 printf("%016llx %-40s %6i %8.4f\n", fn_add,
Denis Vlasenko92258542006-11-01 10:25:35 +0000224 fn_name, this, this/(double)fn_len);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000225 else
226 printf("%6i %-40s %8.4f\n",
Denis Vlasenko92258542006-11-01 10:25:35 +0000227 this, fn_name, this/(double)fn_len);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000228 if (optSub) {
229 unsigned long long scan;
230
231 for (scan = (fn_add-add0)/step + 1;
232 scan < (next_add-add0)/step; scan++) {
233 unsigned long long addr;
234
235 addr = (scan - 1)*step + add0;
236 printf("\t%#llx\t%s+%#llx\t%u\n",
237 addr, fn_name, addr - fn_add,
238 buf[scan]);
239 }
240 }
241 }
242
243 fn_add = next_add;
Denis Vlasenko92258542006-11-01 10:25:35 +0000244 strcpy(fn_name, next_name);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000245
246 maplineno++;
247 }
248
249 /* clock ticks, out of kernel text - probably modules */
250 printf("%6i %s\n", buf[len/sizeof(*buf)-1], "*unknown*");
251
252 /* trailer */
253 if (optVerbose)
254 printf("%016x %-40s %6i %8.4f\n",
Denis Vlasenko92258542006-11-01 10:25:35 +0000255 0, "total", total, total/(double)(fn_add-add0));
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000256 else
257 printf("%6i %-40s %8.4f\n",
Denis Vlasenko92258542006-11-01 10:25:35 +0000258 total, "total", total/(double)(fn_add-add0));
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000259
260 fclose(map);
261 free(buf);
262
263 return EXIT_SUCCESS;
264}