Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Thomas Preudhomme <thomas.preudhomme@foss.arm.com>
To: Sergio Durigan Junior <sergiodj@redhat.com>
Cc: GDB Patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH v5] Implement the ability to set/unset environment variables to GDBserver when starting the inferior
Date: Tue, 05 Sep 2017 15:33:00 -0000	[thread overview]
Message-ID: <2aea3170-004a-bfe1-3e57-f7e3238167fb@foss.arm.com> (raw)
In-Reply-To: <87o9qv5sza.fsf@redhat.com>

Hi Sergio,

I noticed that the share-env-with-gdbserver.exp test you added is skipped if 
using a gdb stub. However the comment says the test is meaningless for 
native-gdbserver. Shouldn't the check also look whether this is a cross debugger?

Best regards,

Thomas

On 31/08/17 22:26, Sergio Durigan Junior wrote:
> On Thursday, August 31 2017, Simon Marchi wrote:
> 
>> On 2017-08-31 22:49, Sergio Durigan Junior wrote:
>>> Changes from v4:
>>>
>>> - Applied Simon's patch to refactor the unittest.  Thanks, Simon!
>>>
>>>
>>> This patch implements the ability to set/unset environment variables
>>> on the remote target, mimicking what GDB already offers to the user.
>>> There are two features present here: user-set and user-unset
>>> environment variables.
>>>
>>> User-set environment variables are only the variables that are
>>> explicitly set by the user, using the 'set environment' command.  This
>>> means that variables that were already present in the environment when
>>> starting GDB/GDBserver are not transmitted/considered by this feature.
>>>
>>> User-unset environment variables are variables that are explicitly
>>> unset by the user, using the 'unset environment' command.
>>>
>>> The idea behind this patch is to store user-set and user-unset
>>> environment variables in two separate sets, both part of gdb_environ.
>>> Then, when extended_remote_create_inferior is preparing to start the
>>> inferior, it will iterate over the two sets and set/unset variables
>>> accordingly.  Three new packets are introduced:
>>>
>>> - QEnvironmentHexEncoded, which is used to set environment variables,
>>>    and contains an hex-encoded string in the format "VAR=VALUE" (VALUE
>>>    can be empty if the user set a variable with a null value, by doing
>>>    'set environment VAR=').
>>>
>>> - QEnvironmentUnset, which is used to unset environment variables, and
>>>    contains an hex-encoded string in the format "VAR".
>>>
>>> - QEnvironmentReset, which is always the first packet to be
>>>    transmitted, and is used to reset the environment, i.e., discard any
>>>    changes made by the user on previous runs.
>>>
>>> The QEnvironmentHexEncoded packet is inspired on LLDB's extensions to
>>> the RSP.  Details about it can be seen here:
>>>
>>>
>>> <https://raw.githubusercontent.com/llvm-mirror/lldb/master/docs/lldb-gdb-remote.txt>
>>>
>>> I decided not to implement the QEnvironment packet because it is
>>> considered deprecated by LLDB.  This packet, on LLDB, serves the same
>>> purpose of QEnvironmentHexEncoded, but sends the information using a
>>> plain text, non-hex-encoded string.
>>>
>>> The other two packets are new.
>>>
>>> This patch also includes updates to the documentation, testsuite, and
>>> unit tests, without introducing regressions.
>>
>> That version LGTM.
> 
> Thanks for all the reviews.
> 
> Pushed:
>    0a2dde4a321d2f7bd2ded9a558b9ae92892de0e2
> 


  reply	other threads:[~2017-09-05 15:33 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-29 19:41 [PATCH] Implement the ability to transmit " Sergio Durigan Junior
2017-07-10 21:32 ` Sergio Durigan Junior
2017-07-13 21:47 ` Simon Marchi
2017-07-14 17:34   ` Sergio Durigan Junior
2017-07-27  3:36 ` [PATCH v2] Implement the ability to set/unset " Sergio Durigan Junior
2017-07-27 17:10   ` Eli Zaretskii
2017-07-27 22:05   ` Simon Marchi
2017-08-01  2:33     ` Sergio Durigan Junior
2017-08-01  9:35       ` Simon Marchi
2017-08-04 22:56         ` Sergio Durigan Junior
2017-07-29 22:36   ` Simon Marchi
2017-08-01  2:43     ` Sergio Durigan Junior
2017-08-01  9:54       ` Simon Marchi
2017-08-04 23:03         ` Sergio Durigan Junior
2017-08-05 18:14           ` Simon Marchi
2017-08-12  4:34             ` Sergio Durigan Junior
2017-08-12  8:11               ` Simon Marchi
     [not found]   ` <256083325d9f9c4cc4f5518fe6e5292d@polymtl.ca>
2017-08-12  4:19     ` Sergio Durigan Junior
2017-08-13  6:19 ` [PATCH v3] " Sergio Durigan Junior
2017-08-21 19:11   ` Sergio Durigan Junior
2017-08-24 19:25   ` Simon Marchi
2017-08-28 21:25     ` Sergio Durigan Junior
2017-08-28 23:13 ` [PATCH v4] " Sergio Durigan Junior
2017-08-31 19:37   ` Simon Marchi
2017-08-31 20:34     ` Sergio Durigan Junior
2017-08-31 20:39       ` Simon Marchi
2017-08-31 20:49 ` [PATCH v5] " Sergio Durigan Junior
2017-08-31 21:03   ` Simon Marchi
2017-08-31 21:26     ` Sergio Durigan Junior
2017-09-05 15:33       ` Thomas Preudhomme [this message]
2017-09-05 16:26         ` Simon Marchi
2017-09-05 17:09           ` Thomas Preudhomme
2017-09-05 18:41             ` Simon Marchi
2017-09-06  8:36               ` Thomas Preudhomme
2017-09-01  6:19   ` Eli Zaretskii

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=2aea3170-004a-bfe1-3e57-f7e3238167fb@foss.arm.com \
    --to=thomas.preudhomme@foss.arm.com \
    --cc=gdb-patches@sourceware.org \
    --cc=sergiodj@redhat.com \
    /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