2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-05-20 22:52:18 +05:30
|
|
|
/*
|
|
|
|
* readprofile.c - used to read /proc/profile
|
|
|
|
*
|
|
|
|
* Copyright (C) 1994,1996 Alessandro Rubini (rubini@ipvvis.unipv.it)
|
|
|
|
*
|
2006-08-03 21:11:12 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2005-05-20 22:52:18 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2008-03-17 14:39:09 +05:30
|
|
|
* 1999-02-22 Arkadiusz Mickiewicz <misiek@pld.ORG.PL>
|
2005-05-20 22:52:18 +05:30
|
|
|
* - added Native Language Support
|
|
|
|
* 1999-09-01 Stephane Eranian <eranian@cello.hpl.hp.com>
|
|
|
|
* - 64bit clean patch
|
|
|
|
* 3Feb2001 Andrew Morton <andrewm@uow.edu.au>
|
|
|
|
* - -M option to write profile multiplier.
|
|
|
|
* 2001-11-07 Werner Almesberger <wa@almesberger.net>
|
|
|
|
* - byte order auto-detection and -n option
|
|
|
|
* 2001-11-09 Werner Almesberger <wa@almesberger.net>
|
|
|
|
* - skip step size (index 0)
|
|
|
|
* 2002-03-09 John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
* - make maplineno do something
|
|
|
|
* 2002-11-28 Mads Martin Joergensen +
|
|
|
|
* - also try /boot/System.map-`uname -r`
|
|
|
|
* 2003-04-09 Werner Almesberger <wa@almesberger.net>
|
|
|
|
* - fixed off-by eight error and improved heuristics in byte order detection
|
|
|
|
* 2003-08-12 Nikita Danilov <Nikita@Namesys.COM>
|
|
|
|
* - added -s option; example of use:
|
|
|
|
* "readprofile -s -m /boot/System.map-test | grep __d_lookup | sort -n -k3"
|
|
|
|
*
|
|
|
|
* Taken from util-linux and adapted for busybox by
|
|
|
|
* Paul Mundt <lethal@linux-sh.org>.
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-08-03 21:11:12 +05:30
|
|
|
#include <sys/utsname.h>
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
#define S_LEN 128
|
|
|
|
|
|
|
|
/* These are the defaults */
|
2007-08-13 02:28:27 +05:30
|
|
|
static const char defaultmap[] ALIGN1 = "/boot/System.map";
|
|
|
|
static const char defaultpro[] ALIGN1 = "/proc/profile";
|
2005-05-20 22:52:18 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int readprofile_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int readprofile_main(int argc UNUSED_PARAM, char **argv)
|
2005-05-20 22:52:18 +05:30
|
|
|
{
|
|
|
|
FILE *map;
|
2008-03-17 14:39:09 +05:30
|
|
|
const char *mapFile, *proFile;
|
2006-11-01 15:55:35 +05:30
|
|
|
unsigned long indx = 1;
|
2006-10-14 07:53:43 +05:30
|
|
|
size_t len;
|
2006-11-01 15:55:35 +05:30
|
|
|
uint64_t add0 = 0;
|
2005-05-20 22:52:18 +05:30
|
|
|
unsigned int step;
|
|
|
|
unsigned int *buf, total, fn_len;
|
2006-09-22 14:09:49 +05:30
|
|
|
unsigned long long fn_add, next_add; /* current and next address */
|
2005-05-20 22:52:18 +05:30
|
|
|
char fn_name[S_LEN], next_name[S_LEN]; /* current and next name */
|
|
|
|
char mapline[S_LEN];
|
2006-11-01 15:55:35 +05:30
|
|
|
char mode[8];
|
|
|
|
int maplineno = 1;
|
2005-05-20 22:52:18 +05:30
|
|
|
int header_printed;
|
2008-03-17 14:39:09 +05:30
|
|
|
int multiplier = 0;
|
|
|
|
unsigned opt;
|
|
|
|
enum {
|
|
|
|
OPT_M = (1 << 0),
|
|
|
|
OPT_m = (1 << 1),
|
|
|
|
OPT_p = (1 << 2),
|
|
|
|
OPT_n = (1 << 3),
|
|
|
|
OPT_a = (1 << 4),
|
|
|
|
OPT_b = (1 << 5),
|
|
|
|
OPT_s = (1 << 6),
|
|
|
|
OPT_i = (1 << 7),
|
|
|
|
OPT_r = (1 << 8),
|
|
|
|
OPT_v = (1 << 9),
|
|
|
|
};
|
|
|
|
#define optMult (opt & OPT_M)
|
|
|
|
#define optNative (opt & OPT_n)
|
|
|
|
#define optAll (opt & OPT_a)
|
|
|
|
#define optBins (opt & OPT_b)
|
|
|
|
#define optSub (opt & OPT_s)
|
|
|
|
#define optInfo (opt & OPT_i)
|
|
|
|
#define optReset (opt & OPT_r)
|
|
|
|
#define optVerbose (opt & OPT_v)
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
#define next (current^1)
|
|
|
|
|
|
|
|
proFile = defaultpro;
|
|
|
|
mapFile = defaultmap;
|
|
|
|
|
2008-03-17 14:39:09 +05:30
|
|
|
opt_complementary = "M+"; /* -M N */
|
|
|
|
opt = getopt32(argv, "M:m:p:nabsirv", &multiplier, &mapFile, &proFile);
|
2005-05-20 22:52:18 +05:30
|
|
|
|
2008-03-17 14:39:09 +05:30
|
|
|
if (opt & (OPT_M|OPT_r)) { /* mult or reset, or both */
|
|
|
|
int fd, to_write;
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* When writing the multiplier, if the length of the write is
|
|
|
|
* not sizeof(int), the multiplier is not changed
|
|
|
|
*/
|
2008-03-17 14:39:09 +05:30
|
|
|
to_write = sizeof(int);
|
|
|
|
if (!optMult)
|
2005-05-20 22:52:18 +05:30
|
|
|
to_write = 1; /* sth different from sizeof(int) */
|
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
fd = xopen(defaultpro, O_WRONLY);
|
2007-11-13 23:21:40 +05:30
|
|
|
xwrite(fd, &multiplier, to_write);
|
2005-05-20 22:52:18 +05:30
|
|
|
close(fd);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use an fd for the profiling buffer, to skip stdio overhead
|
|
|
|
*/
|
2007-06-13 12:17:47 +05:30
|
|
|
len = MAXINT(ssize_t);
|
2008-04-20 01:02:08 +05:30
|
|
|
buf = xmalloc_xopen_read_close(proFile, &len);
|
2005-05-20 22:52:18 +05:30
|
|
|
if (!optNative) {
|
2008-04-20 01:02:08 +05:30
|
|
|
int entries = len / sizeof(*buf);
|
2006-11-01 15:55:35 +05:30
|
|
|
int big = 0, small = 0, i;
|
2005-05-20 22:52:18 +05:30
|
|
|
unsigned *p;
|
|
|
|
|
|
|
|
for (p = buf+1; p < buf+entries; p++) {
|
|
|
|
if (*p & ~0U << (sizeof(*buf)*4))
|
|
|
|
big++;
|
|
|
|
if (*p & ((1 << (sizeof(*buf)*4))-1))
|
|
|
|
small++;
|
|
|
|
}
|
|
|
|
if (big > small) {
|
2006-10-14 07:53:43 +05:30
|
|
|
bb_error_msg("assuming reversed byte order, "
|
|
|
|
"use -n to force native byte order");
|
2005-05-20 22:52:18 +05:30
|
|
|
for (p = buf; p < buf+entries; p++)
|
|
|
|
for (i = 0; i < sizeof(*buf)/2; i++) {
|
|
|
|
unsigned char *b = (unsigned char *) p;
|
|
|
|
unsigned char tmp;
|
|
|
|
|
|
|
|
tmp = b[i];
|
|
|
|
b[i] = b[sizeof(*buf)-i-1];
|
|
|
|
b[sizeof(*buf)-i-1] = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
step = buf[0];
|
|
|
|
if (optInfo) {
|
|
|
|
printf("Sampling_step: %i\n", step);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
total = 0;
|
|
|
|
|
2008-07-22 04:35:26 +05:30
|
|
|
map = xfopen_for_read(mapFile);
|
2005-05-20 22:52:18 +05:30
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
while (fgets(mapline, S_LEN, map)) {
|
|
|
|
if (sscanf(mapline, "%llx %s %s", &fn_add, mode, fn_name) != 3)
|
2005-05-20 22:52:18 +05:30
|
|
|
bb_error_msg_and_die("%s(%i): wrong map line",
|
|
|
|
mapFile, maplineno);
|
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
if (!strcmp(fn_name, "_stext")) /* only elf works like this */ {
|
2005-05-20 22:52:18 +05:30
|
|
|
add0 = fn_add;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
maplineno++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!add0)
|
2005-09-14 20:58:15 +05:30
|
|
|
bb_error_msg_and_die("can't find \"_stext\" in %s", mapFile);
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Main loop.
|
|
|
|
*/
|
2006-11-01 15:55:35 +05:30
|
|
|
while (fgets(mapline, S_LEN, map)) {
|
2005-05-20 22:52:18 +05:30
|
|
|
unsigned int this = 0;
|
|
|
|
|
2006-11-01 15:55:35 +05:30
|
|
|
if (sscanf(mapline, "%llx %s %s", &next_add, mode, next_name) != 3)
|
2005-09-14 20:58:15 +05:30
|
|
|
bb_error_msg_and_die("%s(%i): wrong map line",
|
2006-11-01 15:55:35 +05:30
|
|
|
mapFile, maplineno);
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
header_printed = 0;
|
|
|
|
|
|
|
|
/* ignore any LEADING (before a '[tT]' symbol is found)
|
|
|
|
Absolute symbols */
|
|
|
|
if ((*mode == 'A' || *mode == '?') && total == 0) continue;
|
|
|
|
if (*mode != 'T' && *mode != 't' &&
|
|
|
|
*mode != 'W' && *mode != 'w')
|
|
|
|
break; /* only text is profiled */
|
|
|
|
|
|
|
|
if (indx >= len / sizeof(*buf))
|
|
|
|
bb_error_msg_and_die("profile address out of range. "
|
|
|
|
"Wrong map file?");
|
|
|
|
|
|
|
|
while (indx < (next_add-add0)/step) {
|
|
|
|
if (optBins && (buf[indx] || optAll)) {
|
|
|
|
if (!header_printed) {
|
2006-11-01 15:55:35 +05:30
|
|
|
printf("%s:\n", fn_name);
|
2005-05-20 22:52:18 +05:30
|
|
|
header_printed = 1;
|
|
|
|
}
|
2006-11-01 15:55:35 +05:30
|
|
|
printf("\t%"PRIx64"\t%u\n", (indx - 1)*step + add0, buf[indx]);
|
2005-05-20 22:52:18 +05:30
|
|
|
}
|
|
|
|
this += buf[indx++];
|
|
|
|
}
|
|
|
|
total += this;
|
|
|
|
|
|
|
|
if (optBins) {
|
|
|
|
if (optVerbose || this > 0)
|
2006-11-01 15:55:35 +05:30
|
|
|
printf(" total\t\t\t\t%u\n", this);
|
2008-03-17 14:39:09 +05:30
|
|
|
} else if ((this || optAll)
|
|
|
|
&& (fn_len = next_add-fn_add) != 0
|
|
|
|
) {
|
2005-05-20 22:52:18 +05:30
|
|
|
if (optVerbose)
|
|
|
|
printf("%016llx %-40s %6i %8.4f\n", fn_add,
|
2006-11-01 15:55:35 +05:30
|
|
|
fn_name, this, this/(double)fn_len);
|
2005-05-20 22:52:18 +05:30
|
|
|
else
|
|
|
|
printf("%6i %-40s %8.4f\n",
|
2006-11-01 15:55:35 +05:30
|
|
|
this, fn_name, this/(double)fn_len);
|
2005-05-20 22:52:18 +05:30
|
|
|
if (optSub) {
|
|
|
|
unsigned long long scan;
|
|
|
|
|
|
|
|
for (scan = (fn_add-add0)/step + 1;
|
|
|
|
scan < (next_add-add0)/step; scan++) {
|
|
|
|
unsigned long long addr;
|
|
|
|
|
|
|
|
addr = (scan - 1)*step + add0;
|
|
|
|
printf("\t%#llx\t%s+%#llx\t%u\n",
|
|
|
|
addr, fn_name, addr - fn_add,
|
|
|
|
buf[scan]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn_add = next_add;
|
2006-11-01 15:55:35 +05:30
|
|
|
strcpy(fn_name, next_name);
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
maplineno++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* clock ticks, out of kernel text - probably modules */
|
|
|
|
printf("%6i %s\n", buf[len/sizeof(*buf)-1], "*unknown*");
|
|
|
|
|
|
|
|
/* trailer */
|
|
|
|
if (optVerbose)
|
|
|
|
printf("%016x %-40s %6i %8.4f\n",
|
2006-11-01 15:55:35 +05:30
|
|
|
0, "total", total, total/(double)(fn_add-add0));
|
2005-05-20 22:52:18 +05:30
|
|
|
else
|
|
|
|
printf("%6i %-40s %8.4f\n",
|
2006-11-01 15:55:35 +05:30
|
|
|
total, "total", total/(double)(fn_add-add0));
|
2005-05-20 22:52:18 +05:30
|
|
|
|
|
|
|
fclose(map);
|
|
|
|
free(buf);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|