recordmcount.pl 15 KB

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