Re: [PATCH 1/2] ftrace: make dynamic ftrace more robust

From: Ingo Molnar
Date: Wed Oct 22 2008 - 07:48:37 EST



* Steven Rostedt <rostedt@xxxxxxxxxxx> wrote:

> > i'd suggest to name it FTRACE_CODE_MODIFIED_OK here, to make it
> > stand out from the failure codes.
> >
> > > + FTRACE_CODE_FAILED_READ,
> > > + FTRACE_CODE_FAILED_CMP,
> > > + FTRACE_CODE_FAILED_WRITE,
> >
> > but maybe we should just use the standard kernel return codes. 0 for
> > success, -EINVAL for the rest. Is there any real value to know
> > exactly why it failed? We just know the modification was fishy (this
> > is an exception situation), and want to stop ftrace ASAP and then
> > print a warning so a kernel developer can debug it.
>
> Yes it is important to know the reason of failure, since it helps with
> diagnosing the issue.

we have everything we need: a warning message. We only add "reason
debugging" _if and only if_ problems are so frequent in an area of code
that it's absolutely needed. Otherwise we just fix the bugs, whenever
they happen.

> > Complicating error handling by introducing similar-looking return
> > code names just makes it easier to mess up accidentally, hence it
> > _reduces_ robustness.
>
> I had in mind for 2.6.29 that I would let an arch add another
> non-error code that says, "FAIL NICELY". [...]

no ... you are really thinking about robustness in the wrong way.

This code runs in the deepest guts of the kernel and hence is playing
with fire and it must be absolutely robust. Not 'nicely diagnosable',
not 'fail nicely'. But utterly robust in stopping whatever it does early
enough to make that problem reportable, should it trigger. (which it
really should not)

> > > /* Used for MEMORY_HOTPLUG */
> > > -#define __meminit __section(.meminit.text) __cold
> > > +#define __meminit __section(.meminit.text) __cold notrace
> > > #define __meminitdata __section(.meminit.data)
> > > #define __meminitconst __section(.meminit.rodata)
> > > #define __memexit __section(.memexit.text) __exitused __cold
> >
> > there's no justification given for this in the changelog and the change
> > looks fishy.
>
> Sorry, I missed writing this. I had it in other patches, but forgot to
> add the change log here. These are areas, just like the __init section
> that I have no way ok finding out in an arch independent way, what to
> remove from the ftrace records. So by not adding these notraces, we
> are guaranteed to hit the warnings above!

this is utterly fragile and might miss places that insert symbols into
some of these sections manually.

the robust approach is to make sure these things are never in an ftrace
record to begin with. scripts/recordmcount.pl should be taught to only
record places that it is _100% sure of is traceable_. Not "everything
and we'll sort out the stuff that we think is not okay".

if that needs arch dependent smarts then so be it - ftrace has to be
enabled per arch anyway.

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/