[PATCH] tools/nolibc: completely remove optional environ support

From: Thomas Weißschuh
Date: Mon Jul 10 2023 - 13:23:10 EST


In commit 52e423f5b93e ("tools/nolibc: export environ as a weak symbol on i386")
and friends the asm startup logic was extended to directly populate the
"environ" array.

This makes it impossible for "environ" to be dropped by the linker.
Therefore also drop the other logic to handle non-present "environ".

Signed-off-by: Thomas Weißschuh <linux@xxxxxxxxxxxxxx>
---
Note:

Given that nowadays both _auxv and environ are mandatory symbols imposed
by nolibc of pointer size does it make sense to keep the code to make
int-sized errno optional?
---
tools/include/nolibc/stdlib.h | 12 ++----------
tools/testing/selftests/nolibc/nolibc-test.c | 7 +------
2 files changed, 3 insertions(+), 16 deletions(-)

diff --git a/tools/include/nolibc/stdlib.h b/tools/include/nolibc/stdlib.h
index 902162f80337..bacfd35c5156 100644
--- a/tools/include/nolibc/stdlib.h
+++ b/tools/include/nolibc/stdlib.h
@@ -83,11 +83,10 @@ void free(void *ptr)
* declared as a char **, and must be terminated by a NULL (it is recommended
* to set this variable to the "envp" argument of main()). If the requested
* environment variable exists its value is returned otherwise NULL is
- * returned. getenv() is forcefully inlined so that the reference to "environ"
- * will be dropped if unused, even at -O0.
+ * returned.
*/
static __attribute__((unused))
-char *_getenv(const char *name, char **environ)
+char *getenv(const char *name)
{
int idx, i;

@@ -102,13 +101,6 @@ char *_getenv(const char *name, char **environ)
return NULL;
}

-static __inline__ __attribute__((unused,always_inline))
-char *getenv(const char *name)
-{
- extern char **environ;
- return _getenv(name, environ);
-}
-
static __attribute__((unused))
unsigned long getauxval(unsigned long type)
{
diff --git a/tools/testing/selftests/nolibc/nolibc-test.c b/tools/testing/selftests/nolibc/nolibc-test.c
index 486334981e60..7f4611ce1795 100644
--- a/tools/testing/selftests/nolibc/nolibc-test.c
+++ b/tools/testing/selftests/nolibc/nolibc-test.c
@@ -40,9 +40,6 @@
#endif
#endif

-/* will be used by nolibc by getenv() */
-char **environ;
-
/* definition of a series of tests */
struct test {
const char *name; /* test name */
@@ -939,7 +936,7 @@ static const struct test test_names[] = {
{ 0 }
};

-int main(int argc, char **argv, char **envp)
+int main(int argc, char **argv)
{
int min = 0;
int max = INT_MAX;
@@ -948,8 +945,6 @@ int main(int argc, char **argv, char **envp)
int idx;
char *test;

- environ = envp;
-
/* when called as init, it's possible that no console was opened, for
* example if no /dev file system was provided. We'll check that fd#1
* was opened, and if not we'll attempt to create and open /dev/console

---
base-commit: 06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5
change-id: 20230710-nolibc-environ-79f425ce6354

Best regards,
--
Thomas Weißschuh <linux@xxxxxxxxxxxxxx>