From: Paolo Bonzini <pbonzini@redhat.com>
To: Akihiko Odaki <akihiko.odaki@gmail.com>
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
"Jason Wang" <jasowang@redhat.com>,
qemu-devel@nongnu.org, Programmingkid <programmingkidx@gmail.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Daniel P . Berrangé" <berrange@redhat.com>
Subject: Re: [PATCH v6 3/7] Remove prefixes from path configuration macros
Date: Wed, 15 Jun 2022 21:25:09 +0200 [thread overview]
Message-ID: <2d3b3efb-a70a-954b-bf85-1d5718cbf731@redhat.com> (raw)
In-Reply-To: <20220615155634.578-4-akihiko.odaki@gmail.com>
On 6/15/22 17:56, Akihiko Odaki wrote:
> The path configuration macros are often supplied to
> get_relocated_path(), and the function had some logics to remove the
> prefixes.
>
> With this change, the prefixes are removed from those macros and
> get_relocated_path() is also simplified.
>
> Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com>
This doesn't work if somebody configures with --prefix=/usr
--libexecdir=/usr/libexec. Adding the prefixes in meson.build was done
as a canonicalization step so that the C code has less cases to care about.
Paolo
> ---
> include/qemu/cutils.h | 2 +-
> meson.build | 21 ++++++++++-----------
> qemu-options.hx | 11 +++++------
> util/cutils.c | 34 +++++++---------------------------
> 4 files changed, 23 insertions(+), 45 deletions(-)
>
> diff --git a/include/qemu/cutils.h b/include/qemu/cutils.h
> index 40e10e19a7e..57de1da5c95 100644
> --- a/include/qemu/cutils.h
> +++ b/include/qemu/cutils.h
> @@ -207,7 +207,7 @@ const char *qemu_get_exec_dir(void);
> *
> * Returns a path for @dir that uses the directory of the running executable
> * as the prefix. For example, if `bindir` is `/usr/bin` and @dir is
> - * `/usr/share/qemu`, the function will append `../share/qemu` to the
> + * `share/qemu`, the function will append `../share/qemu` to the
> * directory that contains the running executable and return the result.
> * The returned string should be freed by the caller.
> */
> diff --git a/meson.build b/meson.build
> index 0c2e11ff071..01d5e32615e 100644
> --- a/meson.build
> +++ b/meson.build
> @@ -1679,18 +1679,17 @@ config_host_data.set_quoted('CONFIG_TLS_PRIORITY', get_option('tls_priority'))
> if iasl.found()
> config_host_data.set_quoted('CONFIG_IASL', iasl.full_path())
> endif
> -config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir'))
> +config_host_data.set_quoted('CONFIG_BINDIR', get_option('bindir'))
> config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix'))
> -config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir)
> -config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir)
> -config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir)
> -config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('prefix') / get_option('qemu_firmwarepath'))
> -config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir'))
> -config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir)
> -config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir'))
> -config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir'))
> -config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir)
> -config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
> +config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', qemu_confdir)
> +config_host_data.set_quoted('CONFIG_QEMU_DATADIR', qemu_datadir)
> +config_host_data.set_quoted('CONFIG_QEMU_FIRMWAREPATH', get_option('qemu_firmwarepath'))
> +config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('libexecdir'))
> +config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', qemu_icondir)
> +config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('localedir'))
> +config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('localstatedir'))
> +config_host_data.set_quoted('CONFIG_QEMU_MODDIR', qemu_moddir)
> +config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('sysconfdir'))
>
> if config_host.has_key('CONFIG_MODULES')
> config_host_data.set('CONFIG_STAMP', run_command(
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 377d22fbd82..f0ae8f44ff2 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -2661,12 +2661,11 @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
> " [,poll-us=n]\n"
> " configure a host TAP network backend with ID 'str'\n"
> " connected to a bridge (default=" DEFAULT_BRIDGE_INTERFACE ")\n"
> - " use network scripts 'file' (default=" DEFAULT_NETWORK_SCRIPT ")\n"
> - " to configure it and 'dfile' (default=" DEFAULT_NETWORK_DOWN_SCRIPT ")\n"
> - " to deconfigure it\n"
> + " use custom network script 'file' to configure it (optional)\n"
> + " use custom network script 'dfile' to deconfigure it (optional)\n"
> " use '[down]script=no' to disable script execution\n"
> - " use network helper 'helper' (default=" DEFAULT_BRIDGE_HELPER ") to\n"
> - " configure it\n"
> + " use custom network helper 'helper' to\n"
> + " configure it (optional)\n"
> " use 'fd=h' to connect to an already opened TAP interface\n"
> " use 'fds=x:y:...:z' to connect to already opened multiqueue capable TAP interfaces\n"
> " use 'sndbuf=nbytes' to limit the size of the send buffer (the\n"
> @@ -2684,7 +2683,7 @@ DEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
> "-netdev bridge,id=str[,br=bridge][,helper=helper]\n"
> " configure a host TAP network backend with ID 'str' that is\n"
> " connected to a bridge (default=" DEFAULT_BRIDGE_INTERFACE ")\n"
> - " using the program 'helper (default=" DEFAULT_BRIDGE_HELPER ")\n"
> + " using the custom program 'helper' (optional)\n"
> #endif
> #ifdef __linux__
> "-netdev l2tpv3,id=str,src=srcaddr,dst=dstaddr[,srcport=srcport][,dstport=dstport]\n"
> diff --git a/util/cutils.c b/util/cutils.c
> index a58bcfd80e7..983db97b4df 100644
> --- a/util/cutils.c
> +++ b/util/cutils.c
> @@ -917,13 +917,6 @@ int qemu_pstrcmp0(const char **str1, const char **str2)
> return g_strcmp0(*str1, *str2);
> }
>
> -static inline bool starts_with_prefix(const char *dir)
> -{
> - size_t prefix_len = strlen(CONFIG_PREFIX);
> - return !memcmp(dir, CONFIG_PREFIX, prefix_len) &&
> - (!dir[prefix_len] || G_IS_DIR_SEPARATOR(dir[prefix_len]));
> -}
> -
> /* Return the next path component in dir, and store its length in *p_len. */
> static inline const char *next_component(const char *dir, int *p_len)
> {
> @@ -967,7 +960,7 @@ void qemu_init_exec_dir(const char *argv0)
> if (access(buf, R_OK) == 0) {
> exec_dir = g_strdup(buf);
> } else {
> - exec_dir = CONFIG_BINDIR;
> + exec_dir = CONFIG_PREFIX G_DIR_SEPARATOR_S CONFIG_BINDIR;
> }
> #else
> char *p = NULL;
> @@ -1038,7 +1031,7 @@ void qemu_init_exec_dir(const char *argv0)
> if (p) {
> exec_dir = g_path_get_dirname(p);
> } else {
> - exec_dir = CONFIG_BINDIR;
> + exec_dir = CONFIG_PREFIX G_DIR_SEPARATOR_S CONFIG_BINDIR;
> }
> #endif
> }
> @@ -1050,39 +1043,26 @@ const char *qemu_get_exec_dir(void)
>
> char *get_relocated_path(const char *dir)
> {
> - size_t prefix_len = strlen(CONFIG_PREFIX);
> const char *bindir = CONFIG_BINDIR;
> const char *exec_dir = qemu_get_exec_dir();
> GString *result;
> - int len_dir, len_bindir;
> + int len_bindir;
>
> /* Fail if qemu_init_exec_dir was not called. */
> assert(exec_dir[0]);
> - if (!starts_with_prefix(dir) || !starts_with_prefix(bindir)) {
> - return g_strdup(dir);
> - }
>
> result = g_string_new(exec_dir);
>
> - /* Advance over common components. */
> - len_dir = len_bindir = prefix_len;
> - do {
> - dir += len_dir;
> - bindir += len_bindir;
> - dir = next_component(dir, &len_dir);
> - bindir = next_component(bindir, &len_bindir);
> - } while (len_dir && len_dir == len_bindir && !memcmp(dir, bindir, len_dir));
> -
> /* Ascend from bindir to the common prefix with dir. */
> + len_bindir = 0;
> while (len_bindir) {
> bindir += len_bindir;
> g_string_append(result, "/..");
> bindir = next_component(bindir, &len_bindir);
> }
>
> - if (*dir) {
> - assert(G_IS_DIR_SEPARATOR(dir[-1]));
> - g_string_append(result, dir - 1);
> - }
> + g_string_append_c(result, G_DIR_SEPARATOR);
> + g_string_append(result, dir);
> +
> return g_string_free(result, false);
> }
next prev parent reply other threads:[~2022-06-15 19:27 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-15 15:56 [PATCH v6 0/7] cutils: Introduce bundle mechanism Akihiko Odaki
2022-06-15 15:56 ` [PATCH v6 1/7] datadir: Simplify firmware directory search Akihiko Odaki
2022-06-15 16:52 ` Daniel P. Berrangé
2022-06-15 15:56 ` [PATCH v6 2/7] qga: Relocate a path emitted in the help text Akihiko Odaki
2022-06-15 15:56 ` [PATCH v6 3/7] Remove prefixes from path configuration macros Akihiko Odaki
2022-06-15 19:25 ` Paolo Bonzini [this message]
2022-06-15 15:56 ` [PATCH v6 4/7] cutils: Introduce bundle mechanism Akihiko Odaki
2022-06-15 19:26 ` Paolo Bonzini
2022-06-15 15:56 ` [PATCH v6 5/7] datadir: Use " Akihiko Odaki
2022-06-15 19:23 ` Paolo Bonzini
2022-06-15 15:56 ` [PATCH v6 6/7] ui/icons: " Akihiko Odaki
2022-06-15 15:56 ` [PATCH v6 7/7] net: " Akihiko Odaki
2022-06-15 19:27 ` [PATCH v6 0/7] cutils: Introduce " Paolo Bonzini
2022-06-16 9:18 ` Paolo Bonzini
2022-06-24 16:33 ` Akihiko Odaki
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=2d3b3efb-a70a-954b-bf85-1d5718cbf731@redhat.com \
--to=pbonzini@redhat.com \
--cc=akihiko.odaki@gmail.com \
--cc=berrange@redhat.com \
--cc=f4bug@amsat.org \
--cc=jasowang@redhat.com \
--cc=kraxel@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=programmingkidx@gmail.com \
--cc=qemu-devel@nongnu.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 NNTP newsgroup(s).