blob: 96a4ec1a57b42f2d2f8f4a5843ccbcff09404338 [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
ksrinie3ec45d2010-07-09 11:04:34 -07002 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
ohair2283b9d2010-05-25 15:58:33 -07007 * published by the Free Software Foundation. Oracle designates this
duke6e45e102007-12-01 00:00:00 +00008 * particular file as subject to the "Classpath" exception as provided
ohair2283b9d2010-05-25 15:58:33 -07009 * by Oracle in the LICENSE file that accompanied this code.
duke6e45e102007-12-01 00:00:00 +000010 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
ohair2283b9d2010-05-25 15:58:33 -070021 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
duke6e45e102007-12-01 00:00:00 +000024 */
25
26#include "java.h"
27#include <dirent.h>
28#include <dlfcn.h>
29#include <fcntl.h>
30#include <inttypes.h>
31#include <stdio.h>
32#include <string.h>
33#include <stdlib.h>
34#include <sys/stat.h>
35#include <unistd.h>
36#include <sys/types.h>
37#include "manifest_info.h"
38#include "version_comp.h"
39
40#ifdef __linux__
41#include <pthread.h>
42#else
43#include <thread.h>
44#endif
45
46#define JVM_DLL "libjvm.so"
47#define JAVA_DLL "libjava.so"
48
49/*
50 * If a processor / os combination has the ability to run binaries of
51 * two data models and cohabitation of jre/jdk bits with both data
52 * models is supported, then DUAL_MODE is defined. When DUAL_MODE is
53 * defined, the architecture names for the narrow and wide version of
ksrini11e7f1b2009-11-20 11:01:32 -080054 * the architecture are defined in LIBARCH64NAME and LIBARCH32NAME.
55 * Currently only Solaris on sparc/sparcv9 and i586/amd64 is DUAL_MODE;
56 * linux i586/amd64 could be defined as DUAL_MODE but that is not the
duke6e45e102007-12-01 00:00:00 +000057 * current policy.
58 */
59
60#ifdef __solaris__
61# define DUAL_MODE
62# ifndef LIBARCH32NAME
63# error "The macro LIBARCH32NAME was not defined on the compile line"
64# endif
65# ifndef LIBARCH64NAME
66# error "The macro LIBARCH64NAME was not defined on the compile line"
67# endif
68# include <sys/systeminfo.h>
69# include <sys/elf.h>
70# include <stdio.h>
71#endif
72
73/* pointer to environment */
74extern char **environ;
75
76/*
77 * A collection of useful strings. One should think of these as #define
78 * entries, but actual strings can be more efficient (with many compilers).
79 */
80#ifdef __linux__
81static const char *system_dir = "/usr/java";
82static const char *user_dir = "/java";
83#else /* Solaris */
84static const char *system_dir = "/usr/jdk";
85static const char *user_dir = "/jdk";
86#endif
87
88/* Store the name of the executable once computed */
89static char *execname = NULL;
90
91/*
92 * Flowchart of launcher execs and options processing on unix
93 *
94 * The selection of the proper vm shared library to open depends on
95 * several classes of command line options, including vm "flavor"
96 * options (-client, -server) and the data model options, -d32 and
97 * -d64, as well as a version specification which may have come from
98 * the command line or from the manifest of an executable jar file.
99 * The vm selection options are not passed to the running
100 * virtual machine; they must be screened out by the launcher.
101 *
102 * The version specification (if any) is processed first by the
103 * platform independent routine SelectVersion. This may result in
104 * the exec of the specified launcher version.
105 *
ksrini11e7f1b2009-11-20 11:01:32 -0800106 * Previously the launcher modified the LD_LIBRARY_PATH appropriately for the
107 * desired data model path, regardless if data models matched or not. The
108 * launcher subsequently exec'ed the desired executable, in order to make the
109 * LD_LIBRARY_PATH path available for the runtime linker. This is no longer the
110 * case, the launcher dlopens the target libjvm.so. All other required
111 * libraries are loaded by the runtime linker, by virtue of the $ORIGIN paths
112 * baked into the shared libraries, by the build infrastructure at compile time.
duke6e45e102007-12-01 00:00:00 +0000113 *
ksrini11e7f1b2009-11-20 11:01:32 -0800114 * Main
115 * (incoming argv)
duke6e45e102007-12-01 00:00:00 +0000116 * |
117 * \|/
ksrini11e7f1b2009-11-20 11:01:32 -0800118 * SelectVersion
119 * (selects the JRE version, note: not data model)
120 * |
121 * \|/
122 * CreateExecutionEnvironment
123 * (determines desired data model)
124 * |
125 * |
126 * \|/
127 * Have Desired Model ? --> NO --> Is Dual-Mode ? --> NO --> Exit(with error)
duke6e45e102007-12-01 00:00:00 +0000128 * | |
ksrini11e7f1b2009-11-20 11:01:32 -0800129 * | |
duke6e45e102007-12-01 00:00:00 +0000130 * | \|/
ksrini11e7f1b2009-11-20 11:01:32 -0800131 * | YES
132 * | |
133 * | |
134 * | \|/
135 * | CheckJvmType
136 * | (removes -client, -server etc.)
137 * | |
138 * | |
139 * \|/ \|/
140 * YES (find the desired executable and exec child)
141 * | |
142 * | |
143 * \|/ \|/
144 * CheckJvmType Main
145 * (removes -client, -server, etc.)
146 * |
duke6e45e102007-12-01 00:00:00 +0000147 * |
148 * \|/
149 * TranslateDashJArgs...
150 * (Prepare to pass args to vm)
151 * |
152 * |
duke6e45e102007-12-01 00:00:00 +0000153 * \|/
154 * ParseArguments
ksrini11e7f1b2009-11-20 11:01:32 -0800155 * (removes -d32 and -d64 if any,
duke6e45e102007-12-01 00:00:00 +0000156 * processes version options,
157 * creates argument list for vm,
158 * etc.)
159 *
160 */
161
162static const char * SetExecname(char **argv);
163static jboolean GetJVMPath(const char *jrepath, const char *jvmtype,
164 char *jvmpath, jint jvmpathsize, const char * arch);
165static jboolean GetJREPath(char *path, jint pathsize, const char * arch, jboolean speculative);
166
167
168#define GetArch() GetArchPath(CURRENT_DATA_MODEL)
169
170const char *
171GetArchPath(int nbits)
172{
173 switch(nbits) {
174#ifdef DUAL_MODE
175 case 32:
176 return LIBARCH32NAME;
177 case 64:
178 return LIBARCH64NAME;
179#endif /* DUAL_MODE */
180 default:
181 return LIBARCHNAME;
182 }
183}
184
185void
ksrinie3ec45d2010-07-09 11:04:34 -0700186CreateExecutionEnvironment(int *pargc, char ***pargv,
187 char jrepath[], jint so_jrepath,
188 char jvmpath[], jint so_jvmpath) {
duke6e45e102007-12-01 00:00:00 +0000189 /*
190 * First, determine if we are running the desired data model. If we
191 * are running the desired data model, all the error messages
192 * associated with calling GetJREPath, ReadKnownVMs, etc. should be
193 * output. However, if we are not running the desired data model,
194 * some of the errors should be suppressed since it is more
195 * informative to issue an error message based on whether or not the
196 * os/processor combination has dual mode capabilities.
197 */
198
duke6e45e102007-12-01 00:00:00 +0000199 jboolean jvmpathExists;
200
201 /* Compute/set the name of the executable */
ksrinie3ec45d2010-07-09 11:04:34 -0700202 SetExecname(*pargv);
duke6e45e102007-12-01 00:00:00 +0000203
ksrini11e7f1b2009-11-20 11:01:32 -0800204 /* Check data model flags, and exec process, if needed */
duke6e45e102007-12-01 00:00:00 +0000205 {
206 char *arch = (char *)GetArch(); /* like sparc or sparcv9 */
207 char * jvmtype = NULL;
ksrinie3ec45d2010-07-09 11:04:34 -0700208 int argc = *pargc;
209 char **argv = *pargv;
duke6e45e102007-12-01 00:00:00 +0000210
duke6e45e102007-12-01 00:00:00 +0000211 int running = CURRENT_DATA_MODEL;
212
213 int wanted = running; /* What data mode is being
214 asked for? Current model is
215 fine unless another model
216 is asked for */
217
duke6e45e102007-12-01 00:00:00 +0000218 char** newargv = NULL;
219 int newargc = 0;
duke6e45e102007-12-01 00:00:00 +0000220
221 /*
222 * Starting in 1.5, all unix platforms accept the -d32 and -d64
223 * options. On platforms where only one data-model is supported
224 * (e.g. ia-64 Linux), using the flag for the other data model is
225 * an error and will terminate the program.
226 */
227
228 { /* open new scope to declare local variables */
229 int i;
230
ksrinie3ec45d2010-07-09 11:04:34 -0700231 newargv = (char **)JLI_MemAlloc((argc+1) * sizeof(char*));
duke6e45e102007-12-01 00:00:00 +0000232 newargv[newargc++] = argv[0];
233
234 /* scan for data model arguments and remove from argument list;
235 last occurrence determines desired data model */
236 for (i=1; i < argc; i++) {
237
238 if (JLI_StrCmp(argv[i], "-J-d64") == 0 || JLI_StrCmp(argv[i], "-d64") == 0) {
239 wanted = 64;
240 continue;
241 }
242 if (JLI_StrCmp(argv[i], "-J-d32") == 0 || JLI_StrCmp(argv[i], "-d32") == 0) {
243 wanted = 32;
244 continue;
245 }
246 newargv[newargc++] = argv[i];
247
248 if (IsJavaArgs()) {
249 if (argv[i][0] != '-') continue;
250 } else {
251 if (JLI_StrCmp(argv[i], "-classpath") == 0 || JLI_StrCmp(argv[i], "-cp") == 0) {
252 i++;
253 if (i >= argc) break;
254 newargv[newargc++] = argv[i];
255 continue;
256 }
257 if (argv[i][0] != '-') { i++; break; }
258 }
259 }
260
261 /* copy rest of args [i .. argc) */
262 while (i < argc) {
263 newargv[newargc++] = argv[i++];
264 }
265 newargv[newargc] = NULL;
266
267 /*
268 * newargv has all proper arguments here
269 */
270
271 argc = newargc;
272 argv = newargv;
273 }
274
275 /* If the data model is not changing, it is an error if the
276 jvmpath does not exist */
277 if (wanted == running) {
278 /* Find out where the JRE is that we will be using. */
279 if (!GetJREPath(jrepath, so_jrepath, arch, JNI_FALSE) ) {
ksrini0e817162008-08-26 10:21:20 -0700280 JLI_ReportErrorMessage(JRE_ERROR1);
duke6e45e102007-12-01 00:00:00 +0000281 exit(2);
282 }
283
284 /* Find the specified JVM type */
285 if (ReadKnownVMs(jrepath, arch, JNI_FALSE) < 1) {
ksrini0e817162008-08-26 10:21:20 -0700286 JLI_ReportErrorMessage(CFG_ERROR7);
duke6e45e102007-12-01 00:00:00 +0000287 exit(1);
288 }
289
290 jvmpath[0] = '\0';
ksrinie3ec45d2010-07-09 11:04:34 -0700291 jvmtype = CheckJvmType(pargc, pargv, JNI_FALSE);
292 if (JLI_StrCmp(jvmtype, "ERROR") == 0) {
293 JLI_ReportErrorMessage(CFG_ERROR9);
294 exit(4);
295 }
duke6e45e102007-12-01 00:00:00 +0000296
297 if (!GetJVMPath(jrepath, jvmtype, jvmpath, so_jvmpath, arch )) {
ksrini0e817162008-08-26 10:21:20 -0700298 JLI_ReportErrorMessage(CFG_ERROR8, jvmtype, jvmpath);
duke6e45e102007-12-01 00:00:00 +0000299 exit(4);
300 }
ksrini11e7f1b2009-11-20 11:01:32 -0800301 /*
302 * we seem to have everything we need, so without further ado
303 * we return back.
304 */
305 return;
duke6e45e102007-12-01 00:00:00 +0000306 } else { /* do the same speculatively or exit */
307#ifdef DUAL_MODE
308 if (running != wanted) {
309 /* Find out where the JRE is that we will be using. */
310 if (!GetJREPath(jrepath, so_jrepath, GetArchPath(wanted), JNI_TRUE)) {
ksrinie3ec45d2010-07-09 11:04:34 -0700311 /* give up and let other code report error message */
312 JLI_ReportErrorMessage(JRE_ERROR2, wanted);
313 exit(1);
duke6e45e102007-12-01 00:00:00 +0000314 }
315
316 /*
317 * Read in jvm.cfg for target data model and process vm
318 * selection options.
319 */
320 if (ReadKnownVMs(jrepath, GetArchPath(wanted), JNI_TRUE) < 1) {
ksrinie3ec45d2010-07-09 11:04:34 -0700321 /* give up and let other code report error message */
322 JLI_ReportErrorMessage(JRE_ERROR2, wanted);
323 exit(1);
duke6e45e102007-12-01 00:00:00 +0000324 }
325 jvmpath[0] = '\0';
ksrinie3ec45d2010-07-09 11:04:34 -0700326 jvmtype = CheckJvmType(pargc, pargv, JNI_TRUE);
327 if (JLI_StrCmp(jvmtype, "ERROR") == 0) {
328 JLI_ReportErrorMessage(CFG_ERROR9);
329 exit(4);
330 }
331
duke6e45e102007-12-01 00:00:00 +0000332 /* exec child can do error checking on the existence of the path */
333 jvmpathExists = GetJVMPath(jrepath, jvmtype, jvmpath, so_jvmpath, GetArchPath(wanted));
334
335 }
duke6e45e102007-12-01 00:00:00 +0000336#else
ksrini0e817162008-08-26 10:21:20 -0700337 JLI_ReportErrorMessage(JRE_ERROR2, wanted);
duke6e45e102007-12-01 00:00:00 +0000338 exit(1);
339#endif
340 }
341
duke6e45e102007-12-01 00:00:00 +0000342 {
343 char *newexec = execname;
344#ifdef DUAL_MODE
345 /*
346 * If the data model is being changed, the path to the
347 * executable must be updated accordingly; the executable name
348 * and directory the executable resides in are separate. In the
349 * case of 32 => 64, the new bits are assumed to reside in, e.g.
350 * "olddir/LIBARCH64NAME/execname"; in the case of 64 => 32,
351 * the bits are assumed to be in "olddir/../execname". For example,
352 *
353 * olddir/sparcv9/execname
354 * olddir/amd64/execname
355 *
356 * for Solaris SPARC and Linux amd64, respectively.
357 */
358
359 if (running != wanted) {
360 char *oldexec = JLI_StrCpy(JLI_MemAlloc(JLI_StrLen(execname) + 1), execname);
361 char *olddir = oldexec;
362 char *oldbase = JLI_StrRChr(oldexec, '/');
363
364
365 newexec = JLI_MemAlloc(JLI_StrLen(execname) + 20);
366 *oldbase++ = 0;
367 sprintf(newexec, "%s/%s/%s", olddir,
368 ((wanted==64) ? LIBARCH64NAME : ".."), oldbase);
369 argv[0] = newexec;
370 }
371#endif
ksrini11e7f1b2009-11-20 11:01:32 -0800372 JLI_TraceLauncher("TRACER_MARKER:About to EXEC\n");
duke6e45e102007-12-01 00:00:00 +0000373 (void)fflush(stdout);
374 (void)fflush(stderr);
ksrini11e7f1b2009-11-20 11:01:32 -0800375 execv(newexec, argv);
ksrini0e817162008-08-26 10:21:20 -0700376 JLI_ReportErrorMessageSys(JRE_ERROR4, newexec);
duke6e45e102007-12-01 00:00:00 +0000377
378#ifdef DUAL_MODE
379 if (running != wanted) {
ksrini0e817162008-08-26 10:21:20 -0700380 JLI_ReportErrorMessage(JRE_ERROR5, wanted, running);
duke6e45e102007-12-01 00:00:00 +0000381# ifdef __solaris__
duke6e45e102007-12-01 00:00:00 +0000382# ifdef __sparc
ksrini0e817162008-08-26 10:21:20 -0700383 JLI_ReportErrorMessage(JRE_ERROR6);
duke6e45e102007-12-01 00:00:00 +0000384# else
ksrini0e817162008-08-26 10:21:20 -0700385 JLI_ReportErrorMessage(JRE_ERROR7);
duke6e45e102007-12-01 00:00:00 +0000386# endif
387 }
388# endif
389#endif
390
391 }
duke6e45e102007-12-01 00:00:00 +0000392 exit(1);
393 }
394
395}
396
duke6e45e102007-12-01 00:00:00 +0000397/*
398 * On Solaris VM choosing is done by the launcher (java.c).
399 */
400static jboolean
401GetJVMPath(const char *jrepath, const char *jvmtype,
402 char *jvmpath, jint jvmpathsize, const char * arch)
403{
404 struct stat s;
405
406 if (JLI_StrChr(jvmtype, '/')) {
ksrinie3ec45d2010-07-09 11:04:34 -0700407 JLI_Snprintf(jvmpath, jvmpathsize, "%s/" JVM_DLL, jvmtype);
duke6e45e102007-12-01 00:00:00 +0000408 } else {
ksrinie3ec45d2010-07-09 11:04:34 -0700409 JLI_Snprintf(jvmpath, jvmpathsize, "%s/lib/%s/%s/" JVM_DLL, jrepath, arch, jvmtype);
duke6e45e102007-12-01 00:00:00 +0000410 }
411
412 JLI_TraceLauncher("Does `%s' exist ... ", jvmpath);
413
414 if (stat(jvmpath, &s) == 0) {
415 JLI_TraceLauncher("yes.\n");
416 return JNI_TRUE;
417 } else {
418 JLI_TraceLauncher("no.\n");
419 return JNI_FALSE;
420 }
421}
422
423/*
424 * Find path to JRE based on .exe's location or registry settings.
425 */
426static jboolean
427GetJREPath(char *path, jint pathsize, const char * arch, jboolean speculative)
428{
429 char libjava[MAXPATHLEN];
430
431 if (GetApplicationHome(path, pathsize)) {
432 /* Is JRE co-located with the application? */
ksrinie3ec45d2010-07-09 11:04:34 -0700433 JLI_Snprintf(libjava, sizeof(libjava), "%s/lib/%s/" JAVA_DLL, path, arch);
duke6e45e102007-12-01 00:00:00 +0000434 if (access(libjava, F_OK) == 0) {
ksrinie3ec45d2010-07-09 11:04:34 -0700435 JLI_TraceLauncher("JRE path is %s\n", path);
436 return JNI_TRUE;
duke6e45e102007-12-01 00:00:00 +0000437 }
438
439 /* Does the app ship a private JRE in <apphome>/jre directory? */
ksrinie3ec45d2010-07-09 11:04:34 -0700440 JLI_Snprintf(libjava, sizeof(libjava), "%s/jre/lib/%s/" JAVA_DLL, path, arch);
duke6e45e102007-12-01 00:00:00 +0000441 if (access(libjava, F_OK) == 0) {
442 JLI_StrCat(path, "/jre");
ksrinie3ec45d2010-07-09 11:04:34 -0700443 JLI_TraceLauncher("JRE path is %s\n", path);
444 return JNI_TRUE;
duke6e45e102007-12-01 00:00:00 +0000445 }
446 }
447
448 if (!speculative)
ksrini0e817162008-08-26 10:21:20 -0700449 JLI_ReportErrorMessage(JRE_ERROR8 JAVA_DLL);
duke6e45e102007-12-01 00:00:00 +0000450 return JNI_FALSE;
duke6e45e102007-12-01 00:00:00 +0000451}
452
453jboolean
454LoadJavaVM(const char *jvmpath, InvocationFunctions *ifn)
455{
456 Dl_info dlinfo;
457 void *libjvm;
458
459 JLI_TraceLauncher("JVM path is %s\n", jvmpath);
460
461 libjvm = dlopen(jvmpath, RTLD_NOW + RTLD_GLOBAL);
462 if (libjvm == NULL) {
463#if defined(__solaris__) && defined(__sparc) && !defined(_LP64) /* i.e. 32-bit sparc */
464 FILE * fp;
465 Elf32_Ehdr elf_head;
466 int count;
467 int location;
468
469 fp = fopen(jvmpath, "r");
ksrinie3ec45d2010-07-09 11:04:34 -0700470 if (fp == NULL) {
471 JLI_ReportErrorMessage(DLL_ERROR2, jvmpath, dlerror());
472 return JNI_FALSE;
473 }
duke6e45e102007-12-01 00:00:00 +0000474
475 /* read in elf header */
476 count = fread((void*)(&elf_head), sizeof(Elf32_Ehdr), 1, fp);
477 fclose(fp);
ksrinie3ec45d2010-07-09 11:04:34 -0700478 if (count < 1) {
479 JLI_ReportErrorMessage(DLL_ERROR2, jvmpath, dlerror());
480 return JNI_FALSE;
481 }
duke6e45e102007-12-01 00:00:00 +0000482
483 /*
484 * Check for running a server vm (compiled with -xarch=v8plus)
485 * on a stock v8 processor. In this case, the machine type in
486 * the elf header would not be included the architecture list
487 * provided by the isalist command, which is turn is gotten from
488 * sysinfo. This case cannot occur on 64-bit hardware and thus
489 * does not have to be checked for in binaries with an LP64 data
490 * model.
491 */
ksrinie3ec45d2010-07-09 11:04:34 -0700492 if (elf_head.e_machine == EM_SPARC32PLUS) {
duke6e45e102007-12-01 00:00:00 +0000493 char buf[257]; /* recommended buffer size from sysinfo man
494 page */
495 long length;
496 char* location;
497
498 length = sysinfo(SI_ISALIST, buf, 257);
ksrinie3ec45d2010-07-09 11:04:34 -0700499 if (length > 0) {
500 location = JLI_StrStr(buf, "sparcv8plus ");
501 if (location == NULL) {
ksrini0e817162008-08-26 10:21:20 -0700502 JLI_ReportErrorMessage(JVM_ERROR3);
duke6e45e102007-12-01 00:00:00 +0000503 return JNI_FALSE;
504 }
505 }
506 }
507#endif
ksrinie3ec45d2010-07-09 11:04:34 -0700508 JLI_ReportErrorMessage(DLL_ERROR1, __LINE__);
509 JLI_ReportErrorMessage(DLL_ERROR2, jvmpath, dlerror());
510 return JNI_FALSE;
duke6e45e102007-12-01 00:00:00 +0000511 }
512
513 ifn->CreateJavaVM = (CreateJavaVM_t)
ksrinie3ec45d2010-07-09 11:04:34 -0700514 dlsym(libjvm, "JNI_CreateJavaVM");
515 if (ifn->CreateJavaVM == NULL) {
516 JLI_ReportErrorMessage(DLL_ERROR2, jvmpath, dlerror());
517 return JNI_FALSE;
518 }
duke6e45e102007-12-01 00:00:00 +0000519
520 ifn->GetDefaultJavaVMInitArgs = (GetDefaultJavaVMInitArgs_t)
521 dlsym(libjvm, "JNI_GetDefaultJavaVMInitArgs");
ksrinie3ec45d2010-07-09 11:04:34 -0700522 if (ifn->GetDefaultJavaVMInitArgs == NULL) {
523 JLI_ReportErrorMessage(DLL_ERROR2, jvmpath, dlerror());
524 return JNI_FALSE;
525 }
duke6e45e102007-12-01 00:00:00 +0000526
527 return JNI_TRUE;
duke6e45e102007-12-01 00:00:00 +0000528}
529
530/*
531 * If app is "/foo/bin/javac", or "/foo/bin/sparcv9/javac" then put
532 * "/foo" into buf.
533 */
534jboolean
535GetApplicationHome(char *buf, jint bufsize)
536{
537 if (execname != NULL) {
538 JLI_StrNCpy(buf, execname, bufsize-1);
539 buf[bufsize-1] = '\0';
540 } else {
541 return JNI_FALSE;
542 }
543
544 if (JLI_StrRChr(buf, '/') == 0) {
545 buf[0] = '\0';
546 return JNI_FALSE;
547 }
548 *(JLI_StrRChr(buf, '/')) = '\0'; /* executable file */
549 if (JLI_StrLen(buf) < 4 || JLI_StrRChr(buf, '/') == 0) {
550 buf[0] = '\0';
551 return JNI_FALSE;
552 }
553 if (JLI_StrCmp("/bin", buf + JLI_StrLen(buf) - 4) != 0)
554 *(JLI_StrRChr(buf, '/')) = '\0'; /* sparcv9 or amd64 */
555 if (JLI_StrLen(buf) < 4 || JLI_StrCmp("/bin", buf + JLI_StrLen(buf) - 4) != 0) {
556 buf[0] = '\0';
557 return JNI_FALSE;
558 }
559 *(JLI_StrRChr(buf, '/')) = '\0'; /* bin */
560
561 return JNI_TRUE;
562}
563
564
565/*
566 * Return true if the named program exists
567 */
568static int
569ProgramExists(char *name)
570{
571 struct stat sb;
572 if (stat(name, &sb) != 0) return 0;
573 if (S_ISDIR(sb.st_mode)) return 0;
574 return (sb.st_mode & S_IEXEC) != 0;
575}
576
577
578/*
579 * Find a command in a directory, returning the path.
580 */
581static char *
582Resolve(char *indir, char *cmd)
583{
584 char name[PATH_MAX + 2], *real;
585
586 if ((JLI_StrLen(indir) + JLI_StrLen(cmd) + 1) > PATH_MAX) return 0;
ksrinie3ec45d2010-07-09 11:04:34 -0700587 JLI_Snprintf(name, sizeof(name), "%s%c%s", indir, FILE_SEPARATOR, cmd);
duke6e45e102007-12-01 00:00:00 +0000588 if (!ProgramExists(name)) return 0;
589 real = JLI_MemAlloc(PATH_MAX + 2);
590 if (!realpath(name, real))
591 JLI_StrCpy(real, name);
592 return real;
593}
594
595
596/*
597 * Find a path for the executable
598 */
599static char *
600FindExecName(char *program)
601{
602 char cwdbuf[PATH_MAX+2];
603 char *path;
604 char *tmp_path;
605 char *f;
606 char *result = NULL;
607
608 /* absolute path? */
609 if (*program == FILE_SEPARATOR ||
610 (FILE_SEPARATOR=='\\' && JLI_StrRChr(program, ':')))
611 return Resolve("", program+1);
612
613 /* relative path? */
614 if (JLI_StrRChr(program, FILE_SEPARATOR) != 0) {
615 char buf[PATH_MAX+2];
616 return Resolve(getcwd(cwdbuf, sizeof(cwdbuf)), program);
617 }
618
619 /* from search path? */
620 path = getenv("PATH");
621 if (!path || !*path) path = ".";
622 tmp_path = JLI_MemAlloc(JLI_StrLen(path) + 2);
623 JLI_StrCpy(tmp_path, path);
624
625 for (f=tmp_path; *f && result==0; ) {
626 char *s = f;
627 while (*f && (*f != PATH_SEPARATOR)) ++f;
628 if (*f) *f++ = 0;
629 if (*s == FILE_SEPARATOR)
630 result = Resolve(s, program);
631 else {
632 /* relative path element */
633 char dir[2*PATH_MAX];
ksrinie3ec45d2010-07-09 11:04:34 -0700634 JLI_Snprintf(dir, sizeof(dir), "%s%c%s", getcwd(cwdbuf, sizeof(cwdbuf)),
duke6e45e102007-12-01 00:00:00 +0000635 FILE_SEPARATOR, s);
636 result = Resolve(dir, program);
637 }
638 if (result != 0) break;
639 }
640
641 JLI_MemFree(tmp_path);
642 return result;
643}
644
645
646
647/*
648 * Compute the name of the executable
649 *
650 * In order to re-exec securely we need the absolute path of the
651 * executable. On Solaris getexecname(3c) may not return an absolute
652 * path so we use dladdr to get the filename of the executable and
653 * then use realpath to derive an absolute path. From Solaris 9
654 * onwards the filename returned in DL_info structure from dladdr is
655 * an absolute pathname so technically realpath isn't required.
656 * On Linux we read the executable name from /proc/self/exe.
657 * As a fallback, and for platforms other than Solaris and Linux,
658 * we use FindExecName to compute the executable name.
659 */
660static const char*
661SetExecname(char **argv)
662{
663 char* exec_path = NULL;
664#if defined(__solaris__)
665 {
666 Dl_info dlinfo;
667 int (*fptr)();
668
669 fptr = (int (*)())dlsym(RTLD_DEFAULT, "main");
670 if (fptr == NULL) {
ksrini0e817162008-08-26 10:21:20 -0700671 JLI_ReportErrorMessage(DLL_ERROR3, dlerror());
duke6e45e102007-12-01 00:00:00 +0000672 return JNI_FALSE;
673 }
674
675 if (dladdr((void*)fptr, &dlinfo)) {
676 char *resolved = (char*)JLI_MemAlloc(PATH_MAX+1);
677 if (resolved != NULL) {
678 exec_path = realpath(dlinfo.dli_fname, resolved);
679 if (exec_path == NULL) {
680 JLI_MemFree(resolved);
681 }
682 }
683 }
684 }
685#elif defined(__linux__)
686 {
687 const char* self = "/proc/self/exe";
688 char buf[PATH_MAX+1];
689 int len = readlink(self, buf, PATH_MAX);
690 if (len >= 0) {
691 buf[len] = '\0'; /* readlink doesn't nul terminate */
692 exec_path = JLI_StringDup(buf);
693 }
694 }
695#else /* !__solaris__ && !__linux */
696 {
697 /* Not implemented */
698 }
699#endif
700
701 if (exec_path == NULL) {
702 exec_path = FindExecName(argv[0]);
703 }
704 execname = exec_path;
705 return exec_path;
706}
707
ksrini0e817162008-08-26 10:21:20 -0700708void JLI_ReportErrorMessage(const char* fmt, ...) {
duke6e45e102007-12-01 00:00:00 +0000709 va_list vl;
710 va_start(vl, fmt);
711 vfprintf(stderr, fmt, vl);
712 fprintf(stderr, "\n");
713 va_end(vl);
714}
715
ksrini0e817162008-08-26 10:21:20 -0700716void JLI_ReportErrorMessageSys(const char* fmt, ...) {
duke6e45e102007-12-01 00:00:00 +0000717 va_list vl;
718 char *emsg;
719
720 /*
721 * TODO: its safer to use strerror_r but is not available on
722 * Solaris 8. Until then....
723 */
724 emsg = strerror(errno);
725 if (emsg != NULL) {
726 fprintf(stderr, "%s\n", emsg);
727 }
728
729 va_start(vl, fmt);
730 vfprintf(stderr, fmt, vl);
731 fprintf(stderr, "\n");
732 va_end(vl);
733}
734
ksrini0e817162008-08-26 10:21:20 -0700735void JLI_ReportExceptionDescription(JNIEnv * env) {
duke6e45e102007-12-01 00:00:00 +0000736 (*env)->ExceptionDescribe(env);
737}
738
739/*
740 * Since using the file system as a registry is a bit risky, perform
741 * additional sanity checks on the identified directory to validate
742 * it as a valid jre/sdk.
743 *
744 * Return 0 if the tests fail; otherwise return non-zero (true).
745 *
746 * Note that checking for anything more than the existence of an
747 * executable object at bin/java relative to the path being checked
748 * will break the regression tests.
749 */
750static int
751CheckSanity(char *path, char *dir)
752{
753 char buffer[PATH_MAX];
754
755 if (JLI_StrLen(path) + JLI_StrLen(dir) + 11 > PATH_MAX)
756 return (0); /* Silently reject "impossibly" long paths */
757
ksrinie3ec45d2010-07-09 11:04:34 -0700758 JLI_Snprintf(buffer, sizeof(buffer), "%s/%s/bin/java", path, dir);
duke6e45e102007-12-01 00:00:00 +0000759 return ((access(buffer, X_OK) == 0) ? 1 : 0);
760}
761
762/*
763 * Determine if there is an acceptable JRE in the directory dirname.
764 * Upon locating the "best" one, return a fully qualified path to
765 * it. "Best" is defined as the most advanced JRE meeting the
766 * constraints contained in the manifest_info. If no JRE in this
767 * directory meets the constraints, return NULL.
768 *
769 * Note that we don't check for errors in reading the directory
770 * (which would be done by checking errno). This is because it
771 * doesn't matter if we get an error reading the directory, or
772 * we just don't find anything interesting in the directory. We
773 * just return NULL in either case.
774 *
775 * The historical names of j2sdk and j2re were changed to jdk and
776 * jre respecively as part of the 1.5 rebranding effort. Since the
777 * former names are legacy on Linux, they must be recognized for
778 * all time. Fortunately, this is a minor cost.
779 */
780static char
781*ProcessDir(manifest_info *info, char *dirname)
782{
783 DIR *dirp;
784 struct dirent *dp;
785 char *best = NULL;
786 int offset;
787 int best_offset = 0;
788 char *ret_str = NULL;
789 char buffer[PATH_MAX];
790
791 if ((dirp = opendir(dirname)) == NULL)
792 return (NULL);
793
794 do {
795 if ((dp = readdir(dirp)) != NULL) {
796 offset = 0;
797 if ((JLI_StrNCmp(dp->d_name, "jre", 3) == 0) ||
798 (JLI_StrNCmp(dp->d_name, "jdk", 3) == 0))
799 offset = 3;
800 else if (JLI_StrNCmp(dp->d_name, "j2re", 4) == 0)
801 offset = 4;
802 else if (JLI_StrNCmp(dp->d_name, "j2sdk", 5) == 0)
803 offset = 5;
804 if (offset > 0) {
805 if ((JLI_AcceptableRelease(dp->d_name + offset,
806 info->jre_version)) && CheckSanity(dirname, dp->d_name))
807 if ((best == NULL) || (JLI_ExactVersionId(
808 dp->d_name + offset, best + best_offset) > 0)) {
809 if (best != NULL)
810 JLI_MemFree(best);
811 best = JLI_StringDup(dp->d_name);
812 best_offset = offset;
813 }
814 }
815 }
816 } while (dp != NULL);
817 (void) closedir(dirp);
818 if (best == NULL)
819 return (NULL);
820 else {
821 ret_str = JLI_MemAlloc(JLI_StrLen(dirname) + JLI_StrLen(best) + 2);
822 sprintf(ret_str, "%s/%s", dirname, best);
823 JLI_MemFree(best);
824 return (ret_str);
825 }
826}
827
828/*
829 * This is the global entry point. It examines the host for the optimal
830 * JRE to be used by scanning a set of directories. The set of directories
831 * is platform dependent and can be overridden by the environment
832 * variable JAVA_VERSION_PATH.
833 *
834 * This routine itself simply determines the set of appropriate
835 * directories before passing control onto ProcessDir().
836 */
837char*
838LocateJRE(manifest_info* info)
839{
840 char *path;
841 char *home;
842 char *target = NULL;
843 char *dp;
844 char *cp;
845
846 /*
847 * Start by getting JAVA_VERSION_PATH
848 */
849 if (info->jre_restrict_search) {
850 path = JLI_StringDup(system_dir);
851 } else if ((path = getenv("JAVA_VERSION_PATH")) != NULL) {
852 path = JLI_StringDup(path);
853 } else {
854 if ((home = getenv("HOME")) != NULL) {
855 path = (char *)JLI_MemAlloc(JLI_StrLen(home) + \
856 JLI_StrLen(system_dir) + JLI_StrLen(user_dir) + 2);
857 sprintf(path, "%s%s:%s", home, user_dir, system_dir);
858 } else {
859 path = JLI_StringDup(system_dir);
860 }
861 }
862
863 /*
864 * Step through each directory on the path. Terminate the scan with
865 * the first directory with an acceptable JRE.
866 */
867 cp = dp = path;
868 while (dp != NULL) {
869 cp = JLI_StrChr(dp, (int)':');
870 if (cp != NULL)
871 *cp = (char)NULL;
872 if ((target = ProcessDir(info, dp)) != NULL)
873 break;
874 dp = cp;
875 if (dp != NULL)
876 dp++;
877 }
878 JLI_MemFree(path);
879 return (target);
880}
881
882/*
883 * Given a path to a jre to execute, this routine checks if this process
884 * is indeed that jre. If not, it exec's that jre.
885 *
886 * We want to actually check the paths rather than just the version string
887 * built into the executable, so that given version specification (and
888 * JAVA_VERSION_PATH) will yield the exact same Java environment, regardless
889 * of the version of the arbitrary launcher we start with.
890 */
891void
892ExecJRE(char *jre, char **argv)
893{
894 char wanted[PATH_MAX];
895 const char* progname = GetProgramName();
896
897 /*
898 * Resolve the real path to the directory containing the selected JRE.
899 */
900 if (realpath(jre, wanted) == NULL) {
ksrini0e817162008-08-26 10:21:20 -0700901 JLI_ReportErrorMessage(JRE_ERROR9, jre);
duke6e45e102007-12-01 00:00:00 +0000902 exit(1);
903 }
904
905 /*
906 * Resolve the real path to the currently running launcher.
907 */
908 SetExecname(argv);
909 if (execname == NULL) {
ksrini0e817162008-08-26 10:21:20 -0700910 JLI_ReportErrorMessage(JRE_ERROR10);
duke6e45e102007-12-01 00:00:00 +0000911 exit(1);
912 }
913
914 /*
915 * If the path to the selected JRE directory is a match to the initial
916 * portion of the path to the currently executing JRE, we have a winner!
917 * If so, just return.
918 */
919 if (JLI_StrNCmp(wanted, execname, JLI_StrLen(wanted)) == 0)
920 return; /* I am the droid you were looking for */
921
922
923 /*
924 * This should never happen (because of the selection code in SelectJRE),
925 * but check for "impossibly" long path names just because buffer overruns
926 * can be so deadly.
927 */
928 if (JLI_StrLen(wanted) + JLI_StrLen(progname) + 6 > PATH_MAX) {
ksrini0e817162008-08-26 10:21:20 -0700929 JLI_ReportErrorMessage(JRE_ERROR11);
duke6e45e102007-12-01 00:00:00 +0000930 exit(1);
931 }
932
933 /*
934 * Construct the path and exec it.
935 */
936 (void)JLI_StrCat(JLI_StrCat(wanted, "/bin/"), progname);
937 argv[0] = JLI_StringDup(progname);
938 if (JLI_IsTraceLauncher()) {
939 int i;
940 printf("ReExec Command: %s (%s)\n", wanted, argv[0]);
941 printf("ReExec Args:");
942 for (i = 1; argv[i] != NULL; i++)
943 printf(" %s", argv[i]);
944 printf("\n");
945 }
ksrini11e7f1b2009-11-20 11:01:32 -0800946 JLI_TraceLauncher("TRACER_MARKER:About to EXEC\n");
duke6e45e102007-12-01 00:00:00 +0000947 (void)fflush(stdout);
948 (void)fflush(stderr);
949 execv(wanted, argv);
ksrini0e817162008-08-26 10:21:20 -0700950 JLI_ReportErrorMessageSys(JRE_ERROR12, wanted);
duke6e45e102007-12-01 00:00:00 +0000951 exit(1);
952}
953
954/*
955 * "Borrowed" from Solaris 10 where the unsetenv() function is being added
956 * to libc thanks to SUSv3 (Standard Unix Specification, version 3). As
957 * such, in the fullness of time this will appear in libc on all relevant
958 * Solaris/Linux platforms and maybe even the Windows platform. At that
959 * time, this stub can be removed.
960 *
961 * This implementation removes the environment locking for multithreaded
962 * applications. (We don't have access to these mutexes within libc and
963 * the launcher isn't multithreaded.) Note that what remains is platform
964 * independent, because it only relies on attributes that a POSIX environment
965 * defines.
966 *
967 * Returns 0 on success, -1 on failure.
968 *
969 * Also removed was the setting of errno. The only value of errno set
970 * was EINVAL ("Invalid Argument").
971 */
972
973/*
974 * s1(environ) is name=value
975 * s2(name) is name(not the form of name=value).
976 * if names match, return value of 1, else return 0
977 */
978static int
979match_noeq(const char *s1, const char *s2)
980{
981 while (*s1 == *s2++) {
982 if (*s1++ == '=')
983 return (1);
984 }
985 if (*s1 == '=' && s2[-1] == '\0')
986 return (1);
987 return (0);
988}
989
990/*
991 * added for SUSv3 standard
992 *
993 * Delete entry from environ.
994 * Do not free() memory! Other threads may be using it.
995 * Keep it around forever.
996 */
997static int
998borrowed_unsetenv(const char *name)
999{
1000 long idx; /* index into environ */
1001
1002 if (name == NULL || *name == '\0' ||
1003 JLI_StrChr(name, '=') != NULL) {
1004 return (-1);
1005 }
1006
1007 for (idx = 0; environ[idx] != NULL; idx++) {
1008 if (match_noeq(environ[idx], name))
1009 break;
1010 }
1011 if (environ[idx] == NULL) {
1012 /* name not found but still a success */
1013 return (0);
1014 }
1015 /* squeeze up one entry */
1016 do {
1017 environ[idx] = environ[idx+1];
1018 } while (environ[++idx] != NULL);
1019
1020 return (0);
1021}
1022/* --- End of "borrowed" code --- */
1023
1024/*
1025 * Wrapper for unsetenv() function.
1026 */
1027int
1028UnsetEnv(char *name)
1029{
1030 return(borrowed_unsetenv(name));
1031}
1032
1033/* --- Splash Screen shared library support --- */
1034
1035static const char* SPLASHSCREEN_SO = "libsplashscreen.so";
1036
1037static void* hSplashLib = NULL;
1038
1039void* SplashProcAddress(const char* name) {
1040 if (!hSplashLib) {
1041 hSplashLib = dlopen(SPLASHSCREEN_SO, RTLD_LAZY | RTLD_GLOBAL);
1042 }
1043 if (hSplashLib) {
1044 void* sym = dlsym(hSplashLib, name);
1045 return sym;
1046 } else {
1047 return NULL;
1048 }
1049}
1050
1051void SplashFreeLibrary() {
1052 if (hSplashLib) {
1053 dlclose(hSplashLib);
1054 hSplashLib = NULL;
1055 }
1056}
1057
1058const char *
1059jlong_format_specifier() {
1060 return "%lld";
1061}
1062
1063
1064
1065/*
1066 * Block current thread and continue execution in a new thread
1067 */
1068int
1069ContinueInNewThread0(int (JNICALL *continuation)(void *), jlong stack_size, void * args) {
1070 int rslt;
1071#ifdef __linux__
1072 pthread_t tid;
1073 pthread_attr_t attr;
1074 pthread_attr_init(&attr);
1075 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
1076
1077 if (stack_size > 0) {
1078 pthread_attr_setstacksize(&attr, stack_size);
1079 }
1080
1081 if (pthread_create(&tid, &attr, (void *(*)(void*))continuation, (void*)args) == 0) {
1082 void * tmp;
1083 pthread_join(tid, &tmp);
1084 rslt = (int)tmp;
1085 } else {
1086 /*
1087 * Continue execution in current thread if for some reason (e.g. out of
1088 * memory/LWP) a new thread can't be created. This will likely fail
1089 * later in continuation as JNI_CreateJavaVM needs to create quite a
1090 * few new threads, anyway, just give it a try..
1091 */
1092 rslt = continuation(args);
1093 }
1094
1095 pthread_attr_destroy(&attr);
1096#else
1097 thread_t tid;
1098 long flags = 0;
1099 if (thr_create(NULL, stack_size, (void *(*)(void *))continuation, args, flags, &tid) == 0) {
1100 void * tmp;
1101 thr_join(tid, NULL, &tmp);
1102 rslt = (int)tmp;
1103 } else {
1104 /* See above. Continue in current thread if thr_create() failed */
1105 rslt = continuation(args);
1106 }
1107#endif
1108 return rslt;
1109}
1110
1111/* Coarse estimation of number of digits assuming the worst case is a 64-bit pid. */
1112#define MAX_PID_STR_SZ 20
1113
1114void SetJavaLauncherPlatformProps() {
1115 /* Linux only */
1116#ifdef __linux__
1117 const char *substr = "-Dsun.java.launcher.pid=";
1118 char *pid_prop_str = (char *)JLI_MemAlloc(JLI_StrLen(substr) + MAX_PID_STR_SZ + 1);
1119 sprintf(pid_prop_str, "%s%d", substr, getpid());
1120 AddOption(pid_prop_str, NULL);
1121#endif
1122}
duke6e45e102007-12-01 00:00:00 +00001123
1124jboolean
1125IsJavaw()
1126{
1127 /* noop on UNIX */
1128 return JNI_FALSE;
1129}
ksrini52cded22008-03-06 07:51:28 -08001130
1131void
1132InitLauncher(jboolean javaw)
1133{
1134 JLI_SetTraceLauncher();
1135}
ksrini20a64b22008-09-24 15:07:41 -07001136
1137/*
1138 * The implementation for finding classes from the bootstrap
1139 * class loader, refer to java.h
1140 */
1141static FindClassFromBootLoader_t *findBootClass = NULL;
1142
1143jclass
1144FindBootStrapClass(JNIEnv *env, const char* classname)
1145{
1146 if (findBootClass == NULL) {
1147 findBootClass = (FindClassFromBootLoader_t *)dlsym(RTLD_DEFAULT,
mchungb2ce9412009-08-06 16:35:24 -07001148 "JVM_FindClassFromBootLoader");
ksrini20a64b22008-09-24 15:07:41 -07001149 if (findBootClass == NULL) {
1150 JLI_ReportErrorMessage(DLL_ERROR4,
mchungb2ce9412009-08-06 16:35:24 -07001151 "JVM_FindClassFromBootLoader");
ksrini20a64b22008-09-24 15:07:41 -07001152 return NULL;
1153 }
1154 }
mchungb2ce9412009-08-06 16:35:24 -07001155 return findBootClass(env, classname);
ksrini20a64b22008-09-24 15:07:41 -07001156}