author | dsamersoff |
Thu, 17 Oct 2013 16:08:01 +0400 | |
changeset 21069 | 728330d2593a |
parent 16726 | f76b2e6bd199 |
child 23010 | 6dadb192ad81 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
14342
8435a30053c1
7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents:
12047
diff
changeset
|
2 |
* Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
/* |
|
27 |
* Adapted from JDK 1.2 linker_md.c v1.37. Note that we #define |
|
28 |
* NATIVE here, whether or not we're running solaris native threads. |
|
29 |
* Outside the VM, it's unclear how we can do the locking that is |
|
30 |
* done in the green threads version of the code below. |
|
31 |
*/ |
|
32 |
#define NATIVE |
|
33 |
||
34 |
/* |
|
35 |
* Machine Dependent implementation of the dynamic linking support |
|
36 |
* for java. This routine is Solaris specific. |
|
37 |
*/ |
|
38 |
||
39 |
#include <stdio.h> |
|
40 |
#include <dlfcn.h> |
|
41 |
#include <unistd.h> |
|
42 |
#include <stdlib.h> |
|
43 |
#include <string.h> |
|
44 |
||
45 |
#include "path_md.h" |
|
46 |
#ifndef NATIVE |
|
47 |
#include "iomgr.h" |
|
48 |
#include "threads_md.h" |
|
49 |
#endif |
|
50 |
||
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
51 |
#ifdef __APPLE__ |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
52 |
#define LIB_SUFFIX "dylib" |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
53 |
#else |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
54 |
#define LIB_SUFFIX "so" |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
55 |
#endif |
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
56 |
|
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
57 |
static void dll_build_name(char* buffer, size_t buflen, |
16726
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
58 |
const char* paths, const char* fname) { |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
59 |
char *path, *paths_copy, *next_token; |
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
60 |
|
16726
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
61 |
paths_copy = strdup(paths); |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
62 |
if (paths_copy == NULL) { |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
63 |
return; |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
64 |
} |
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
65 |
|
16726
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
66 |
next_token = NULL; |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
67 |
path = strtok_r(paths_copy, PATH_SEPARATOR, &next_token); |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
68 |
|
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
69 |
while (path != NULL) { |
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
70 |
snprintf(buffer, buflen, "%s/lib%s." LIB_SUFFIX, path, fname); |
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
71 |
if (access(buffer, F_OK) == 0) { |
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
72 |
break; |
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
73 |
} |
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
74 |
*buffer = '\0'; |
16726
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
75 |
path = strtok_r(NULL, PATH_SEPARATOR, &next_token); |
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
76 |
} |
16726
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
77 |
|
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
78 |
free(paths_copy); |
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
79 |
} |
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
80 |
|
2 | 81 |
/* |
82 |
* create a string for the JNI native function name by adding the |
|
83 |
* appropriate decorations. |
|
84 |
*/ |
|
85 |
int |
|
86 |
dbgsysBuildFunName(char *name, int nameLen, int args_size, int encodingIndex) |
|
87 |
{ |
|
88 |
/* On Solaris, there is only one encoding method. */ |
|
89 |
if (encodingIndex == 0) |
|
90 |
return 1; |
|
91 |
return 0; |
|
92 |
} |
|
93 |
||
94 |
/* |
|
95 |
* create a string for the dynamic lib open call by adding the |
|
96 |
* appropriate pre and extensions to a filename and the path |
|
97 |
*/ |
|
98 |
void |
|
16726
f76b2e6bd199
8009558: linked_md.c::dll_build_name can get stuck in an infinite loop
sla
parents:
16057
diff
changeset
|
99 |
dbgsysBuildLibName(char *holder, int holderlen, const char *pname, const char *fname) |
2 | 100 |
{ |
101 |
const int pnamelen = pname ? strlen(pname) : 0; |
|
102 |
||
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
103 |
*holder = '\0'; |
2 | 104 |
/* Quietly truncate on buffer overflow. Should be an error. */ |
105 |
if (pnamelen + (int)strlen(fname) + 10 > holderlen) { |
|
106 |
return; |
|
107 |
} |
|
108 |
||
109 |
if (pnamelen == 0) { |
|
12047
320a714614e9
7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
5506
diff
changeset
|
110 |
(void)snprintf(holder, holderlen, "lib%s." LIB_SUFFIX, fname); |
2 | 111 |
} else { |
14698
9294fcf94c46
7200297: agent code does not handle multiple boot library path elements correctly
dholmes
parents:
14342
diff
changeset
|
112 |
dll_build_name(holder, holderlen, pname, fname); |
2 | 113 |
} |
114 |
} |
|
115 |
||
116 |
#ifndef NATIVE |
|
117 |
extern int thr_main(void); |
|
118 |
#endif |
|
119 |
||
120 |
void * |
|
121 |
dbgsysLoadLibrary(const char *name, char *err_buf, int err_buflen) |
|
122 |
{ |
|
123 |
void * result; |
|
124 |
#ifdef NATIVE |
|
125 |
result = dlopen(name, RTLD_LAZY); |
|
126 |
#else |
|
127 |
sysMonitorEnter(greenThreadSelf(), &_dl_lock); |
|
128 |
result = dlopen(name, RTLD_NOW); |
|
129 |
sysMonitorExit(greenThreadSelf(), &_dl_lock); |
|
130 |
/* |
|
131 |
* This is a bit of bulletproofing to catch the commonly occurring |
|
132 |
* problem of people loading a library which depends on libthread into |
|
133 |
* the VM. thr_main() should always return -1 which means that libthread |
|
134 |
* isn't loaded. |
|
135 |
*/ |
|
136 |
if (thr_main() != -1) { |
|
137 |
VM_CALL(panic)("libthread loaded into green threads"); |
|
138 |
} |
|
139 |
#endif |
|
140 |
if (result == NULL) { |
|
141 |
(void)strncpy(err_buf, dlerror(), err_buflen-2); |
|
142 |
err_buf[err_buflen-1] = '\0'; |
|
143 |
} |
|
144 |
return result; |
|
145 |
} |
|
146 |
||
147 |
void dbgsysUnloadLibrary(void *handle) |
|
148 |
{ |
|
149 |
#ifndef NATIVE |
|
150 |
sysMonitorEnter(greenThreadSelf(), &_dl_lock); |
|
151 |
#endif |
|
152 |
(void)dlclose(handle); |
|
153 |
#ifndef NATIVE |
|
154 |
sysMonitorExit(greenThreadSelf(), &_dl_lock); |
|
155 |
#endif |
|
156 |
} |
|
157 |
||
158 |
void * dbgsysFindLibraryEntry(void *handle, const char *name) |
|
159 |
{ |
|
160 |
void * sym; |
|
161 |
#ifndef NATIVE |
|
162 |
sysMonitorEnter(greenThreadSelf(), &_dl_lock); |
|
163 |
#endif |
|
164 |
sym = dlsym(handle, name); |
|
165 |
#ifndef NATIVE |
|
166 |
sysMonitorExit(greenThreadSelf(), &_dl_lock); |
|
167 |
#endif |
|
168 |
return sym; |
|
169 |
} |