1 /* This file read a Java(TM) .class file.
2    It is not stand-alone:  It depends on tons of macros, and the
3    intent is you #include this file after you've defined the macros.
4    Copyright (C) 1996-2013 Free Software Foundation, Inc.
5 
6 This file is part of GCC.
7 
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12 
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17 
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.
21 
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc.  */
25 
26 #include "ggc.h"
27 #include "jcf.h"
28 #include "zipfile.h"
29 
30 static int get_attribute (JCF *, int, jv_attr_type);
31 static int jcf_parse_preamble (JCF *);
32 static int jcf_parse_constant_pool (JCF *);
33 static void jcf_parse_class (JCF *);
34 static int jcf_parse_fields (JCF *);
35 static int jcf_parse_one_method (JCF *, int);
36 static int jcf_parse_methods (JCF *);
37 static int jcf_parse_final_attributes (JCF *);
38 static int jcf_parse_bootstrap_methods (JCF *, int) ATTRIBUTE_UNUSED;
39 #ifdef NEED_PEEK_ATTRIBUTE
40 static int peek_attribute (JCF *, int, const char *, int);
41 #endif
42 #ifdef NEED_SKIP_ATTRIBUTE
43 static void skip_attribute (JCF *, int);
44 #endif
45 
46 /* Go through all available attribute (ATTRIBUTE_NUMER) and try to
47    identify PEEKED_NAME.  Return 1 if PEEKED_NAME was found, 0
48    otherwise. JCF is restored to its initial position before
49    returning.  */
50 
51 #ifdef NEED_PEEK_ATTRIBUTE	/* Not everyone uses this function */
52 static int
peek_attribute(JCF * jcf,int attribute_number,const char * peeked_name,int peeked_name_length)53 peek_attribute (JCF *jcf, int attribute_number, const char *peeked_name,
54 		int peeked_name_length)
55 {
56   int to_return = 0;
57   long absolute_offset = (long)JCF_TELL (jcf);
58   int i;
59 
60   for (i = 0; !to_return && i < attribute_number; i++)
61     {
62       uint16 attribute_name = (JCF_FILL (jcf, 6), JCF_readu2 (jcf));
63       uint32 attribute_length = JCF_readu4 (jcf);
64       int name_length;
65       const unsigned char *name_data;
66 
67       JCF_FILL (jcf, (long) attribute_length);
68       if (attribute_name <= 0 || attribute_name >= JPOOL_SIZE(jcf)
69 	  || JPOOL_TAG (jcf, attribute_name) != CONSTANT_Utf8)
70 	continue;
71 
72       name_length = JPOOL_UTF_LENGTH (jcf, attribute_name);
73       name_data = JPOOL_UTF_DATA (jcf, attribute_name);
74 
75       if (name_length == peeked_name_length
76 	  && ! memcmp (name_data, peeked_name, peeked_name_length))
77 	{
78 	  to_return = 1;
79 	  break;
80 	}
81 
82       JCF_SKIP (jcf, attribute_length);
83     }
84 
85   JCF_SEEK (jcf, absolute_offset);
86   return to_return;
87 }
88 #endif
89 
90 #ifdef NEED_SKIP_ATTRIBUTE	/* Not everyone uses this function */
91 static void
skip_attribute(JCF * jcf,int number_of_attribute)92 skip_attribute (JCF *jcf, int number_of_attribute)
93 {
94   while (number_of_attribute--)
95     {
96       JCF_u4 N;
97       JCF_FILL (jcf, 6);
98       (void) JCF_readu2 (jcf);
99       N = JCF_readu4 (jcf);
100       JCF_SKIP (jcf, N);
101     }
102 }
103 #endif
104 
105 static int
get_attribute(JCF * jcf,int index,jv_attr_type attr_type ATTRIBUTE_UNUSED)106 get_attribute (JCF *jcf, int index,
107 	       jv_attr_type attr_type ATTRIBUTE_UNUSED)
108 {
109   uint16 attribute_name = (JCF_FILL (jcf, 6), JCF_readu2 (jcf));
110   uint32 attribute_length = JCF_readu4 (jcf);
111   uint32 start_pos = JCF_TELL(jcf);
112   int name_length;
113   const unsigned char *name_data;
114   JCF_FILL (jcf, (long) attribute_length);
115   if (attribute_name <= 0 || attribute_name >= JPOOL_SIZE(jcf))
116     return -2;
117   if (JPOOL_TAG (jcf, attribute_name) != CONSTANT_Utf8)
118     return -2;
119   name_length = JPOOL_UTF_LENGTH (jcf, attribute_name);
120   name_data = JPOOL_UTF_DATA (jcf, attribute_name);
121 
122 #define MATCH_ATTRIBUTE(S) \
123   (name_length == sizeof (S)-1 && memcmp (name_data, S, sizeof (S)-1) == 0)
124 
125 #ifdef IGNORE_ATTRIBUTE
126    if (IGNORE_ATTRIBUTE (jcf, attribute_name, attribute_length))
127      {
128        JCF_SKIP (jcf, attribute_length);
129      }
130    else
131 #endif
132 #ifdef HANDLE_SOURCEFILE
133   if (MATCH_ATTRIBUTE ("SourceFile"))
134     {
135       uint16 sourcefile_index = JCF_readu2 (jcf);
136       HANDLE_SOURCEFILE(sourcefile_index);
137     }
138   else
139 #endif
140 #ifdef HANDLE_CONSTANTVALUE
141   if (MATCH_ATTRIBUTE ("ConstantValue"))
142     {
143       uint16 constantvalue_index = JCF_readu2 (jcf);
144       if (constantvalue_index <= 0 || constantvalue_index >= JPOOL_SIZE(jcf))
145 	return -2;
146       HANDLE_CONSTANTVALUE(constantvalue_index);
147     }
148   else
149 #endif
150 #ifdef HANDLE_CODE_ATTRIBUTE
151   if (MATCH_ATTRIBUTE ("Code"))
152     {
153       uint16 j;
154       uint16 max_stack ATTRIBUTE_UNUSED = JCF_readu2 (jcf);
155       uint16 max_locals ATTRIBUTE_UNUSED = JCF_readu2 (jcf);
156       uint32 code_length = JCF_readu4 (jcf);
157       uint16 exception_table_length, attributes_count;
158       if (code_length + 12 > attribute_length)
159 	return -1;
160       HANDLE_CODE_ATTRIBUTE(max_stack, max_locals, code_length);
161       JCF_SKIP (jcf, code_length);
162       exception_table_length = JCF_readu2 (jcf);
163       if (code_length + 8 * exception_table_length + 12 > attribute_length)
164 	return -1;
165 #ifdef HANDLE_EXCEPTION_TABLE
166       HANDLE_EXCEPTION_TABLE (jcf->read_ptr, exception_table_length);
167 #endif
168       JCF_SKIP (jcf, 2 * 4 * exception_table_length);
169       attributes_count = JCF_readu2 (jcf);
170       for (j = 0; j < attributes_count; j++)
171 	{
172 	  int code = get_attribute (jcf, index, JV_METHOD_ATTR);
173 	  if (code != 0)
174 	    return code;
175 	}
176     }
177   else
178 #endif /* HANDLE_CODE_ATTRIBUTE */
179 #ifdef HANDLE_EXCEPTIONS_ATTRIBUTE
180   if (MATCH_ATTRIBUTE ("Exceptions"))
181     {
182       uint16 count = JCF_readu2 (jcf);
183       HANDLE_EXCEPTIONS_ATTRIBUTE (count);
184     }
185   else
186 #endif
187 #ifdef HANDLE_LINENUMBERTABLE_ATTRIBUTE
188   if (MATCH_ATTRIBUTE ("LineNumberTable"))
189     {
190       uint16 count = JCF_readu2 (jcf);
191       HANDLE_LINENUMBERTABLE_ATTRIBUTE (count);
192     }
193   else
194 #endif
195 #ifdef HANDLE_LOCALVARIABLETABLE_ATTRIBUTE
196   if (MATCH_ATTRIBUTE ("LocalVariableTable"))
197     {
198       uint16 count = JCF_readu2 (jcf);
199       HANDLE_LOCALVARIABLETABLE_ATTRIBUTE (count);
200     }
201   else
202 #endif
203 #ifdef HANDLE_LOCALVARIABLETYPETABLE_ATTRIBUTE
204   if (MATCH_ATTRIBUTE ("LocalVariableTypeTable"))
205     {
206       uint16 count = JCF_readu2 (jcf);
207       HANDLE_LOCALVARIABLETYPETABLE_ATTRIBUTE (count);
208     }
209   else
210 #endif
211 #ifdef HANDLE_INNERCLASSES_ATTRIBUTE
212   if (MATCH_ATTRIBUTE ("InnerClasses"))
213     {
214       uint16 count = JCF_readu2 (jcf);
215       HANDLE_INNERCLASSES_ATTRIBUTE (count);
216     }
217   else
218 #endif
219 #ifdef HANDLE_SYNTHETIC_ATTRIBUTE
220   if (MATCH_ATTRIBUTE ("Synthetic"))
221     {
222       HANDLE_SYNTHETIC_ATTRIBUTE ();
223     }
224   else
225 #endif
226 #ifdef HANDLE_GCJCOMPILED_ATTRIBUTE
227   if (MATCH_ATTRIBUTE ("gnu.gcj.gcj-compiled"))
228     {
229       HANDLE_GCJCOMPILED_ATTRIBUTE ();
230     }
231   else
232 #endif
233 #ifdef HANDLE_DEPRECATED_ATTRIBUTE
234   if (MATCH_ATTRIBUTE ("Deprecated"))
235     {
236       HANDLE_DEPRECATED_ATTRIBUTE ();
237     }
238   else
239 #endif
240 #ifdef HANDLE_SOURCEDEBUGEXTENSION_ATTRIBUTE
241   if (MATCH_ATTRIBUTE ("SourceDebugExtension")) /* JSR 45 */
242     {
243       HANDLE_SOURCEDEBUGEXTENSION_ATTRIBUTE (attribute_length);
244     }
245   else
246 #endif
247 #ifdef HANDLE_ENCLOSINGMETHOD_ATTRIBUTE
248   if (MATCH_ATTRIBUTE ("EnclosingMethod"))
249     {
250       HANDLE_ENCLOSINGMETHOD_ATTRIBUTE ();
251     }
252   else
253 #endif
254 #ifdef HANDLE_SIGNATURE_ATTRIBUTE
255   if (MATCH_ATTRIBUTE ("Signature"))
256     {
257       HANDLE_SIGNATURE_ATTRIBUTE ();
258     }
259   else
260 #endif
261 #ifdef HANDLE_RUNTIMEVISIBLEANNOTATIONS_ATTRIBUTE
262   if (MATCH_ATTRIBUTE ("RuntimeVisibleAnnotations"))
263     {
264       HANDLE_RUNTIMEVISIBLEANNOTATIONS_ATTRIBUTE ();
265     }
266   else
267 #endif
268 #ifdef HANDLE_RUNTIMEINVISIBLEANNOTATIONS_ATTRIBUTE
269   if (MATCH_ATTRIBUTE ("RuntimeInvisibleAnnotations"))
270     {
271       HANDLE_RUNTIMEINVISIBLEANNOTATIONS_ATTRIBUTE ();
272     }
273   else
274 #endif
275 #ifdef HANDLE_RUNTIMEVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE
276   if (MATCH_ATTRIBUTE ("RuntimeVisibleParameterAnnotations"))
277     {
278       HANDLE_RUNTIMEVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE ();
279     }
280   else
281 #endif
282 #ifdef HANDLE_RUNTIMEINVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE
283   if (MATCH_ATTRIBUTE ("RuntimeInvisibleParameterAnnotations"))
284     {
285       HANDLE_RUNTIMEINVISIBLEPARAMETERANNOTATIONS_ATTRIBUTE ();
286     }
287   else
288 #endif
289 #ifdef HANDLE_ANNOTATIONDEFAULT_ATTRIBUTE
290   if (MATCH_ATTRIBUTE ("AnnotationDefault"))
291     {
292       HANDLE_ANNOTATIONDEFAULT_ATTRIBUTE ();
293     }
294   else
295 #endif
296   if (MATCH_ATTRIBUTE ("BootstrapMethods"))
297     {
298 #ifdef HANDLE_BOOTSTRAP_METHODS_ATTRIBUTE
299       HANDLE_BOOTSTRAP_METHODS_ATTRIBUTE();
300 #else
301       JCF_SKIP (jcf, attribute_length);
302 #endif
303     }
304    else
305     {
306 #ifdef PROCESS_OTHER_ATTRIBUTE
307       PROCESS_OTHER_ATTRIBUTE(jcf, attribute_name, attribute_length);
308 #else
309       JCF_SKIP (jcf, attribute_length);
310 #endif
311     }
312   if ((long) (start_pos + attribute_length) != JCF_TELL(jcf))
313     return -1;
314   return 0;
315 }
316 
317 /* Read and handle the pre-amble. */
318 static int
jcf_parse_preamble(JCF * jcf)319 jcf_parse_preamble (JCF* jcf)
320 {
321   uint32 magic = (JCF_FILL (jcf, 8), JCF_readu4 (jcf));
322   uint16 minor_version ATTRIBUTE_UNUSED = JCF_readu2 (jcf);
323   uint16 major_version ATTRIBUTE_UNUSED = JCF_readu2 (jcf);
324 #ifdef HANDLE_MAGIC
325   HANDLE_MAGIC (magic, minor_version, major_version);
326 #endif
327   if (magic != 0xcafebabe)
328     return -1;
329   else
330     return 0;
331 }
332 
333 /* Read and handle the constant pool.
334 
335    Return 0 if OK.
336    Return -2 if a bad cross-reference (index of other constant) was seen.
337 */
338 static int
jcf_parse_constant_pool(JCF * jcf)339 jcf_parse_constant_pool (JCF* jcf)
340 {
341   int i, n;
342   JPOOL_SIZE (jcf) = (JCF_FILL (jcf, 2), JCF_readu2 (jcf));
343   jcf->cpool.tags = (uint8 *) ggc_alloc_atomic (JPOOL_SIZE (jcf));
344   jcf->cpool.data = ggc_alloc_cpool_entry (sizeof (jword) * JPOOL_SIZE (jcf));
345   jcf->cpool.tags[0] = 0;
346 #ifdef HANDLE_START_CONSTANT_POOL
347   HANDLE_START_CONSTANT_POOL (JPOOL_SIZE (jcf));
348 #endif
349   for (i = 1; i < (int) JPOOL_SIZE (jcf); i++)
350     {
351       int constant_kind;
352 
353       /* Make sure at least 9 bytes are available.  This is enough
354 	 for all fixed-sized constant pool entries (so we don't need many
355 	 more JCF_FILL calls below), but is is small enough that
356 	 we are guaranteed to not hit EOF (in a valid .class file). */
357       JCF_FILL (jcf, 9);
358       constant_kind = JCF_readu (jcf);
359       jcf->cpool.tags[i] = constant_kind;
360       switch (constant_kind)
361 	{
362 	case CONSTANT_String:
363 	case CONSTANT_Class:
364 	  jcf->cpool.data[i].w = JCF_readu2 (jcf);
365 	  break;
366 	case CONSTANT_Fieldref:
367 	case CONSTANT_Methodref:
368 	case CONSTANT_InterfaceMethodref:
369 	case CONSTANT_NameAndType:
370 	  jcf->cpool.data[i].w = JCF_readu2 (jcf);
371 	  jcf->cpool.data[i].w |= JCF_readu2 (jcf) << 16;
372 	  break;
373 	case CONSTANT_Integer:
374 	case CONSTANT_Float:
375 	  jcf->cpool.data[i].w = JCF_readu4 (jcf);
376 	  break;
377 	case CONSTANT_Long:
378 	case CONSTANT_Double:
379 	  jcf->cpool.data[i].w = JCF_readu4 (jcf);
380 	  i++; /* These take up two spots in the constant pool */
381 	  jcf->cpool.tags[i] = 0;
382 	  jcf->cpool.data[i].w = JCF_readu4 (jcf);
383 	  break;
384 	case CONSTANT_Utf8:
385 	  n = JCF_readu2 (jcf);
386 	  JCF_FILL (jcf, n);
387 #ifdef HANDLE_CONSTANT_Utf8
388 	  HANDLE_CONSTANT_Utf8(jcf, i, n);
389 #else
390 	  jcf->cpool.data[i].w = JCF_TELL(jcf) - 2;
391 	  JCF_SKIP (jcf, n);
392 #endif
393 	  break;
394 	case CONSTANT_MethodHandle:
395 	  jcf->cpool.data[i].w = JCF_readu (jcf);
396 	  jcf->cpool.data[i].w |= JCF_readu2 (jcf) << 16;
397 	  break;
398 	case CONSTANT_MethodType:
399 	  jcf->cpool.data[i].w = JCF_readu2 (jcf);
400 	  break;
401 	case CONSTANT_InvokeDynamic:
402 	  jcf->cpool.data[i].w = JCF_readu2 (jcf);
403 	  jcf->cpool.data[i].w |= JCF_readu2 (jcf) << 16;
404 	  break;
405 	default:
406 	  return i;
407 	}
408     }
409   return 0;
410 }
411 
412 /* Read various class flags and numbers. */
413 
414 static void
jcf_parse_class(JCF * jcf)415 jcf_parse_class (JCF* jcf)
416 {
417   int i;
418   uint16 interfaces_count;
419   JCF_FILL (jcf, 8);
420   jcf->access_flags = JCF_readu2 (jcf);
421   jcf->this_class = JCF_readu2 (jcf);
422   jcf->super_class = JCF_readu2 (jcf);
423   interfaces_count = JCF_readu2 (jcf);
424 
425 #ifdef HANDLE_CLASS_INFO
426   HANDLE_CLASS_INFO(jcf->access_flags, jcf->this_class, jcf->super_class, interfaces_count);
427 #endif
428 
429   JCF_FILL (jcf, 2 * interfaces_count);
430 
431   /* Read interfaces. */
432   for (i = 0; i < interfaces_count; i++)
433     {
434       uint16 index ATTRIBUTE_UNUSED = JCF_readu2 (jcf);
435 #ifdef HANDLE_CLASS_INTERFACE
436       HANDLE_CLASS_INTERFACE (index);
437 #endif
438     }
439 }
440 
441 /* Read fields. */
442 static int
jcf_parse_fields(JCF * jcf)443 jcf_parse_fields (JCF* jcf)
444 {
445   int i, j;
446   uint16 fields_count;
447   JCF_FILL (jcf, 2);
448   fields_count = JCF_readu2 (jcf);
449 
450 #ifdef HANDLE_START_FIELDS
451   HANDLE_START_FIELDS (fields_count);
452 #endif
453   for (i = 0; i < fields_count; i++)
454     {
455       uint16 access_flags = (JCF_FILL (jcf, 8), JCF_readu2 (jcf));
456       uint16 name_index = JCF_readu2 (jcf);
457       uint16 signature_index = JCF_readu2 (jcf);
458       uint16 attribute_count = JCF_readu2 (jcf);
459 #ifdef HANDLE_START_FIELD
460       HANDLE_START_FIELD (access_flags, name_index, signature_index,
461 			  attribute_count);
462 #endif
463       for (j = 0; j < attribute_count; j++)
464 	{
465 	  int code = get_attribute (jcf, i, JV_FIELD_ATTR);
466 	  if (code != 0)
467 	    return code;
468 	}
469 #ifdef HANDLE_END_FIELD
470       HANDLE_END_FIELD ();
471 #endif
472     }
473 #ifdef HANDLE_END_FIELDS
474   HANDLE_END_FIELDS ();
475 #endif
476   return 0;
477 }
478 
479 /* Read methods. */
480 
481 static int
jcf_parse_one_method(JCF * jcf,int index)482 jcf_parse_one_method (JCF* jcf, int index)
483 {
484   int i;
485   uint16 access_flags = (JCF_FILL (jcf, 8), JCF_readu2 (jcf));
486   uint16 name_index = JCF_readu2 (jcf);
487   uint16 signature_index = JCF_readu2 (jcf);
488   uint16 attribute_count = JCF_readu2 (jcf);
489 #ifdef HANDLE_METHOD
490   HANDLE_METHOD(access_flags, name_index, signature_index, attribute_count);
491 #endif
492   for (i = 0; i < attribute_count; i++)
493     {
494       int code = get_attribute (jcf, index, JV_METHOD_ATTR);
495       if (code != 0)
496 	return code;
497     }
498 #ifdef HANDLE_END_METHOD
499   HANDLE_END_METHOD ();
500 #endif
501   return 0;
502 }
503 
504 static int
jcf_parse_methods(JCF * jcf)505 jcf_parse_methods (JCF* jcf)
506 {
507   int i;
508   uint16 methods_count;
509   JCF_FILL (jcf, 2);
510   methods_count = JCF_readu2 (jcf);
511 #ifdef HANDLE_START_METHODS
512   HANDLE_START_METHODS (methods_count);
513 #endif
514   for (i = 0; i < methods_count; i++)
515     {
516       int code = jcf_parse_one_method (jcf, i);
517       if (code != 0)
518 	return code;
519     }
520 #ifdef HANDLE_END_METHODS
521   HANDLE_END_METHODS ();
522 #endif
523   return 0;
524 }
525 
526 /* Read attributes. */
527 static int
jcf_parse_final_attributes(JCF * jcf)528 jcf_parse_final_attributes (JCF *jcf)
529 {
530   int i;
531   uint16 attributes_count = (JCF_FILL (jcf, 2), JCF_readu2 (jcf));
532 #ifdef START_FINAL_ATTRIBUTES
533   START_FINAL_ATTRIBUTES (attributes_count)
534 #endif
535   for (i = 0; i < attributes_count; i++)
536     {
537       int code = get_attribute (jcf, i, JV_CLASS_ATTR);
538       if (code != 0)
539 	return code;
540     }
541   return 0;
542 }
543 
544 /* Read and handle the "BootstrapMethods" attribute.
545 
546    Return 0 if OK.
547 */
548 static int
jcf_parse_bootstrap_methods(JCF * jcf,int attribute_length ATTRIBUTE_UNUSED)549 jcf_parse_bootstrap_methods (JCF* jcf, int attribute_length ATTRIBUTE_UNUSED)
550 {
551   int i;
552   uint16 num_methods = JCF_readu2 (jcf);
553   jcf->bootstrap_methods.count = num_methods;
554   jcf->bootstrap_methods.methods
555     = (bootstrap_method *) ggc_alloc_atomic (num_methods
556 					      * sizeof (bootstrap_method));
557 #ifdef HANDLE_START_BOOTSTRAP_METHODS
558   HANDLE_START_BOOTSTRAP_METHODS (jcf, num_methods);
559 #endif
560 
561   for (i = 0; i < num_methods; i++)
562     {
563       unsigned j;
564       bootstrap_method *m = &jcf->bootstrap_methods.methods[i];
565       m->method_ref = JCF_readu2 (jcf);
566       m->num_arguments = JCF_readu2 (jcf);
567       m->bootstrap_arguments
568 	= (unsigned *) ggc_alloc_atomic (m->num_arguments
569 					 * sizeof (unsigned));
570       for (j = 0; j < m->num_arguments; j++)
571 	m->bootstrap_arguments[j] = JCF_readu2 (jcf);
572     }
573 
574 #ifdef HANDLE_END_BOOTSTRAP_METHODS
575   HANDLE_END_BOOTSTRAP_METHODS (num_methods);
576 #endif
577 
578   return 0;
579 }
580