Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Andrew Burgess <aburgess@redhat.com>
To: Simon Marchi <simark@simark.ca>, gdb-patches@sourceware.org
Cc: Siddhesh Poyarekar <siddhesh@redhat.com>, felix.willgerodt@intel.com
Subject: Re: [RFC] Adding a SECURITY policy for GDB
Date: Thu, 16 Nov 2023 17:19:48 +0000	[thread overview]
Message-ID: <874jhlr4y3.fsf@redhat.com> (raw)
In-Reply-To: <e5ad38d4-787c-4c0d-9df7-99f940376cf7@simark.ca>

Simon Marchi <simark@simark.ca> writes:

> On 11/6/23 08:26, Andrew Burgess wrote:
>>   In the context of local debugging, any bugs in GDB that result in
>>   crossing of a privilege boundary are considered security bugs.  Some
>>   examples of crossing a privilege boundary include; being able to
>>   execute code as an arbitrarily different user, or accessing resources
>>   (e.g. files, sockets, etc) for which the original user would not
>>   normally have access.
>
> Do you have examples of this?  It seems like any bug in that category would
> be bugs in the platform / OS, not GDB.  If such a bug is possible to exploit
> with GDB, the user could another program to exploit the same bug.
>
>>   In the context of remote debugging, there are two components of
>>   relevance; GDB running on the local machine, and a remote target
>>   running as a potentially different user, with different permissions,
>>   on a remote machine.
>> 
>>   The GNU GDB project provides one remote target, gdbserver.  As with
>>   GDB, any bugs in gdbserver that result in crossing of a privilege
>>   boundary are considered security bugs.
>> 
>>   Other projects also implement remote targets to which GDB can
>>   connect.  Any bugs in these remote targets are out of scope for the
>>   GNU GDB project, and should be reported to the relevant project.
>> 
>>   The connection between GDB and a remote target is not protected by
>>   either authentication, or encryption.  Connecting to a remote target
>>   allows for arbitrary code execution on the remote system with the
>>   same privileges as the remote user, and any resource that the remote
>>   user can access can be read by GDB, and downloaded to the local
>>   machine on which GDB is running.  As such users need to take
>>   independent measures to secure the connection between GDB and the
>>   remote target.
>> 
>>   While GDB is intended to be robust against untrusted binaries, it is
>>   not responsible for arbitrary code execution on a system.  As a
>>   result, any bugs exposed by untrusted binaries will be accepted and
>>   treated with appropriate urgency, but will not be considered
>>   security issues.  This applies to local as well as remote debugging;
>>   any bugs in gdbserver, exposed by untrusted binaries will be
>>   accepted and treated with appropriate urgency, but will not be
>>   considered security issues.
>
> My opinion would have been that just loading a file in GDB just to
> inspect it statically should be a safe thing to do, even with a
> malicious binary.  It's possible to do in theory, by being defensive and
> very careful of everything we read.

In an ideal world I'd love to say that just loading a binary for
inspection is a safe thing to do.  But I think the concern would be,
could we imagine a situation where a malicious binary could somehow
trigger GDB to start executing the inferior without any user
interaction?

Given the complexity of the DWARF parser, I'm not sure we can't say for
certain that such a bug couldn't exist.

And if we accept that such a bug could exist, then it seems like we have
a choice: we can declare that a user should sandbox GDB before touching
an untrusted binary, or we can say that any bugs in GDB related to
simply inspecting a binary that might cause undefined behaviour in GDB,
could, potentially, cause GDB to execute the inferior unasked, and could
be considered security issues.

> In practice, I understand that it might not be a realistic goal, given
> the complexity and the current state of BFD / GDB.  And since most of
> the CVEs you got (IIUC) were of this kind, that wouldn't help you much.
> So, I'm fine with that you have, given that I'm not the one who has to
> deal with these annoyances.

Indeed.  Most of the CVEs we're seeing are simply invalid DWARF bugs.
We've never even seen anyone make an attempt to convert the inevitable
GDB crash into an attack.  My concern is that, I don't think I can
credibly say: "Invalid DWARF crashes are not security bugs unless you
can show an actual attack."  So instead I fall back to a default
position of just, "GDB might have bugs.  Don't touch an untrusted binary
unless you're in a sandbox."

Maybe one day we could harden the DWARF parser enough that we can take
the position that reading any binary will be harmless ... but I'm not
sure that's a priority for anyone right now.

This reply has taken me so long to write because I'm aware that the
above sounds like a bit of a cop-out.  I'd be interested to hear
people's thoughts.

Thanks,
Andrew


  parent reply	other threads:[~2023-11-16 17:20 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-06 13:26 Andrew Burgess
2023-11-06 18:55 ` Kevin Buettner
2023-11-06 19:34 ` Simon Marchi
2023-11-06 20:09   ` Siddhesh Poyarekar
2023-11-06 20:15     ` Simon Marchi
2023-11-07 12:17       ` Siddhesh Poyarekar
2023-11-07 14:22         ` Simon Marchi
2023-11-09 14:35   ` Willgerodt, Felix
2023-11-16 17:19   ` Andrew Burgess [this message]
2023-11-16 17:27     ` Paul Koning
2023-11-16 21:35       ` Siddhesh Poyarekar
2023-12-08 15:05 ` Andrew Burgess
2023-12-09 10:55   ` Eli Zaretskii
2024-02-04 15:32     ` Andrew Burgess
2024-02-04 17:18       ` Eli Zaretskii
2024-02-04 17:43         ` Andreas Schwab
2024-02-04 18:56           ` Eli Zaretskii
2024-02-05 11:06         ` Andrew Burgess
2023-12-12  7:27   ` Willgerodt, Felix
2024-02-04 15:36   ` [V3] " Andrew Burgess
2024-02-18 13:55     ` Andrew Burgess
2024-03-27 11:00       ` [V4] " Andrew Burgess
2024-04-08 11:01         ` [V5] " Andrew Burgess
2024-04-09 20:30           ` Tom Tromey
2024-04-10 10:22           ` Willgerodt, Felix
2024-04-26 15:44             ` Andrew Burgess
2024-02-05 21:01   ` Tom Tromey
2024-02-09 15:59     ` Andrew Burgess
2024-02-12 16:43   ` Guinevere Larsen
2024-02-12 17:06     ` Siddhesh Poyarekar
2024-02-14 15:03       ` Andrew Burgess

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=874jhlr4y3.fsf@redhat.com \
    --to=aburgess@redhat.com \
    --cc=felix.willgerodt@intel.com \
    --cc=gdb-patches@sourceware.org \
    --cc=siddhesh@redhat.com \
    --cc=simark@simark.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox