recordmcount.pl 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  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. ".kprobes.text" => 1,
  131. ".text.unlikely" => 1,
  132. );
  133. # Note: we are nice to C-programmers here, thus we skip the '||='-idiom.
  134. $objdump = 'objdump' if (!$objdump);
  135. $objcopy = 'objcopy' if (!$objcopy);
  136. $cc = 'gcc' if (!$cc);
  137. $ld = 'ld' if (!$ld);
  138. $nm = 'nm' if (!$nm);
  139. $rm = 'rm' if (!$rm);
  140. $mv = 'mv' if (!$mv);
  141. #print STDERR "running: $P '$arch' '$objdump' '$objcopy' '$cc' '$ld' " .
  142. # "'$nm' '$rm' '$mv' '$inputfile'\n";
  143. my %locals; # List of local (static) functions
  144. my %weak; # List of weak functions
  145. my %convert; # List of local functions used that needs conversion
  146. my $type;
  147. my $local_regex; # Match a local function (return function)
  148. my $weak_regex; # Match a weak function (return function)
  149. my $section_regex; # Find the start of a section
  150. my $function_regex; # Find the name of a function
  151. # (return offset and func name)
  152. my $mcount_regex; # Find the call site to mcount (return offset)
  153. my $mcount_adjust; # Address adjustment to mcount offset
  154. my $alignment; # The .align value to use for $mcount_section
  155. my $section_type; # Section header plus possible alignment command
  156. my $can_use_local = 0; # If we can use local function references
  157. # Shut up recordmcount if user has older objcopy
  158. my $quiet_recordmcount = ".tmp_quiet_recordmcount";
  159. my $print_warning = 1;
  160. $print_warning = 0 if ( -f $quiet_recordmcount);
  161. ##
  162. # check_objcopy - whether objcopy supports --globalize-symbols
  163. #
  164. # --globalize-symbols came out in 2.17, we must test the version
  165. # of objcopy, and if it is less than 2.17, then we can not
  166. # record local functions.
  167. sub check_objcopy
  168. {
  169. open (IN, "$objcopy --version |") or die "error running $objcopy";
  170. while (<IN>) {
  171. if (/objcopy.*\s(\d+)\.(\d+)/) {
  172. $can_use_local = 1 if ($1 > 2 || ($1 == 2 && $2 >= 17));
  173. last;
  174. }
  175. }
  176. close (IN);
  177. if (!$can_use_local && $print_warning) {
  178. print STDERR "WARNING: could not find objcopy version or version " .
  179. "is less than 2.17.\n" .
  180. "\tLocal function references are disabled.\n";
  181. open (QUIET, ">$quiet_recordmcount");
  182. printf QUIET "Disables the warning from recordmcount.pl\n";
  183. close QUIET;
  184. }
  185. }
  186. if ($arch =~ /(x86(_64)?)|(i386)/) {
  187. if ($bits == 64) {
  188. $arch = "x86_64";
  189. } else {
  190. $arch = "i386";
  191. }
  192. }
  193. #
  194. # We base the defaults off of i386, the other archs may
  195. # feel free to change them in the below if statements.
  196. #
  197. $local_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\S+)";
  198. $weak_regex = "^[0-9a-fA-F]+\\s+([wW])\\s+(\\S+)";
  199. $section_regex = "Disassembly of section\\s+(\\S+):";
  200. $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:";
  201. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount\$";
  202. $section_type = '@progbits';
  203. $mcount_adjust = 0;
  204. $type = ".long";
  205. if ($arch eq "x86_64") {
  206. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount([+-]0x[0-9a-zA-Z]+)?\$";
  207. $type = ".quad";
  208. $alignment = 8;
  209. $mcount_adjust = -1;
  210. # force flags for this arch
  211. $ld .= " -m elf_x86_64";
  212. $objdump .= " -M x86-64";
  213. $objcopy .= " -O elf64-x86-64";
  214. $cc .= " -m64";
  215. } elsif ($arch eq "i386") {
  216. $alignment = 4;
  217. $mcount_adjust = -1;
  218. # force flags for this arch
  219. $ld .= " -m elf_i386";
  220. $objdump .= " -M i386";
  221. $objcopy .= " -O elf32-i386";
  222. $cc .= " -m32";
  223. } elsif ($arch eq "s390" && $bits == 32) {
  224. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_390_32\\s+_mcount\$";
  225. $mcount_adjust = -4;
  226. $alignment = 4;
  227. $ld .= " -m elf_s390";
  228. $cc .= " -m31";
  229. } elsif ($arch eq "s390" && $bits == 64) {
  230. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_390_(PC|PLT)32DBL\\s+_mcount\\+0x2\$";
  231. $mcount_adjust = -8;
  232. $alignment = 8;
  233. $type = ".quad";
  234. $ld .= " -m elf64_s390";
  235. $cc .= " -m64";
  236. } elsif ($arch eq "sh") {
  237. $alignment = 2;
  238. # force flags for this arch
  239. $ld .= " -m shlelf_linux";
  240. $objcopy .= " -O elf32-sh-linux";
  241. $cc .= " -m32";
  242. } elsif ($arch eq "powerpc") {
  243. $local_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\.?\\S+)";
  244. $function_regex = "^([0-9a-fA-F]+)\\s+<(\\.?.*?)>:";
  245. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s\\.?_mcount\$";
  246. if ($bits == 64) {
  247. $type = ".quad";
  248. }
  249. } elsif ($arch eq "arm") {
  250. $alignment = 2;
  251. $section_type = '%progbits';
  252. $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_ARM_(CALL|PC24|THM_CALL)" .
  253. "\\s+(__gnu_mcount_nc|mcount)\$";
  254. } elsif ($arch eq "ia64") {
  255. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
  256. $type = "data8";
  257. if ($is_module eq "0") {
  258. $cc .= " -mconstant-gp";
  259. }
  260. } elsif ($arch eq "sparc64") {
  261. # In the objdump output there are giblets like:
  262. # 0000000000000000 <igmp_net_exit-0x18>:
  263. # As there's some data blobs that get emitted into the
  264. # text section before the first instructions and the first
  265. # real symbols. We don't want to match that, so to combat
  266. # this we use '\w' so we'll match just plain symbol names,
  267. # and not those that also include hex offsets inside of the
  268. # '<>' brackets. Actually the generic function_regex setting
  269. # could safely use this too.
  270. $function_regex = "^([0-9a-fA-F]+)\\s+<(\\w*?)>:";
  271. # Sparc64 calls '_mcount' instead of plain 'mcount'.
  272. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
  273. $alignment = 8;
  274. $type = ".xword";
  275. $ld .= " -m elf64_sparc";
  276. $cc .= " -m64";
  277. $objcopy .= " -O elf64-sparc";
  278. } elsif ($arch eq "mips") {
  279. # To enable module support, we need to enable the -mlong-calls option
  280. # of gcc for module, after using this option, we can not get the real
  281. # offset of the calling to _mcount, but the offset of the lui
  282. # instruction or the addiu one. herein, we record the address of the
  283. # first one, and then we can replace this instruction by a branch
  284. # instruction to jump over the profiling function to filter the
  285. # indicated functions, or swith back to the lui instruction to trace
  286. # them, which means dynamic tracing.
  287. #
  288. # c: 3c030000 lui v1,0x0
  289. # c: R_MIPS_HI16 _mcount
  290. # c: R_MIPS_NONE *ABS*
  291. # c: R_MIPS_NONE *ABS*
  292. # 10: 64630000 daddiu v1,v1,0
  293. # 10: R_MIPS_LO16 _mcount
  294. # 10: R_MIPS_NONE *ABS*
  295. # 10: R_MIPS_NONE *ABS*
  296. # 14: 03e0082d move at,ra
  297. # 18: 0060f809 jalr v1
  298. #
  299. # for the kernel:
  300. #
  301. # 10: 03e0082d move at,ra
  302. # 14: 0c000000 jal 0 <loongson_halt>
  303. # 14: R_MIPS_26 _mcount
  304. # 14: R_MIPS_NONE *ABS*
  305. # 14: R_MIPS_NONE *ABS*
  306. # 18: 00020021 nop
  307. if ($is_module eq "0") {
  308. $mcount_regex = "^\\s*([0-9a-fA-F]+): R_MIPS_26\\s+_mcount\$";
  309. } else {
  310. $mcount_regex = "^\\s*([0-9a-fA-F]+): R_MIPS_HI16\\s+_mcount\$";
  311. }
  312. $objdump .= " -Melf-trad".$endian."mips ";
  313. if ($endian eq "big") {
  314. $endian = " -EB ";
  315. $ld .= " -melf".$bits."btsmip";
  316. } else {
  317. $endian = " -EL ";
  318. $ld .= " -melf".$bits."ltsmip";
  319. }
  320. $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
  321. $ld .= $endian;
  322. if ($bits == 64) {
  323. $function_regex =
  324. "^([0-9a-fA-F]+)\\s+<(.|[^\$]L.*?|\$[^L].*?|[^\$][^L].*?)>:";
  325. $type = ".dword";
  326. }
  327. } elsif ($arch eq "microblaze") {
  328. # Microblaze calls '_mcount' instead of plain 'mcount'.
  329. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s_mcount\$";
  330. } elsif ($arch eq "blackfin") {
  331. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s__mcount\$";
  332. $mcount_adjust = -4;
  333. } else {
  334. die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
  335. }
  336. my $text_found = 0;
  337. my $read_function = 0;
  338. my $opened = 0;
  339. my $mcount_section = "__mcount_loc";
  340. my $dirname;
  341. my $filename;
  342. my $prefix;
  343. my $ext;
  344. if ($inputfile =~ m,^(.*)/([^/]*)$,) {
  345. $dirname = $1;
  346. $filename = $2;
  347. } else {
  348. $dirname = ".";
  349. $filename = $inputfile;
  350. }
  351. if ($filename =~ m,^(.*)(\.\S),) {
  352. $prefix = $1;
  353. $ext = $2;
  354. } else {
  355. $prefix = $filename;
  356. $ext = "";
  357. }
  358. my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s";
  359. my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o";
  360. check_objcopy();
  361. #
  362. # Step 1: find all the local (static functions) and weak symbols.
  363. # 't' is local, 'w/W' is weak
  364. #
  365. open (IN, "$nm $inputfile|") || die "error running $nm";
  366. while (<IN>) {
  367. if (/$local_regex/) {
  368. $locals{$1} = 1;
  369. } elsif (/$weak_regex/) {
  370. $weak{$2} = $1;
  371. }
  372. }
  373. close(IN);
  374. my @offsets; # Array of offsets of mcount callers
  375. my $ref_func; # reference function to use for offsets
  376. my $offset = 0; # offset of ref_func to section beginning
  377. ##
  378. # update_funcs - print out the current mcount callers
  379. #
  380. # Go through the list of offsets to callers and write them to
  381. # the output file in a format that can be read by an assembler.
  382. #
  383. sub update_funcs
  384. {
  385. return unless ($ref_func and @offsets);
  386. # Sanity check on weak function. A weak function may be overwritten by
  387. # another function of the same name, making all these offsets incorrect.
  388. if (defined $weak{$ref_func}) {
  389. die "$inputfile: ERROR: referencing weak function" .
  390. " $ref_func for mcount\n";
  391. }
  392. # is this function static? If so, note this fact.
  393. if (defined $locals{$ref_func}) {
  394. # only use locals if objcopy supports globalize-symbols
  395. if (!$can_use_local) {
  396. return;
  397. }
  398. $convert{$ref_func} = 1;
  399. }
  400. # Loop through all the mcount caller offsets and print a reference
  401. # to the caller based from the ref_func.
  402. if (!$opened) {
  403. open(FILE, ">$mcount_s") || die "can't create $mcount_s\n";
  404. $opened = 1;
  405. print FILE "\t.section $mcount_section,\"a\",$section_type\n";
  406. print FILE "\t.align $alignment\n" if (defined($alignment));
  407. }
  408. foreach my $cur_offset (@offsets) {
  409. printf FILE "\t%s %s + %d\n", $type, $ref_func, $cur_offset - $offset;
  410. }
  411. }
  412. #
  413. # Step 2: find the sections and mcount call sites
  414. #
  415. open(IN, "$objdump -hdr $inputfile|") || die "error running $objdump";
  416. my $text;
  417. # read headers first
  418. my $read_headers = 1;
  419. while (<IN>) {
  420. if ($read_headers && /$mcount_section/) {
  421. #
  422. # Somehow the make process can execute this script on an
  423. # object twice. If it does, we would duplicate the mcount
  424. # section and it will cause the function tracer self test
  425. # to fail. Check if the mcount section exists, and if it does,
  426. # warn and exit.
  427. #
  428. print STDERR "ERROR: $mcount_section already in $inputfile\n" .
  429. "\tThis may be an indication that your build is corrupted.\n" .
  430. "\tDelete $inputfile and try again. If the same object file\n" .
  431. "\tstill causes an issue, then disable CONFIG_DYNAMIC_FTRACE.\n";
  432. exit(-1);
  433. }
  434. # is it a section?
  435. if (/$section_regex/) {
  436. $read_headers = 0;
  437. # Only record text sections that we know are safe
  438. $read_function = defined($text_sections{$1});
  439. # print out any recorded offsets
  440. update_funcs();
  441. # reset all markers and arrays
  442. $text_found = 0;
  443. undef($ref_func);
  444. undef(@offsets);
  445. # section found, now is this a start of a function?
  446. } elsif ($read_function && /$function_regex/) {
  447. $text_found = 1;
  448. $text = $2;
  449. # if this is either a local function or a weak function
  450. # keep looking for functions that are global that
  451. # we can use safely.
  452. if (!defined($locals{$text}) && !defined($weak{$text})) {
  453. $ref_func = $text;
  454. $read_function = 0;
  455. $offset = hex $1;
  456. } else {
  457. # if we already have a function, and this is weak, skip it
  458. if (!defined($ref_func) && !defined($weak{$text}) &&
  459. # PPC64 can have symbols that start with .L and
  460. # gcc considers these special. Don't use them!
  461. $text !~ /^\.L/) {
  462. $ref_func = $text;
  463. $offset = hex $1;
  464. }
  465. }
  466. }
  467. # is this a call site to mcount? If so, record it to print later
  468. if ($text_found && /$mcount_regex/) {
  469. push(@offsets, (hex $1) + $mcount_adjust);
  470. }
  471. }
  472. # dump out anymore offsets that may have been found
  473. update_funcs();
  474. # If we did not find any mcount callers, we are done (do nothing).
  475. if (!$opened) {
  476. exit(0);
  477. }
  478. close(FILE);
  479. #
  480. # Step 3: Compile the file that holds the list of call sites to mcount.
  481. #
  482. `$cc -o $mcount_o -c $mcount_s`;
  483. my @converts = keys %convert;
  484. #
  485. # Step 4: Do we have sections that started with local functions?
  486. #
  487. if ($#converts >= 0) {
  488. my $globallist = "";
  489. my $locallist = "";
  490. foreach my $con (@converts) {
  491. $globallist .= " --globalize-symbol $con";
  492. $locallist .= " --localize-symbol $con";
  493. }
  494. my $globalobj = $dirname . "/.tmp_gl_" . $filename;
  495. my $globalmix = $dirname . "/.tmp_mx_" . $filename;
  496. #
  497. # Step 5: set up each local function as a global
  498. #
  499. `$objcopy $globallist $inputfile $globalobj`;
  500. #
  501. # Step 6: Link the global version to our list.
  502. #
  503. `$ld -r $globalobj $mcount_o -o $globalmix`;
  504. #
  505. # Step 7: Convert the local functions back into local symbols
  506. #
  507. `$objcopy $locallist $globalmix $inputfile`;
  508. # Remove the temp files
  509. `$rm $globalobj $globalmix`;
  510. } else {
  511. my $mix = $dirname . "/.tmp_mx_" . $filename;
  512. #
  513. # Step 8: Link the object with our list of call sites object.
  514. #
  515. `$ld -r $inputfile $mcount_o -o $mix`;
  516. #
  517. # Step 9: Move the result back to the original object.
  518. #
  519. `$mv $mix $inputfile`;
  520. }
  521. # Clean up the temp files
  522. `$rm $mcount_o $mcount_s`;
  523. exit(0);