blob: a64540464307f68a0208612e34f06b24be327c56 [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"
Denys Vlasenko66426762011-06-05 03:58:28 +020038//usage: " -m mapfile (Default: /boot/System.map)"
Pere Orga5bc8c002011-04-11 03:29:49 +020039//usage: "\n -p profile (Default: /proc/profile)"
40//usage: "\n -M NUM Set the profiling multiplier to NUM"
41//usage: "\n -i Print only info about the sampling step"
42//usage: "\n -v Verbose"
43//usage: "\n -a Print all symbols, even if count is 0"
44//usage: "\n -b Print individual histogram-bin counts"
45//usage: "\n -s Print individual counters within functions"
46//usage: "\n -r Reset all the counters (root only)"
47//usage: "\n -n Disable byte order auto-detection"
48
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000049#include "libbb.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000050#include <sys/utsname.h>
Paul Mundt8b2d02e2005-05-20 17:22:18 +000051
52#define S_LEN 128
53
54/* These are the defaults */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000055static const char defaultmap[] ALIGN1 = "/boot/System.map";
56static const char defaultpro[] ALIGN1 = "/proc/profile";
Paul Mundt8b2d02e2005-05-20 17:22:18 +000057
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000058int readprofile_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000059int readprofile_main(int argc UNUSED_PARAM, char **argv)
Paul Mundt8b2d02e2005-05-20 17:22:18 +000060{
61 FILE *map;
Denis Vlasenko1d426652008-03-17 09:09:09 +000062 const char *mapFile, *proFile;
Denis Vlasenko92258542006-11-01 10:25:35 +000063 unsigned long indx = 1;
Denis Vlasenkoea620772006-10-14 02:23:43 +000064 size_t len;
Denis Vlasenko92258542006-11-01 10:25:35 +000065 uint64_t add0 = 0;
Paul Mundt8b2d02e2005-05-20 17:22:18 +000066 unsigned int step;
67 unsigned int *buf, total, fn_len;
Denis Vlasenkocad36682006-09-22 08:39:49 +000068 unsigned long long fn_add, next_add; /* current and next address */
Paul Mundt8b2d02e2005-05-20 17:22:18 +000069 char fn_name[S_LEN], next_name[S_LEN]; /* current and next name */
Paul Mundt8b2d02e2005-05-20 17:22:18 +000070 char mapline[S_LEN];
Denis Vlasenko92258542006-11-01 10:25:35 +000071 char mode[8];
Denis Vlasenko92258542006-11-01 10:25:35 +000072 int maplineno = 1;
Paul Mundt8b2d02e2005-05-20 17:22:18 +000073 int header_printed;
Denis Vlasenko1d426652008-03-17 09:09:09 +000074 int multiplier = 0;
75 unsigned opt;
76 enum {
77 OPT_M = (1 << 0),
78 OPT_m = (1 << 1),
79 OPT_p = (1 << 2),
80 OPT_n = (1 << 3),
81 OPT_a = (1 << 4),
82 OPT_b = (1 << 5),
83 OPT_s = (1 << 6),
84 OPT_i = (1 << 7),
85 OPT_r = (1 << 8),
86 OPT_v = (1 << 9),
87 };
88#define optMult (opt & OPT_M)
89#define optNative (opt & OPT_n)
90#define optAll (opt & OPT_a)
91#define optBins (opt & OPT_b)
92#define optSub (opt & OPT_s)
93#define optInfo (opt & OPT_i)
94#define optReset (opt & OPT_r)
95#define optVerbose (opt & OPT_v)
Paul Mundt8b2d02e2005-05-20 17:22:18 +000096
97#define next (current^1)
98
99 proFile = defaultpro;
100 mapFile = defaultmap;
101
Denis Vlasenko1d426652008-03-17 09:09:09 +0000102 opt_complementary = "M+"; /* -M N */
103 opt = getopt32(argv, "M:m:p:nabsirv", &multiplier, &mapFile, &proFile);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000104
Denis Vlasenko1d426652008-03-17 09:09:09 +0000105 if (opt & (OPT_M|OPT_r)) { /* mult or reset, or both */
106 int fd, to_write;
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000107
108 /*
109 * When writing the multiplier, if the length of the write is
110 * not sizeof(int), the multiplier is not changed
111 */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000112 to_write = sizeof(int);
113 if (!optMult)
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200114 to_write = 1; /* sth different from sizeof(int) */
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000115
Denis Vlasenko92258542006-11-01 10:25:35 +0000116 fd = xopen(defaultpro, O_WRONLY);
Denis Vlasenkoa89d50f2007-11-13 17:51:40 +0000117 xwrite(fd, &multiplier, to_write);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000118 close(fd);
119 return EXIT_SUCCESS;
120 }
121
122 /*
123 * Use an fd for the profiling buffer, to skip stdio overhead
124 */
Denis Vlasenkod67cef22007-06-13 06:47:47 +0000125 len = MAXINT(ssize_t);
Denis Vlasenkof3745ea2008-04-19 19:32:08 +0000126 buf = xmalloc_xopen_read_close(proFile, &len);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000127 if (!optNative) {
Denis Vlasenkof3745ea2008-04-19 19:32:08 +0000128 int entries = len / sizeof(*buf);
Denis Vlasenko92258542006-11-01 10:25:35 +0000129 int big = 0, small = 0, i;
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000130 unsigned *p;
131
132 for (p = buf+1; p < buf+entries; p++) {
133 if (*p & ~0U << (sizeof(*buf)*4))
134 big++;
135 if (*p & ((1 << (sizeof(*buf)*4))-1))
136 small++;
137 }
138 if (big > small) {
Denis Vlasenkoea620772006-10-14 02:23:43 +0000139 bb_error_msg("assuming reversed byte order, "
140 "use -n to force native byte order");
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000141 for (p = buf; p < buf+entries; p++)
142 for (i = 0; i < sizeof(*buf)/2; i++) {
143 unsigned char *b = (unsigned char *) p;
144 unsigned char tmp;
145
146 tmp = b[i];
147 b[i] = b[sizeof(*buf)-i-1];
148 b[sizeof(*buf)-i-1] = tmp;
149 }
150 }
151 }
152
153 step = buf[0];
154 if (optInfo) {
maxwen27116ba2015-08-14 21:41:28 +0200155 printf("Sampling_step: %u\n", step);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000156 return EXIT_SUCCESS;
157 }
158
159 total = 0;
160
Denis Vlasenko5415c852008-07-21 23:05:26 +0000161 map = xfopen_for_read(mapFile);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000162
Denis Vlasenko92258542006-11-01 10:25:35 +0000163 while (fgets(mapline, S_LEN, map)) {
164 if (sscanf(mapline, "%llx %s %s", &fn_add, mode, fn_name) != 3)
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000165 bb_error_msg_and_die("%s(%i): wrong map line",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100166 mapFile, maplineno);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000167
Denis Vlasenko92258542006-11-01 10:25:35 +0000168 if (!strcmp(fn_name, "_stext")) /* only elf works like this */ {
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000169 add0 = fn_add;
170 break;
171 }
172 maplineno++;
173 }
174
175 if (!add0)
Rob Landleyb7285002005-09-14 15:28:15 +0000176 bb_error_msg_and_die("can't find \"_stext\" in %s", mapFile);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000177
178 /*
179 * Main loop.
180 */
Denis Vlasenko92258542006-11-01 10:25:35 +0000181 while (fgets(mapline, S_LEN, map)) {
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000182 unsigned int this = 0;
183
Denis Vlasenko92258542006-11-01 10:25:35 +0000184 if (sscanf(mapline, "%llx %s %s", &next_add, mode, next_name) != 3)
Rob Landleyb7285002005-09-14 15:28:15 +0000185 bb_error_msg_and_die("%s(%i): wrong map line",
Denis Vlasenko92258542006-11-01 10:25:35 +0000186 mapFile, maplineno);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000187
188 header_printed = 0;
189
190 /* ignore any LEADING (before a '[tT]' symbol is found)
191 Absolute symbols */
192 if ((*mode == 'A' || *mode == '?') && total == 0) continue;
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100193 if (*mode != 'T' && *mode != 't'
194 && *mode != 'W' && *mode != 'w'
195 ) {
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200196 break; /* only text is profiled */
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100197 }
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000198
199 if (indx >= len / sizeof(*buf))
200 bb_error_msg_and_die("profile address out of range. "
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100201 "Wrong map file?");
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000202
203 while (indx < (next_add-add0)/step) {
204 if (optBins && (buf[indx] || optAll)) {
205 if (!header_printed) {
Denis Vlasenko92258542006-11-01 10:25:35 +0000206 printf("%s:\n", fn_name);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000207 header_printed = 1;
208 }
Denis Vlasenko92258542006-11-01 10:25:35 +0000209 printf("\t%"PRIx64"\t%u\n", (indx - 1)*step + add0, buf[indx]);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000210 }
211 this += buf[indx++];
212 }
213 total += this;
214
215 if (optBins) {
216 if (optVerbose || this > 0)
Denis Vlasenko92258542006-11-01 10:25:35 +0000217 printf(" total\t\t\t\t%u\n", this);
Denis Vlasenko1d426652008-03-17 09:09:09 +0000218 } else if ((this || optAll)
219 && (fn_len = next_add-fn_add) != 0
220 ) {
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000221 if (optVerbose)
maxwen27116ba2015-08-14 21:41:28 +0200222 printf("%016llx %-40s %6u %8.4f\n", fn_add,
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100223 fn_name, this, this/(double)fn_len);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000224 else
maxwen27116ba2015-08-14 21:41:28 +0200225 printf("%6u %-40s %8.4f\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100226 this, fn_name, this/(double)fn_len);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000227 if (optSub) {
228 unsigned long long scan;
229
230 for (scan = (fn_add-add0)/step + 1;
231 scan < (next_add-add0)/step; scan++) {
232 unsigned long long addr;
233
234 addr = (scan - 1)*step + add0;
235 printf("\t%#llx\t%s+%#llx\t%u\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100236 addr, fn_name, addr - fn_add,
237 buf[scan]);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000238 }
239 }
240 }
241
242 fn_add = next_add;
Denis Vlasenko92258542006-11-01 10:25:35 +0000243 strcpy(fn_name, next_name);
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000244
245 maplineno++;
246 }
247
248 /* clock ticks, out of kernel text - probably modules */
maxwen27116ba2015-08-14 21:41:28 +0200249 printf("%6u %s\n", buf[len/sizeof(*buf)-1], "*unknown*");
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000250
251 /* trailer */
252 if (optVerbose)
maxwen27116ba2015-08-14 21:41:28 +0200253 printf("%016x %-40s %6u %8.4f\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100254 0, "total", total, total/(double)(fn_add-add0));
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000255 else
maxwen27116ba2015-08-14 21:41:28 +0200256 printf("%6u %-40s %8.4f\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100257 total, "total", total/(double)(fn_add-add0));
Paul Mundt8b2d02e2005-05-20 17:22:18 +0000258
259 fclose(map);
260 free(buf);
261
262 return EXIT_SUCCESS;
263}