Blame SOURCES/0001-execve-path-warning.patch

7fe024
From 0de57c78cbe1666fdf78ff6522b3b0ce18f12716 Mon Sep 17 00:00:00 2001
7fe024
From: Stanislav Ochotnicky <sochotnicky@redhat.com>
7fe024
Date: Tue, 18 Jan 2011 14:46:21 +0100
7fe024
Subject: [PATCH 1/3] execve path warning
7fe024
7fe024
---
7fe024
 src/native/unix/native/jsvc-unix.c |    9 +++++++++
7fe024
 1 files changed, 9 insertions(+), 0 deletions(-)
7fe024
7fe024
diff --git a/src/native/unix/native/jsvc-unix.c b/src/native/unix/native/jsvc-unix.c
7fe024
index 1967f09..22967f1 100644
7fe024
--- a/src/native/unix/native/jsvc-unix.c
7fe024
+++ b/src/native/unix/native/jsvc-unix.c
7fe024
@@ -1015,6 +1015,15 @@ int main(int argc, char *argv[])
7fe024
         char *tmp = NULL;
7fe024
         char *p1  = NULL;
7fe024
         char *p2  = NULL;
7fe024
+	
7fe024
+        /* We don't want to use a form of exec() that searches the
7fe024
+           PATH, so require that argv[0] be either an absolute or
7fe024
+           relative path.  Error out if this isn't the case.  */
7fe024
+        if (strchr(argv[0],'/') == NULL) {
7fe024
+          log_error("JSVC re-exec requires execution with an absolute or relative path");
7fe024
+          return(1);
7fe024
+        }
7fe024
+
7fe024
 
7fe024
         /*
7fe024
          * There is no need to change LD_LIBRARY_PATH
7fe024
-- 
7fe024
1.7.6
7fe024