recordmcount.pl 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  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 is a section in vmlinux called
  10. # __mcount_loc that contains a list of pointers to all the
  11. # call sites in the kernel that call mcount. Later on boot up, the kernel
  12. # will read this list, save the locations and turn them into nops.
  13. # When tracing or profiling is later enabled, these locations will then
  14. # be converted back to pointers to some function.
  15. #
  16. # This is no easy feat. This script is called just after the original
  17. # object is compiled and before it is linked.
  18. #
  19. # The references to the call sites are offsets from the section of text
  20. # that the call site is in. Hence, all functions in a section that
  21. # has a call site to mcount, will have the offset from the beginning of
  22. # the section and not the beginning of the function.
  23. #
  24. # The trick is to find a way to record the beginning of the section.
  25. # The way we do this is to look at the first function in the section
  26. # which will also be the location of that section after final link.
  27. # e.g.
  28. #
  29. # .section ".text.sched"
  30. # .globl my_func
  31. # my_func:
  32. # [...]
  33. # call mcount (offset: 0x5)
  34. # [...]
  35. # ret
  36. # other_func:
  37. # [...]
  38. # call mcount (offset: 0x1b)
  39. # [...]
  40. #
  41. # Both relocation offsets for the mcounts in the above example will be
  42. # offset from .text.sched. If we make another file called tmp.s with:
  43. #
  44. # .section __mcount_loc
  45. # .quad my_func + 0x5
  46. # .quad my_func + 0x1b
  47. #
  48. # We can then compile this tmp.s into tmp.o, and link it to the original
  49. # object.
  50. #
  51. # But this gets hard if my_func is not globl (a static function).
  52. # In such a case we have:
  53. #
  54. # .section ".text.sched"
  55. # my_func:
  56. # [...]
  57. # call mcount (offset: 0x5)
  58. # [...]
  59. # ret
  60. # .globl my_func
  61. # other_func:
  62. # [...]
  63. # call mcount (offset: 0x1b)
  64. # [...]
  65. #
  66. # If we make the tmp.s the same as above, when we link together with
  67. # the original object, we will end up with two symbols for my_func:
  68. # one local, one global. After final compile, we will end up with
  69. # an undefined reference to my_func.
  70. #
  71. # Since local objects can reference local variables, we need to find
  72. # a way to make tmp.o reference the local objects of the original object
  73. # file after it is linked together. To do this, we convert the my_func
  74. # into a global symbol before linking tmp.o. Then after we link tmp.o
  75. # we will only have a single symbol for my_func that is global.
  76. # We can convert my_func back into a local symbol and we are done.
  77. #
  78. # Here are the steps we take:
  79. #
  80. # 1) Record all the local symbols by using 'nm'
  81. # 2) Use objdump to find all the call site offsets and sections for
  82. # mcount.
  83. # 3) Compile the list into its own object.
  84. # 4) Do we have to deal with local functions? If not, go to step 8.
  85. # 5) Make an object that converts these local functions to global symbols
  86. # with objcopy.
  87. # 6) Link together this new object with the list object.
  88. # 7) Convert the local functions back to local symbols and rename
  89. # the result as the original object.
  90. # End.
  91. # 8) Link the object with the list object.
  92. # 9) Move the result back to the original object.
  93. # End.
  94. #
  95. use strict;
  96. my $P = $0;
  97. $P =~ s@.*/@@g;
  98. my $V = '0.1';
  99. if ($#ARGV < 6) {
  100. print "usage: $P arch objdump objcopy cc ld nm rm mv inputfile\n";
  101. print "version: $V\n";
  102. exit(1);
  103. }
  104. my ($arch, $bits, $objdump, $objcopy, $cc,
  105. $ld, $nm, $rm, $mv, $inputfile) = @ARGV;
  106. # Acceptable sections to record.
  107. my %text_sections = (
  108. ".text" => 1,
  109. ".sched.text" => 1,
  110. ".spinlock.text" => 1,
  111. ".irqentry.text" => 1,
  112. );
  113. $objdump = "objdump" if ((length $objdump) == 0);
  114. $objcopy = "objcopy" if ((length $objcopy) == 0);
  115. $cc = "gcc" if ((length $cc) == 0);
  116. $ld = "ld" if ((length $ld) == 0);
  117. $nm = "nm" if ((length $nm) == 0);
  118. $rm = "rm" if ((length $rm) == 0);
  119. $mv = "mv" if ((length $mv) == 0);
  120. #print STDERR "running: $P '$arch' '$objdump' '$objcopy' '$cc' '$ld' " .
  121. # "'$nm' '$rm' '$mv' '$inputfile'\n";
  122. my %locals; # List of local (static) functions
  123. my %weak; # List of weak functions
  124. my %convert; # List of local functions used that needs conversion
  125. my $type;
  126. my $nm_regex; # Find the local functions (return function)
  127. my $section_regex; # Find the start of a section
  128. my $function_regex; # Find the name of a function
  129. # (return offset and func name)
  130. my $mcount_regex; # Find the call site to mcount (return offset)
  131. my $alignment; # The .align value to use for $mcount_section
  132. my $section_type; # Section header plus possible alignment command
  133. if ($arch eq "x86") {
  134. if ($bits == 64) {
  135. $arch = "x86_64";
  136. } else {
  137. $arch = "i386";
  138. }
  139. }
  140. #
  141. # We base the defaults off of i386, the other archs may
  142. # feel free to change them in the below if statements.
  143. #
  144. $nm_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\S+)";
  145. $section_regex = "Disassembly of section\\s+(\\S+):";
  146. $function_regex = "^([0-9a-fA-F]+)\\s+<(.*?)>:";
  147. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount\$";
  148. $section_type = '@progbits';
  149. $type = ".long";
  150. if ($arch eq "x86_64") {
  151. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\smcount([+-]0x[0-9a-zA-Z]+)?\$";
  152. $type = ".quad";
  153. $alignment = 8;
  154. # force flags for this arch
  155. $ld .= " -m elf_x86_64";
  156. $objdump .= " -M x86-64";
  157. $objcopy .= " -O elf64-x86-64";
  158. $cc .= " -m64";
  159. } elsif ($arch eq "i386") {
  160. $alignment = 4;
  161. # force flags for this arch
  162. $ld .= " -m elf_i386";
  163. $objdump .= " -M i386";
  164. $objcopy .= " -O elf32-i386";
  165. $cc .= " -m32";
  166. } elsif ($arch eq "sh") {
  167. $alignment = 2;
  168. # force flags for this arch
  169. $ld .= " -m shlelf_linux";
  170. $objcopy .= " -O elf32-sh-linux";
  171. $cc .= " -m32";
  172. } elsif ($arch eq "powerpc") {
  173. $nm_regex = "^[0-9a-fA-F]+\\s+t\\s+(\\.?\\S+)";
  174. $function_regex = "^([0-9a-fA-F]+)\\s+<(\\.?.*?)>:";
  175. $mcount_regex = "^\\s*([0-9a-fA-F]+):.*\\s\\.?_mcount\$";
  176. if ($bits == 64) {
  177. $type = ".quad";
  178. }
  179. } elsif ($arch eq "arm") {
  180. $alignment = 2;
  181. $section_type = '%progbits';
  182. } else {
  183. die "Arch $arch is not supported with CONFIG_FTRACE_MCOUNT_RECORD";
  184. }
  185. my $text_found = 0;
  186. my $read_function = 0;
  187. my $opened = 0;
  188. my $mcount_section = "__mcount_loc";
  189. my $dirname;
  190. my $filename;
  191. my $prefix;
  192. my $ext;
  193. if ($inputfile =~ m,^(.*)/([^/]*)$,) {
  194. $dirname = $1;
  195. $filename = $2;
  196. } else {
  197. $dirname = ".";
  198. $filename = $inputfile;
  199. }
  200. if ($filename =~ m,^(.*)(\.\S),) {
  201. $prefix = $1;
  202. $ext = $2;
  203. } else {
  204. $prefix = $filename;
  205. $ext = "";
  206. }
  207. my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s";
  208. my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o";
  209. #
  210. # --globalize-symbols came out in 2.17, we must test the version
  211. # of objcopy, and if it is less than 2.17, then we can not
  212. # record local functions.
  213. my $use_locals = 01;
  214. my $local_warn_once = 0;
  215. my $found_version = 0;
  216. open (IN, "$objcopy --version |") || die "error running $objcopy";
  217. while (<IN>) {
  218. if (/objcopy.*\s(\d+)\.(\d+)/) {
  219. my $major = $1;
  220. my $minor = $2;
  221. $found_version = 1;
  222. if ($major < 2 ||
  223. ($major == 2 && $minor < 17)) {
  224. $use_locals = 0;
  225. }
  226. last;
  227. }
  228. }
  229. close (IN);
  230. if (!$found_version) {
  231. print STDERR "WARNING: could not find objcopy version.\n" .
  232. "\tDisabling local function references.\n";
  233. }
  234. #
  235. # Step 1: find all the local (static functions) and weak symbols.
  236. # 't' is local, 'w/W' is weak (we never use a weak function)
  237. #
  238. open (IN, "$nm $inputfile|") || die "error running $nm";
  239. while (<IN>) {
  240. if (/$nm_regex/) {
  241. $locals{$1} = 1;
  242. } elsif (/^[0-9a-fA-F]+\s+([wW])\s+(\S+)/) {
  243. $weak{$2} = $1;
  244. }
  245. }
  246. close(IN);
  247. my @offsets; # Array of offsets of mcount callers
  248. my $ref_func; # reference function to use for offsets
  249. my $offset = 0; # offset of ref_func to section beginning
  250. ##
  251. # update_funcs - print out the current mcount callers
  252. #
  253. # Go through the list of offsets to callers and write them to
  254. # the output file in a format that can be read by an assembler.
  255. #
  256. sub update_funcs
  257. {
  258. return if ($#offsets < 0);
  259. defined($ref_func) || die "No function to reference";
  260. # A section only had a weak function, to represent it.
  261. # Unfortunately, a weak function may be overwritten by another
  262. # function of the same name, making all these offsets incorrect.
  263. # To be safe, we simply print a warning and bail.
  264. if (defined $weak{$ref_func}) {
  265. print STDERR
  266. "$inputfile: WARNING: referencing weak function" .
  267. " $ref_func for mcount\n";
  268. return;
  269. }
  270. # is this function static? If so, note this fact.
  271. if (defined $locals{$ref_func}) {
  272. # only use locals if objcopy supports globalize-symbols
  273. if (!$use_locals) {
  274. return;
  275. }
  276. $convert{$ref_func} = 1;
  277. }
  278. # Loop through all the mcount caller offsets and print a reference
  279. # to the caller based from the ref_func.
  280. for (my $i=0; $i <= $#offsets; $i++) {
  281. if (!$opened) {
  282. open(FILE, ">$mcount_s") || die "can't create $mcount_s\n";
  283. $opened = 1;
  284. print FILE "\t.section $mcount_section,\"a\",$section_type\n";
  285. print FILE "\t.align $alignment\n" if (defined($alignment));
  286. }
  287. printf FILE "\t%s %s + %d\n", $type, $ref_func, $offsets[$i] - $offset;
  288. }
  289. }
  290. #
  291. # Step 2: find the sections and mcount call sites
  292. #
  293. open(IN, "$objdump -dr $inputfile|") || die "error running $objdump";
  294. my $text;
  295. while (<IN>) {
  296. # is it a section?
  297. if (/$section_regex/) {
  298. # Only record text sections that we know are safe
  299. if (defined($text_sections{$1})) {
  300. $read_function = 1;
  301. } else {
  302. $read_function = 0;
  303. }
  304. # print out any recorded offsets
  305. update_funcs() if ($text_found);
  306. # reset all markers and arrays
  307. $text_found = 0;
  308. undef($ref_func);
  309. undef(@offsets);
  310. # section found, now is this a start of a function?
  311. } elsif ($read_function && /$function_regex/) {
  312. $text_found = 1;
  313. $offset = hex $1;
  314. $text = $2;
  315. # if this is either a local function or a weak function
  316. # keep looking for functions that are global that
  317. # we can use safely.
  318. if (!defined($locals{$text}) && !defined($weak{$text})) {
  319. $ref_func = $text;
  320. $read_function = 0;
  321. } else {
  322. # if we already have a function, and this is weak, skip it
  323. if (!defined($ref_func) || !defined($weak{$text})) {
  324. $ref_func = $text;
  325. }
  326. }
  327. }
  328. # is this a call site to mcount? If so, record it to print later
  329. if ($text_found && /$mcount_regex/) {
  330. $offsets[$#offsets + 1] = hex $1;
  331. }
  332. }
  333. # dump out anymore offsets that may have been found
  334. update_funcs() if ($text_found);
  335. # If we did not find any mcount callers, we are done (do nothing).
  336. if (!$opened) {
  337. exit(0);
  338. }
  339. close(FILE);
  340. #
  341. # Step 3: Compile the file that holds the list of call sites to mcount.
  342. #
  343. `$cc -o $mcount_o -c $mcount_s`;
  344. my @converts = keys %convert;
  345. #
  346. # Step 4: Do we have sections that started with local functions?
  347. #
  348. if ($#converts >= 0) {
  349. my $globallist = "";
  350. my $locallist = "";
  351. foreach my $con (@converts) {
  352. $globallist .= " --globalize-symbol $con";
  353. $locallist .= " --localize-symbol $con";
  354. }
  355. my $globalobj = $dirname . "/.tmp_gl_" . $filename;
  356. my $globalmix = $dirname . "/.tmp_mx_" . $filename;
  357. #
  358. # Step 5: set up each local function as a global
  359. #
  360. `$objcopy $globallist $inputfile $globalobj`;
  361. #
  362. # Step 6: Link the global version to our list.
  363. #
  364. `$ld -r $globalobj $mcount_o -o $globalmix`;
  365. #
  366. # Step 7: Convert the local functions back into local symbols
  367. #
  368. `$objcopy $locallist $globalmix $inputfile`;
  369. # Remove the temp files
  370. `$rm $globalobj $globalmix`;
  371. } else {
  372. my $mix = $dirname . "/.tmp_mx_" . $filename;
  373. #
  374. # Step 8: Link the object with our list of call sites object.
  375. #
  376. `$ld -r $inputfile $mcount_o -o $mix`;
  377. #
  378. # Step 9: Move the result back to the original object.
  379. #
  380. `$mv $mix $inputfile`;
  381. }
  382. # Clean up the temp files
  383. `$rm $mcount_o $mcount_s`;
  384. exit(0);