* [patch][gdb] Fix crashes in bz24364
@ 2019-06-17 14:42 Paul Pluzhnikov via gdb-patches
2019-06-17 17:39 ` Tom Tromey
0 siblings, 1 reply; 5+ messages in thread
From: Paul Pluzhnikov via gdb-patches @ 2019-06-17 14:42 UTC (permalink / raw)
To: gdb-patches ml
[-- Attachment #1: Type: text/plain, Size: 248 bytes --]
This is somewhat on the obvious side.
Fix all crashes from bz24364.
gdb/ChangeLog
PR gdb/24364
* gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
call dtrace_process_dof with NULL dof.
--
Paul Pluzhnikov
[-- Attachment #2: gdb-bz24364-20190617.txt --]
[-- Type: text/plain, Size: 826 bytes --]
diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c
index 52973784e9..2a2eae1f70 100644
--- a/gdb/dtrace-probe.c
+++ b/gdb/dtrace-probe.c
@@ -856,13 +856,14 @@ dtrace_static_probe_ops::get_probes
/* Read the contents of the DOF section and then process it to
extract the information of any probe defined into it. */
- if (!bfd_malloc_and_get_section (abfd, sect, &dof))
+ if (bfd_malloc_and_get_section (abfd, sect, &dof) && dof != NULL)
+ dtrace_process_dof (sect, objfile, probesp,
+ (struct dtrace_dof_hdr *) dof);
+ else
complaint (_("could not obtain the contents of"
"section '%s' in objfile `%s'."),
sect->name, abfd->filename);
-
- dtrace_process_dof (sect, objfile, probesp,
- (struct dtrace_dof_hdr *) dof);
+
xfree (dof);
}
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch][gdb] Fix crashes in bz24364
2019-06-17 14:42 [patch][gdb] Fix crashes in bz24364 Paul Pluzhnikov via gdb-patches
@ 2019-06-17 17:39 ` Tom Tromey
2019-06-17 19:32 ` Simon Marchi
0 siblings, 1 reply; 5+ messages in thread
From: Tom Tromey @ 2019-06-17 17:39 UTC (permalink / raw)
To: Paul Pluzhnikov via gdb-patches; +Cc: Paul Pluzhnikov
>>>>> "Paul" == Paul Pluzhnikov via gdb-patches <gdb-patches@sourceware.org> writes:
Paul> This is somewhat on the obvious side.
Paul> Fix all crashes from bz24364.
Paul> gdb/ChangeLog
Paul> PR gdb/24364
Paul> * gdb/dtrace-probe.c (dtrace_static_probe_ops::get_probe): Don't
Paul> call dtrace_process_dof with NULL dof.
Thank you for the patch. This is ok.
Tom
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch][gdb] Fix crashes in bz24364
2019-06-17 17:39 ` Tom Tromey
@ 2019-06-17 19:32 ` Simon Marchi
2019-06-17 20:57 ` Paul Pluzhnikov via gdb-patches
0 siblings, 1 reply; 5+ messages in thread
From: Simon Marchi @ 2019-06-17 19:32 UTC (permalink / raw)
To: Tom Tromey; +Cc: Paul Pluzhnikov via gdb-patches, Paul Pluzhnikov
On 2019-06-17 13:38, Tom Tromey wrote:
>>>>>> "Paul" == Paul Pluzhnikov via gdb-patches
>>>>>> <gdb-patches@sourceware.org> writes:
>
> Paul> This is somewhat on the obvious side.
> Paul> Fix all crashes from bz24364.
>
> Paul> gdb/ChangeLog
>
> Paul> PR gdb/24364
> Paul> * gdb/dtrace-probe.c
> (dtrace_static_probe_ops::get_probe): Don't
> Paul> call dtrace_process_dof with NULL dof.
>
> Thank you for the patch. This is ok.
>
> Tom
Could you please just change the commit title to state what is changed
concretely? Also, put in the commit message at least a small example of
how to trigger the bug.
Simon
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch][gdb] Fix crashes in bz24364
2019-06-17 19:32 ` Simon Marchi
@ 2019-06-17 20:57 ` Paul Pluzhnikov via gdb-patches
2019-06-17 21:08 ` Simon Marchi
0 siblings, 1 reply; 5+ messages in thread
From: Paul Pluzhnikov via gdb-patches @ 2019-06-17 20:57 UTC (permalink / raw)
To: Simon Marchi; +Cc: Tom Tromey, Paul Pluzhnikov via gdb-patches
Simon,
On Mon, Jun 17, 2019 at 12:31 PM Simon Marchi <simon.marchi@polymtl.ca> wrote:
>
> On 2019-06-17 13:38, Tom Tromey wrote:
> >>>>>> "Paul" == Paul Pluzhnikov via gdb-patches
> >>>>>> <gdb-patches@sourceware.org> writes:
> >
> > Paul> This is somewhat on the obvious side.
> > Paul> Fix all crashes from bz24364.
> >
> > Paul> gdb/ChangeLog
> >
> > Paul> PR gdb/24364
> > Paul> * gdb/dtrace-probe.c
> > (dtrace_static_probe_ops::get_probe): Don't
> > Paul> call dtrace_process_dof with NULL dof.
> >
> > Thank you for the patch. This is ok.
> >
> > Tom
>
> Could you please just change the commit title to state what is changed
> concretely?
I've already committed this patch, but I'd like to understand your
request for the future.
What changed concretely is that we don't call dtrace_process_dof()
with NULL dof anymore. I am not sure how to express this clearer.
> Also, put in the commit message at least a small example of
> how to trigger the bug.
To trigger the bug, run gdb on any of the examples attached to bugzilla 24364.
They are all artificial (generated by fuzzing).
Cheers,
--
Paul Pluzhnikov
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch][gdb] Fix crashes in bz24364
2019-06-17 20:57 ` Paul Pluzhnikov via gdb-patches
@ 2019-06-17 21:08 ` Simon Marchi
0 siblings, 0 replies; 5+ messages in thread
From: Simon Marchi @ 2019-06-17 21:08 UTC (permalink / raw)
To: Paul Pluzhnikov; +Cc: Tom Tromey, Paul Pluzhnikov via gdb-patches
On 2019-06-17 4:56 p.m., Paul Pluzhnikov wrote:
> I've already committed this patch, but I'd like to understand your
> request for the future.
>
> What changed concretely is that we don't call dtrace_process_dof()
> with NULL dof anymore. I am not sure how to express this clearer.
Ah, my bad. It's just that usually, the email subject is also the commit title,
so I thought that "Fix crashes in bz24364" would end up as the commit message. I
see that it is "PR gdb/24364: Don't call dtrace_process_dof with NULL dof." in
reality, this is fine.
>> Also, put in the commit message at least a small example of
>> how to trigger the bug.
>
> To trigger the bug, run gdb on any of the examples attached to bugzilla 24364.
> They are all artificial (generated by fuzzing).
When possible I find it useful to give a summary of the bug in the commit message
(including the steps that lead to the crash). It makes it much easier to find the
information when doing archaeology than having to refer to the bugzilla (especially
that the bugzilla may not be there forever). Although with a fuzzed binary it's not
as obvious, since you can't really describe the binary (though we could add a
test with it).
Simon
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-06-17 21:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-17 14:42 [patch][gdb] Fix crashes in bz24364 Paul Pluzhnikov via gdb-patches
2019-06-17 17:39 ` Tom Tromey
2019-06-17 19:32 ` Simon Marchi
2019-06-17 20:57 ` Paul Pluzhnikov via gdb-patches
2019-06-17 21:08 ` Simon Marchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox