From: Riku Voipio <riku.voipio@iki.fi>
To: Thomas Schwinge <thomas@codesourcery.com>, j.schauer@email.de
Cc: peter.maydell@linaro.org, aliguori@us.ibm.com, sw@weilnetz.de,
qemu-devel@nongnu.org, agraf@suse.de, paul@codesourcery.com
Subject: Re: [Qemu-devel] Environment variables for user-mode QEMU
Date: Thu, 25 Apr 2013 15:22:52 +0300 [thread overview]
Message-ID: <20130425122252.GA4850@afflict.kos.to> (raw)
Bcc:
Subject: Re: [Qemu-devel] Environment variables for user-mode QEMU
Reply-To:
In-Reply-To: <87txmwoyqc.fsf@schwinge.name>
X-message-flag: Warning: message not sent with a DRM-Certified client
On Wed, Apr 24, 2013 at 03:16:27PM +0200, Thomas Schwinge wrote:
> We have a need to pass environment variable assignments containing commas
> to user-mode QEMU. The usage information currently says:
> You can use -E and -U options or the QEMU_SET_ENV and
> QEMU_UNSET_ENV environment variables to set and unset
> environment variables for the target process.
> It is possible to provide several variables by separating them
> by commas in getsubopt(3) style. Additionally it is possible to
> provide the -E and -U options multiple times.
> $ env -i x86_64-linux-user/qemu-x86_64 -E x=y,y=z /usr/bin/printenv
> y=z
> x=y
>
> Instead of this, we'd like to see:
>
> $ env -i x86_64-linux-user/qemu-x86_64 -E x=y,y=z /usr/bin/printenv
> x=y,y=z
>
> Due to the tokenization based on comma in
> linux-user/main.c:handle_arg_set_env, there is currently no way to
> achieve this -- other than pre-setting environment variables before
> running user-mode QEMU, which obviously isn't always desirable/possible
> (LD_LIBRARY_PATH, etc.).
>
> Assuming there is a consensus, how would you like this implemented?
> Is it OK to change the semantics of -E (as well as -U, for symmetry?) to
> not handle multiple environment variable assignments (preliminary patch
> below), or does that functionality need to be preserved? Something needs
> to be done about QEMU_SET_ENV and QEMU_UNSET_ENV then (if anyone is using
> these at all, which we can't disprove), as these are not very useful if
> they can handle only one environment variable.
We do not want to break backwards compatability. Also, adding an new
option to support passing commas would be ugly - and
we would have to support both options for a long time.
The only reason why we need the comma parsing is for the
QEMU_SET_ENV env variable, where the only way to set multiple env
variables is with commas.
However, it can be argued, that adding support for env variables
in commit fc9c54124d134dbd76338a92a91804dab2df8166 broke passing commas
using the traditional "-E " parameters.
So we could weasel ourself out of this mess by removing comma parsing when
setting env variables from "-E", while keep parsing when using QEMU_SET_ENV.
Riku
next reply other threads:[~2013-04-25 12:23 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-25 12:22 Riku Voipio [this message]
2013-04-30 12:17 ` [Qemu-devel] Environment variables for user-mode QEMU Thomas Schwinge
-- strict thread matches above, loose matches on Subject: below --
2013-04-24 13:16 Thomas Schwinge
2013-04-24 16:11 ` Thomas Schwinge
2013-04-25 15:06 ` [Qemu-devel] [PATCH 1/4] util/envlist: Properly forward a callback's error in envlist_parse Thomas Schwinge
2013-04-25 15:06 ` [Qemu-devel] [PATCH 2/4] linux-user: Use existing envlist_parse_set/envlist_parse_unset interface Thomas Schwinge
2013-04-25 15:06 ` [Qemu-devel] [PATCH 3/4] linux-user: Tell handler_arg_* which context they're invoked from Thomas Schwinge
2013-04-25 15:06 ` [Qemu-devel] [PATCH 4/4] linux-user: Restore original behavior of the -E and -U command-line options Thomas Schwinge
2013-04-25 15:52 ` Peter Maydell
2013-04-25 16:18 ` Thomas Schwinge
2013-04-25 16:21 ` Peter Maydell
2013-04-25 16:41 ` [Qemu-devel] [PATCH] qemu-doc: Option -ignore-environment removed Thomas Schwinge
2013-04-25 17:00 ` Peter Maydell
2013-04-26 10:52 ` Stefan Hajnoczi
2013-04-25 16:37 ` [Qemu-devel] [PATCH v2] linux-user: Restore original behavior of the -E and -U command-line options Thomas Schwinge
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=20130425122252.GA4850@afflict.kos.to \
--to=riku.voipio@iki.fi \
--cc=agraf@suse.de \
--cc=aliguori@us.ibm.com \
--cc=j.schauer@email.de \
--cc=paul@codesourcery.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=sw@weilnetz.de \
--cc=thomas@codesourcery.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;
as well as URLs for NNTP newsgroup(s).