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