bootchartd.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  4. */
  5. //applet:IF_BOOTCHARTD(APPLET(bootchartd, BB_DIR_SBIN, BB_SUID_DROP))
  6. //kbuild:lib-$(CONFIG_BOOTCHARTD) += bootchartd.o
  7. //config:config BOOTCHARTD
  8. //config: bool "bootchartd"
  9. //config: default y
  10. //config: help
  11. //config: bootchartd is commonly used to profile the boot process
  12. //config: for the purpose of speeding it up. In this case, it is started
  13. //config: by the kernel as the init process. This is configured by adding
  14. //config: the init=/sbin/bootchartd option to the kernel command line.
  15. //config:
  16. //config: It can also be used to monitor the resource usage of a specific
  17. //config: application or the running system in general. In this case,
  18. //config: bootchartd is started interactively by running bootchartd start
  19. //config: and stopped using bootchartd stop.
  20. //config:
  21. //config:config FEATURE_BOOTCHARTD_BLOATED_HEADER
  22. //config: bool "Compatible, bloated header"
  23. //config: default y
  24. //config: depends on BOOTCHARTD
  25. //config: help
  26. //config: Create extended header file compatible with "big" bootchartd.
  27. //config: "Big" bootchartd is a shell script and it dumps some
  28. //config: "convenient" info int the header, such as:
  29. //config: title = Boot chart for `hostname` (`date`)
  30. //config: system.uname = `uname -srvm`
  31. //config: system.release = `cat /etc/DISTRO-release`
  32. //config: system.cpu = `grep '^model name' /proc/cpuinfo | head -1` ($cpucount)
  33. //config: system.kernel.options = `cat /proc/cmdline`
  34. //config: This data is not mandatory for bootchart graph generation,
  35. //config: and is considered bloat. Nevertheless, this option
  36. //config: makes bootchartd applet to dump a subset of it.
  37. //config:
  38. //config:config FEATURE_BOOTCHARTD_CONFIG_FILE
  39. //config: bool "Support bootchartd.conf"
  40. //config: default y
  41. //config: depends on BOOTCHARTD
  42. //config: help
  43. //config: Enable reading and parsing of $PWD/bootchartd.conf
  44. //config: and /etc/bootchartd.conf files.
  45. #include "libbb.h"
  46. /* After libbb.h, since it needs sys/types.h on some systems */
  47. #include <sys/utsname.h>
  48. #ifdef __linux__
  49. # include <sys/mount.h>
  50. # ifndef MS_SILENT
  51. # define MS_SILENT (1 << 15)
  52. # endif
  53. # ifndef MNT_DETACH
  54. # define MNT_DETACH 0x00000002
  55. # endif
  56. #endif
  57. #if !ENABLE_TAR && !ENABLE_WERROR
  58. # warning Note: bootchartd requires tar command, but you did not select it.
  59. #elif !ENABLE_FEATURE_SEAMLESS_GZ && !ENABLE_WERROR
  60. # warning Note: bootchartd requires tar -z support, but you did not select it.
  61. #endif
  62. #define BC_VERSION_STR "0.8"
  63. /* For debugging, set to 0:
  64. * strace won't work with DO_SIGNAL_SYNC set to 1.
  65. */
  66. #define DO_SIGNAL_SYNC 1
  67. //$PWD/bootchartd.conf and /etc/bootchartd.conf:
  68. //supported options:
  69. //# Sampling period (in seconds)
  70. //SAMPLE_PERIOD=0.2
  71. //
  72. //not yet supported:
  73. //# tmpfs size
  74. //# (32 MB should suffice for ~20 minutes worth of log data, but YMMV)
  75. //TMPFS_SIZE=32m
  76. //
  77. //# Whether to enable and store BSD process accounting information. The
  78. //# kernel needs to be configured to enable v3 accounting
  79. //# (CONFIG_BSD_PROCESS_ACCT_V3). accton from the GNU accounting utilities
  80. //# is also required.
  81. //PROCESS_ACCOUNTING="no"
  82. //
  83. //# Tarball for the various boot log files
  84. //BOOTLOG_DEST=/var/log/bootchart.tgz
  85. //
  86. //# Whether to automatically stop logging as the boot process completes.
  87. //# The logger will look for known processes that indicate bootup completion
  88. //# at a specific runlevel (e.g. gdm-binary, mingetty, etc.).
  89. //AUTO_STOP_LOGGER="yes"
  90. //
  91. //# Whether to automatically generate the boot chart once the boot logger
  92. //# completes. The boot chart will be generated in $AUTO_RENDER_DIR.
  93. //# Note that the bootchart package must be installed.
  94. //AUTO_RENDER="no"
  95. //
  96. //# Image format to use for the auto-generated boot chart
  97. //# (choose between png, svg and eps).
  98. //AUTO_RENDER_FORMAT="png"
  99. //
  100. //# Output directory for auto-generated boot charts
  101. //AUTO_RENDER_DIR="/var/log"
  102. /* Globals */
  103. struct globals {
  104. char jiffy_line[COMMON_BUFSIZE];
  105. } FIX_ALIASING;
  106. #define G (*(struct globals*)&bb_common_bufsiz1)
  107. #define INIT_G() do { } while (0)
  108. static void dump_file(FILE *fp, const char *filename)
  109. {
  110. int fd = open(filename, O_RDONLY);
  111. if (fd >= 0) {
  112. fputs(G.jiffy_line, fp);
  113. fflush(fp);
  114. bb_copyfd_eof(fd, fileno(fp));
  115. close(fd);
  116. fputc('\n', fp);
  117. }
  118. }
  119. static int dump_procs(FILE *fp, int look_for_login_process)
  120. {
  121. struct dirent *entry;
  122. DIR *dir = opendir("/proc");
  123. int found_login_process = 0;
  124. fputs(G.jiffy_line, fp);
  125. while ((entry = readdir(dir)) != NULL) {
  126. char name[sizeof("/proc/%u/cmdline") + sizeof(int)*3];
  127. int stat_fd;
  128. unsigned pid = bb_strtou(entry->d_name, NULL, 10);
  129. if (errno)
  130. continue;
  131. /* Android's version reads /proc/PID/cmdline and extracts
  132. * non-truncated process name. Do we want to do that? */
  133. sprintf(name, "/proc/%u/stat", pid);
  134. stat_fd = open(name, O_RDONLY);
  135. if (stat_fd >= 0) {
  136. char *p;
  137. char stat_line[4*1024];
  138. int rd = safe_read(stat_fd, stat_line, sizeof(stat_line)-2);
  139. close(stat_fd);
  140. if (rd < 0)
  141. continue;
  142. stat_line[rd] = '\0';
  143. p = strchrnul(stat_line, '\n');
  144. *p++ = '\n';
  145. *p = '\0';
  146. fputs(stat_line, fp);
  147. if (!look_for_login_process)
  148. continue;
  149. p = strchr(stat_line, '(');
  150. if (!p)
  151. continue;
  152. p++;
  153. strchrnul(p, ')')[0] = '\0';
  154. /* Is it gdm, kdm or a getty? */
  155. if (((p[0] == 'g' || p[0] == 'k' || p[0] == 'x') && p[1] == 'd' && p[2] == 'm')
  156. || strstr(p, "getty")
  157. ) {
  158. found_login_process = 1;
  159. }
  160. }
  161. }
  162. closedir(dir);
  163. fputc('\n', fp);
  164. return found_login_process;
  165. }
  166. static char *make_tempdir(void)
  167. {
  168. char template[] = "/tmp/bootchart.XXXXXX";
  169. char *tempdir = xstrdup(mkdtemp(template));
  170. if (!tempdir) {
  171. #ifdef __linux__
  172. /* /tmp is not writable (happens when we are used as init).
  173. * Try to mount a tmpfs, them cd and lazily unmount it.
  174. * Since we unmount it at once, we can mount it anywhere.
  175. * Try a few locations which are likely ti exist.
  176. */
  177. static const char dirs[] = "/mnt\0""/tmp\0""/boot\0""/proc\0";
  178. const char *try_dir = dirs;
  179. while (mount("none", try_dir, "tmpfs", MS_SILENT, "size=16m") != 0) {
  180. try_dir += strlen(try_dir) + 1;
  181. if (!try_dir[0])
  182. bb_perror_msg_and_die("can't %smount tmpfs", "");
  183. }
  184. //bb_error_msg("mounted tmpfs on %s", try_dir);
  185. xchdir(try_dir);
  186. if (umount2(try_dir, MNT_DETACH) != 0) {
  187. bb_perror_msg_and_die("can't %smount tmpfs", "un");
  188. }
  189. #else
  190. bb_perror_msg_and_die("can't create temporary directory");
  191. #endif
  192. } else {
  193. xchdir(tempdir);
  194. }
  195. return tempdir;
  196. }
  197. static void do_logging(unsigned sample_period_us, int process_accounting)
  198. {
  199. FILE *proc_stat = xfopen("proc_stat.log", "w");
  200. FILE *proc_diskstats = xfopen("proc_diskstats.log", "w");
  201. //FILE *proc_netdev = xfopen("proc_netdev.log", "w");
  202. FILE *proc_ps = xfopen("proc_ps.log", "w");
  203. int look_for_login_process = (getppid() == 1);
  204. unsigned count = 60*1000*1000 / sample_period_us; /* ~1 minute */
  205. if (process_accounting) {
  206. close(xopen("kernel_pacct", O_WRONLY | O_CREAT | O_TRUNC));
  207. acct("kernel_pacct");
  208. }
  209. while (--count && !bb_got_signal) {
  210. char *p;
  211. int len = open_read_close("/proc/uptime", G.jiffy_line, sizeof(G.jiffy_line)-2);
  212. if (len < 0)
  213. goto wait_more;
  214. /* /proc/uptime has format "NNNNNN.MM NNNNNNN.MM" */
  215. /* we convert it to "NNNNNNMM\n" (using first value) */
  216. G.jiffy_line[len] = '\0';
  217. p = strchr(G.jiffy_line, '.');
  218. if (!p)
  219. goto wait_more;
  220. while (isdigit(*++p))
  221. p[-1] = *p;
  222. p[-1] = '\n';
  223. p[0] = '\0';
  224. dump_file(proc_stat, "/proc/stat");
  225. dump_file(proc_diskstats, "/proc/diskstats");
  226. //dump_file(proc_netdev, "/proc/net/dev");
  227. if (dump_procs(proc_ps, look_for_login_process)) {
  228. /* dump_procs saw a getty or {g,k,x}dm
  229. * stop logging in 2 seconds:
  230. */
  231. if (count > 2*1000*1000 / sample_period_us)
  232. count = 2*1000*1000 / sample_period_us;
  233. }
  234. fflush_all();
  235. wait_more:
  236. usleep(sample_period_us);
  237. }
  238. }
  239. static void finalize(char *tempdir, const char *prog, int process_accounting)
  240. {
  241. //# Stop process accounting if configured
  242. //local pacct=
  243. //[ -e kernel_pacct ] && pacct=kernel_pacct
  244. FILE *header_fp = xfopen("header", "w");
  245. if (process_accounting)
  246. acct(NULL);
  247. if (prog)
  248. fprintf(header_fp, "profile.process = %s\n", prog);
  249. fputs("version = "BC_VERSION_STR"\n", header_fp);
  250. if (ENABLE_FEATURE_BOOTCHARTD_BLOATED_HEADER) {
  251. char *hostname;
  252. char *kcmdline;
  253. time_t t;
  254. struct tm tm_time;
  255. /* x2 for possible localized weekday/month names */
  256. char date_buf[sizeof("Mon Jun 21 05:29:03 CEST 2010") * 2];
  257. struct utsname unamebuf;
  258. hostname = safe_gethostname();
  259. time(&t);
  260. localtime_r(&t, &tm_time);
  261. strftime(date_buf, sizeof(date_buf), "%a %b %e %H:%M:%S %Z %Y", &tm_time);
  262. fprintf(header_fp, "title = Boot chart for %s (%s)\n", hostname, date_buf);
  263. if (ENABLE_FEATURE_CLEAN_UP)
  264. free(hostname);
  265. uname(&unamebuf); /* never fails */
  266. /* same as uname -srvm */
  267. fprintf(header_fp, "system.uname = %s %s %s %s\n",
  268. unamebuf.sysname,
  269. unamebuf.release,
  270. unamebuf.version,
  271. unamebuf.machine
  272. );
  273. //system.release = `cat /etc/DISTRO-release`
  274. //system.cpu = `grep '^model name' /proc/cpuinfo | head -1` ($cpucount)
  275. kcmdline = xmalloc_open_read_close("/proc/cmdline", NULL);
  276. /* kcmdline includes trailing "\n" */
  277. fprintf(header_fp, "system.kernel.options = %s", kcmdline);
  278. if (ENABLE_FEATURE_CLEAN_UP)
  279. free(kcmdline);
  280. }
  281. fclose(header_fp);
  282. /* Package log files */
  283. system(xasprintf("tar -zcf /var/log/bootlog.tgz header %s *.log", process_accounting ? "kernel_pacct" : ""));
  284. /* Clean up (if we are not in detached tmpfs) */
  285. if (tempdir) {
  286. unlink("header");
  287. unlink("proc_stat.log");
  288. unlink("proc_diskstats.log");
  289. //unlink("proc_netdev.log");
  290. unlink("proc_ps.log");
  291. if (process_accounting)
  292. unlink("kernel_pacct");
  293. rmdir(tempdir);
  294. }
  295. /* shell-based bootchartd tries to run /usr/bin/bootchart if $AUTO_RENDER=yes:
  296. * /usr/bin/bootchart -o "$AUTO_RENDER_DIR" -f $AUTO_RENDER_FORMAT "$BOOTLOG_DEST"
  297. */
  298. }
  299. //usage:#define bootchartd_trivial_usage
  300. //usage: "start [PROG ARGS]|stop|init"
  301. //usage:#define bootchartd_full_usage "\n\n"
  302. //usage: "Create /var/log/bootchart.tgz with boot chart data\n"
  303. //usage: "\nstart: start background logging; with PROG, run PROG, then kill logging with USR1"
  304. //usage: "\nstop: send USR1 to all bootchartd processes"
  305. //usage: "\ninit: start background logging; stop when getty/xdm is seen (for init scripts)"
  306. //usage: "\nUnder PID 1: as init, then exec $bootchart_init, /init, /sbin/init"
  307. int bootchartd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  308. int bootchartd_main(int argc UNUSED_PARAM, char **argv)
  309. {
  310. unsigned sample_period_us;
  311. pid_t parent_pid, logger_pid;
  312. smallint cmd;
  313. int process_accounting;
  314. enum {
  315. CMD_STOP = 0,
  316. CMD_START,
  317. CMD_INIT,
  318. CMD_PID1, /* used to mark pid 1 case */
  319. };
  320. INIT_G();
  321. parent_pid = getpid();
  322. if (argv[1]) {
  323. cmd = index_in_strings("stop\0""start\0""init\0", argv[1]);
  324. if (cmd < 0)
  325. bb_show_usage();
  326. if (cmd == CMD_STOP) {
  327. pid_t *pidList = find_pid_by_name("bootchartd");
  328. while (*pidList != 0) {
  329. if (*pidList != parent_pid)
  330. kill(*pidList, SIGUSR1);
  331. pidList++;
  332. }
  333. return EXIT_SUCCESS;
  334. }
  335. } else {
  336. if (parent_pid != 1)
  337. bb_show_usage();
  338. cmd = CMD_PID1;
  339. }
  340. /* Here we are in START, INIT or CMD_PID1 state */
  341. /* Read config file: */
  342. sample_period_us = 200 * 1000;
  343. process_accounting = 0;
  344. if (ENABLE_FEATURE_BOOTCHARTD_CONFIG_FILE) {
  345. char* token[2];
  346. parser_t *parser = config_open2("/etc/bootchartd.conf" + 5, fopen_for_read);
  347. if (!parser)
  348. parser = config_open2("/etc/bootchartd.conf", fopen_for_read);
  349. while (config_read(parser, token, 2, 0, "#=", PARSE_NORMAL & ~PARSE_COLLAPSE)) {
  350. if (strcmp(token[0], "SAMPLE_PERIOD") == 0 && token[1])
  351. sample_period_us = atof(token[1]) * 1000000;
  352. if (strcmp(token[0], "PROCESS_ACCOUNTING") == 0 && token[1]
  353. && (strcmp(token[1], "on") == 0 || strcmp(token[1], "yes") == 0)
  354. ) {
  355. process_accounting = 1;
  356. }
  357. }
  358. config_close(parser);
  359. if ((int)sample_period_us <= 0)
  360. sample_period_us = 1; /* prevent division by 0 */
  361. }
  362. /* Create logger child: */
  363. logger_pid = fork_or_rexec(argv);
  364. if (logger_pid == 0) { /* child */
  365. char *tempdir;
  366. bb_signals(0
  367. + (1 << SIGUSR1)
  368. + (1 << SIGUSR2)
  369. + (1 << SIGTERM)
  370. + (1 << SIGQUIT)
  371. + (1 << SIGINT)
  372. + (1 << SIGHUP)
  373. , record_signo);
  374. if (DO_SIGNAL_SYNC)
  375. /* Inform parent that we are ready */
  376. raise(SIGSTOP);
  377. /* If we are started by kernel, PATH might be unset.
  378. * In order to find "tar", let's set some sane PATH:
  379. */
  380. if (cmd == CMD_PID1 && !getenv("PATH"))
  381. putenv((char*)bb_PATH_root_path);
  382. tempdir = make_tempdir();
  383. do_logging(sample_period_us, process_accounting);
  384. finalize(tempdir, cmd == CMD_START ? argv[2] : NULL, process_accounting);
  385. return EXIT_SUCCESS;
  386. }
  387. /* parent */
  388. USE_FOR_NOMMU(argv[0][0] &= 0x7f); /* undo fork_or_rexec() damage */
  389. if (DO_SIGNAL_SYNC) {
  390. /* Wait for logger child to set handlers, then unpause it.
  391. * Otherwise with short-lived PROG (e.g. "bootchartd start true")
  392. * we might send SIGUSR1 before logger sets its handler.
  393. */
  394. waitpid(logger_pid, NULL, WUNTRACED);
  395. kill(logger_pid, SIGCONT);
  396. }
  397. if (cmd == CMD_PID1) {
  398. char *bootchart_init = getenv("bootchart_init");
  399. if (bootchart_init)
  400. execl(bootchart_init, bootchart_init, NULL);
  401. execl("/init", "init", NULL);
  402. execl("/sbin/init", "init", NULL);
  403. bb_perror_msg_and_die("can't execute '%s'", "/sbin/init");
  404. }
  405. if (cmd == CMD_START && argv[2]) { /* "start PROG ARGS" */
  406. pid_t pid = xvfork();
  407. if (pid == 0) { /* child */
  408. argv += 2;
  409. BB_EXECVP_or_die(argv);
  410. }
  411. /* parent */
  412. waitpid(pid, NULL, 0);
  413. kill(logger_pid, SIGUSR1);
  414. }
  415. return EXIT_SUCCESS;
  416. }