Add in a new standalone env applet for fixing up app's environments
authorEric Andersen <andersen@codepoet.org>
Thu, 29 Mar 2001 22:48:33 +0000 (22:48 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 29 Mar 2001 22:48:33 +0000 (22:48 -0000)
 -Erik

12 files changed:
Changelog
Config.h
applets.h
applets/usage.h
coreutils/env.c [new file with mode: 0644]
env.c [new file with mode: 0644]
include/applets.h
include/usage.h
lash.c
sh.c
shell/lash.c
usage.h

index d90515806b2a7d590e154cf22cc3b70a3034e94e..19acbbd5cb0d93988646e7a35c2f78e2cef11d97 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,12 @@
+0.51pre
+       * Erik Andersen -- added env applet
+       * Erik Andersen -- Split utility.c into libbb
+       * <fixme>
+
+
+        -Erik Andersen, not yet released
+
+
 0.50
        * Erik Andersen -- added ifconfig interface status reporting 
        * Erik Andersen -- Debian packaging updates
index 4234546169aadf85cf2492baec65b2bf83f63dce..8c7684876813487b5e9baa07816970a72482ff86 100644 (file)
--- a/Config.h
+++ b/Config.h
@@ -32,6 +32,7 @@
 #define BB_DU
 //#define BB_DUMPKMAP
 #define BB_ECHO
+#define BB_ENV
 //#define BB_EXPR
 //#define BB_FBSET
 //#define BB_FDFLUSH
index 0ab296312e6e570b2eeea0d4f19d8e6012228ba7..255bd6b44f7f3220f88c85f575c546bdba1bb33c 100644 (file)
--- a/applets.h
+++ b/applets.h
 #if defined(BB_FEATURE_GREP_EGREP_ALIAS) && defined(BB_GREP)
        APPLET_NOUSAGE("egrep", grep_main, _BB_DIR_BIN)
 #endif
+#ifdef BB_ENV
+       APPLET(env, env_main, _BB_DIR_USR_BIN)
+#endif
 #ifdef BB_EXPR
        APPLET(expr, expr_main, _BB_DIR_USR_BIN)
 #endif
index dde3dd14659ea4bbdd4856a2a6c7eeb2003fd756..32b34e45fc82772b94daad9518454313c7b29c13 100644 (file)
        "$ echo "Erik\nis\ncool"\n" \
        "Erik\nis\ncool\n"
 
+#define env_trivial_usage \
+       "[-] [-iu] [name=value ...] [command]"
+#define env_full_usage \
+       "Prints the current environment or runs a program after setting\n" \
+       "up the specified environment.\n\n" \
+       "Options:\n" \
+       "\t-, -i\tstart with an empty environment\n" \
+       "\t-u\tremove variable from the environment\n"
+
 #define expr_trivial_usage \
        "EXPRESSION"
 #define expr_full_usage \
diff --git a/coreutils/env.c b/coreutils/env.c
new file mode 100644 (file)
index 0000000..56577b6
--- /dev/null
@@ -0,0 +1,97 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * env implementation for busybox
+ *
+ * Copyright (c) 1988, 1993, 1994
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * Original copyright notice is retained at the end of this file.
+ *
+ * Modified for BusyBox by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ */
+
+#include <stdio.h>
+#include <string.h>
+#include <getopt.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include "busybox.h"
+
+extern int env_main(int argc, char** argv)
+{
+       char **ep, *p;
+       char *cleanenv[1];
+       int ch;
+
+       while ((ch = getopt(argc, argv, "-iu:")) != -1)
+               switch(ch) {
+               case '-':
+               case 'i':
+                       environ = cleanenv;
+                       cleanenv[0] = NULL;
+                       break;
+               case 'u':
+                       unsetenv(optarg);
+                       break;
+               default:
+                       show_usage();
+               }
+       for (argv += optind; *argv && (p = strchr(*argv, '=')); ++argv)
+               setenv(*argv, ++p, 1);
+       if (*argv) {
+               execvp(*argv, argv);
+               perror_msg_and_die("%s", *argv);
+       }
+       for (ep = environ; *ep; ep++)
+               printf("%s\n", *ep);
+       exit(EXIT_SUCCESS);
+}
+
+/*
+ * Copyright (c) 1988, 1993, 1994
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change 
+ *             ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
+ *
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+
diff --git a/env.c b/env.c
new file mode 100644 (file)
index 0000000..56577b6
--- /dev/null
+++ b/env.c
@@ -0,0 +1,97 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * env implementation for busybox
+ *
+ * Copyright (c) 1988, 1993, 1994
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * Original copyright notice is retained at the end of this file.
+ *
+ * Modified for BusyBox by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ */
+
+#include <stdio.h>
+#include <string.h>
+#include <getopt.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include "busybox.h"
+
+extern int env_main(int argc, char** argv)
+{
+       char **ep, *p;
+       char *cleanenv[1];
+       int ch;
+
+       while ((ch = getopt(argc, argv, "-iu:")) != -1)
+               switch(ch) {
+               case '-':
+               case 'i':
+                       environ = cleanenv;
+                       cleanenv[0] = NULL;
+                       break;
+               case 'u':
+                       unsetenv(optarg);
+                       break;
+               default:
+                       show_usage();
+               }
+       for (argv += optind; *argv && (p = strchr(*argv, '=')); ++argv)
+               setenv(*argv, ++p, 1);
+       if (*argv) {
+               execvp(*argv, argv);
+               perror_msg_and_die("%s", *argv);
+       }
+       for (ep = environ; *ep; ep++)
+               printf("%s\n", *ep);
+       exit(EXIT_SUCCESS);
+}
+
+/*
+ * Copyright (c) 1988, 1993, 1994
+ *     The Regents of the University of California.  All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change 
+ *             ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> 
+ *
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+
index 0ab296312e6e570b2eeea0d4f19d8e6012228ba7..255bd6b44f7f3220f88c85f575c546bdba1bb33c 100644 (file)
 #if defined(BB_FEATURE_GREP_EGREP_ALIAS) && defined(BB_GREP)
        APPLET_NOUSAGE("egrep", grep_main, _BB_DIR_BIN)
 #endif
+#ifdef BB_ENV
+       APPLET(env, env_main, _BB_DIR_USR_BIN)
+#endif
 #ifdef BB_EXPR
        APPLET(expr, expr_main, _BB_DIR_USR_BIN)
 #endif
index dde3dd14659ea4bbdd4856a2a6c7eeb2003fd756..32b34e45fc82772b94daad9518454313c7b29c13 100644 (file)
        "$ echo "Erik\nis\ncool"\n" \
        "Erik\nis\ncool\n"
 
+#define env_trivial_usage \
+       "[-] [-iu] [name=value ...] [command]"
+#define env_full_usage \
+       "Prints the current environment or runs a program after setting\n" \
+       "up the specified environment.\n\n" \
+       "Options:\n" \
+       "\t-, -i\tstart with an empty environment\n" \
+       "\t-u\tremove variable from the environment\n"
+
 #define expr_trivial_usage \
        "EXPRESSION"
 #define expr_full_usage \
diff --git a/lash.c b/lash.c
index 22c56d444ca2e342d713a525ca7bb41b7fdb4035..28015cbb33451bc4f9aea661ab82bd1aac900658 100644 (file)
--- a/lash.c
+++ b/lash.c
@@ -143,7 +143,6 @@ struct close_me {
 
 /* function prototypes for builtins */
 static int builtin_cd(struct child_prog *cmd);
-static int builtin_env(struct child_prog *dummy);
 static int builtin_exec(struct child_prog *cmd);
 static int builtin_exit(struct child_prog *cmd);
 static int builtin_fg_bg(struct child_prog *cmd);
@@ -203,7 +202,6 @@ static struct built_in_command bltins[] = {
 /* Table of forking built-in functions (things that fork cannot change global
  * variables in the parent process, such as the current working directory) */
 static struct built_in_command bltins_forking[] = {
-       {"env", "Print all environment variables", builtin_env},
        {"pwd", "Print current directory", builtin_pwd},
        {"help", "List shell built-in commands", builtin_help},
        {NULL, NULL, NULL}
@@ -256,14 +254,13 @@ static inline void debug_printf(const char *format, ...) { }
 builtin   previous use      notes
 ------ -----------------  ---------
 cd      cmd->progs[0]
-env     0
 exec    cmd->progs[0]  squashed bug: didn't look for applets or forking builtins
 exit    cmd->progs[0]
 fg_bg   cmd->progs[0], job_list->head, job_list->fg
 help    0
 jobs    job_list->head
 pwd     0
-export  cmd->progs[0]  passes cmd, job_list to builtin_env(), which ignores them
+export  cmd->progs[0]
 source  cmd->progs[0]
 unset   cmd->progs[0]
 read    cmd->progs[0]
@@ -302,17 +299,6 @@ static int builtin_cd(struct child_prog *child)
        return EXIT_SUCCESS;
 }
 
-/* built-in 'env' handler */
-static int builtin_env(struct child_prog *dummy)
-{
-       char **e;
-
-       for (e = environ; *e; e++) {
-               printf( "%s\n", *e);
-       }
-       return (0);
-}
-
 /* built-in 'exec' handler */
 static int builtin_exec(struct child_prog *child)
 {
@@ -436,7 +422,10 @@ static int builtin_export(struct child_prog *child)
        char *v = child->argv[1];
 
        if (v == NULL) {
-               return (builtin_env(child));
+               char **e;
+               for (e = environ; *e; e++) {
+                       printf( "%s\n", *e);
+               }
        }
        res = putenv(v);
        if (res)
diff --git a/sh.c b/sh.c
index 22c56d444ca2e342d713a525ca7bb41b7fdb4035..28015cbb33451bc4f9aea661ab82bd1aac900658 100644 (file)
--- a/sh.c
+++ b/sh.c
@@ -143,7 +143,6 @@ struct close_me {
 
 /* function prototypes for builtins */
 static int builtin_cd(struct child_prog *cmd);
-static int builtin_env(struct child_prog *dummy);
 static int builtin_exec(struct child_prog *cmd);
 static int builtin_exit(struct child_prog *cmd);
 static int builtin_fg_bg(struct child_prog *cmd);
@@ -203,7 +202,6 @@ static struct built_in_command bltins[] = {
 /* Table of forking built-in functions (things that fork cannot change global
  * variables in the parent process, such as the current working directory) */
 static struct built_in_command bltins_forking[] = {
-       {"env", "Print all environment variables", builtin_env},
        {"pwd", "Print current directory", builtin_pwd},
        {"help", "List shell built-in commands", builtin_help},
        {NULL, NULL, NULL}
@@ -256,14 +254,13 @@ static inline void debug_printf(const char *format, ...) { }
 builtin   previous use      notes
 ------ -----------------  ---------
 cd      cmd->progs[0]
-env     0
 exec    cmd->progs[0]  squashed bug: didn't look for applets or forking builtins
 exit    cmd->progs[0]
 fg_bg   cmd->progs[0], job_list->head, job_list->fg
 help    0
 jobs    job_list->head
 pwd     0
-export  cmd->progs[0]  passes cmd, job_list to builtin_env(), which ignores them
+export  cmd->progs[0]
 source  cmd->progs[0]
 unset   cmd->progs[0]
 read    cmd->progs[0]
@@ -302,17 +299,6 @@ static int builtin_cd(struct child_prog *child)
        return EXIT_SUCCESS;
 }
 
-/* built-in 'env' handler */
-static int builtin_env(struct child_prog *dummy)
-{
-       char **e;
-
-       for (e = environ; *e; e++) {
-               printf( "%s\n", *e);
-       }
-       return (0);
-}
-
 /* built-in 'exec' handler */
 static int builtin_exec(struct child_prog *child)
 {
@@ -436,7 +422,10 @@ static int builtin_export(struct child_prog *child)
        char *v = child->argv[1];
 
        if (v == NULL) {
-               return (builtin_env(child));
+               char **e;
+               for (e = environ; *e; e++) {
+                       printf( "%s\n", *e);
+               }
        }
        res = putenv(v);
        if (res)
index 22c56d444ca2e342d713a525ca7bb41b7fdb4035..28015cbb33451bc4f9aea661ab82bd1aac900658 100644 (file)
@@ -143,7 +143,6 @@ struct close_me {
 
 /* function prototypes for builtins */
 static int builtin_cd(struct child_prog *cmd);
-static int builtin_env(struct child_prog *dummy);
 static int builtin_exec(struct child_prog *cmd);
 static int builtin_exit(struct child_prog *cmd);
 static int builtin_fg_bg(struct child_prog *cmd);
@@ -203,7 +202,6 @@ static struct built_in_command bltins[] = {
 /* Table of forking built-in functions (things that fork cannot change global
  * variables in the parent process, such as the current working directory) */
 static struct built_in_command bltins_forking[] = {
-       {"env", "Print all environment variables", builtin_env},
        {"pwd", "Print current directory", builtin_pwd},
        {"help", "List shell built-in commands", builtin_help},
        {NULL, NULL, NULL}
@@ -256,14 +254,13 @@ static inline void debug_printf(const char *format, ...) { }
 builtin   previous use      notes
 ------ -----------------  ---------
 cd      cmd->progs[0]
-env     0
 exec    cmd->progs[0]  squashed bug: didn't look for applets or forking builtins
 exit    cmd->progs[0]
 fg_bg   cmd->progs[0], job_list->head, job_list->fg
 help    0
 jobs    job_list->head
 pwd     0
-export  cmd->progs[0]  passes cmd, job_list to builtin_env(), which ignores them
+export  cmd->progs[0]
 source  cmd->progs[0]
 unset   cmd->progs[0]
 read    cmd->progs[0]
@@ -302,17 +299,6 @@ static int builtin_cd(struct child_prog *child)
        return EXIT_SUCCESS;
 }
 
-/* built-in 'env' handler */
-static int builtin_env(struct child_prog *dummy)
-{
-       char **e;
-
-       for (e = environ; *e; e++) {
-               printf( "%s\n", *e);
-       }
-       return (0);
-}
-
 /* built-in 'exec' handler */
 static int builtin_exec(struct child_prog *child)
 {
@@ -436,7 +422,10 @@ static int builtin_export(struct child_prog *child)
        char *v = child->argv[1];
 
        if (v == NULL) {
-               return (builtin_env(child));
+               char **e;
+               for (e = environ; *e; e++) {
+                       printf( "%s\n", *e);
+               }
        }
        res = putenv(v);
        if (res)
diff --git a/usage.h b/usage.h
index dde3dd14659ea4bbdd4856a2a6c7eeb2003fd756..32b34e45fc82772b94daad9518454313c7b29c13 100644 (file)
--- a/usage.h
+++ b/usage.h
        "$ echo "Erik\nis\ncool"\n" \
        "Erik\nis\ncool\n"
 
+#define env_trivial_usage \
+       "[-] [-iu] [name=value ...] [command]"
+#define env_full_usage \
+       "Prints the current environment or runs a program after setting\n" \
+       "up the specified environment.\n\n" \
+       "Options:\n" \
+       "\t-, -i\tstart with an empty environment\n" \
+       "\t-u\tremove variable from the environment\n"
+
 #define expr_trivial_usage \
        "EXPRESSION"
 #define expr_full_usage \