Merged revisions 7732-7765 via svnmerge from
[cacao.git] / src / native / vm / java_lang_ClassLoader.c
1 /* src/native/vm/java_lang_ClassLoader.c - java/lang/ClassLoader
2
3    Copyright (C) 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: java_lang_VMClass.c 6131 2006-12-06 22:15:57Z twisti $
26
27 */
28
29
30 #include "config.h"
31
32 #include <assert.h>
33 #include <string.h>
34
35 #include "vm/types.h"
36
37 #include "mm/memory.h"
38
39 #include "vm/global.h"                          /* required by native headers */
40
41 #include "native/jni.h"
42
43 #include "native/include/java_lang_Object.h"
44
45 #if defined(ENABLE_JAVASE)
46 # include "native/include/java_lang_String.h"/* required by java_lang_Class.h */
47 # include "native/include/java_lang_Class.h"
48 # include "native/include/java_lang_ClassLoader.h"
49 # include "native/include/java_security_ProtectionDomain.h"
50 #endif
51
52 #include "vm/exceptions.h"
53 #include "vm/stringlocal.h"
54
55 #include "vmcore/class.h"
56 #include "vmcore/classcache.h"
57 #include "vmcore/options.h"
58
59 #if defined(ENABLE_STATISTICS)
60 # include "vmcore/statistics.h"
61 #endif
62
63
64 /*
65  * Class:     java/lang/ClassLoader
66  * Method:    defineClass
67  * Signature: (Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;
68  */
69 java_lang_Class *_Jv_java_lang_ClassLoader_defineClass(java_lang_ClassLoader *cl, java_lang_String *name, java_bytearray *data, s4 offset, s4 len, java_security_ProtectionDomain *pd)
70 {
71         utf               *utfname;
72         classinfo         *c;
73         classinfo         *r;
74         classbuffer       *cb;
75         classloader       *loader;
76         java_lang_Class   *co;
77 #if defined(ENABLE_JVMTI)
78         jint new_class_data_len = 0;
79         unsigned char* new_class_data = NULL;
80 #endif
81
82         /* check if data was passed */
83
84         if (data == NULL) {
85                 exceptions_throw_nullpointerexception();
86                 return NULL;
87         }
88
89         /* check the indexes passed */
90
91         if ((offset < 0) || (len < 0) || ((offset + len) > data->header.size)) {
92                 exceptions_throw_arrayindexoutofboundsexception();
93                 return NULL;
94         }
95
96         /* add classloader to classloader hashtable */
97
98         assert(cl);
99         loader = loader_hashtable_classloader_add((java_objectheader *) cl);
100
101         if (name != NULL) {
102                 /* convert '.' to '/' in java string */
103
104                 utfname = javastring_toutf((java_objectheader *) name, true);
105                 
106                 /* check if this class has already been defined */
107
108                 c = classcache_lookup_defined_or_initiated(cl, utfname);
109
110                 if (c != NULL) {
111                         exceptions_throw_linkageerror("duplicate class definition: ", c);
112                         return NULL;
113                 }
114         } 
115         else {
116                 utfname = NULL;
117         }
118
119 #if defined(ENABLE_JVMTI)
120         /* XXX again this will not work because of the indirection cell for classloaders */
121         assert(0);
122         /* fire Class File Load Hook JVMTI event */
123
124         if (jvmti)
125                 jvmti_ClassFileLoadHook(utfname, len, (unsigned char *) data->data, 
126                                                                 loader, (java_objectheader *) pd, 
127                                                                 &new_class_data_len, &new_class_data);
128 #endif
129
130         /* create a new classinfo struct */
131
132         c = class_create_classinfo(utfname);
133
134 #if defined(ENABLE_STATISTICS)
135         /* measure time */
136
137         if (opt_getloadingtime)
138                 loadingtime_start();
139 #endif
140
141         /* build a classbuffer with the given data */
142
143         cb = NEW(classbuffer);
144         cb->class = c;
145 #if defined(ENABLE_JVMTI)
146         /* check if the JVMTI wants to modify the class */
147         if (new_class_data == NULL) {
148 #endif
149         cb->size  = len;
150         cb->data  = (u1 *) &data->data[offset];
151 #if defined(ENABLE_JVMTI)
152         } else {
153                 cb->size  = new_class_data_len;
154                 cb->data  = (u1 *) new_class_data;
155         }
156 #endif
157         cb->pos   = cb->data;
158
159         /* preset the defining classloader */
160
161         c->classloader = loader;
162
163         /* load the class from this buffer */
164
165         r = load_class_from_classbuffer(cb);
166
167         /* free memory */
168
169         FREE(cb, classbuffer);
170
171 #if defined(ENABLE_STATISTICS)
172         /* measure time */
173
174         if (opt_getloadingtime)
175                 loadingtime_stop();
176 #endif
177
178         if (r == NULL) {
179                 /* If return value is NULL, we had a problem and the class is
180                    not loaded.  Now free the allocated memory, otherwise we
181                    could run into a DOS. */
182
183                 class_free(c);
184
185                 return NULL;
186         }
187
188         /* set ProtectionDomain */
189
190         co = (java_lang_Class *) c;
191
192         co->pd = pd;
193
194         /* Store the newly defined class in the class cache. This call also       */
195         /* checks whether a class of the same name has already been defined by    */
196         /* the same defining loader, and if so, replaces the newly created class  */
197         /* by the one defined earlier.                                            */
198         /* Important: The classinfo given to classcache_store must be             */
199         /*            fully prepared because another thread may return this       */
200         /*            pointer after the lookup at to top of this function         */
201         /*            directly after the class cache lock has been released.      */
202
203         c = classcache_store(loader, c, true);
204
205         return (java_lang_Class *) c;
206 }
207
208
209 /*
210  * These are local overrides for various environment variables in Emacs.
211  * Please do not remove this and leave it at the end of the file, where
212  * Emacs will automagically detect them.
213  * ---------------------------------------------------------------------
214  * Local variables:
215  * mode: c
216  * indent-tabs-mode: t
217  * c-basic-offset: 4
218  * tab-width: 4
219  * End:
220  * vim:noexpandtab:sw=4:ts=4:
221  */