mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: musl@lists.openwall.com
Subject: Re: [patch] expose execvpe under _(GNU|BSD)_SOURCE
Date: Tue, 15 Apr 2014 23:06:24 -0400	[thread overview]
Message-ID: <20140416030624.GD26358@brightrain.aerifal.cx> (raw)
In-Reply-To: <CAL3m8eBr=qr7NzYiJMfOffSJ0AQd8CZPDQ1ntd6y6JKxRDJc1Q@mail.gmail.com>

On Tue, Apr 15, 2014 at 10:00:08PM -0500, M Farkas-Dyck wrote:
> ---
>  include/unistd.h     | 3 +++
>  src/process/execvp.c | 7 +++++++
>  2 files changed, 10 insertions(+)
> 
> diff --git a/include/unistd.h b/include/unistd.h
> index bf10a6d..342ab68 100644
> --- a/include/unistd.h
> +++ b/include/unistd.h
> @@ -88,6 +88,9 @@ int execle(const char *, const char *, ...);
>  int execl(const char *, const char *, ...);
>  int execvp(const char *, char *const []);
>  int execlp(const char *, const char *, ...);
> +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
> +int execvpe(const char *, char *const [], char *const []);
> +#endif

I don't really object to exposing it under _BSD_SOURCE, but is there
precedent for this?

>  int fexecve(int, char *const [], char *const []);
>  _Noreturn void _exit(int);
> 
> diff --git a/src/process/execvp.c b/src/process/execvp.c
> index 0a33e42..068c722 100644
> --- a/src/process/execvp.c
> +++ b/src/process/execvp.c
> @@ -47,3 +47,10 @@ int execvp(const char *file, char *const argv[])
>  {
>  	return __execvpe(file, argv, __environ);
>  }
> +
> +#if defined(_GNU_SOURCE) || defined (_BSD_SOURCE)
> +int execvpe(const char *file, char *const argv[], char *const envp[])
> +{
> +	return __execvpe(file, argv, envp);
> +}
> +#endif

Testing feature test macros with #ifdef in the libc source files is
not meaningful, and doesn't respect the namespace. There are two
possible right ways to do this: either a separate source file (so it
can't affect the namespace), or a weak alias from __execvpe to
execvpe. The latter would be preferable here since it would have zero
increase to code size.

Rich


  reply	other threads:[~2014-04-16  3:06 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-16  3:00 M Farkas-Dyck
2014-04-16  3:06 ` Rich Felker [this message]
2014-04-16  4:15   ` M Farkas-Dyck
2014-04-16  4:17   ` M Farkas-Dyck
2014-04-19  3:40 M Farkas-Dyck
2014-04-20  4:29 ` Rich Felker

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=20140416030624.GD26358@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=musl@lists.openwall.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.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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).