public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Keith Seitz <keiths@redhat.com>
To: Andrew Burgess <aburgess@redhat.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH 00/16] Inferior argument (inc for remote targets) changes
Date: Sat, 20 Jan 2024 19:56:47 -0800	[thread overview]
Message-ID: <3ec290a1-a9c7-4de0-8f7c-cb08f3d1a0e1@redhat.com> (raw)
In-Reply-To: <cover.1704809585.git.aburgess@redhat.com>

On 1/9/24 06:26, Andrew Burgess wrote:
> This series relates to bug PR gdb/28392.  For background, check out
> this series:
> 
>    https://inbox.sourceware.org/gdb-patches/20211022071933.3478427-1-m.weghorn@posteo.de

Having run through this code in years gone by, this series is long
overdue, so thank you for that.

> Still, there's plenty here to comment on, and I figure between now and
> April I can address any feedback that's given.

Re: libiberty, I am sure you'll make something work. :-)

FWIW, I've regression tested the series on our internal testing harness
and found no regressions on Fedora 39 (x86_64, aarch64, ppc64le, s390x).

I only have comments for a handful of the patches, and most of those
comments are pretty trivial. Feel free to add my Reviewed-by.

Keith

> Andrew Burgess (14):
>    libiberty/buildargv: POSIX behaviour for backslash handling
>    gdb/testsuite: add some xfail in gdb.base/startup-with-shell.exp
>    gdb: remove the !startup_with_shell path from
>      construct_inferior_arguments
>    gdbserver: convert program_args to a single string
>    gdbsupport: have construct_inferior_arguments take an escape function
>    gdbsupport: split escape_shell_characters in two
>    gdb: move remote arg splitting and joining into gdbsupport/
>    gdb/python: change escaping rules when setting arguments
>    gdb: add remote argument passing self tests
>    gdb/gdbserver: pass inferior arguments as a single string
>    gdb: allow 'set args' and run commands to contain newlines
>    gdb/gdbserver: remove some uses of free_vector_argv
>    gdb: new maintenance command to help debug remote argument issues
>    gdb/gdbserver: rework argument splitting and joining
> 
> Michael Weghorn (2):
>    gdb: Support some escaping of args with startup-with-shell being off
>    gdb/gdbserver: add a '--no-escape-args' command line option
> 
>   gdb/Makefile.in                               |   1 +
>   gdb/NEWS                                      |  41 +++
>   gdb/doc/gdb.texinfo                           | 191 ++++++++++++-
>   gdb/doc/python.texi                           |   7 +-
>   gdb/infcmd.c                                  | 128 ++++++++-
>   gdb/inferior.c                                |   8 -
>   gdb/inferior.h                                |   7 +-
>   gdb/main.c                                    |  30 +-
>   gdb/nat/fork-inferior.c                       |  84 ++----
>   gdb/python/py-inferior.c                      |   7 +-
>   gdb/remote.c                                  |  94 ++++++-
>   gdb/testsuite/gdb.base/args.exp               | 137 ++++++---
>   gdb/testsuite/gdb.base/inferior-args.exp      | 215 +++++++++++++--
>   .../gdb.base/maint-test-remote-args.exp       |  40 +++
>   gdb/testsuite/gdb.base/startup-with-shell.exp | 143 ++++++++--
>   gdb/testsuite/gdb.python/py-inferior.exp      |  36 ++-
>   gdb/testsuite/gdb.server/inferior-args.c      |  27 ++
>   gdb/testsuite/gdb.server/inferior-args.exp    | 157 +++++++++++
>   gdb/unittests/remote-arg-selftests.c          | 172 ++++++++++++
>   gdbserver/linux-low.cc                        |   5 +-
>   gdbserver/linux-low.h                         |   2 +-
>   gdbserver/netbsd-low.cc                       |   6 +-
>   gdbserver/netbsd-low.h                        |   2 +-
>   gdbserver/server.cc                           |  74 +++--
>   gdbserver/server.h                            |   5 +
>   gdbserver/target.h                            |   6 +-
>   gdbserver/win32-low.cc                        |   7 +-
>   gdbserver/win32-low.h                         |   2 +-
>   gdbsupport/Makefile.am                        |   1 +
>   gdbsupport/Makefile.in                        |  13 +-
>   gdbsupport/common-inferior.cc                 | 207 +++++++++-----
>   gdbsupport/common-inferior.h                  |  29 +-
>   gdbsupport/remote-args.cc                     | 260 ++++++++++++++++++
>   gdbsupport/remote-args.h                      |  44 +++
>   libiberty/argv.c                              |   8 +-
>   libiberty/testsuite/test-expandargv.c         |  34 +++
>   36 files changed, 1927 insertions(+), 303 deletions(-)
>   create mode 100644 gdb/testsuite/gdb.base/maint-test-remote-args.exp
>   create mode 100644 gdb/testsuite/gdb.server/inferior-args.c
>   create mode 100644 gdb/testsuite/gdb.server/inferior-args.exp
>   create mode 100644 gdb/unittests/remote-arg-selftests.c
>   create mode 100644 gdbsupport/remote-args.cc
>   create mode 100644 gdbsupport/remote-args.h
> 
> 
> base-commit: b7a5722ebdd24a0d15d56e96d30a649ea1d7b0ee


      parent reply	other threads:[~2024-01-21  3:56 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-09 14:26 Andrew Burgess
2024-01-09 14:26 ` [PATCH 01/16] libiberty/buildargv: POSIX behaviour for backslash handling Andrew Burgess
2024-01-09 14:26 ` [PATCH 02/16] gdb/testsuite: add some xfail in gdb.base/startup-with-shell.exp Andrew Burgess
2024-01-09 14:26 ` [PATCH 03/16] gdb: Support some escaping of args with startup-with-shell being off Andrew Burgess
2024-01-09 14:26 ` [PATCH 04/16] gdb: remove the !startup_with_shell path from construct_inferior_arguments Andrew Burgess
2024-01-21  3:56   ` Keith Seitz
2024-01-09 14:26 ` [PATCH 05/16] gdbserver: convert program_args to a single string Andrew Burgess
2024-01-09 14:26 ` [PATCH 06/16] gdbsupport: have construct_inferior_arguments take an escape function Andrew Burgess
2024-01-09 14:26 ` [PATCH 07/16] gdbsupport: split escape_shell_characters in two Andrew Burgess
2024-01-09 14:26 ` [PATCH 08/16] gdb: move remote arg splitting and joining into gdbsupport/ Andrew Burgess
2024-01-21  3:57   ` Keith Seitz
2024-01-09 14:26 ` [PATCH 09/16] gdb/python: change escaping rules when setting arguments Andrew Burgess
2024-01-09 16:30   ` Eli Zaretskii
2024-01-09 14:26 ` [PATCH 10/16] gdb: add remote argument passing self tests Andrew Burgess
2024-01-21  3:57   ` Keith Seitz
2024-01-09 14:26 ` [PATCH 11/16] gdb/gdbserver: pass inferior arguments as a single string Andrew Burgess
2024-01-09 16:34   ` Eli Zaretskii
2024-01-09 16:35   ` Eli Zaretskii
2024-01-09 14:26 ` [PATCH 12/16] gdb/gdbserver: add a '--no-escape-args' command line option Andrew Burgess
2024-01-09 16:43   ` Eli Zaretskii
2024-01-21  3:57   ` Keith Seitz
2024-01-09 14:26 ` [PATCH 13/16] gdb: allow 'set args' and run commands to contain newlines Andrew Burgess
2024-01-09 16:44   ` Eli Zaretskii
2024-01-21  3:57   ` Keith Seitz
2024-01-09 14:26 ` [PATCH 14/16] gdb/gdbserver: remove some uses of free_vector_argv Andrew Burgess
2024-01-09 14:26 ` [PATCH 15/16] gdb: new maintenance command to help debug remote argument issues Andrew Burgess
2024-01-09 16:32   ` Eli Zaretskii
2024-01-21  3:57   ` Keith Seitz
2024-01-09 14:26 ` [PATCH 16/16] gdb/gdbserver: rework argument splitting and joining Andrew Burgess
2024-01-09 16:37   ` Eli Zaretskii
2024-01-21  3:57   ` Keith Seitz
2024-01-09 16:58 ` [PATCH 00/16] Inferior argument (inc for remote targets) changes Eli Zaretskii
2024-01-20 22:46   ` Andrew Burgess
2024-01-21 10:22     ` Eli Zaretskii
2024-01-22 10:29       ` Andrew Burgess
2024-01-10  8:28 ` Michael Weghorn
2024-01-21  3:56 ` Keith Seitz [this message]

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=3ec290a1-a9c7-4de0-8f7c-cb08f3d1a0e1@redhat.com \
    --to=keiths@redhat.com \
    --cc=aburgess@redhat.com \
    --cc=gdb-patches@sourceware.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).