last_patch98 from vodz:
Denis, ># ./busybox env - echo zzz >zzz ># ./busybox echo -n zzz >zzz ># ./busybox env - echo -n zzz >env: invalid option -- n > > obviously, env tried to understand -n as env's option > instead of blindly passing it to echo... > >BusyBox v1.00-pre1 (2003.07.16-07:53+0000) multi-call binary > >Usage: env [-iu] [-] [name=value]... [command] Ah, you found very old problem. Last patch also have: - multiple "-u unsetenv" support - GNU long option support - save errno after exec failed before bb_perror_msg() --w vodz
This commit is contained in:
parent
35e643b39f
commit
05df91a3ac
@ -33,32 +33,58 @@
|
|||||||
* output error checking.
|
* output error checking.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Modified by Vladimir Oleynik <andersen@codepoet.org> (C) 2003
|
||||||
|
* - corretion "-" option usage
|
||||||
|
* - multiple "-u unsetenv" support
|
||||||
|
* - GNU long option support
|
||||||
|
* - save errno after exec failed before bb_perror_msg()
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <getopt.h>
|
||||||
#include "busybox.h"
|
#include "busybox.h"
|
||||||
|
|
||||||
|
|
||||||
|
static const struct option env_long_options[] = {
|
||||||
|
{ "ignore-environment", 0, NULL, 'i' },
|
||||||
|
{ "unset", 1, NULL, 'u' },
|
||||||
|
{ 0, 0, 0, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
extern int env_main(int argc, char** argv)
|
extern int env_main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
char **ep, *p;
|
char **ep, *p;
|
||||||
char *cleanenv[1] = { NULL };
|
char *cleanenv[1] = { NULL };
|
||||||
unsigned long opt;
|
unsigned long opt;
|
||||||
|
llist_t *unset_env;
|
||||||
|
extern char **environ;
|
||||||
|
|
||||||
opt = bb_getopt_ulflags(argc, argv, "iu:", &p);
|
bb_opt_complementaly = "u*";
|
||||||
if(opt & 1)
|
bb_applet_long_options = env_long_options;
|
||||||
environ = cleanenv;
|
|
||||||
if(opt & 2)
|
opt = bb_getopt_ulflags(argc, argv, "+iu:", &unset_env);
|
||||||
unsetenv(p);
|
|
||||||
|
|
||||||
argv += optind;
|
argv += optind;
|
||||||
|
|
||||||
if (*argv && (argv[0][0] == '-') && !argv[0][1]) {
|
if (*argv && (argv[0][0] == '-') && !argv[0][1]) {
|
||||||
environ = cleanenv;
|
opt |= 1;
|
||||||
++argv;
|
++argv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(opt & 1)
|
||||||
|
environ = cleanenv;
|
||||||
|
else if(opt & 2) {
|
||||||
|
while(unset_env) {
|
||||||
|
unsetenv(unset_env->data);
|
||||||
|
unset_env = unset_env->link;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
while (*argv && ((p = strchr(*argv, '=')) != NULL)) {
|
while (*argv && ((p = strchr(*argv, '=')) != NULL)) {
|
||||||
if (putenv(*argv) < 0) {
|
if (putenv(*argv) < 0) {
|
||||||
bb_perror_msg_and_die("putenv");
|
bb_perror_msg_and_die("putenv");
|
||||||
@ -67,9 +93,12 @@ extern int env_main(int argc, char** argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (*argv) {
|
if (*argv) {
|
||||||
|
int er;
|
||||||
|
|
||||||
execvp(*argv, argv);
|
execvp(*argv, argv);
|
||||||
|
er = errno;
|
||||||
bb_perror_msg("%s", *argv); /* Avoid multibyte problems. */
|
bb_perror_msg("%s", *argv); /* Avoid multibyte problems. */
|
||||||
return (errno == ENOENT) ? 127 : 126; /* SUSv3-mandated exit codes. */
|
return (er == ENOENT) ? 127 : 126; /* SUSv3-mandated exit codes. */
|
||||||
}
|
}
|
||||||
|
|
||||||
for (ep = environ; *ep; ep++) {
|
for (ep = environ; *ep; ep++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user