* snapshot-README: Mention how the snapshot was generated.
[official-gcc.git] / libjava / defineclass.cc
blob2e8b4d974346d70810888359267de59454ca821b
1 // defineclass.cc - defining a class from .class format.
3 /* Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 /*
12 Author: Kresten Krab Thorup <krab@gnu.org>
14 Written using the online versions of Java Language Specification (1st
15 ed.) and The Java Virtual Machine Specification (2nd ed.).
17 Future work may include reading (and handling) attributes which are
18 currently being ignored ("InnerClasses", "LineNumber", etc...).
21 #include <config.h>
23 #include <java-interp.h>
25 #include <stdlib.h>
26 #include <java-cpool.h>
27 #include <gcj/cni.h>
29 #include <java/lang/Class.h>
30 #include <java/lang/Float.h>
31 #include <java/lang/Double.h>
32 #include <java/lang/Character.h>
33 #include <java/lang/LinkageError.h>
34 #include <java/lang/InternalError.h>
35 #include <java/lang/ClassFormatError.h>
36 #include <java/lang/NoClassDefFoundError.h>
37 #include <java/lang/ClassCircularityError.h>
38 #include <java/lang/IncompatibleClassChangeError.h>
39 #include <java/lang/reflect/Modifier.h>
41 using namespace gcj;
43 #ifdef INTERPRETER
45 // these go in some separate functions, to avoid having _Jv_InitClass
46 // inserted all over the place.
47 static void throw_internal_error (char *msg)
48 __attribute__ ((__noreturn__));
49 static void throw_no_class_def_found_error (jstring msg)
50 __attribute__ ((__noreturn__));
51 static void throw_no_class_def_found_error (char *msg)
52 __attribute__ ((__noreturn__));
53 static void throw_class_format_error (jstring msg)
54 __attribute__ ((__noreturn__));
55 static void throw_incompatible_class_change_error (jstring msg)
56 __attribute__ ((__noreturn__));
57 static void throw_class_circularity_error (jstring msg)
58 __attribute__ ((__noreturn__));
60 /**
61 * We define class reading using a class. It is practical, since then
62 * the entire class-reader can be a friend of class Class (it needs to
63 * write all it's different structures); but also because this makes it
64 * easy to make class definition reentrant, and thus two threads can be
65 * defining classes at the same time. This class (_Jv_ClassReader) is
66 * never exposed outside this file, so we don't have to worry about
67 * public or private members here.
70 struct _Jv_ClassReader {
72 // do verification? Currently, there is no option to disable this.
73 // This flag just controls the verificaiton done by the class loader;
74 // i.e., checking the integrity of the constant pool; and it is
75 // allways on. You always want this as far as I can see, but it also
76 // controls weither identifiers and type descriptors/signatures are
77 // verified as legal. This could be somewhat more expensive since it
78 // will call Character.isJavaIdentifier{Start,Part} for each character
79 // in any identifier (field name or method name) it comes by. Thus,
80 // it might be useful to turn off this verification for classes that
81 // come from a trusted source. However, for GCJ, trusted classes are
82 // most likely to be linked in.
84 bool verify;
86 // input data.
87 unsigned char *bytes;
88 int len;
90 // current input position
91 int pos;
93 // the constant pool data
94 int pool_count;
95 unsigned char *tags;
96 unsigned int *offsets;
98 // the class to define (see java-interp.h)
99 _Jv_InterpClass *def;
101 /* check that the given number of input bytes are available */
102 inline void check (int num)
104 if (pos + num > len)
105 throw_class_format_error ("Premature end of data");
108 /* skip a given number of bytes in input */
109 inline void skip (int num)
111 check (num);
112 pos += num;
115 /* read an unsignend 1-byte unit */
116 inline static jint get1u (unsigned char* bytes)
118 return bytes[0];
121 /* read an unsigned 1-byte unit */
122 inline jint read1u ()
124 skip (1);
125 return get1u (bytes+pos-1);
128 /* read an unsigned 2-byte unit */
129 inline static jint get2u (unsigned char *bytes)
131 return (((jint)bytes[0]) << 8) | ((jint)bytes[1]);
134 /* read an unsigned 2-byte unit */
135 inline jint read2u ()
137 skip (2);
138 return get2u (bytes+pos-2);
141 /* read a 4-byte unit */
142 static jint get4 (unsigned char *bytes)
144 return (((jint)bytes[0]) << 24)
145 | (((jint)bytes[1]) << 16)
146 | (((jint)bytes[2]) << 8)
147 | (((jint)bytes[3]) << 0);
150 /* read a 4-byte unit, (we don't do that quite so often) */
151 inline jint read4 ()
153 skip (4);
154 return get4 (bytes+pos-4);
157 /* read a 8-byte unit */
158 static jlong get8 (unsigned char* bytes)
160 return (((jlong)bytes[0]) << 56)
161 | (((jlong)bytes[1]) << 48)
162 | (((jlong)bytes[2]) << 40)
163 | (((jlong)bytes[3]) << 32)
164 | (((jlong)bytes[4]) << 24)
165 | (((jlong)bytes[5]) << 16)
166 | (((jlong)bytes[6]) << 8)
167 | (((jlong)bytes[7]) << 0);
170 /* read a 8-byte unit */
171 inline jlong read8 ()
173 skip (8);
174 return get8 (bytes+pos-8);
177 inline void check_tag (int index, char expected_tag)
179 if (index < 0
180 || index > pool_count
181 || tags[index] != expected_tag)
182 throw_class_format_error ("erroneous constant pool tag");
185 inline void verify_identifier (_Jv_Utf8Const* name)
187 if (! _Jv_VerifyIdentifier (name))
188 throw_class_format_error ("erroneous identifier");
191 inline void verify_classname (unsigned char* ptr, _Jv_ushort length)
193 if (! _Jv_VerifyClassName (ptr, length))
194 throw_class_format_error ("erroneous class name");
197 inline void verify_classname (_Jv_Utf8Const *name)
199 if (! _Jv_VerifyClassName (name))
200 throw_class_format_error ("erroneous class name");
203 inline void verify_field_signature (_Jv_Utf8Const *sig)
205 if (! _Jv_VerifyFieldSignature (sig))
206 throw_class_format_error ("erroneous type descriptor");
209 inline void verify_method_signature (_Jv_Utf8Const *sig)
211 if (! _Jv_VerifyMethodSignature (sig))
212 throw_class_format_error ("erroneous type descriptor");
215 _Jv_ClassReader (jclass klass, jbyteArray data, jint offset, jint length)
217 if (klass == 0 || length < 0 || offset+length > data->length)
218 throw_internal_error ("arguments to _Jv_DefineClass");
220 verify = true;
221 bytes = (unsigned char*) (elements (data)+offset);
222 len = length;
223 pos = 0;
224 def = (_Jv_InterpClass*) klass;
227 /** and here goes the parser members defined out-of-line */
228 void parse ();
229 void read_constpool ();
230 void prepare_pool_entry (int index, unsigned char tag);
231 void read_fields ();
232 void read_methods ();
233 void read_one_class_attribute ();
234 void read_one_method_attribute (int method);
235 void read_one_code_attribute (int method);
236 void read_one_field_attribute (int field);
237 void throw_class_format_error (char *msg);
239 /** check an utf8 entry, without creating a Utf8Const object */
240 bool is_attribute_name (int index, char *name);
242 /** here goes the class-loader members defined out-of-line */
243 void handleConstantPool ();
244 void handleClassBegin (int, int, int);
245 void handleInterfacesBegin (int);
246 void handleInterface (int, int);
247 void handleFieldsBegin (int);
248 void handleField (int, int, int, int);
249 void handleFieldsEnd ();
250 void handleConstantValueAttribute (int,int);
251 void handleMethodsBegin (int);
252 void handleMethod (int, int, int, int);
253 void handleMethodsEnd ();
254 void handleCodeAttribute (int, int, int, int, int, int);
255 void handleExceptionTableEntry (int, int, int, int, int, int);
257 void checkExtends (jclass sub, jclass super);
258 void checkImplements (jclass sub, jclass super);
261 * FIXME: we should keep a hash table of utf8-strings, since many will
262 * be the same. It's a little tricky, however, because the hash table
263 * needs to interact gracefully with the garbage collector. Much
264 * memory is to be saved by this, however! perhaps the improvement
265 * could be implemented in prims.cc (_Jv_makeUtf8Const), since it
266 * computes the hash value anyway.
270 void
271 _Jv_DefineClass (jclass klass, jbyteArray data, jint offset, jint length)
273 _Jv_ClassReader reader (klass, data, offset, length);
274 reader.parse();
276 /* that's it! */
280 /** This section defines the parsing/scanning of the class data */
282 void
283 _Jv_ClassReader::parse ()
285 int magic = read4 ();
287 /* FIXME: Decide which range of version numbers to allow */
289 /* int minor_version = */ read2u ();
290 /* int major_verson = */ read2u ();
292 if (magic != (int) 0xCAFEBABE)
293 throw_class_format_error ("bad magic number");
295 pool_count = read2u ();
297 read_constpool ();
299 int access_flags = read2u ();
300 int this_class = read2u ();
301 int super_class = read2u ();
303 check_tag (this_class, JV_CONSTANT_Class);
304 if (super_class != 0)
305 check_tag (super_class, JV_CONSTANT_Class);
307 handleClassBegin (access_flags, this_class, super_class);
309 int interfaces_count = read2u ();
311 handleInterfacesBegin (interfaces_count);
313 for (int i = 0; i < interfaces_count; i++)
315 int iface = read2u ();
316 check_tag (iface, JV_CONSTANT_Class);
317 handleInterface (i, iface);
320 read_fields ();
321 read_methods ();
323 int attributes_count = read2u ();
325 for (int i = 0; i < attributes_count; i++)
327 read_one_class_attribute ();
330 if (pos != len)
331 throw_class_format_error ("unused data before end of file");
333 // tell everyone we're done.
334 def->state = JV_STATE_LOADED;
335 def->notifyAll ();
339 void _Jv_ClassReader::read_constpool ()
341 tags = (unsigned char*) _Jv_AllocBytes (pool_count);
342 offsets = (unsigned int *) _Jv_AllocBytes (sizeof (int)
343 * pool_count) ;
345 /** first, we scan the constant pool, collecting tags and offsets */
346 tags[0] = JV_CONSTANT_Undefined;
347 offsets[0] = pos;
348 for (int c = 1; c < pool_count; c++)
350 tags[c] = read1u ();
351 offsets[c] = pos;
353 switch (tags[c])
355 case JV_CONSTANT_String:
356 case JV_CONSTANT_Class:
357 skip (2);
358 break;
360 case JV_CONSTANT_Fieldref:
361 case JV_CONSTANT_Methodref:
362 case JV_CONSTANT_InterfaceMethodref:
363 case JV_CONSTANT_NameAndType:
364 case JV_CONSTANT_Integer:
365 case JV_CONSTANT_Float:
366 skip (4);
367 break;
369 case JV_CONSTANT_Double:
370 case JV_CONSTANT_Long:
371 skip (8);
372 tags[++c] = JV_CONSTANT_Undefined;
373 break;
375 case JV_CONSTANT_Utf8:
377 int len = read2u ();
378 skip (len);
380 break;
382 case JV_CONSTANT_Unicode:
383 throw_class_format_error ("unicode not supported");
384 break;
386 default:
387 throw_class_format_error ("erroneous constant pool tag");
391 handleConstantPool ();
395 void _Jv_ClassReader::read_fields ()
397 int fields_count = read2u ();
398 handleFieldsBegin (fields_count);
400 for (int i = 0; i < fields_count; i++)
402 int access_flags = read2u ();
403 int name_index = read2u ();
404 int descriptor_index = read2u ();
405 int attributes_count = read2u ();
407 check_tag (name_index, JV_CONSTANT_Utf8);
408 prepare_pool_entry (name_index, JV_CONSTANT_Utf8);
410 check_tag (descriptor_index, JV_CONSTANT_Utf8);
411 prepare_pool_entry (descriptor_index, JV_CONSTANT_Utf8);
413 handleField (i, access_flags, name_index, descriptor_index);
415 for (int j = 0; j < attributes_count; j++)
417 read_one_field_attribute (i);
421 handleFieldsEnd ();
424 bool
425 _Jv_ClassReader::is_attribute_name (int index, char *name)
427 check_tag (index, JV_CONSTANT_Utf8);
428 int len = get2u (bytes+offsets[index]);
429 if (len != (int) strlen (name))
430 return false;
431 else
432 return !memcmp (bytes+offsets[index]+2, name, len);
435 void _Jv_ClassReader::read_one_field_attribute (int field_index)
437 int name = read2u ();
438 int length = read4 ();
440 if (is_attribute_name (name, "ConstantValue"))
442 int cv = read2u ();
444 if (cv < pool_count
445 && cv > 0
446 && (tags[cv] == JV_CONSTANT_Integer
447 || tags[cv] == JV_CONSTANT_Float
448 || tags[cv] == JV_CONSTANT_Long
449 || tags[cv] == JV_CONSTANT_Double
450 || tags[cv] == JV_CONSTANT_String))
452 handleConstantValueAttribute (field_index, cv);
454 else
456 throw_class_format_error ("erroneous ConstantValue attribute");
459 if (length != 2)
460 throw_class_format_error ("erroneous ConstantValue attribute");
463 else
465 skip (length);
469 void _Jv_ClassReader::read_methods ()
471 int methods_count = read2u ();
473 handleMethodsBegin (methods_count);
475 for (int i = 0; i < methods_count; i++)
477 int access_flags = read2u ();
478 int name_index = read2u ();
479 int descriptor_index = read2u ();
480 int attributes_count = read2u ();
482 check_tag (name_index, JV_CONSTANT_Utf8);
483 prepare_pool_entry (descriptor_index, JV_CONSTANT_Utf8);
485 check_tag (name_index, JV_CONSTANT_Utf8);
486 prepare_pool_entry (descriptor_index, JV_CONSTANT_Utf8);
488 handleMethod (i, access_flags, name_index,
489 descriptor_index);
491 for (int j = 0; j < attributes_count; j++)
493 read_one_method_attribute (i);
497 handleMethodsEnd ();
500 void _Jv_ClassReader::read_one_method_attribute (int method_index)
502 int name = read2u ();
503 int length = read4 ();
505 if (is_attribute_name (name, "Exceptions"))
507 _Jv_Method *method = reinterpret_cast<_Jv_Method *>
508 (&def->methods[method_index]);
509 if (method->throws != NULL)
510 throw_class_format_error ("only one Exceptions attribute allowed per method");
512 int num_exceptions = read2u ();
513 // We use malloc here because the GC won't scan the method
514 // objects. FIXME this means a memory leak if we GC a class.
515 // (Currently we never do.)
516 _Jv_Utf8Const **exceptions =
517 (_Jv_Utf8Const **) _Jv_Malloc ((num_exceptions + 1) * sizeof (_Jv_Utf8Const *));
519 int out = 0;
520 _Jv_word *pool_data = def->constants.data;
521 for (int i = 0; i < num_exceptions; ++i)
525 int ndx = read2u ();
526 // JLS 2nd Ed. 4.7.5 requires that the tag not be 0.
527 if (ndx != 0)
529 check_tag (ndx, JV_CONSTANT_Class);
530 exceptions[out++] = pool_data[ndx].utf8;
533 catch (java::lang::Throwable *exc)
535 _Jv_Free (exceptions);
536 throw exc;
539 exceptions[out] = NULL;
540 method->throws = exceptions;
543 else if (is_attribute_name (name, "Code"))
545 int start_off = pos;
546 int max_stack = read2u ();
547 int max_locals = read2u ();
548 int code_length = read4 ();
550 int code_start = pos;
551 skip (code_length);
552 int exception_table_length = read2u ();
554 handleCodeAttribute (method_index,
555 max_stack, max_locals,
556 code_start, code_length,
557 exception_table_length);
560 for (int i = 0; i < exception_table_length; i++)
562 int start_pc = read2u ();
563 int end_pc = read2u ();
564 int handler_pc = read2u ();
565 int catch_type = read2u ();
567 if (start_pc > end_pc
568 || start_pc < 0
569 // END_PC can be equal to CODE_LENGTH.
570 // See JVM Spec 4.7.4.
571 || end_pc > code_length
572 || handler_pc >= code_length)
573 throw_class_format_error ("erroneous exception handler info");
575 if (! (tags[catch_type] == JV_CONSTANT_Class
576 || tags[catch_type] == 0))
578 throw_class_format_error ("erroneous exception handler info");
581 handleExceptionTableEntry (method_index,
583 start_pc,
584 end_pc,
585 handler_pc,
586 catch_type);
590 int attributes_count = read2u ();
592 for (int i = 0; i < attributes_count; i++)
594 read_one_code_attribute (method_index);
597 if ((pos - start_off) != length)
598 throw_class_format_error ("code attribute too short");
601 else
603 /* ignore unknown attributes */
604 skip (length);
608 void _Jv_ClassReader::read_one_code_attribute (int /*method*/)
610 /* ignore for now, ... later we may want to pick up
611 line number information, for debugging purposes;
612 in fact, the whole debugger issue is open! */
614 /* int name = */ read2u ();
615 int length = read4 ();
616 skip (length);
620 void _Jv_ClassReader::read_one_class_attribute ()
622 /* we also ignore the class attributes, ...
623 some day we'll add inner-classes support. */
625 /* int name = */ read2u ();
626 int length = read4 ();
627 skip (length);
633 /* this section defines the semantic actions of the parser */
635 void _Jv_ClassReader::handleConstantPool ()
637 /** now, we actually define the class' constant pool */
639 // the pool is scanned explicitly by the collector
640 jbyte *pool_tags = (jbyte*) _Jv_AllocBytes (pool_count);
641 _Jv_word *pool_data
642 = (_Jv_word*) _Jv_AllocBytes (pool_count * sizeof (_Jv_word));
644 def->constants.tags = pool_tags;
645 def->constants.data = pool_data;
646 def->constants.size = pool_count;
648 // Here we make a pass to collect the strings! We do this, because
649 // internally in the GCJ runtime, classes are encoded with .'s not /'s.
650 // Therefore, we first collect the strings, and then translate the rest
651 // of the utf8-entries (thus not representing strings) from /-notation
652 // to .-notation.
653 for (int i = 1; i < pool_count; i++)
655 if (tags[i] == JV_CONSTANT_String)
657 unsigned char* str_data = bytes + offsets [i];
658 int utf_index = get2u (str_data);
659 check_tag (utf_index, JV_CONSTANT_Utf8);
660 unsigned char *utf_data = bytes + offsets[utf_index];
661 int len = get2u (utf_data);
662 pool_data[i].utf8 = _Jv_makeUtf8Const ((char*)(utf_data+2), len);
663 pool_tags[i] = JV_CONSTANT_String;
665 else
667 pool_tags[i] = JV_CONSTANT_Undefined;
671 // and now, we scan everything else but strings & utf8-entries. This
672 // leaves out those utf8-entries which are not used; which will be left
673 // with a tag of JV_CONSTANT_Undefined in the class definition.
674 for (int index = 1; index < pool_count; index++)
676 switch (tags[index])
678 case JV_CONSTANT_Undefined:
679 case JV_CONSTANT_String:
680 case JV_CONSTANT_Utf8:
681 continue;
683 default:
684 prepare_pool_entry (index, tags[index]);
690 /* this is a recursive procedure, which will prepare pool entries as needed.
691 Which is how we avoid initializing those entries which go unused. */
692 void
693 _Jv_ClassReader::prepare_pool_entry (int index, unsigned char this_tag)
695 /* these two, pool_data and pool_tags, point into the class
696 structure we are currently defining */
698 unsigned char *pool_tags = (unsigned char*) def->constants.tags;
699 _Jv_word *pool_data = def->constants.data;
701 /* this entry was already prepared */
702 if (pool_tags[index] == this_tag)
703 return;
705 /* this_data points to the constant-pool information for the current
706 constant-pool entry */
708 unsigned char *this_data = bytes + offsets[index];
710 switch (this_tag)
712 case JV_CONSTANT_Utf8:
714 // If we came here, it is because some other tag needs this
715 // utf8-entry for type information! Thus, we translate /'s to .'s in
716 // order to accomondate gcj's internal representation.
718 int len = get2u (this_data);
719 char *buffer = (char*) __builtin_alloca (len);
720 char *s = ((char*) this_data)+2;
722 /* FIXME: avoid using a buffer here */
723 for (int i = 0; i < len; i++)
725 if (s[i] == '/')
726 buffer[i] = '.';
727 else
728 buffer[i] = (char) s[i];
731 pool_data[index].utf8 = _Jv_makeUtf8Const (buffer, len);
732 pool_tags[index] = JV_CONSTANT_Utf8;
734 break;
736 case JV_CONSTANT_Class:
738 int utf_index = get2u (this_data);
739 check_tag (utf_index, JV_CONSTANT_Utf8);
740 prepare_pool_entry (utf_index, JV_CONSTANT_Utf8);
742 if (verify)
743 verify_classname (pool_data[utf_index].utf8);
745 pool_data[index].utf8 = pool_data[utf_index].utf8;
746 pool_tags[index] = JV_CONSTANT_Class;
748 break;
750 case JV_CONSTANT_String:
751 // already handled before...
752 break;
754 case JV_CONSTANT_Fieldref:
755 case JV_CONSTANT_Methodref:
756 case JV_CONSTANT_InterfaceMethodref:
758 int class_index = get2u (this_data);
759 int nat_index = get2u (this_data+2);
761 check_tag (class_index, JV_CONSTANT_Class);
762 prepare_pool_entry (class_index, JV_CONSTANT_Class);
764 check_tag (nat_index, JV_CONSTANT_NameAndType);
765 prepare_pool_entry (nat_index, JV_CONSTANT_NameAndType);
767 // here, verify the signature and identifier name
768 if (verify)
770 _Jv_ushort name_index, type_index;
771 _Jv_loadIndexes (&pool_data[nat_index],
772 name_index, type_index);
774 if (this_tag == JV_CONSTANT_Fieldref)
775 _Jv_VerifyFieldSignature (pool_data[type_index].utf8);
776 else
777 _Jv_VerifyMethodSignature (pool_data[type_index].utf8);
779 _Jv_Utf8Const* name = pool_data[name_index].utf8;
781 if (this_tag != JV_CONSTANT_Fieldref
782 && ( _Jv_equalUtf8Consts (name, clinit_name)
783 || _Jv_equalUtf8Consts (name, init_name)))
784 /* ignore */;
785 else
786 verify_identifier (pool_data[name_index].utf8);
789 _Jv_storeIndexes (&pool_data[index], class_index, nat_index);
790 pool_tags[index] = this_tag;
792 break;
794 case JV_CONSTANT_NameAndType:
796 _Jv_ushort name_index = get2u (this_data);
797 _Jv_ushort type_index = get2u (this_data+2);
799 check_tag (name_index, JV_CONSTANT_Utf8);
800 prepare_pool_entry (name_index, JV_CONSTANT_Utf8);
802 check_tag (type_index, JV_CONSTANT_Utf8);
803 prepare_pool_entry (type_index, JV_CONSTANT_Utf8);
805 _Jv_storeIndexes (&pool_data[index], name_index, type_index);
806 pool_tags[index] = JV_CONSTANT_NameAndType;
808 break;
810 case JV_CONSTANT_Float:
812 jfloat f = java::lang::Float::intBitsToFloat ((jint) get4 (this_data));
813 _Jv_storeFloat (&pool_data[index], f);
814 pool_tags[index] = JV_CONSTANT_Float;
816 break;
818 case JV_CONSTANT_Integer:
820 int i = get4 (this_data);
821 _Jv_storeInt (&pool_data[index], i);
822 pool_tags[index] = JV_CONSTANT_Integer;
824 break;
826 case JV_CONSTANT_Double:
828 jdouble d
829 = java::lang::Double::longBitsToDouble ((jlong) get8 (this_data));
830 _Jv_storeDouble (&pool_data[index], d);
831 pool_tags[index] = JV_CONSTANT_Double;
833 break;
835 case JV_CONSTANT_Long:
837 jlong i = get8 (this_data);
838 _Jv_storeLong (&pool_data[index], i);
839 pool_tags[index] = JV_CONSTANT_Long;
841 break;
843 default:
844 throw_class_format_error ("erroneous constant pool tag");
849 void
850 _Jv_ClassReader::handleClassBegin
851 (int access_flags, int this_class, int super_class)
853 using namespace java::lang::reflect;
855 unsigned char *pool_tags = (unsigned char*) def->constants.tags;
856 _Jv_word *pool_data = def->constants.data;
858 check_tag (this_class, JV_CONSTANT_Class);
859 _Jv_Utf8Const *loadedName = pool_data[this_class].utf8;
861 // was ClassLoader.defineClass called with an expected class name?
862 if (def->name == 0)
864 jclass orig = _Jv_FindClassInCache (loadedName, def->loader);
866 if (orig == 0)
868 def->name = loadedName;
870 else
872 jstring msg = JvNewStringUTF ("anonymous "
873 "class data denotes "
874 "existing class ");
875 msg = msg->concat (orig->getName ());
877 throw_no_class_def_found_error (msg);
881 // assert that the loaded class has the expected name, 5.3.5
882 else if (! _Jv_equalUtf8Consts (loadedName, def->name))
884 jstring msg = JvNewStringUTF ("loaded class ");
885 msg = msg->concat (def->getName ());
886 msg = msg->concat (_Jv_NewStringUTF (" was in fact named "));
887 jstring klass_name = _Jv_NewStringUTF (loadedName->data);
888 msg = msg->concat (klass_name);
890 throw_no_class_def_found_error (msg);
893 def->accflags = access_flags | java::lang::reflect::Modifier::INTERPRETED;
894 pool_data[this_class].clazz = def;
895 pool_tags[this_class] = JV_CONSTANT_ResolvedClass;
897 if (super_class == 0 && ! (access_flags & Modifier::INTERFACE))
899 // FIXME: Consider this carefully!
900 if (! _Jv_equalUtf8Consts (def->name, java::lang::Object::class$.name))
901 throw_no_class_def_found_error ("loading java.lang.Object");
904 // In the pre-loading state, it can be looked up in the
905 // cache only by this thread! This allows the super-class
906 // to include references to this class.
908 def->state = JV_STATE_PRELOADING;
911 JvSynchronize sync (&java::lang::Class::class$);
912 _Jv_RegisterClass (def);
915 if (super_class != 0)
917 // Load the superclass.
918 check_tag (super_class, JV_CONSTANT_Class);
919 _Jv_Utf8Const* super_name = pool_data[super_class].utf8;
921 // Load the superclass using our defining loader.
922 jclass the_super = _Jv_FindClass (super_name,
923 def->loader);
925 // This will establish that we are allowed to be a subclass,
926 // and check for class circularity error.
927 checkExtends (def, the_super);
929 // Note: for an interface we will find Object as the
930 // superclass. We still check it above to ensure class file
931 // validity, but we simply assign `null' to the actual field in
932 // this case.
933 def->superclass = (((access_flags & Modifier::INTERFACE))
934 ? NULL : the_super);
935 pool_data[super_class].clazz = the_super;
936 pool_tags[super_class] = JV_CONSTANT_ResolvedClass;
939 // Now we've come past the circularity problem, we can
940 // now say that we're loading.
942 def->state = JV_STATE_LOADING;
943 def->notifyAll ();
946 ///// implements the checks described in sect. 5.3.5.3
947 void
948 _Jv_ClassReader::checkExtends (jclass sub, jclass super)
950 using namespace java::lang::reflect;
952 // having an interface or a final class as a superclass is no good
953 if ((super->accflags & (Modifier::INTERFACE | Modifier::FINAL)) != 0)
955 throw_incompatible_class_change_error (sub->getName ());
958 // if the super class is not public, we need to check some more
959 if ((super->accflags & Modifier::PUBLIC) == 0)
961 // With package scope, the classes must have the same
962 // class loader.
963 if ( sub->loader != super->loader
964 || !_Jv_ClassNameSamePackage (sub->name, super->name))
966 throw_incompatible_class_change_error (sub->getName ());
970 for (; super != 0; super = super->superclass)
972 if (super == sub)
973 throw_class_circularity_error (sub->getName ());
979 void _Jv_ClassReader::handleInterfacesBegin (int count)
981 def->interfaces = (jclass*) _Jv_AllocBytes (count*sizeof (jclass));
982 def->interface_count = count;
985 void _Jv_ClassReader::handleInterface (int if_number, int offset)
987 _Jv_word * pool_data = def->constants.data;
988 unsigned char * pool_tags = (unsigned char*) def->constants.tags;
990 jclass the_interface;
992 if (pool_tags[offset] == JV_CONSTANT_Class)
994 _Jv_Utf8Const* name = pool_data[offset].utf8;
995 the_interface = _Jv_FindClass (name, def->loader);
997 else if (pool_tags[offset] == JV_CONSTANT_ResolvedClass)
999 the_interface = pool_data[offset].clazz;
1001 else
1003 throw_no_class_def_found_error ("erroneous constant pool tag");
1006 // checks the validity of the_interface, and that we are in fact
1007 // allowed to implement that interface.
1008 checkImplements (def, the_interface);
1010 pool_data[offset].clazz = the_interface;
1011 pool_tags[offset] = JV_CONSTANT_ResolvedClass;
1013 def->interfaces[if_number] = the_interface;
1016 void
1017 _Jv_ClassReader::checkImplements (jclass sub, jclass super)
1019 using namespace java::lang::reflect;
1021 // well, it *must* be an interface
1022 if ((super->accflags & Modifier::INTERFACE) == 0)
1024 throw_incompatible_class_change_error (sub->getName ());
1027 // if it has package scope, it must also be defined by the
1028 // same loader.
1029 if ((super->accflags & Modifier::PUBLIC) == 0)
1031 if ( sub->loader != super->loader
1032 || !_Jv_ClassNameSamePackage (sub->name, super->name))
1034 throw_incompatible_class_change_error (sub->getName ());
1038 // FIXME: add interface circularity check here
1039 if (sub == super)
1041 throw_class_circularity_error (sub->getName ());
1045 void _Jv_ClassReader::handleFieldsBegin (int count)
1047 def->fields = (_Jv_Field*)
1048 _Jv_AllocBytes (count * sizeof (_Jv_Field));
1049 def->field_count = count;
1050 def->field_initializers = (_Jv_ushort*)
1051 _Jv_AllocBytes (count * sizeof (_Jv_ushort));
1052 for (int i = 0; i < count; i++)
1053 def->field_initializers[i] = (_Jv_ushort) 0;
1056 void _Jv_ClassReader::handleField (int field_no,
1057 int flags,
1058 int name,
1059 int desc)
1061 using namespace java::lang::reflect;
1063 _Jv_word *pool_data = def->constants.data;
1065 _Jv_Field *field = &def->fields[field_no];
1066 _Jv_Utf8Const *field_name = pool_data[name].utf8;
1068 #ifndef COMPACT_FIELDS
1069 field->name = field_name;
1070 #else
1071 field->nameIndex = name;
1072 #endif
1074 // Ignore flags we don't know about.
1075 field->flags = flags & Modifier::ALL_FLAGS;
1077 _Jv_Utf8Const* sig = pool_data[desc].utf8;
1079 if (verify)
1081 verify_identifier (field_name);
1083 for (int i = 0; i < field_no; ++i)
1085 if (_Jv_equalUtf8Consts (field_name, def->fields[i].name)
1086 && _Jv_equalUtf8Consts (sig,
1087 // We know the other fields are
1088 // unresolved.
1089 (_Jv_Utf8Const *) def->fields[i].type))
1090 throw_class_format_error ("duplicate field name");
1093 if (field->flags & (Modifier::SYNCHRONIZED
1094 | Modifier::NATIVE
1095 | Modifier::INTERFACE
1096 | Modifier::ABSTRACT))
1097 throw_class_format_error ("erroneous field access flags");
1099 if (1 < ( ((field->flags & Modifier::PUBLIC) ? 1 : 0)
1100 +((field->flags & Modifier::PRIVATE) ? 1 : 0)
1101 +((field->flags & Modifier::PROTECTED) ? 1 : 0)))
1102 throw_class_format_error ("erroneous field access flags");
1105 if (verify)
1106 _Jv_VerifyFieldSignature (sig);
1108 // field->type is really a jclass, but while it is still
1109 // unresolved we keep an _Jv_Utf8Const* instead.
1110 field->type = (jclass) sig;
1111 field->flags |= _Jv_FIELD_UNRESOLVED_FLAG;
1112 field->u.boffset = 0;
1116 void _Jv_ClassReader::handleConstantValueAttribute (int field_index,
1117 int value)
1119 using namespace java::lang::reflect;
1121 _Jv_Field *field = &def->fields[field_index];
1123 if ((field->flags & (Modifier::STATIC
1124 | Modifier::FINAL
1125 | Modifier::PRIVATE)) == 0)
1127 // Ignore, as per vmspec #4.7.2
1128 return;
1131 // do not allow multiple constant fields!
1132 if (field->flags & _Jv_FIELD_CONSTANT_VALUE)
1133 throw_class_format_error ("field has multiple ConstantValue attributes");
1135 field->flags |= _Jv_FIELD_CONSTANT_VALUE;
1136 def->field_initializers[field_index] = value;
1138 /* type check the initializer */
1140 if (value <= 0 || value >= pool_count)
1141 throw_class_format_error ("erroneous ConstantValue attribute");
1143 /* FIXME: do the rest */
1146 void _Jv_ClassReader::handleFieldsEnd ()
1148 using namespace java::lang::reflect;
1150 // We need to reorganize the fields so that the static ones are first,
1151 // to conform to GCJ class layout.
1153 int low = 0;
1154 int high = def->field_count-1;
1155 _Jv_Field *fields = def->fields;
1156 _Jv_ushort *inits = def->field_initializers;
1158 // this is kind of a raw version of quicksort.
1159 while (low < high)
1161 // go forward on low, while it's a static
1162 while (low < high && (fields[low].flags & Modifier::STATIC) != 0)
1163 low++;
1165 // go backwards on high, while it's a non-static
1166 while (low < high && (fields[high].flags & Modifier::STATIC) == 0)
1167 high--;
1169 if (low==high)
1170 break;
1172 _Jv_Field tmp = fields[low];
1173 _Jv_ushort itmp = inits[low];
1175 fields[low] = fields[high];
1176 inits[low] = inits[high];
1178 fields[high] = tmp;
1179 inits[high] = itmp;
1181 high -= 1;
1182 low += 1;
1185 if ((fields[low].flags & Modifier::STATIC) != 0)
1186 low += 1;
1188 def->static_field_count = low;
1193 void
1194 _Jv_ClassReader::handleMethodsBegin (int count)
1196 def->methods = (_Jv_Method *) _Jv_AllocBytes (sizeof (_Jv_Method) * count);
1198 def->interpreted_methods
1199 = (_Jv_MethodBase **) _Jv_AllocBytes (sizeof (_Jv_MethodBase *)
1200 * count);
1202 for (int i = 0; i < count; i++)
1204 def->interpreted_methods[i] = 0;
1205 def->methods[i].index = (_Jv_ushort) -1;
1208 def->method_count = count;
1212 void _Jv_ClassReader::handleMethod
1213 (int mth_index, int accflags, int name, int desc)
1215 using namespace java::lang::reflect;
1217 _Jv_word *pool_data = def->constants.data;
1218 _Jv_Method *method = &def->methods[mth_index];
1220 check_tag (name, JV_CONSTANT_Utf8);
1221 prepare_pool_entry (name, JV_CONSTANT_Utf8);
1222 method->name = pool_data[name].utf8;
1224 check_tag (desc, JV_CONSTANT_Utf8);
1225 prepare_pool_entry (desc, JV_CONSTANT_Utf8);
1226 method->signature = pool_data[desc].utf8;
1228 // ignore unknown flags
1229 method->accflags = accflags & Modifier::ALL_FLAGS;
1231 // intialize...
1232 method->ncode = 0;
1233 method->throws = NULL;
1235 if (verify)
1237 if (_Jv_equalUtf8Consts (method->name, clinit_name)
1238 || _Jv_equalUtf8Consts (method->name, init_name))
1239 /* ignore */;
1240 else
1241 verify_identifier (method->name);
1243 _Jv_VerifyMethodSignature (method->signature);
1245 for (int i = 0; i < mth_index; ++i)
1247 if (_Jv_equalUtf8Consts (method->name, def->methods[i].name)
1248 && _Jv_equalUtf8Consts (method->signature,
1249 def->methods[i].signature))
1250 throw_class_format_error ("duplicate method");
1253 if (method->accflags & (Modifier::VOLATILE
1254 | Modifier::TRANSIENT
1255 | Modifier::INTERFACE))
1256 throw_class_format_error ("erroneous method access flags");
1258 if (1 < ( ((method->accflags & Modifier::PUBLIC) ? 1 : 0)
1259 +((method->accflags & Modifier::PRIVATE) ? 1 : 0)
1260 +((method->accflags & Modifier::PROTECTED) ? 1 : 0)))
1261 throw_class_format_error ("erroneous method access flags");
1265 void _Jv_ClassReader::handleCodeAttribute
1266 (int method_index, int max_stack, int max_locals,
1267 int code_start, int code_length, int exc_table_length)
1269 int size = _Jv_InterpMethod::size (exc_table_length, code_length);
1270 _Jv_InterpMethod *method =
1271 (_Jv_InterpMethod*) (_Jv_AllocBytes (size));
1273 method->deferred = NULL;
1274 method->max_stack = max_stack;
1275 method->max_locals = max_locals;
1276 method->code_length = code_length;
1277 method->exc_count = exc_table_length;
1278 method->defining_class = def;
1279 method->self = &def->methods[method_index];
1280 method->prepared = NULL;
1282 // grab the byte code!
1283 memcpy ((void*) method->bytecode (),
1284 (void*) (bytes+code_start),
1285 code_length);
1287 def->interpreted_methods[method_index] = method;
1289 if ((method->self->accflags & java::lang::reflect::Modifier::STATIC))
1291 // Precompute the ncode field for a static method. This lets us
1292 // call a static method of an interpreted class from precompiled
1293 // code without first resolving the class (that will happen
1294 // during class initialization instead).
1295 method->self->ncode = method->ncode ();
1299 void _Jv_ClassReader::handleExceptionTableEntry
1300 (int method_index, int exc_index,
1301 int start_pc, int end_pc, int handler_pc, int catch_type)
1303 _Jv_InterpMethod *method = reinterpret_cast<_Jv_InterpMethod *>
1304 (def->interpreted_methods[method_index]);
1305 _Jv_InterpException *exc = method->exceptions ();
1307 exc[exc_index].start_pc.i = start_pc;
1308 exc[exc_index].end_pc.i = end_pc;
1309 exc[exc_index].handler_pc.i = handler_pc;
1310 exc[exc_index].handler_type.i = catch_type;
1313 void _Jv_ClassReader::handleMethodsEnd ()
1315 using namespace java::lang::reflect;
1317 for (int i = 0; i < def->method_count; i++)
1319 _Jv_Method *method = &def->methods[i];
1320 if ((method->accflags & Modifier::NATIVE) != 0)
1322 if (def->interpreted_methods[i] != 0)
1323 throw_class_format_error ("code provided for native method");
1324 else
1326 _Jv_JNIMethod *m = (_Jv_JNIMethod *)
1327 _Jv_AllocBytes (sizeof (_Jv_JNIMethod));
1328 m->defining_class = def;
1329 m->self = method;
1330 m->function = NULL;
1331 def->interpreted_methods[i] = m;
1332 m->deferred = NULL;
1334 if ((method->accflags & Modifier::STATIC))
1336 // Precompute the ncode field for a static method.
1337 // This lets us call a static method of an
1338 // interpreted class from precompiled code without
1339 // first resolving the class (that will happen
1340 // during class initialization instead).
1341 method->ncode = m->ncode ();
1345 else if ((method->accflags & Modifier::ABSTRACT) != 0)
1347 if (def->interpreted_methods[i] != 0)
1348 throw_class_format_error ("code provided for abstract method");
1350 else
1352 if (def->interpreted_methods[i] == 0)
1353 throw_class_format_error ("method with no code");
1358 void _Jv_ClassReader::throw_class_format_error (char *msg)
1360 jstring str;
1361 if (def->name != NULL)
1363 jsize mlen = strlen (msg);
1364 unsigned char* data = (unsigned char*) def->name->data;
1365 int ulen = def->name->length;
1366 unsigned char* limit = data + ulen;
1367 jsize nlen = _Jv_strLengthUtf8 ((char *) data, ulen);
1368 jsize len = nlen + mlen + 3;
1369 str = JvAllocString(len);
1370 jchar *chrs = JvGetStringChars(str);
1371 while (data < limit)
1372 *chrs++ = UTF8_GET(data, limit);
1373 *chrs++ = ' ';
1374 *chrs++ = '(';
1375 for (;;)
1377 char c = *msg++;
1378 if (c == 0)
1379 break;
1380 *chrs++ = c & 0xFFFF;
1382 *chrs++ = ')';
1384 else
1385 str = JvNewStringLatin1 (msg);
1386 ::throw_class_format_error (str);
1389 /** Here we define the exceptions that can be thrown */
1391 static void
1392 throw_no_class_def_found_error (jstring msg)
1394 throw (msg
1395 ? new java::lang::NoClassDefFoundError (msg)
1396 : new java::lang::NoClassDefFoundError);
1399 static void
1400 throw_no_class_def_found_error (char *msg)
1402 throw_no_class_def_found_error (JvNewStringLatin1 (msg));
1405 static void
1406 throw_class_format_error (jstring msg)
1408 throw (msg
1409 ? new java::lang::ClassFormatError (msg)
1410 : new java::lang::ClassFormatError);
1413 static void
1414 throw_internal_error (char *msg)
1416 throw new java::lang::InternalError (JvNewStringLatin1 (msg));
1419 static void
1420 throw_incompatible_class_change_error (jstring msg)
1422 throw new java::lang::IncompatibleClassChangeError (msg);
1425 static void
1426 throw_class_circularity_error (jstring msg)
1428 throw new java::lang::ClassCircularityError (msg);
1431 #endif /* INTERPRETER */
1435 /** This section takes care of verifying integrity of identifiers,
1436 signatures, field ddescriptors, and class names */
1438 #define UTF8_PEEK(PTR, LIMIT) \
1439 ({ unsigned char* xxkeep = (PTR); \
1440 int xxch = UTF8_GET(PTR,LIMIT); \
1441 PTR = xxkeep; xxch; })
1443 /* Verify one element of a type descriptor or signature. */
1444 static unsigned char*
1445 _Jv_VerifyOne (unsigned char* ptr, unsigned char* limit, bool void_ok)
1447 if (ptr >= limit)
1448 return 0;
1450 int ch = UTF8_GET (ptr, limit);
1452 switch (ch)
1454 case 'V':
1455 if (! void_ok)
1456 return 0;
1458 case 'S': case 'B': case 'I': case 'J':
1459 case 'Z': case 'C': case 'F': case 'D':
1460 break;
1462 case 'L':
1464 unsigned char *start = ptr, *end;
1467 if (ptr > limit)
1468 return 0;
1470 end = ptr;
1472 if ((ch = UTF8_GET (ptr, limit)) == -1)
1473 return 0;
1476 while (ch != ';');
1477 if (! _Jv_VerifyClassName (start, (unsigned short) (end-start)))
1478 return 0;
1480 break;
1482 case '[':
1483 return _Jv_VerifyOne (ptr, limit, false);
1484 break;
1486 default:
1487 return 0;
1490 return ptr;
1493 /* Verification and loading procedures. */
1494 bool
1495 _Jv_VerifyFieldSignature (_Jv_Utf8Const*sig)
1497 unsigned char* ptr = (unsigned char*) sig->data;
1498 unsigned char* limit = ptr + sig->length;
1500 ptr = _Jv_VerifyOne (ptr, limit, false);
1502 return ptr == limit;
1505 bool
1506 _Jv_VerifyMethodSignature (_Jv_Utf8Const*sig)
1508 unsigned char* ptr = (unsigned char*) sig->data;
1509 unsigned char* limit = ptr + sig->length;
1511 if (ptr == limit || UTF8_GET(ptr,limit) != '(')
1512 return false;
1514 while (ptr && UTF8_PEEK (ptr, limit) != ')')
1515 ptr = _Jv_VerifyOne (ptr, limit, false);
1517 if (UTF8_GET (ptr, limit) != ')')
1518 return false;
1520 // get the return type
1521 ptr = _Jv_VerifyOne (ptr, limit, true);
1523 return ptr == limit;
1526 /* We try to avoid calling the Character methods all the time, in
1527 fact, they will only be called for non-standard things. */
1528 static __inline__ int
1529 is_identifier_start (int c)
1531 unsigned int ch = (unsigned)c;
1533 if ((ch - 0x41U) < 29U) /* A ... Z */
1534 return 1;
1535 if ((ch - 0x61U) < 29U) /* a ... z */
1536 return 1;
1537 if (ch == 0x5FU) /* _ */
1538 return 1;
1540 return java::lang::Character::isJavaIdentifierStart ((jchar) ch);
1543 static __inline__ int
1544 is_identifier_part (int c)
1546 unsigned int ch = (unsigned)c;
1548 if ((ch - 0x41U) < 29U) /* A ... Z */
1549 return 1;
1550 if ((ch - 0x61U) < 29U) /* a ... z */
1551 return 1;
1552 if ((ch - 0x30) < 10U) /* 0 .. 9 */
1553 return 1;
1554 if (ch == 0x5FU || ch == 0x24U) /* _ $ */
1555 return 1;
1557 return java::lang::Character::isJavaIdentifierStart ((jchar) ch);
1560 bool
1561 _Jv_VerifyIdentifier (_Jv_Utf8Const* name)
1563 unsigned char *ptr = (unsigned char*) name->data;
1564 unsigned char *limit = ptr + name->length;
1565 int ch;
1567 if ((ch = UTF8_GET (ptr, limit))==-1
1568 || ! is_identifier_start (ch))
1569 return false;
1571 while (ptr != limit)
1573 if ((ch = UTF8_GET (ptr, limit))==-1
1574 || ! is_identifier_part (ch))
1575 return false;
1577 return true;
1580 bool
1581 _Jv_VerifyClassName (unsigned char* ptr, _Jv_ushort length)
1583 unsigned char *limit = ptr+length;
1584 int ch;
1586 if ('[' == UTF8_PEEK (ptr, limit))
1588 unsigned char *end = _Jv_VerifyOne (++ptr, limit, false);
1589 // _Jv_VerifyOne must leave us looking at the terminating nul
1590 // byte.
1591 if (! end || *end)
1592 return false;
1593 else
1594 return true;
1597 next_level:
1598 for (;;) {
1599 if ((ch = UTF8_GET (ptr, limit))==-1)
1600 return false;
1601 if (! is_identifier_start (ch))
1602 return false;
1603 for (;;) {
1604 if (ptr == limit)
1605 return true;
1606 else if ((ch = UTF8_GET (ptr, limit))==-1)
1607 return false;
1608 else if (ch == '.')
1609 goto next_level;
1610 else if (! is_identifier_part (ch))
1611 return false;
1616 bool
1617 _Jv_VerifyClassName (_Jv_Utf8Const *name)
1619 return _Jv_VerifyClassName ((unsigned char*)&name->data[0],
1620 (_Jv_ushort) name->length);
1623 /* Returns true, if NAME1 and NAME2 represent classes in the same
1624 package. */
1625 bool
1626 _Jv_ClassNameSamePackage (_Jv_Utf8Const *name1, _Jv_Utf8Const *name2)
1628 unsigned char* ptr1 = (unsigned char*) name1->data;
1629 unsigned char* limit1 = ptr1 + name1->length;
1631 unsigned char* last1 = ptr1;
1633 // scan name1, and find the last occurrence of '.'
1634 while (ptr1 < limit1) {
1635 int ch1 = UTF8_GET (ptr1, limit1);
1637 if (ch1 == '.')
1638 last1 = ptr1;
1640 else if (ch1 == -1)
1641 return false;
1644 // Now the length of NAME1's package name is LEN.
1645 int len = last1 - (unsigned char*) name1->data;
1647 // If this is longer than NAME2, then we're off.
1648 if (len > name2->length)
1649 return false;
1651 // Then compare the first len bytes for equality.
1652 if (memcmp ((void*) name1->data, (void*) name2->data, len) == 0)
1654 // Check that there are no .'s after position LEN in NAME2.
1656 unsigned char* ptr2 = (unsigned char*) name2->data + len;
1657 unsigned char* limit2 =
1658 (unsigned char*) name2->data + name2->length;
1660 while (ptr2 < limit2)
1662 int ch2 = UTF8_GET (ptr2, limit2);
1663 if (ch2 == -1 || ch2 == '.')
1664 return false;
1666 return true;
1668 return false;