public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdbserver/tracepoint.cc: use snprintf in gdb_agent_socket_init
@ 2021-12-14 19:35 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2021-12-14 19:35 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=237f6eac1577223034a3e3436bd270428d097534

commit 237f6eac1577223034a3e3436bd270428d097534
Author: Simon Marchi <simon.marchi@efficios.com>
Date:   Tue Dec 14 14:34:57 2021 -0500

    gdbserver/tracepoint.cc: use snprintf in gdb_agent_socket_init
    
    If we modify tracepoint.cc to try to use a too long unix socket name,
    for example by modifying SOCK_DIR to be:
    
        #define SOCK_DIR "/tmp/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut/salut"
    
    ... trying to start an application with libinproctrace.so loaded
    crashes:
    
        $ LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.6:./libinproctrace.so /bin/ls
        /home/smarchi/src/binutils-gdb/gdbserver/../gdbsupport/common-utils.cc:69: A problem internal to GDBserver in-process agent has been detected.
        xsnprintf: Assertion `ret < size' failed.
    
    Looking at the rest of the socket initialization code, the intent seems
    to be that if something goes wrong, we warn but let the program
    execute.  So crashing on this failed assertions seems against the intent.
    
    Commit 6cebaf6e1ae4 ("use xsnprintf instead of snprintf.") changed this
    code to use xsnprintf instead of snprintf, introducing this assertion.
    Before that, snprintf would return a value bigger that UNIX_PATH_MAX and
    the "if" after would catch it and emit a warning, which is exactly what
    we want.  That change was done because LynxOS didn't have snprintf.
    Since LynxOS isn't supported anymore, we can simply revert to use
    snprintf there.
    
    With this patch, we get a warning (printed by the caller of
    gdb_agent_socket_init), but the program keeps executing:
    
        $ LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.6:./libinproctrace.so /bin/ls
        ipa: could not create sync socket
        ...
    
    Change-Id: I78bca52d5dc3145335abeae45a42052701e3f5dd

Diff:
---
 gdbserver/tracepoint.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gdbserver/tracepoint.cc b/gdbserver/tracepoint.cc
index a62d9a7233c..97d8fa5877f 100644
--- a/gdbserver/tracepoint.cc
+++ b/gdbserver/tracepoint.cc
@@ -6943,8 +6943,8 @@ gdb_agent_socket_init (void)
 {
   int result, fd;
 
-  result = xsnprintf (agent_socket_name, UNIX_PATH_MAX, "%s/gdb_ust%d",
-		      SOCK_DIR, getpid ());
+  result = snprintf (agent_socket_name, UNIX_PATH_MAX, "%s/gdb_ust%d",
+		     SOCK_DIR, getpid ());
   if (result >= UNIX_PATH_MAX)
     {
       trace_debug ("string overflow allocating socket name");


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-12-14 19:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-14 19:35 [binutils-gdb] gdbserver/tracepoint.cc: use snprintf in gdb_agent_socket_init Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).