Bug 413603 - callgrind_annotate/cg_annotate truncate function names at '#'
Summary: callgrind_annotate/cg_annotate truncate function names at '#'
Status: RESOLVED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: callgrind (show other bugs)
Version: unspecified
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Andreas Arnez
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-10-29 17:55 UTC by Andreas Arnez
Modified: 2019-11-03 17:03 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
callgrind_annotate: don't truncate function names at '#' (1.99 KB, patch)
2019-10-29 18:00 UTC, Andreas Arnez
Details
Updated fix (2.90 KB, patch)
2019-10-31 15:58 UTC, Andreas Arnez
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andreas Arnez 2019-10-29 17:55:05 UTC
If a C++ function name contains a substring like "{lambda()#1}", callgrind_annotate truncates it at the '#' and uses the truncated name for further processing.  This can cause different functions to be merged, resulting in additional corruption.

The problem exists because callgrind_annotate treats '#' as a comment marker anywhere on an input line and removes the "comment" before further processing.  However, according to the format documentation, a comment must be on its own line, so a '#' in the middle of a line should *not* be treated as a comment marker.
Comment 1 Andreas Arnez 2019-10-29 18:00:34 UTC
Created attachment 123571 [details]
callgrind_annotate: don't truncate function names at '#'

Simple patch for fixing the problem: Skip comment lines instead of truncating after comment markers.
Comment 2 Philippe Waroquiers 2019-10-30 23:01:48 UTC
Thanks for the patch.

Two small comments:
* I am wondering if we should not allow comment lines starting with
  0 or or spaces characters (like empty lines?) followed by # ?
* cg_annotate seems to suffer from the same bug.
Comment 3 Andreas Arnez 2019-10-31 15:13:51 UTC
(In reply to Philippe Waroquiers from comment #2)
> Thanks for the patch.
> 
> Two small comments:
> * I am wondering if we should not allow comment lines starting with
>   0 or or spaces characters (like empty lines?) followed by # ?
I wondered about that, too.  Actually my first version allowed whitespace before the comment marker.  But then I realized that callgrind_annotate doesn't skip spaces at the beginning of a line in other cases, either.  Thus I adjusted my patch to be consistent with the rest of the logic.
Do you know of a case where it would be necessary to allow whitespace before the comment marker?

> * cg_annotate seems to suffer from the same bug.
Ah, good point.  I'll attach an updated patch with that change included.
Comment 4 Andreas Arnez 2019-10-31 15:58:44 UTC
Created attachment 123623 [details]
Updated fix

This version fixes the same issue with cg_annotate as well.
Comment 5 Philippe Waroquiers 2019-10-31 22:45:54 UTC
(In reply to Andreas Arnez from comment #3)
> (In reply to Philippe Waroquiers from comment #2)
> > * I am wondering if we should not allow comment lines starting with
> >   0 or or spaces characters (like empty lines?) followed by # ?
> I wondered about that, too.  Actually my first version allowed whitespace
> before the comment marker.  But then I realized that callgrind_annotate
> doesn't skip spaces at the beginning of a line in other cases, either.  Thus
> I adjusted my patch to be consistent with the rest of the logic.
> Do you know of a case where it would be necessary to allow whitespace before
> the comment marker?
No, I had no specific example in mind, but as the callgrind format is
quite general, I was afraid we might have a tool not in the valgrind tree
producing such comment lines with spaces before #.
I however just tried with kcachegrind, and it reports a warning for
such # lines that have spaces before the #.

So, I think that what you have done is ok.
Comment 6 Philippe Waroquiers 2019-11-03 17:03:33 UTC
Thanks for the analysis and patch, pushed in aaf64922a