-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathjava_bytecode_parser.cpp
2116 lines (1855 loc) · 64.4 KB
/
java_bytecode_parser.cpp
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*******************************************************************\
Module:
Author: Daniel Kroening, [email protected]
\*******************************************************************/
#include "java_bytecode_parser.h"
#include <algorithm>
#include <fstream>
#include <map>
#include <string>
#include <util/arith_tools.h>
#include <util/ieee_float.h>
#include <util/parser.h>
#include <util/std_expr.h>
#include <util/string_constant.h>
#include "bytecode_info.h"
#include "java_bytecode_parse_tree.h"
#include "java_string_literal_expr.h"
#include "java_types.h"
class java_bytecode_parsert final : public parsert
{
public:
java_bytecode_parsert(
bool skip_instructions,
message_handlert &message_handler)
: parsert(message_handler), skip_instructions(skip_instructions)
{
}
bool parse() override;
struct pool_entryt
{
u1 tag = 0;
u2 ref1 = 0;
u2 ref2 = 0;
irep_idt s;
u8 number = 0;
exprt expr;
};
java_bytecode_parse_treet parse_tree;
private:
using classt = java_bytecode_parse_treet::classt;
using methodt = java_bytecode_parse_treet::methodt;
using fieldt = java_bytecode_parse_treet::fieldt;
using instructiont = java_bytecode_parse_treet::instructiont;
using annotationt = java_bytecode_parse_treet::annotationt;
using method_handle_typet = java_class_typet::method_handle_kindt;
using lambda_method_handlet =
java_bytecode_parse_treet::classt::lambda_method_handlet;
using constant_poolt = std::vector<pool_entryt>;
constant_poolt constant_pool;
const bool skip_instructions = false;
pool_entryt &pool_entry(u2 index)
{
if(index==0 || index>=constant_pool.size())
{
log.error() << "invalid constant pool index (" << index << ")"
<< messaget::eom;
log.error() << "constant pool size: " << constant_pool.size()
<< messaget::eom;
throw 0;
}
return constant_pool[index];
}
exprt &constant(u2 index)
{
return pool_entry(index).expr;
}
const typet type_entry(u2 index)
{
return *java_type_from_string(id2string(pool_entry(index).s));
}
void rClassFile();
void rconstant_pool();
void rinterfaces();
void rfields();
void rmethods();
void rmethod();
void rinner_classes_attribute(const u4 &attribute_length);
std::vector<irep_idt> rexceptions_attribute();
void rclass_attribute();
void rRuntimeAnnotation_attribute(std::vector<annotationt> &);
void rRuntimeAnnotation(annotationt &);
void relement_value_pairs(annotationt::element_value_pairst &);
exprt get_relement_value();
void rmethod_attribute(methodt &method);
void rfield_attribute(fieldt &);
void rcode_attribute(methodt &method);
void read_verification_type_info(methodt::verification_type_infot &);
void rbytecode(std::vector<instructiont> &);
void get_class_refs();
void get_class_refs_rec(const typet &);
void get_annotation_class_refs(const std::vector<annotationt> &annotations);
void get_annotation_value_class_refs(const exprt &value);
void parse_local_variable_type_table(methodt &method);
std::optional<lambda_method_handlet>
parse_method_handle(const class method_handle_infot &entry);
void read_bootstrapmethods_entry();
void skip_bytes(std::size_t bytes)
{
for(std::size_t i=0; i<bytes; i++)
{
if(!*in)
{
log.error() << "unexpected end of bytecode file" << messaget::eom;
throw 0;
}
in->get();
}
}
template <typename T>
T read()
{
static_assert(
std::is_unsigned<T>::value, "T should be an unsigned integer");
const constexpr size_t bytes = sizeof(T);
u8 result = 0;
for(size_t i = 0; i < bytes; i++)
{
if(!*in)
{
log.error() << "unexpected end of bytecode file" << messaget::eom;
throw 0;
}
result <<= 8u;
result |= static_cast<u1>(in->get());
}
return narrow_cast<T>(result);
}
void store_unknown_method_handle(size_t bootstrap_method_index);
};
#define CONSTANT_Class 7
#define CONSTANT_Fieldref 9
#define CONSTANT_Methodref 10
#define CONSTANT_InterfaceMethodref 11
#define CONSTANT_String 8
#define CONSTANT_Integer 3
#define CONSTANT_Float 4
#define CONSTANT_Long 5
#define CONSTANT_Double 6
#define CONSTANT_NameAndType 12
#define CONSTANT_Utf8 1
#define CONSTANT_MethodHandle 15
#define CONSTANT_MethodType 16
#define CONSTANT_InvokeDynamic 18
#define VTYPE_INFO_TOP 0
#define VTYPE_INFO_INTEGER 1
#define VTYPE_INFO_FLOAT 2
#define VTYPE_INFO_LONG 3
#define VTYPE_INFO_DOUBLE 4
#define VTYPE_INFO_ITEM_NULL 5
#define VTYPE_INFO_UNINIT_THIS 6
#define VTYPE_INFO_OBJECT 7
#define VTYPE_INFO_UNINIT 8
class structured_pool_entryt
{
public:
using pool_entryt = java_bytecode_parsert::pool_entryt;
using pool_entry_lookupt = std::function<pool_entryt &(u2)>;
explicit structured_pool_entryt(const pool_entryt &entry) : tag(entry.tag)
{
}
u1 get_tag() const
{
return tag;
}
protected:
static std::string read_utf8_constant(const pool_entryt &entry)
{
INVARIANT(
entry.tag == CONSTANT_Utf8, "Name entry must be a constant UTF-8");
return id2string(entry.s);
}
private:
u1 tag;
};
/// Corresponds to the CONSTANT_Class_info Structure
/// Described in Java 8 specification 4.4.1
class class_infot : public structured_pool_entryt
{
public:
explicit class_infot(const pool_entryt &entry) : structured_pool_entryt(entry)
{
PRECONDITION(entry.tag == CONSTANT_Class);
name_index = entry.ref1;
}
std::string get_name(const pool_entry_lookupt &pool_entry) const
{
const pool_entryt &name_entry = pool_entry(name_index);
return read_utf8_constant(name_entry);
}
private:
u2 name_index;
};
/// Corresponds to the CONSTANT_NameAndType_info Structure
/// Described in Java 8 specification 4.4.6
class name_and_type_infot : public structured_pool_entryt
{
public:
explicit name_and_type_infot(const pool_entryt &entry)
: structured_pool_entryt(entry)
{
PRECONDITION(entry.tag == CONSTANT_NameAndType);
name_index = entry.ref1;
descriptor_index = entry.ref2;
}
std::string get_name(const pool_entry_lookupt &pool_entry) const
{
const pool_entryt &name_entry = pool_entry(name_index);
return read_utf8_constant(name_entry);
}
std::string get_descriptor(const pool_entry_lookupt &pool_entry) const
{
const pool_entryt &descriptor_entry = pool_entry(descriptor_index);
return read_utf8_constant(descriptor_entry);
}
private:
u2 name_index;
u2 descriptor_index;
};
class base_ref_infot : public structured_pool_entryt
{
public:
explicit base_ref_infot(const pool_entryt &entry)
: structured_pool_entryt(entry)
{
PRECONDITION(
entry.tag == CONSTANT_Fieldref || entry.tag == CONSTANT_Methodref ||
entry.tag == CONSTANT_InterfaceMethodref);
class_index = entry.ref1;
name_and_type_index = entry.ref2;
}
u2 get_class_index() const
{
return class_index;
}
u2 get_name_and_type_index() const
{
return name_and_type_index;
}
name_and_type_infot
get_name_and_type(const pool_entry_lookupt &pool_entry) const
{
const pool_entryt &name_and_type_entry = pool_entry(name_and_type_index);
INVARIANT(
name_and_type_entry.tag == CONSTANT_NameAndType,
"name_and_typeindex did not correspond to a name_and_type in the "
"constant pool");
return name_and_type_infot{name_and_type_entry};
}
class_infot get_class(const pool_entry_lookupt &pool_entry) const
{
const pool_entryt &class_entry = pool_entry(class_index);
return class_infot{class_entry};
}
private:
u2 class_index;
u2 name_and_type_index;
};
class method_handle_infot : public structured_pool_entryt
{
public:
/// Correspond to the different valid values for field handle_kind From
/// Java 8 spec 4.4.8
/// (https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-4.html)
enum class method_handle_kindt
{
REF_getField = 1,
REF_getStatic = 2,
REF_putField = 3,
REF_putStatic = 4,
REF_invokeVirtual = 5,
REF_invokeStatic = 6,
REF_invokeSpecial = 7,
REF_newInvokeSpecial = 8,
REF_invokeInterface = 9
};
explicit method_handle_infot(const pool_entryt &entry)
: structured_pool_entryt(entry)
{
PRECONDITION(entry.tag == CONSTANT_MethodHandle);
PRECONDITION(entry.ref1 > 0 && entry.ref1 < 10); // Java 8 spec 4.4.8
handle_kind = static_cast<method_handle_kindt>(entry.ref1);
reference_index = entry.ref2;
}
method_handle_kindt get_handle_kind() const
{
return handle_kind;
}
base_ref_infot get_reference(const pool_entry_lookupt &pool_entry) const
{
const base_ref_infot ref_entry{pool_entry(reference_index)};
// validate the correctness of the constant pool entry
switch(handle_kind)
{
case method_handle_kindt::REF_getField:
case method_handle_kindt::REF_getStatic:
case method_handle_kindt::REF_putField:
case method_handle_kindt::REF_putStatic:
{
INVARIANT(ref_entry.get_tag() == CONSTANT_Fieldref, "4.4.2");
break;
}
case method_handle_kindt::REF_invokeVirtual:
case method_handle_kindt::REF_newInvokeSpecial:
{
INVARIANT(ref_entry.get_tag() == CONSTANT_Methodref, "4.4.2");
break;
}
case method_handle_kindt::REF_invokeStatic:
case method_handle_kindt::REF_invokeSpecial:
{
INVARIANT(
ref_entry.get_tag() == CONSTANT_Methodref ||
ref_entry.get_tag() == CONSTANT_InterfaceMethodref,
"4.4.2");
break;
}
case method_handle_kindt::REF_invokeInterface:
{
INVARIANT(ref_entry.get_tag() == CONSTANT_InterfaceMethodref, "4.4.8");
break;
}
}
return ref_entry;
}
private:
method_handle_kindt handle_kind;
u2 reference_index;
};
bool java_bytecode_parsert::parse()
{
try
{
rClassFile();
}
catch(const char *message)
{
log.error() << message << messaget::eom;
return true;
}
catch(const std::string &message)
{
log.error() << message << messaget::eom;
return true;
}
catch(...)
{
log.error() << "parsing error" << messaget::eom;
return true;
}
return false;
}
#define ACC_PUBLIC 0x0001u
#define ACC_PRIVATE 0x0002u
#define ACC_PROTECTED 0x0004u
#define ACC_STATIC 0x0008u
#define ACC_FINAL 0x0010u
#define ACC_SYNCHRONIZED 0x0020u
#define ACC_BRIDGE 0x0040u
#define ACC_NATIVE 0x0100u
#define ACC_INTERFACE 0x0200u
#define ACC_ABSTRACT 0x0400u
#define ACC_STRICT 0x0800u
#define ACC_SYNTHETIC 0x1000u
#define ACC_ANNOTATION 0x2000u
#define ACC_ENUM 0x4000u
#define UNUSED_u2(x) \
{ \
const u2 x = read<u2>(); \
(void)x; \
} \
(void)0
void java_bytecode_parsert::rClassFile()
{
parse_tree.loading_successful=false;
const u4 magic = read<u4>();
UNUSED_u2(minor_version);
const u2 major_version = read<u2>();
if(magic!=0xCAFEBABE)
{
log.error() << "wrong magic" << messaget::eom;
throw 0;
}
if(major_version<44)
{
log.error() << "unexpected major version" << messaget::eom;
throw 0;
}
rconstant_pool();
classt &parsed_class=parse_tree.parsed_class;
const u2 access_flags = read<u2>();
const u2 this_class = read<u2>();
const u2 super_class = read<u2>();
parsed_class.is_abstract=(access_flags&ACC_ABSTRACT)!=0;
parsed_class.is_enum=(access_flags&ACC_ENUM)!=0;
parsed_class.is_public=(access_flags&ACC_PUBLIC)!=0;
parsed_class.is_protected=(access_flags&ACC_PROTECTED)!=0;
parsed_class.is_private=(access_flags&ACC_PRIVATE)!=0;
parsed_class.is_final = (access_flags & ACC_FINAL) != 0;
parsed_class.is_interface = (access_flags & ACC_INTERFACE) != 0;
parsed_class.is_synthetic = (access_flags & ACC_SYNTHETIC) != 0;
parsed_class.is_annotation = (access_flags & ACC_ANNOTATION) != 0;
parsed_class.name=
constant(this_class).type().get(ID_C_base_name);
if(super_class!=0)
parsed_class.super_class = constant(super_class).type().get(ID_C_base_name);
rinterfaces();
rfields();
rmethods();
// count elements of enum
if(parsed_class.is_enum)
for(fieldt &field : parse_tree.parsed_class.fields)
if(field.is_enum)
parse_tree.parsed_class.enum_elements++;
const u2 attributes_count = read<u2>();
for(std::size_t j=0; j<attributes_count; j++)
rclass_attribute();
get_class_refs();
parse_tree.loading_successful=true;
}
/// Get the class references for the benefit of a dependency analysis.
void java_bytecode_parsert::get_class_refs()
{
for(const auto &c : constant_pool)
{
switch(c.tag)
{
case CONSTANT_Class:
get_class_refs_rec(c.expr.type());
break;
case CONSTANT_NameAndType:
get_class_refs_rec(
*java_type_from_string(id2string(pool_entry(c.ref2).s)));
break;
default: {}
}
}
get_annotation_class_refs(parse_tree.parsed_class.annotations);
for(const auto &field : parse_tree.parsed_class.fields)
{
get_annotation_class_refs(field.annotations);
if(field.signature.has_value())
{
typet field_type = *java_type_from_string_with_exception(
field.descriptor,
field.signature,
"java::" + id2string(parse_tree.parsed_class.name));
// add generic type args to class refs as dependencies, same below for
// method types and entries from the local variable type table
get_dependencies_from_generic_parameters(
field_type, parse_tree.class_refs);
get_class_refs_rec(field_type);
}
else
{
get_class_refs_rec(*java_type_from_string(field.descriptor));
}
}
for(const auto &method : parse_tree.parsed_class.methods)
{
get_annotation_class_refs(method.annotations);
for(const auto ¶meter_annotations : method.parameter_annotations)
get_annotation_class_refs(parameter_annotations);
if(method.signature.has_value())
{
typet method_type = *java_type_from_string_with_exception(
method.descriptor,
method.signature,
"java::" + id2string(parse_tree.parsed_class.name));
get_dependencies_from_generic_parameters(
method_type, parse_tree.class_refs);
get_class_refs_rec(method_type);
}
else
{
get_class_refs_rec(*java_type_from_string(method.descriptor));
}
for(const auto &var : method.local_variable_table)
{
if(var.signature.has_value())
{
typet var_type = *java_type_from_string_with_exception(
var.descriptor,
var.signature,
"java::" + id2string(parse_tree.parsed_class.name));
get_dependencies_from_generic_parameters(
var_type, parse_tree.class_refs);
get_class_refs_rec(var_type);
}
else
{
get_class_refs_rec(*java_type_from_string(var.descriptor));
}
}
}
}
void java_bytecode_parsert::get_class_refs_rec(const typet &src)
{
if(src.id()==ID_code)
{
const java_method_typet &ct = to_java_method_type(src);
const typet &rt=ct.return_type();
get_class_refs_rec(rt);
for(const auto &p : ct.parameters())
get_class_refs_rec(p.type());
}
else if(src.id() == ID_struct_tag)
{
const struct_tag_typet &struct_tag_type = to_struct_tag_type(src);
if(is_java_array_tag(struct_tag_type.get_identifier()))
get_class_refs_rec(java_array_element_type(struct_tag_type));
else
parse_tree.class_refs.insert(src.get(ID_C_base_name));
}
else if(src.id()==ID_struct)
{
const struct_typet &struct_type=to_struct_type(src);
for(const auto &c : struct_type.components())
get_class_refs_rec(c.type());
}
else if(src.id()==ID_pointer)
get_class_refs_rec(to_pointer_type(src).base_type());
}
/// For each of the given annotations, get a reference to its class and
/// recursively get class references of the values it stores.
void java_bytecode_parsert::get_annotation_class_refs(
const std::vector<annotationt> &annotations)
{
for(const auto &annotation : annotations)
{
get_class_refs_rec(annotation.type);
for(const auto &element_value_pair : annotation.element_value_pairs)
get_annotation_value_class_refs(element_value_pair.value);
}
}
/// See \ref java_bytecode_parsert::get_annotation_class_refs.
/// For the different cases of `exprt`, see \ref
/// java_bytecode_parsert::get_relement_value.
void java_bytecode_parsert::get_annotation_value_class_refs(const exprt &value)
{
if(const auto &symbol_expr = expr_try_dynamic_cast<symbol_exprt>(value))
{
const irep_idt &value_id = symbol_expr->get_identifier();
get_class_refs_rec(*java_type_from_string(id2string(value_id)));
}
else if(const auto &array_expr = expr_try_dynamic_cast<array_exprt>(value))
{
for(const exprt &operand : array_expr->operands())
get_annotation_value_class_refs(operand);
}
// TODO: enum and nested annotation cases (once these are correctly parsed by
// get_relement_value).
// Note that in the cases where expr is a string or primitive type, no
// additional class references are needed.
}
void java_bytecode_parsert::rconstant_pool()
{
const u2 constant_pool_count = read<u2>();
if(constant_pool_count==0)
{
log.error() << "invalid constant_pool_count" << messaget::eom;
throw 0;
}
constant_pool.resize(constant_pool_count);
for(auto it = std::next(constant_pool.begin()); it != constant_pool.end();
it++)
{
it->tag = read<u1>();
switch(it->tag)
{
case CONSTANT_Class:
it->ref1 = read<u2>();
break;
case CONSTANT_Fieldref:
case CONSTANT_Methodref:
case CONSTANT_InterfaceMethodref:
case CONSTANT_NameAndType:
case CONSTANT_InvokeDynamic:
it->ref1 = read<u2>();
it->ref2 = read<u2>();
break;
case CONSTANT_String:
case CONSTANT_MethodType:
it->ref1 = read<u2>();
break;
case CONSTANT_Integer:
case CONSTANT_Float:
it->number = read<u4>();
break;
case CONSTANT_Long:
case CONSTANT_Double:
it->number = read<u8>();
// Eight-byte constants take up two entries in the constant_pool table.
if(it==constant_pool.end())
{
log.error() << "invalid double entry" << messaget::eom;
throw 0;
}
it++;
it->tag=0;
break;
case CONSTANT_Utf8:
{
const u2 bytes = read<u2>();
std::string s;
s.resize(bytes);
for(auto &ch : s)
ch = read<u1>();
it->s = s; // Add to string table
}
break;
case CONSTANT_MethodHandle:
it->ref1 = read<u1>();
it->ref2 = read<u2>();
break;
default:
log.error() << "unknown constant pool entry (" << it->tag << ")"
<< messaget::eom;
throw 0;
}
}
// we do a bit of post-processing after we have them all
std::for_each(
std::next(constant_pool.begin()),
constant_pool.end(),
[&](constant_poolt::value_type &entry) {
switch(entry.tag)
{
case CONSTANT_Class:
{
const std::string &s = id2string(pool_entry(entry.ref1).s);
entry.expr = type_exprt(java_classname(s));
}
break;
case CONSTANT_Fieldref:
{
const pool_entryt &nameandtype_entry = pool_entry(entry.ref2);
const pool_entryt &name_entry=pool_entry(nameandtype_entry.ref1);
const pool_entryt &class_entry = pool_entry(entry.ref1);
const pool_entryt &class_name_entry=pool_entry(class_entry.ref1);
typet type=type_entry(nameandtype_entry.ref2);
auto class_tag = java_classname(id2string(class_name_entry.s));
fieldref_exprt fieldref(type, name_entry.s, class_tag.get_identifier());
entry.expr = fieldref;
}
break;
case CONSTANT_Methodref:
case CONSTANT_InterfaceMethodref:
{
const pool_entryt &nameandtype_entry = pool_entry(entry.ref2);
const pool_entryt &name_entry=pool_entry(nameandtype_entry.ref1);
const pool_entryt &class_entry = pool_entry(entry.ref1);
const pool_entryt &class_name_entry=pool_entry(class_entry.ref1);
typet type=type_entry(nameandtype_entry.ref2);
auto class_tag = java_classname(id2string(class_name_entry.s));
irep_idt mangled_method_name =
id2string(name_entry.s) + ":" +
id2string(pool_entry(nameandtype_entry.ref2).s);
irep_idt class_id = class_tag.get_identifier();
entry.expr = class_method_descriptor_exprt{
type, mangled_method_name, class_id, name_entry.s};
}
break;
case CONSTANT_String:
{
// ldc turns these into references to java.lang.String
entry.expr = java_string_literal_exprt{pool_entry(entry.ref1).s};
}
break;
case CONSTANT_Integer:
entry.expr = from_integer(entry.number, java_int_type());
break;
case CONSTANT_Float:
{
ieee_float_valuet value(ieee_float_spect::single_precision());
value.unpack(entry.number);
entry.expr = value.to_expr();
}
break;
case CONSTANT_Long:
entry.expr = from_integer(entry.number, java_long_type());
break;
case CONSTANT_Double:
{
ieee_float_valuet value(ieee_float_spect::double_precision());
value.unpack(entry.number);
entry.expr = value.to_expr();
}
break;
case CONSTANT_NameAndType:
{
entry.expr.id("nameandtype");
}
break;
case CONSTANT_MethodHandle:
{
entry.expr.id("methodhandle");
}
break;
case CONSTANT_MethodType:
{
entry.expr.id("methodtype");
}
break;
case CONSTANT_InvokeDynamic:
{
entry.expr.id("invokedynamic");
const pool_entryt &nameandtype_entry = pool_entry(entry.ref2);
typet type=type_entry(nameandtype_entry.ref2);
type.set(ID_java_lambda_method_handle_index, entry.ref1);
entry.expr.type() = type;
}
break;
}
});
}
void java_bytecode_parsert::rinterfaces()
{
const u2 interfaces_count = read<u2>();
for(std::size_t i=0; i<interfaces_count; i++)
parse_tree.parsed_class.implements.push_back(
constant(read<u2>()).type().get(ID_C_base_name));
}
void java_bytecode_parsert::rfields()
{
const u2 fields_count = read<u2>();
for(std::size_t i=0; i<fields_count; i++)
{
fieldt &field = parse_tree.parsed_class.add_field();
const u2 access_flags = read<u2>();
const u2 name_index = read<u2>();
const u2 descriptor_index = read<u2>();
const u2 attributes_count = read<u2>();
field.name=pool_entry(name_index).s;
field.is_static=(access_flags&ACC_STATIC)!=0;
field.is_final=(access_flags&ACC_FINAL)!=0;
field.is_enum=(access_flags&ACC_ENUM)!=0;
field.descriptor=id2string(pool_entry(descriptor_index).s);
field.is_public=(access_flags&ACC_PUBLIC)!=0;
field.is_protected=(access_flags&ACC_PROTECTED)!=0;
field.is_private=(access_flags&ACC_PRIVATE)!=0;
const auto flags = (field.is_public ? 1 : 0) +
(field.is_protected?1:0)+
(field.is_private?1:0);
DATA_INVARIANT(flags<=1, "at most one of public, protected, private");
for(std::size_t j=0; j<attributes_count; j++)
rfield_attribute(field);
}
}
#define T_BOOLEAN 4
#define T_CHAR 5
#define T_FLOAT 6
#define T_DOUBLE 7
#define T_BYTE 8
#define T_SHORT 9
#define T_INT 10
#define T_LONG 11
void java_bytecode_parsert::rbytecode(std::vector<instructiont> &instructions)
{
const u4 code_length = read<u4>();
u4 address;
size_t bytecode_index=0; // index of bytecode instruction
for(address=0; address<code_length; address++)
{
bool wide_instruction=false;
u4 start_of_instruction=address;
u1 bytecode = read<u1>();
if(bytecode == BC_wide)
{
wide_instruction=true;
address++;
bytecode = read<u1>();
// The only valid instructions following a wide byte are
// [ifald]load, [ifald]store, ret and iinc
// All of these have either format of v, or V
INVARIANT(
bytecode_info[bytecode].format == 'v' ||
bytecode_info[bytecode].format == 'V',
std::string("Unexpected wide instruction: ") +
bytecode_info[bytecode].mnemonic);
}
instructions.emplace_back();
instructiont &instruction=instructions.back();
instruction.bytecode = bytecode;
instruction.address=start_of_instruction;
instruction.source_location
.set_java_bytecode_index(std::to_string(bytecode_index));
switch(bytecode_info[bytecode].format)
{
case ' ': // no further bytes
break;
case 'c': // a constant_pool index (one byte)
if(wide_instruction)
{
instruction.args.push_back(constant(read<u2>()));
address+=2;
}
else
{
instruction.args.push_back(constant(read<u1>()));
address+=1;
}
break;
case 'C': // a constant_pool index (two bytes)
instruction.args.push_back(constant(read<u2>()));
address+=2;
break;
case 'b': // a signed byte
{
const s1 c = read<u1>();
instruction.args.push_back(from_integer(c, signedbv_typet(8)));
}
address+=1;
break;
case 'o': // two byte branch offset, signed
{
const s2 offset = read<u2>();
// By converting the signed offset into an absolute address (by adding
// the current address) the number represented becomes unsigned.
instruction.args.push_back(
from_integer(address+offset, unsignedbv_typet(16)));
}
address+=2;
break;
case 'O': // four byte branch offset, signed
{
const s4 offset = read<u4>();
// By converting the signed offset into an absolute address (by adding
// the current address) the number represented becomes unsigned.
instruction.args.push_back(
from_integer(address+offset, unsignedbv_typet(32)));
}
address+=4;
break;
case 'v': // local variable index (one byte)
{
if(wide_instruction)
{
const u2 v = read<u2>();
instruction.args.push_back(from_integer(v, unsignedbv_typet(16)));
address += 2;
}
else
{
const u1 v = read<u1>();
instruction.args.push_back(from_integer(v, unsignedbv_typet(8)));
address += 1;
}
}
break;
case 'V':
// local variable index (two bytes) plus two signed bytes
if(wide_instruction)
{
const u2 v = read<u2>();
instruction.args.push_back(from_integer(v, unsignedbv_typet(16)));
const s2 c = read<u2>();
instruction.args.push_back(from_integer(c, signedbv_typet(16)));
address+=4;
}