Skip to content

Commit 14198f5

Browse files
Joachim KernRealCLanger
Joachim Kern
authored andcommittedMay 17, 2024
8329653: JLILaunchTest fails on AIX after JDK-8329131
Reviewed-by: clanger, mdoerr
1 parent ae999ea commit 14198f5

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed
 

‎src/java.base/unix/native/libjli/java_md.c

+11
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,17 @@ GetJREPath(char *path, jint pathsize, jboolean speculative)
516516
}
517517
}
518518

519+
#if defined(AIX)
520+
/* at least on AIX try also the LD_LIBRARY_PATH / LIBPATH */
521+
if (GetApplicationHomeFromLibpath(path, pathsize)) {
522+
JLI_Snprintf(libjava, sizeof(libjava), "%s/lib/" JAVA_DLL, path);
523+
if (stat(libjava, &s) == 0) {
524+
JLI_TraceLauncher("JRE path is %s\n", path);
525+
return JNI_TRUE;
526+
}
527+
}
528+
#endif
529+
519530
if (!speculative)
520531
JLI_ReportErrorMessage(JRE_ERROR8 JAVA_DLL);
521532
return JNI_FALSE;

‎src/java.base/unix/native/libjli/java_md.h

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ static jboolean GetJVMPath(const char *jrepath, const char *jvmtype,
6060
static jboolean GetJREPath(char *path, jint pathsize, jboolean speculative);
6161

6262
#if defined(_AIX)
63+
jboolean GetApplicationHomeFromLibpath(char *buf, jint bufsize);
6364
#include "java_md_aix.h"
6465
#endif
6566

‎src/java.base/unix/native/libjli/java_md_common.c

+43
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
#include <sys/time.h>
2626
#include "java.h"
2727

28+
#define JAVA_DLL "libjava.so"
29+
2830
/*
2931
* Find the last occurrence of a string
3032
*/
@@ -108,6 +110,47 @@ GetApplicationHomeFromDll(char *buf, jint bufsize)
108110
return JNI_FALSE;
109111
}
110112

113+
#if defined(AIX)
114+
static jboolean
115+
LibjavaExists(const char *path)
116+
{
117+
char tmp[PATH_MAX + 1];
118+
struct stat statbuf;
119+
JLI_Snprintf(tmp, PATH_MAX, "%s/%s", path, JAVA_DLL);
120+
if (stat(tmp, &statbuf) == 0) {
121+
return JNI_TRUE;
122+
}
123+
return JNI_FALSE;
124+
}
125+
126+
/*
127+
* Retrieves the path to the JRE home by locating libjava.so in
128+
* LIBPATH and then truncating the path to it.
129+
*/
130+
jboolean
131+
GetApplicationHomeFromLibpath(char *buf, jint bufsize)
132+
{
133+
char *env = getenv("LIBPATH");
134+
char *tmp;
135+
char *save_ptr = NULL;
136+
char *envpath = JLI_StringDup(env);
137+
for (tmp = strtok_r(envpath, ":", &save_ptr); tmp != NULL; tmp = strtok_r(NULL, ":", &save_ptr)) {
138+
if (LibjavaExists(tmp)) {
139+
char *path = realpath(tmp, buf);
140+
if (path == buf) {
141+
JLI_StrCat(buf, "/");
142+
if (JNI_TRUE == TruncatePath(buf, JNI_TRUE)) {
143+
JLI_MemFree(envpath);
144+
return JNI_TRUE;
145+
}
146+
}
147+
}
148+
}
149+
JLI_MemFree(envpath);
150+
return JNI_FALSE;
151+
}
152+
#endif
153+
111154
/*
112155
* Return true if the named program exists
113156
*/

0 commit comments

Comments
 (0)
Please sign in to comment.