OSDN Git Service

Use CFG_TOYBOX_NORECURSE to avoid
authorRob Landley <rob@landley.net>
Tue, 10 May 2016 08:26:02 +0000 (03:26 -0500)
committerRob Landley <rob@landley.net>
Tue, 10 May 2016 08:26:02 +0000 (03:26 -0500)
<strike>all that tedious mucking about with hyperspace</strike>
stack measuring in ways that confuse security stuff.

main.c

diff --git a/main.c b/main.c
index 14c4ff7..eeae2f3 100644 (file)
--- a/main.c
+++ b/main.c
@@ -140,7 +140,8 @@ void toy_exec(char *argv[])
 
   // Compiler writers have decided subtracting char * is undefined behavior,
   // so convert to integers. (LP64 says sizeof(long)==sizeof(pointer).)
-  if (toys.stacktop && labs((long)toys.stacktop-(long)&which)>6000) return;
+  if (!CFG_TOYBOX_NORECURSE)
+    if (toys.stacktop && labs((long)toys.stacktop-(long)&which)>6000) return;
 
   // Return if we need to re-exec to acquire root via suid bit.
   if (toys.which && (which->flags&TOYFLAG_ROOTONLY) && toys.wasroot) return;