aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/gcj/runtime/SharedLibHelper.java
blob: a0bfe68b83c343b8b27c939f81251d0be3afa77d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* Copyright (C) 2001, 2003, 2004  Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package gnu.gcj.runtime;
import java.lang.ref.WeakReference;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.HashMap;
import java.security.*;
import gnu.gcj.Core;
import java.util.Set;
import java.util.Iterator;
import java.util.HashSet;
import java.util.HashMap;
import java.nio.channels.FileChannel;
import java.io.*;

public class SharedLibHelper
{
  /** Load a shared library, and associate a ClassLoader with it.
   * @param libname named of shared library (passed to dlopen)
   * @param parent the parent ClassLoader
   * @parem flags passed to dlopen
   */
  SharedLibHelper(String libname, ClassLoader parent, CodeSource source,
		  int flags)
  {
    // FIXME: ask security manager first.
    loader = parent;
    baseName = libname;
    domain = new ProtectionDomain(source,
				  Policy.getPolicy().getPermissions(source));
    this.flags = flags;
  }

  public static SharedLibHelper findHelper (String libname)
  {
    synchronized (map)
      {
	Set s = (Set)map.get(libname);
	if (s == null)
	  return null;
	for (Iterator i=s.iterator(); i.hasNext();)
	  {
	    WeakReference ref = (WeakReference)i.next();
	    if (ref != null)
	      return (SharedLibHelper) ref.get();
	  }
	return null;
      }
  }

  static void copyFile (File in, File out) throws IOException 
  {
    FileChannel source = new FileInputStream(in).getChannel();
    FileChannel destination = new FileOutputStream(out).getChannel();
    source.transferTo(0, source.size(), destination);
    source.close();
    destination.close();
  }

  public static SharedLibHelper findHelper (ClassLoader loader, String libname,
					    CodeSource source)
  {
    synchronized (map)
      {
	SharedLibHelper result;
	Set s = (Set)map.get(libname);
	if (s == null)
	  {
	    s = new HashSet();
	    map.put(libname, s);
	  }
	else
	  {
	    for (Iterator i=s.iterator(); i.hasNext();)
	      {
		WeakReference ref = (WeakReference)i.next();
		if (ref != null)
		  {
		    result = (SharedLibHelper) ref.get();
		    if (result != null)
		      {			
			// A match succeeds if the library is already
			// loaded by LOADER or any of its ancestors.
			ClassLoader l = loader;
			do
			  {
			    if (result.loader == l)
			      return result;
			    l = l.getParent();
			  }
			while (l != null);
		      }
		  }
	      }

	    // Oh dear.  We've already mapped this shared library, but
	    // with a different class loader.  We need to copy it.
	    try
	      {
		File copy 
		  = File.createTempFile(new File(libname).getName(), 
					".so", new File ("/tmp"));
		File src = new File(libname);
		copyFile (src, copy);
		libname = copy.getPath();
	      }
	    catch (IOException e)
	      {
		return null;
	      }
	  }
	result = new SharedLibHelper(libname, loader, source, 0);
	s.add(new WeakReference(result));
	return result;
      }
  }

  public native void finalize ();

  public Class findClass(String name)
  {
    ensureInit();
    Class result = (Class) classMap.get(name);
    if (result != null)
      {
	// We never want to return a class without its supers linked.
	// It isn't clear from the spec, but this is what other
	// implementations do in practice.
	ensureSupersLinked(result);
      }
    return result;
  }

  public URL findResource (String name)
  {
    ensureInit();
    if (! hasResource(name))
      return null;
    try
      {
	return new URL("gcjlib", "", -1, baseName + "!/" + name);
      }
    catch (MalformedURLException _)
      {
      }
    return null;
  }

  public native Core findCore (String name);

  void ensureInit()
  {
    synchronized (classMap)
      {
	if (initialized)
	  return;
	init();
	initialized = true;
      }
  }

  native boolean hasResource(String name);
  native void init();
  native void ensureSupersLinked(Class k);

  public String toString ()
  {
    return "shared object " + baseName;
  }

  /** Called during dlopen's processing of the init section. */
  void registerClass(String name, Class cls)
  {
    classMap.put(name, cls);
  }

  /** The handle returned by dlopen. */
  gnu.gcj.RawData handler;

  /** Holds a _Jv_core_chain for the loader.  */
  gnu.gcj.RawData core_chain;

  /** Map classnames to Classes. */
  HashMap classMap = new HashMap(20);

  /** Class loader we're helping.  */
  ClassLoader loader;

  /** Name of base file.  */
  String baseName;

  /** Protection domain for loaded classes.  */
  ProtectionDomain domain;

  /** Flags to pass to dlopen.  FIXME: platform dependent.
      0 is always "sensible" (defined by us).  */
  int flags;

  /** True if we've been initialized.  */
  boolean initialized = false;

  /** Map shared library names to a helper object.  This uses weak
      references in the values so we don't prevent collection.  */
  static HashMap map = new HashMap ();
}