recordmcount.pl 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. #!/usr/bin/perl -w
  2. # (c) 2008, Steven Rostedt <srostedt@redhat.com>
  3. # Licensed under the terms of the GNU GPL License version 2
  4. #
  5. # recordmcount.pl - makes a section called __mcount_loc that holds
  6. # all the offsets to the calls to mcount.
  7. #
  8. #
  9. # What we want to end up with this is that each object file will have a
  10. # section called __mcount_loc that will hold the list of pointers to mcount
  11. # callers. After final linking, the vmlinux will have within .init.data the
  12. # list of all callers to mcount between __start_mcount_loc and __stop_mcount_loc.
  13. # Later on boot up, the kernel will read this list, save the locations and turn
  14. # them into nops. When tracing or profiling is later enabled, these locations
  15. # will then be converted back to pointers to some function.
  16. #
  17. # This is no easy feat. This script is called just after the original
  18. # object is compiled and before it is linked.
  19. #
  20. # When parse this object file using 'objdump', the references to the call
  21. # sites are offsets from the section that the call site is in. Hence, all
  22. # functions in a section that has a call site to mcount, will have the
  23. # offset from the beginning of the section and not the beginning of the
  24. # function.
  25. #
  26. # But where this section will reside finally in vmlinx is undetermined at
  27. # this point. So we can't use this kind of offsets to record the final
  28. # address of this call site.
  29. #
  30. # The trick is to change the call offset referring the start of a section to
  31. # referring a function symbol in this section. During the link step, 'ld' will
  32. # compute the final address according to the information we record.
  33. #
  34. # e.g.
  35. #
  36. # .section ".sched.text", "ax"
  37. # [...]
  38. # func1:
  39. # [...]
  40. # call mcount (offset: 0x10)
  41. # [...]
  42. # ret
  43. # .globl fun2
  44. # func2: (offset: 0x20)
  45. # [...]
  46. # [...]
  47. # ret
  48. # func3:
  49. # [...]
  50. # call mcount (offset: 0x30)
  51. # [...]
  52. #
  53. # Both relocation offsets for the mcounts in the above example will be
  54. # offset from .sched.text. If we choose global symbol func2 as a reference and
  55. # make another file called tmp.s with the new offsets:
  56. #
  57. # .section __mcount_loc
  58. # .quad func2 - 0x10
  59. # .quad func2 + 0x10
  60. #
  61. # We can then compile this tmp.s into tmp.o, and link it back to the original
  62. # object.
  63. #
  64. # In our algorithm, we will choose the first global function we meet in this
  65. # section as the reference. But this gets hard if there is no global functions
  66. # in this section. In such a case we have to select a local one. E.g. func1:
  67. #
  68. # .section ".sched.text", "ax"
  69. # func1:
  70. # [...]
  71. # call mcount (offset: 0x10)
  72. # [...]
  73. # ret
  74. # func2:
  75. # [...]
  76. # call mcount (offset: 0x20)
  77. # [...]
  78. # .section "other.section"
  79. #
  80. # If we make the tmp.s the same as above, when we link together with
  81. # the original object, we will end up with two symbols for func1:
  82. # one local, one global. After final compile, we will end up with
  83. # an undefined reference to func1 or a wrong reference to another global
  84. # func1 in other files.
  85. #
  86. # Since local objects can reference local variables, we need to find
  87. # a way to make tmp.o reference the local objects of the original object
  88. # file after it is linked together. To do this, we convert func1
  89. # into a global symbol before linking tmp.o. Then after we link tmp.o
  90. # we will only have a single symbol for func1 that is global.
  91. # We can convert func1 back into a local symbol and we are done.
  92. #
  93. # Here are the steps we take:
  94. #
  95. # 1) Record all the local and weak symbols by using 'nm'
  96. # 2) Use objdump to find all the call site offsets and sections for
  97. # mcount.
  98. # 3) Compile the list into its own object.
  99. # 4) Do we have to deal with local functions? If not, go to step 8.
  100. # 5) Make an object that converts these local functions to global symbols
  101. # with objcopy.
  102. # 6) Link together this new object with the list object.
  103. # 7) Convert the local functions back to local symbols and rename
  104. # the result as the original object.
  105. # 8) Link the object with the list object.
  106. # 9) Move the result back to the original object.
  107. #
  108. use strict;
  109. my $P = $0;
  110. $P =~ s@.*/@@g;
  111. my $V = '0.1';
  112. if ($#ARGV != 11) {
  113. print "usage: $P arch endian bits objdump objcopy cc ld nm rm mv is_module inputfile\n";
  114. print "version: $V\n";
  115. exit(1);
  116. }
  117. my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
  118. $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
  119. # This file refers to mcount and shouldn't be ftraced, so lets' ignore it
  120. if ($inputfile =~ m,kernel/trace/ftrace\.o$,) {
  121. exit(0);
  122. }
  123. # Acceptable sections to record.
  124. my %text_sections = (
  125. ".text" => 1,
  126. ".ref.text" => 1,
  127. ".sched.text" => 1,
  128. ".spinlock.text" => 1,
  129. ".irqentry.text" => 1,
  130. ".softirqentry.text" => 1,
  131. ".kprobes.text" => 1,
  132. ".cpuidle.text" => 1,
  133. ".text.unlikely" => 1,
  134. );
  135. # Note: we are nice to C-programmers here, thus we skip the '||='-idiom.
  136. $objdump = 'objdump' if (!$objdump);
  137. $objcopy = 'objcopy' if (!$objcopy);
  138. $cc = 'gcc' if (!$cc);
  139. $ld = 'ld' if (!$ld);
  140. $nm = 'nm' if (!$nm);
  141. $rm = 'rm' if (!$rm);
  142. $mv = 'mv' if (!$mv);
  143. #print STDERR "running: $P '$arch' '$objdump' '$objcopy' '$cc' '$ld' " .
  144. # "'$nm' '$rm' '$mv' '$inputfile'\n";
  145. my %locals; # List of local (static) functions
  146. my %weak; # List of weak functions
  147. my %convert; # List of local functions used that needs conversion
  148. my $type;
  149. my $local_regex; # Match a local function (return function)
  150. my $weak_regex; # Match a weak function (return function)
  151. my $section_regex; # Find the start of a section
  152. my $function_regex; # Find the name of a function
  153. # (return offset and func name)
  154. my $mcount_regex; # Find the call site to mcount (return offset)
  155. my $mcount_adjust; # Address adjustment to mcount offset
  156. my $alignment; # The .align value to use for $mcount_section
  157. my $section_type; # Section header plus possible alignment command
  158. my $can_use_local = 0; # If we can use local function references
  159. # Shut up recordmcount if user has older objcopy
  160. my $quiet_recordmcount = ".tmp_quiet_recordmcount";
  161. my $print_warning = 1;
  162. $print_warning = 0 if ( -f $quiet_recordmcount);
  163. ##
  164. # check_objcopy - whether objcopy supports --globalize-symbols
  165. #
  166. # --globalize-symbols came out in 2.17, we must test the version
  167. # of objcopy, and if it is less than 2.17, then we can not
  168. # record local functions.
  169. sub check_objcopy
  170. {
  171. open (IN, "$objcopy --version |") or die "error running $objcopy";
  172. while (<IN>) {
  173. if (/objcopy.*\s(\d+)\.(\d+)/) {
  174. $can_use_local = 1 if ($1 > 2 || ($1 == 2 && $2 >= 17));
  175. last;
  176. }
  177. }
  178. close (IN);
  179. if (!$can_use_local && $print_warning) {
  180. print STDERR "WARNING: could not find objcopy version or version " .
  181. "is less than 2.17.\n" .
  182. "\tLocal function references are disabled.\n";
  183. open (QUIET, ">$quiet_recordmcount");
  184. printf QUIET "Disables the warning from recordmcount.pl\n";
  185. close QUIET;
  186. }
  187. }
  188. if ($arch =~ /(x86(_64)?)|(i386)/) {
  189. if ($bits == 64) {
  190. $arch = "x86_64";
  191. } else {
  192. $arch = "i386";
  193. }
  194. }
  195. #
  196. # We base the defaults off of i386, the other archs may
  197. # feel free to change them in the below if statements.
  198. #
  199. $local_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\S+)";
  200. $weak_regex = "^[0-9a-fA-F]+\\s+([wW])\\s+(\\S+)";
  201. $section_regex = "Disassembly of section\\s+(\\S+):";
  202. $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:";
  203. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s(mcount|__fentry__)\$";
  204. $section_type = '@progbits';
  205. $mcount_adjust = 0;
  206. $type = ".long";
  207. if ($arch eq "x86_64") {
  208. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s(mcount|__fentry__)([+-]0x[0-9a-zA-Z]+)?\$";
  209. $type = ".quad";
  210. $alignment = 8;
  211. $mcount_adjust = -1;
  212. # force flags for this arch
  213. $ld .= " -m elf_x86_64";
  214. $objdump .= " -M x86-64";
  215. $objcopy .= " -O elf64-x86-64";
  216. $cc .= " -m64";
  217. } elsif ($arch eq "i386") {
  218. $alignment = 4;
  219. $mcount_adjust = -1;
  220. # force flags for this arch
  221. $ld .= " -m elf_i386";
  222. $objdump .= " -M i386";
  223. $objcopy .= " -O elf32-i386";
  224. $cc .= " -m32";
  225. } elsif ($arch eq "s390" && $bits == 64) {
  226. if ($cc =~ /-DCC_USING_HOTPATCH/) {
  227. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*c0 04 00 00 00 00\\s*brcl\\s*0,[0-9a-f]+ <([^\+]*)>\$";
  228. $mcount_adjust = 0;
  229. } else {
  230. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_390_(PC|PLT)32DBL\\s+_mcount\\+0x2\$";
  231. $mcount_adjust = -14;
  232. }
  233. $alignment = 8;
  234. $type = ".quad";
  235. $ld .= " -m elf64_s390";
  236. $cc .= " -m64";
  237. } elsif ($arch eq "sh") {
  238. $alignment = 2;
  239. # force flags for this arch
  240. $ld .= " -m shlelf_linux";
  241. $objcopy .= " -O elf32-sh-linux";
  242. } elsif ($arch eq "powerpc") {
  243. $local_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\.?\\S+)";
  244. # See comment in the sparc64 section for why we use '\w'.
  245. $function_regex = "^([0-9a-fA-F]+)\\s+<(\\.?\\w*?)>:";
  246. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s\\.?_mcount\$";
  247. if ($bits == 64) {
  248. $type = ".quad";
  249. }
  250. } elsif ($arch eq "arm") {
  251. $alignment = 2;
  252. $section_type = '%progbits';
  253. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_ARM_(CALL|PC24|THM_CALL)" .
  254. "\\s+(__gnu_mcount_nc|mcount)\$";
  255. } elsif ($arch eq "arm64") {
  256. $alignment = 3;
  257. $section_type = '%progbits';
  258. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_AARCH64_CALL26\\s+_mcount\$";
  259. $type = ".quad";
  260. } elsif ($arch eq "ia64") {
  261. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
  262. $type = "data8";
  263. if ($is_module eq "0") {
  264. $cc .= " -mconstant-gp";
  265. }
  266. } elsif ($arch eq "sparc64") {
  267. # In the objdump output there are giblets like:
  268. # 0000000000000000 <igmp_net_exit-0x18>:
  269. # As there's some data blobs that get emitted into the
  270. # text section before the first instructions and the first
  271. # real symbols. We don't want to match that, so to combat
  272. # this we use '\w' so we'll match just plain symbol names,
  273. # and not those that also include hex offsets inside of the
  274. # '<>' brackets. Actually the generic function_regex setting
  275. # could safely use this too.
  276. $function_regex = "^([0-9a-fA-F]+)\\s+<(\\w*?)>:";
  277. # Sparc64 calls '_mcount' instead of plain 'mcount'.
  278. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
  279. $alignment = 8;
  280. $type = ".xword";
  281. $ld .= " -m elf64_sparc";
  282. $cc .= " -m64";
  283. $objcopy .= " -O elf64-sparc";
  284. } elsif ($arch eq "mips") {
  285. # To enable module support, we need to enable the -mlong-calls option
  286. # of gcc for module, after using this option, we can not get the real
  287. # offset of the calling to _mcount, but the offset of the lui
  288. # instruction or the addiu one. herein, we record the address of the
  289. # first one, and then we can replace this instruction by a branch
  290. # instruction to jump over the profiling function to filter the
  291. # indicated functions, or swith back to the lui instruction to trace
  292. # them, which means dynamic tracing.
  293. #
  294. # c: 3c030000 lui v1,0x0
  295. # c: R_MIPS_HI16 _mcount
  296. # c: R_MIPS_NONE *ABS*
  297. # c: R_MIPS_NONE *ABS*
  298. # 10: 64630000 daddiu v1,v1,0
  299. # 10: R_MIPS_LO16 _mcount
  300. # 10: R_MIPS_NONE *ABS*
  301. # 10: R_MIPS_NONE *ABS*
  302. # 14: 03e0082d move at,ra
  303. # 18: 0060f809 jalr v1
  304. #
  305. # for the kernel:
  306. #
  307. # 10: 03e0082d move at,ra
  308. # 14: 0c000000 jal 0 <loongson_halt>
  309. # 14: R_MIPS_26 _mcount
  310. # 14: R_MIPS_NONE *ABS*
  311. # 14: R_MIPS_NONE *ABS*
  312. # 18: 00020021 nop
  313. if ($is_module eq "0") {
  314. $mcount_regex = "^\\s*([0-9a-fA-F]+): R_MIPS_26\\s+_mcount\$";
  315. } else {
  316. $mcount_regex = "^\\s*([0-9a-fA-F]+): R_MIPS_HI16\\s+_mcount\$";
  317. }
  318. $objdump .= " -Melf-trad".$endian."mips ";
  319. if ($endian eq "big") {
  320. $endian = " -EB ";
  321. $ld .= " -melf".$bits."btsmip";
  322. } else {
  323. $endian = " -EL ";
  324. $ld .= " -melf".$bits."ltsmip";
  325. }
  326. $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
  327. $ld .= $endian;
  328. if ($bits == 64) {
  329. $function_regex =
  330. "^([0-9a-fA-F]+)\\s+<(.|[^\$]L.*?|\$[^L].*?|[^\$][^L].*?)>:";
  331. $type = ".dword";
  332. }
  333. } elsif ($arch eq "microblaze") {
  334. # Microblaze calls '_mcount' instead of plain 'mcount'.
  335. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
  336. } elsif ($arch eq "blackfin") {
  337. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
  338. $mcount_adjust = -4;
  339. } elsif ($arch eq "tilegx" || $arch eq "tile") {
  340. # Default to the newer TILE-Gx architecture if only "tile" is given.
  341. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
  342. $type = ".quad";
  343. $alignment = 8;
  344. } else {
  345. die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
  346. }
  347. my $text_found = 0;
  348. my $read_function = 0;
  349. my $opened = 0;
  350. my $mcount_section = "__mcount_loc";
  351. my $dirname;
  352. my $filename;
  353. my $prefix;
  354. my $ext;
  355. if ($inputfile =~ m,^(.*)/([^/]*)$,) {
  356. $dirname = $1;
  357. $filename = $2;
  358. } else {
  359. $dirname = ".";
  360. $filename = $inputfile;
  361. }
  362. if ($filename =~ m,^(.*)(\.\S),) {
  363. $prefix = $1;
  364. $ext = $2;
  365. } else {
  366. $prefix = $filename;
  367. $ext = "";
  368. }
  369. my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s";
  370. my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o";
  371. check_objcopy();
  372. #
  373. # Step 1: find all the local (static functions) and weak symbols.
  374. # 't' is local, 'w/W' is weak
  375. #
  376. open (IN, "$nm $inputfile|") || die "error running $nm";
  377. while (<IN>) {
  378. if (/$local_regex/) {
  379. $locals{$1} = 1;
  380. } elsif (/$weak_regex/) {
  381. $weak{$2} = $1;
  382. }
  383. }
  384. close(IN);
  385. my @offsets; # Array of offsets of mcount callers
  386. my $ref_func; # reference function to use for offsets
  387. my $offset = 0; # offset of ref_func to section beginning
  388. ##
  389. # update_funcs - print out the current mcount callers
  390. #
  391. # Go through the list of offsets to callers and write them to
  392. # the output file in a format that can be read by an assembler.
  393. #
  394. sub update_funcs
  395. {
  396. return unless ($ref_func and @offsets);
  397. # Sanity check on weak function. A weak function may be overwritten by
  398. # another function of the same name, making all these offsets incorrect.
  399. if (defined $weak{$ref_func}) {
  400. die "$inputfile: ERROR: referencing weak function" .
  401. " $ref_func for mcount\n";
  402. }
  403. # is this function static? If so, note this fact.
  404. if (defined $locals{$ref_func}) {
  405. # only use locals if objcopy supports globalize-symbols
  406. if (!$can_use_local) {
  407. return;
  408. }
  409. $convert{$ref_func} = 1;
  410. }
  411. # Loop through all the mcount caller offsets and print a reference
  412. # to the caller based from the ref_func.
  413. if (!$opened) {
  414. open(FILE, ">$mcount_s") || die "can't create $mcount_s\n";
  415. $opened = 1;
  416. print FILE "\t.section $mcount_section,\"a\",$section_type\n";
  417. print FILE "\t.align $alignment\n" if (defined($alignment));
  418. }
  419. foreach my $cur_offset (@offsets) {
  420. printf FILE "\t%s %s + %d\n", $type, $ref_func, $cur_offset - $offset;
  421. }
  422. }
  423. #
  424. # Step 2: find the sections and mcount call sites
  425. #
  426. open(IN, "$objdump -hdr $inputfile|") || die "error running $objdump";
  427. my $text;
  428. # read headers first
  429. my $read_headers = 1;
  430. while (<IN>) {
  431. if ($read_headers && /$mcount_section/) {
  432. #
  433. # Somehow the make process can execute this script on an
  434. # object twice. If it does, we would duplicate the mcount
  435. # section and it will cause the function tracer self test
  436. # to fail. Check if the mcount section exists, and if it does,
  437. # warn and exit.
  438. #
  439. print STDERR "ERROR: $mcount_section already in $inputfile\n" .
  440. "\tThis may be an indication that your build is corrupted.\n" .
  441. "\tDelete $inputfile and try again. If the same object file\n" .
  442. "\tstill causes an issue, then disable CONFIG_DYNAMIC_FTRACE.\n";
  443. exit(-1);
  444. }
  445. # is it a section?
  446. if (/$section_regex/) {
  447. $read_headers = 0;
  448. # Only record text sections that we know are safe
  449. $read_function = defined($text_sections{$1});
  450. # print out any recorded offsets
  451. update_funcs();
  452. # reset all markers and arrays
  453. $text_found = 0;
  454. undef($ref_func);
  455. undef(@offsets);
  456. # section found, now is this a start of a function?
  457. } elsif ($read_function && /$function_regex/) {
  458. $text_found = 1;
  459. $text = $2;
  460. # if this is either a local function or a weak function
  461. # keep looking for functions that are global that
  462. # we can use safely.
  463. if (!defined($locals{$text}) && !defined($weak{$text})) {
  464. $ref_func = $text;
  465. $read_function = 0;
  466. $offset = hex $1;
  467. } else {
  468. # if we already have a function, and this is weak, skip it
  469. if (!defined($ref_func) && !defined($weak{$text}) &&
  470. # PPC64 can have symbols that start with .L and
  471. # gcc considers these special. Don't use them!
  472. $text !~ /^\.L/) {
  473. $ref_func = $text;
  474. $offset = hex $1;
  475. }
  476. }
  477. }
  478. # is this a call site to mcount? If so, record it to print later
  479. if ($text_found && /$mcount_regex/) {
  480. push(@offsets, (hex $1) + $mcount_adjust);
  481. }
  482. }
  483. # dump out anymore offsets that may have been found
  484. update_funcs();
  485. # If we did not find any mcount callers, we are done (do nothing).
  486. if (!$opened) {
  487. exit(0);
  488. }
  489. close(FILE);
  490. #
  491. # Step 3: Compile the file that holds the list of call sites to mcount.
  492. #
  493. `$cc -o $mcount_o -c $mcount_s`;
  494. my @converts = keys %convert;
  495. #
  496. # Step 4: Do we have sections that started with local functions?
  497. #
  498. if ($#converts >= 0) {
  499. my $globallist = "";
  500. my $locallist = "";
  501. foreach my $con (@converts) {
  502. $globallist .= " --globalize-symbol $con";
  503. $locallist .= " --localize-symbol $con";
  504. }
  505. my $globalobj = $dirname . "/.tmp_gl_" . $filename;
  506. my $globalmix = $dirname . "/.tmp_mx_" . $filename;
  507. #
  508. # Step 5: set up each local function as a global
  509. #
  510. `$objcopy $globallist $inputfile $globalobj`;
  511. #
  512. # Step 6: Link the global version to our list.
  513. #
  514. `$ld -r $globalobj $mcount_o -o $globalmix`;
  515. #
  516. # Step 7: Convert the local functions back into local symbols
  517. #
  518. `$objcopy $locallist $globalmix $inputfile`;
  519. # Remove the temp files
  520. `$rm $globalobj $globalmix`;
  521. } else {
  522. my $mix = $dirname . "/.tmp_mx_" . $filename;
  523. #
  524. # Step 8: Link the object with our list of call sites object.
  525. #
  526. `$ld -r $inputfile $mcount_o -o $mix`;
  527. #
  528. # Step 9: Move the result back to the original object.
  529. #
  530. `$mv $mix $inputfile`;
  531. }
  532. # Clean up the temp files
  533. `$rm $mcount_o $mcount_s`;
  534. exit(0);