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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
|
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Support for -Xcheck:jni (the "careful" version of the JNI interfaces).
*
* We want to verify types, make sure class and field IDs are valid, and
* ensure that JNI's semantic expectations are being met. JNI seems to
* be relatively lax when it comes to requirements for permission checks,
* e.g. access to private methods is generally allowed from anywhere.
*
* TODO: keep a counter on global Get/Release. Report a warning if some Gets
* were not Released. Do not count explicit Add/DeleteGlobalRef calls (or
* count them separately, so we can complain if they exceed a certain
* threshold).
*
* TODO: verify that the methodID passed into the Call functions is for
* a method in the specified class.
*/
#include "Dalvik.h"
#include "JniInternal.h"
#include <zlib.h>
#define kUnknownFuncName " -" /* can pass to showLocation() */
static void showLocation(const char* func);
static void abortMaybe(void);
/*
* ===========================================================================
* JNI call bridge wrapper
* ===========================================================================
*/
/*
* Check the result of a native method call that returns an object reference.
*
* The primary goal here is to verify that native code is returning the
* correct type of object. If it's declared to return a String but actually
* returns a byte array, things will fail in strange ways later on.
*
* This can be a fairly expensive operation, since we have to look up the
* return type class by name in method->clazz' class loader. We take a
* shortcut here and allow the call to succeed if the descriptor strings
* match. This will allow some false-positives when a class is redefined
* by a class loader, but that's rare enough that it doesn't seem worth
* testing for.
*
* At this point, pResult->l has already been converted to an object pointer.
*/
static void checkCallResultCommon(const u4* args, const JValue* pResult,
const Method* method, Thread* self)
{
assert(pResult->l != NULL);
const Object* resultObj = (const Object*) pResult->l;
if (resultObj == kInvalidIndirectRefObject) {
LOGW("JNI WARNING: invalid reference returned from native code\n");
showLocation(kUnknownFuncName);
abortMaybe();
return;
}
ClassObject* objClazz = resultObj->clazz;
/*
* Make sure that pResult->l is an instance of the type this
* method was expected to return.
*/
const char* declType = dexProtoGetReturnType(&method->prototype);
const char* objType = objClazz->descriptor;
if (strcmp(declType, objType) == 0) {
/* names match; ignore class loader issues and allow it */
LOGV("Check %s.%s: %s io %s (FAST-OK)",
method->clazz->descriptor, method->name, objType, declType);
} else {
/*
* Names didn't match. We need to resolve declType in the context
* of method->clazz->classLoader, and compare the class objects
* for equality.
*
* Since we're returning an instance of declType, it's safe to
* assume that it has been loaded and initialized (or, for the case
* of an array, generated). However, the current class loader may
* not be listed as an initiating loader, so we can't just look for
* it in the loaded-classes list.
*/
ClassObject* declClazz;
declClazz = dvmFindClassNoInit(declType, method->clazz->classLoader);
if (declClazz == NULL) {
LOGW("JNI WARNING: method declared to return '%s' returned '%s'",
declType, objType);
LOGW(" failed in %s.%s ('%s' not found)",
method->clazz->descriptor, method->name, declType);
abortMaybe();
return;
}
if (!dvmInstanceof(objClazz, declClazz)) {
LOGW("JNI WARNING: method declared to return '%s' returned '%s'",
declType, objType);
LOGW(" failed in %s.%s",
method->clazz->descriptor, method->name);
abortMaybe();
return;
} else {
LOGV("Check %s.%s: %s io %s (SLOW-OK)",
method->clazz->descriptor, method->name, objType, declType);
}
}
}
/*
* Determine if we need to check the return type coming out of the call.
*
* (We don't simply do this at the top of checkCallResultCommon() because
* this is on the critical path for native method calls.)
*/
static inline bool callNeedsCheck(const u4* args, JValue* pResult,
const Method* method, Thread* self)
{
return (method->shorty[0] == 'L' && !dvmCheckException(self) &&
pResult->l != NULL);
}
/*
* Check a call into native code.
*/
void dvmCheckCallJNIMethod_general(const u4* args, JValue* pResult,
const Method* method, Thread* self)
{
dvmCallJNIMethod_general(args, pResult, method, self);
if (callNeedsCheck(args, pResult, method, self))
checkCallResultCommon(args, pResult, method, self);
}
/*
* Check a synchronized call into native code.
*/
void dvmCheckCallJNIMethod_synchronized(const u4* args, JValue* pResult,
const Method* method, Thread* self)
{
dvmCallJNIMethod_synchronized(args, pResult, method, self);
if (callNeedsCheck(args, pResult, method, self))
checkCallResultCommon(args, pResult, method, self);
}
/*
* Check a virtual call with no reference arguments (other than "this").
*/
void dvmCheckCallJNIMethod_virtualNoRef(const u4* args, JValue* pResult,
const Method* method, Thread* self)
{
dvmCallJNIMethod_virtualNoRef(args, pResult, method, self);
if (callNeedsCheck(args, pResult, method, self))
checkCallResultCommon(args, pResult, method, self);
}
/*
* Check a static call with no reference arguments (other than "clazz").
*/
void dvmCheckCallJNIMethod_staticNoRef(const u4* args, JValue* pResult,
const Method* method, Thread* self)
{
dvmCallJNIMethod_staticNoRef(args, pResult, method, self);
if (callNeedsCheck(args, pResult, method, self))
checkCallResultCommon(args, pResult, method, self);
}
/*
* ===========================================================================
* JNI function helpers
* ===========================================================================
*/
#define JNI_ENTER() dvmChangeStatus(NULL, THREAD_RUNNING)
#define JNI_EXIT() dvmChangeStatus(NULL, THREAD_NATIVE)
#define BASE_ENV(_env) (((JNIEnvExt*)_env)->baseFuncTable)
#define BASE_VM(_vm) (((JavaVMExt*)_vm)->baseFuncTable)
/*
* Flags passed into checkThread().
*/
#define kFlag_Default 0x0000
#define kFlag_CritBad 0x0000 /* calling while in critical is bad */
#define kFlag_CritOkay 0x0001 /* ...okay */
#define kFlag_CritGet 0x0002 /* this is a critical "get" */
#define kFlag_CritRelease 0x0003 /* this is a critical "release" */
#define kFlag_CritMask 0x0003 /* bit mask to get "crit" value */
#define kFlag_ExcepBad 0x0000 /* raised exceptions are bad */
#define kFlag_ExcepOkay 0x0004 /* ...okay */
/*
* Enter/exit macros for JNI env "check" functions. These do not change
* the thread state within the VM.
*/
#define CHECK_ENTER(_env, _flags) \
do { \
JNI_TRACE(true, true); \
checkThread(_env, _flags, __FUNCTION__); \
} while(false)
#define CHECK_EXIT(_env) \
do { JNI_TRACE(false, true); } while(false)
/*
* Enter/exit macros for JNI invocation interface "check" functions. These
* do not change the thread state within the VM.
*
* Set "_hasmeth" to true if we have a valid thread with a method pointer.
* We won't have one before attaching a thread, after detaching a thread, or
* after destroying the VM.
*/
#define CHECK_VMENTER(_vm, _hasmeth) \
do { JNI_TRACE(true, _hasmeth); } while(false)
#define CHECK_VMEXIT(_vm, _hasmeth) \
do { JNI_TRACE(false, _hasmeth); } while(false)
#define CHECK_FIELD_TYPE(_env, _obj, _fieldid, _prim, _isstatic) \
checkFieldType(_env, _obj, _fieldid, _prim, _isstatic, __FUNCTION__)
#define CHECK_STATIC_FIELD_ID(_env, _clazz, _fieldid) \
checkStaticFieldID(_env, _clazz, _fieldid, __FUNCTION__)
#define CHECK_INST_FIELD_ID(_env, _obj, _fieldid) \
checkInstanceFieldID(_env, _obj, _fieldid, __FUNCTION__)
#define CHECK_CLASS(_env, _clazz) \
checkInstance(_env, _clazz, gDvm.classJavaLangClass, "jclass", __FUNCTION__)
#define CHECK_STRING(_env, _str) \
checkInstance(_env, _str, gDvm.classJavaLangString, "jstring", __FUNCTION__)
#define CHECK_UTF_STRING(_env, _str) \
checkUtfString(_env, _str, #_str, __FUNCTION__)
#define CHECK_NULLABLE_UTF_STRING(_env, _str) \
checkUtfString(_env, _str, NULL, __FUNCTION__)
#define CHECK_CLASS_NAME(_env, _str) \
checkClassName(_env, _str, __FUNCTION__)
#define CHECK_OBJECT(_env, _obj) \
checkObject(_env, _obj, __FUNCTION__)
#define CHECK_ARRAY(_env, _array) \
checkArray(_env, _array, __FUNCTION__)
#define CHECK_RELEASE_MODE(_env, _mode) \
checkReleaseMode(_env, _mode, __FUNCTION__)
#define CHECK_LENGTH_POSITIVE(_env, _length) \
checkLengthPositive(_env, _length, __FUNCTION__)
#define CHECK_NON_NULL(_env, _ptr) \
checkNonNull(_env, _ptr, __FUNCTION__)
#define CHECK_SIG(_env, _methid, _sigbyte, _isstatic) \
checkSig(_env, _methid, _sigbyte, _isstatic, __FUNCTION__)
#define CHECK_VIRTUAL_METHOD(_env, _obj, _methid) \
checkVirtualMethod(_env, _obj, _methid, __FUNCTION__)
#define CHECK_STATIC_METHOD(_env, _clazz, _methid) \
checkStaticMethod(_env, _clazz, _methid, __FUNCTION__)
/*
* Prints trace messages when a native method calls a JNI function such as
* NewByteArray. Enabled if both "-Xcheck:jni" and "-verbose:jni" are enabled.
*/
#define JNI_TRACE(_entry, _hasmeth) \
do { \
if (gDvm.verboseJni && (_entry)) { \
static const char* classDescriptor = "???"; \
static const char* methodName = "???"; \
if (_hasmeth) { \
const Method* meth = dvmGetCurrentJNIMethod(); \
classDescriptor = meth->clazz->descriptor; \
methodName = meth->name; \
} \
/* use +6 to drop the leading "Check_" */ \
LOGI("JNI: %s (from %s.%s)", \
(__FUNCTION__)+6, classDescriptor, methodName); \
} \
} while(false)
/*
* Log the current location.
*
* "func" looks like "Check_DeleteLocalRef"; we drop the "Check_".
*/
static void showLocation(const char* func)
{
const Method* meth = dvmGetCurrentJNIMethod();
char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
LOGW(" in %s.%s:%s (%s)",
meth->clazz->descriptor, meth->name, desc, func + 6);
free(desc);
}
/*
* Abort if we are configured to bail out on JNI warnings.
*/
static void abortMaybe(void)
{
JavaVMExt* vm = (JavaVMExt*) gDvm.vmList;
if (vm->warnError) {
dvmDumpThread(dvmThreadSelf(), false);
dvmAbort();
}
}
/*
* Verify that the current thread is (a) attached and (b) associated with
* this particular instance of JNIEnv.
*
* Verify that, if this thread previously made a critical "get" call, we
* do the corresponding "release" call before we try anything else.
*
* Verify that, if an exception has been raised, the native code doesn't
* make any JNI calls other than the Exception* methods.
*
* TODO? if we add support for non-JNI native calls, make sure that the
* method at the top of the interpreted stack is a JNI method call. (Or
* set a flag in the Thread/JNIEnv when the call is made and clear it on
* return?)
*
* NOTE: we are still in THREAD_NATIVE mode. A GC could happen at any time.
*/
static void checkThread(JNIEnv* env, int flags, const char* func)
{
JNIEnvExt* threadEnv;
bool printWarn = false;
bool printException = false;
/* get the *correct* JNIEnv by going through our TLS pointer */
threadEnv = dvmGetJNIEnvForThread();
/*
* Verify that the JNIEnv we've been handed matches what we expected
* to receive.
*/
if (threadEnv == NULL) {
LOGE("JNI ERROR: non-VM thread making JNI calls");
// don't set printWarn -- it'll try to call showLocation()
dvmAbort();
} else if ((JNIEnvExt*) env != threadEnv) {
if (dvmThreadSelf()->threadId != threadEnv->envThreadId) {
LOGE("JNI: threadEnv != thread->env?");
dvmAbort();
}
LOGW("JNI WARNING: threadid=%d using env from threadid=%d",
threadEnv->envThreadId, ((JNIEnvExt*)env)->envThreadId);
printWarn = true;
/* this is a bad idea -- need to throw as we exit, or abort func */
//dvmThrowRuntimeException("invalid use of JNI env ptr");
} else if (((JNIEnvExt*) env)->self != dvmThreadSelf()) {
/* correct JNIEnv*; make sure the "self" pointer is correct */
LOGE("JNI ERROR: env->self != thread-self (%p vs. %p)",
((JNIEnvExt*) env)->self, dvmThreadSelf());
dvmAbort();
}
/*
* Check for critical resource misuse.
*/
switch (flags & kFlag_CritMask) {
case kFlag_CritOkay: // okay to call this method
break;
case kFlag_CritBad: // not okay to call
if (threadEnv->critical) {
LOGW("JNI WARNING: threadid=%d using JNI after critical get",
threadEnv->envThreadId);
printWarn = true;
}
break;
case kFlag_CritGet: // this is a "get" call
/* don't check here; we allow nested gets */
threadEnv->critical++;
break;
case kFlag_CritRelease: // this is a "release" call
threadEnv->critical--;
if (threadEnv->critical < 0) {
LOGW("JNI WARNING: threadid=%d called too many crit releases",
threadEnv->envThreadId);
printWarn = true;
}
break;
default:
assert(false);
}
/*
* Check for raised exceptions.
*/
if ((flags & kFlag_ExcepOkay) == 0 && dvmCheckException(dvmThreadSelf())) {
LOGW("JNI WARNING: JNI method called with exception raised");
printWarn = true;
printException = true;
}
if (printWarn)
showLocation(func);
if (printException) {
LOGW("Pending exception is:");
dvmLogExceptionStackTrace();
}
if (printWarn)
abortMaybe();
}
/*
* Get a human-oriented name for a given primitive type.
*/
static const char* primitiveTypeToName(PrimitiveType primType) {
switch (primType) {
case PRIM_VOID: return "void";
case PRIM_BOOLEAN: return "boolean";
case PRIM_BYTE: return "byte";
case PRIM_SHORT: return "short";
case PRIM_CHAR: return "char";
case PRIM_INT: return "int";
case PRIM_LONG: return "long";
case PRIM_FLOAT: return "float";
case PRIM_DOUBLE: return "double";
case PRIM_NOT: return "Object/Array";
default: return "???";
}
}
/*
* Verify that the field is of the appropriate type. If the field has an
* object type, "jobj" is the object we're trying to assign into it.
*
* Works for both static and instance fields.
*/
static void checkFieldType(JNIEnv* env, jobject jobj, jfieldID fieldID,
PrimitiveType prim, bool isStatic, const char* func)
{
Field* field = (Field*) fieldID;
bool printWarn = false;
if (fieldID == NULL) {
LOGW("JNI WARNING: null field ID");
showLocation(func);
abortMaybe();
}
if ((field->signature[0] == 'L' || field->signature[0] == '[') &&
jobj != NULL)
{
JNI_ENTER();
Object* obj = dvmDecodeIndirectRef(env, jobj);
/*
* If jobj is a weak global ref whose referent has been cleared,
* obj will be NULL. Otherwise, obj should always be non-NULL
* and valid.
*/
if (obj != NULL && !dvmIsValidObject(obj)) {
LOGW("JNI WARNING: field operation on invalid %s ref (%p)\n",
dvmIndirectRefTypeName(jobj), jobj);
printWarn = true;
} else {
ClassObject* fieldClass =
dvmFindLoadedClass(field->signature);
ClassObject* objClass = obj->clazz;
assert(fieldClass != NULL);
assert(objClass != NULL);
if (!dvmInstanceof(objClass, fieldClass)) {
LOGW("JNI WARNING: set field '%s' expected type %s, got %s",
field->name, field->signature, objClass->descriptor);
printWarn = true;
}
}
JNI_EXIT();
} else if (dexGetPrimitiveTypeFromDescriptorChar(field->signature[0]) != prim) {
LOGW("JNI WARNING: set field '%s' expected type %s, got %s",
field->name, field->signature, primitiveTypeToName(prim));
printWarn = true;
} else if (isStatic && !dvmIsStaticField(field)) {
if (isStatic)
LOGW("JNI WARNING: accessing non-static field %s as static",
field->name);
else
LOGW("JNI WARNING: accessing static field %s as non-static",
field->name);
printWarn = true;
}
if (printWarn) {
showLocation(func);
abortMaybe();
}
}
/*
* Verify that "jobj" is a valid object, and that it's an object that JNI
* is allowed to know about. We allow NULL references.
*
* Switches to "running" mode before performing checks.
*/
static void checkObject(JNIEnv* env, jobject jobj, const char* func)
{
bool printWarn = false;
if (jobj == NULL)
return;
JNI_ENTER();
if (dvmGetJNIRefType(env, jobj) == JNIInvalidRefType) {
LOGW("JNI WARNING: %p is not a valid JNI reference (type=%s)",
jobj, dvmIndirectRefTypeName(jobj));
printWarn = true;
} else {
Object* obj = dvmDecodeIndirectRef(env, jobj);
/*
* The decoded object will be NULL if this is a weak global ref
* with a cleared referent.
*/
if (obj == kInvalidIndirectRefObject ||
(obj != NULL && !dvmIsValidObject(obj)))
{
LOGW("JNI WARNING: native code passing in bad object %p %p",
jobj, obj);
printWarn = true;
}
}
if (printWarn) {
showLocation(func);
abortMaybe();
}
JNI_EXIT();
}
/*
* Verify that "jobj" is a valid non-NULL object reference, and points to
* an instance of expectedClass.
*
* Because we're looking at an object on the GC heap, we have to switch
* to "running" mode before doing the checks.
*/
static void checkInstance(JNIEnv* env, jobject jobj,
ClassObject* expectedClass, const char* argName, const char* func)
{
if (jobj == NULL) {
LOGW("JNI WARNING: received null %s", argName);
showLocation(func);
abortMaybe();
return;
}
JNI_ENTER();
bool printWarn = false;
Object* obj = dvmDecodeIndirectRef(env, jobj);
if (!dvmIsValidObject(obj)) {
LOGW("JNI WARNING: %s is invalid %s ref (%p)", argName,
dvmIndirectRefTypeName(jobj), jobj);
printWarn = true;
} else if (obj->clazz != expectedClass) {
LOGW("JNI WARNING: %s arg has wrong type (expected %s, got %s)",
argName, expectedClass->descriptor, obj->clazz->descriptor);
printWarn = true;
}
JNI_EXIT();
if (printWarn) {
showLocation(func);
abortMaybe();
}
}
/*
* Verify that "bytes" points to valid "modified UTF-8" data.
* If "identifier" is NULL, "bytes" is allowed to be NULL; otherwise,
* "identifier" is the name to use when reporting the null pointer.
*/
static void checkUtfString(JNIEnv* env, const char* bytes,
const char* identifier, const char* func)
{
const char* origBytes = bytes;
if (bytes == NULL) {
if (identifier != NULL) {
LOGW("JNI WARNING: %s == NULL", identifier);
goto fail;
}
return;
}
const char* errorKind = NULL;
u1 utf8;
while (*bytes != '\0') {
utf8 = *(bytes++);
// Switch on the high four bits.
switch (utf8 >> 4) {
case 0x00:
case 0x01:
case 0x02:
case 0x03:
case 0x04:
case 0x05:
case 0x06:
case 0x07: {
// Bit pattern 0xxx. No need for any extra bytes.
break;
}
case 0x08:
case 0x09:
case 0x0a:
case 0x0b:
case 0x0f: {
/*
* Bit pattern 10xx or 1111, which are illegal start bytes.
* Note: 1111 is valid for normal UTF-8, but not the
* modified UTF-8 used here.
*/
errorKind = "start";
goto fail_with_string;
}
case 0x0e: {
// Bit pattern 1110, so there are two additional bytes.
utf8 = *(bytes++);
if ((utf8 & 0xc0) != 0x80) {
errorKind = "continuation";
goto fail_with_string;
}
// Fall through to take care of the final byte.
}
case 0x0c:
case 0x0d: {
// Bit pattern 110x, so there is one additional byte.
utf8 = *(bytes++);
if ((utf8 & 0xc0) != 0x80) {
errorKind = "continuation";
goto fail_with_string;
}
break;
}
}
}
return;
fail_with_string:
LOGW("JNI WARNING: input is not valid UTF-8: illegal %s byte 0x%x",
errorKind, utf8);
LOGW(" string: '%s'", origBytes);
fail:
showLocation(func);
abortMaybe();
}
/*
* In some circumstances the VM will screen class names, but it doesn't
* for class lookup. When things get bounced through a class loader, they
* can actually get normalized a couple of times; as a result, passing in
* a class name like "java.lang.Thread" instead of "java/lang/Thread" will
* work in some circumstances.
*
* This is incorrect and could cause strange behavior or compatibility
* problems, so we want to screen that out here.
*
* We expect "full-qualified" class names, like "java/lang/Thread" or
* "[Ljava/lang/Object;".
*/
static void checkClassName(JNIEnv* env, const char* className, const char* func)
{
if (!dexIsValidClassName(className, false)) {
LOGW("JNI WARNING: illegal class name '%s' (%s)", className, func);
LOGW(" (should be formed like 'dalvik/system/DexFile')");
LOGW(" or '[Ldalvik/system/DexFile;' or '[[B')");
abortMaybe();
}
}
/*
* Verify that "array" is non-NULL and points to an Array object.
*
* Since we're dealing with objects, switch to "running" mode.
*/
static void checkArray(JNIEnv* env, jarray jarr, const char* func)
{
if (jarr == NULL) {
LOGW("JNI WARNING: received null array");
showLocation(func);
abortMaybe();
return;
}
JNI_ENTER();
bool printWarn = false;
Object* obj = dvmDecodeIndirectRef(env, jarr);
if (!dvmIsValidObject(obj)) {
LOGW("JNI WARNING: jarray is invalid %s ref (%p)",
dvmIndirectRefTypeName(jarr), jarr);
printWarn = true;
} else if (obj->clazz->descriptor[0] != '[') {
LOGW("JNI WARNING: jarray arg has wrong type (expected array, got %s)",
obj->clazz->descriptor);
printWarn = true;
}
JNI_EXIT();
if (printWarn) {
showLocation(func);
abortMaybe();
}
}
/*
* Verify that the "mode" argument passed to a primitive array Release
* function is one of the valid values.
*/
static void checkReleaseMode(JNIEnv* env, jint mode, const char* func)
{
if (mode != 0 && mode != JNI_COMMIT && mode != JNI_ABORT) {
LOGW("JNI WARNING: bad value for mode (%d) (%s)", mode, func);
abortMaybe();
}
}
/*
* Verify that the length argument to array-creation calls is >= 0.
*/
static void checkLengthPositive(JNIEnv* env, jsize length, const char* func)
{
if (length < 0) {
LOGW("JNI WARNING: negative length for array allocation (%s)", func);
abortMaybe();
}
}
/*
* Verify that the pointer value is non-NULL.
*/
static void checkNonNull(JNIEnv* env, const void* ptr, const char* func)
{
if (ptr == NULL) {
LOGW("JNI WARNING: invalid null pointer (%s)", func);
abortMaybe();
}
}
/*
* Verify that the method's return type matches the type of call.
*
* "expectedSigByte" will be 'L' for all objects, including arrays.
*/
static void checkSig(JNIEnv* env, jmethodID methodID, char expectedSigByte,
bool isStatic, const char* func)
{
const Method* meth = (const Method*) methodID;
bool printWarn = false;
if (expectedSigByte != meth->shorty[0]) {
LOGW("JNI WARNING: expected return type '%c'", expectedSigByte);
printWarn = true;
} else if (isStatic && !dvmIsStaticMethod(meth)) {
if (isStatic)
LOGW("JNI WARNING: calling non-static method with static call");
else
LOGW("JNI WARNING: calling static method with non-static call");
printWarn = true;
}
if (printWarn) {
char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
LOGW(" calling %s.%s %s",
meth->clazz->descriptor, meth->name, desc);
free(desc);
showLocation(func);
abortMaybe();
}
}
/*
* Verify that this static field ID is valid for this class.
*
* Assumes "jclazz" has already been validated.
*/
static void checkStaticFieldID(JNIEnv* env, jclass jclazz, jfieldID fieldID,
const char* func)
{
JNI_ENTER();
ClassObject* clazz = (ClassObject*) dvmDecodeIndirectRef(env, jclazz);
StaticField* base = &clazz->sfields[0];
int fieldCount = clazz->sfieldCount;
if ((StaticField*) fieldID < base ||
(StaticField*) fieldID >= base + fieldCount)
{
LOGW("JNI WARNING: static fieldID %p not valid for class %s",
fieldID, clazz->descriptor);
LOGW(" base=%p count=%d", base, fieldCount);
showLocation(func);
abortMaybe();
}
JNI_EXIT();
}
/*
* Verify that this instance field ID is valid for this object.
*
* Assumes "jobj" has already been validated.
*/
static void checkInstanceFieldID(JNIEnv* env, jobject jobj, jfieldID fieldID,
const char* func)
{
JNI_ENTER();
Object* obj = dvmDecodeIndirectRef(env, jobj);
ClassObject* clazz = obj->clazz;
/*
* Check this class and all of its superclasses for a matching field.
* Don't need to scan interfaces.
*/
while (clazz != NULL) {
if ((InstField*) fieldID >= clazz->ifields &&
(InstField*) fieldID < clazz->ifields + clazz->ifieldCount)
{
goto bail;
}
clazz = clazz->super;
}
LOGW("JNI WARNING: inst fieldID %p not valid for class %s",
fieldID, obj->clazz->descriptor);
showLocation(func);
abortMaybe();
bail:
JNI_EXIT();
}
/*
* Verify that "methodID" is appropriate for "jobj".
*
* Make sure the object is an instance of the method's declaring class.
* (Note the methodID might point to a declaration in an interface; this
* will be handled automatically by the instanceof check.)
*/
static void checkVirtualMethod(JNIEnv* env, jobject jobj, jmethodID methodID,
const char* func)
{
JNI_ENTER();
Object* obj = dvmDecodeIndirectRef(env, jobj);
const Method* meth = (const Method*) methodID;
if (!dvmInstanceof(obj->clazz, meth->clazz)) {
LOGW("JNI WARNING: can't call %s.%s on instance of %s",
meth->clazz->descriptor, meth->name, obj->clazz->descriptor);
showLocation(func);
abortMaybe();
}
JNI_EXIT();
}
/*
* Verify that "methodID" is appropriate for "clazz".
*
* A mismatch isn't dangerous, because the jmethodID defines the class. In
* fact, jclazz is unused in the implementation. It's best if we don't
* allow bad code in the system though.
*
* Instances of "jclazz" must be instances of the method's declaring class.
*/
static void checkStaticMethod(JNIEnv* env, jclass jclazz, jmethodID methodID,
const char* func)
{
JNI_ENTER();
ClassObject* clazz = (ClassObject*) dvmDecodeIndirectRef(env, jclazz);
const Method* meth = (const Method*) methodID;
if (!dvmInstanceof(clazz, meth->clazz)) {
LOGW("JNI WARNING: can't call static %s.%s on class %s",
meth->clazz->descriptor, meth->name, clazz->descriptor);
showLocation(func);
// no abort?
}
JNI_EXIT();
}
/*
* ===========================================================================
* Guarded arrays
* ===========================================================================
*/
#define kGuardLen 512 /* must be multiple of 2 */
#define kGuardPattern 0xd5e3 /* uncommon values; d5e3d5e3 invalid addr */
#define kGuardMagic 0xffd5aa96
#define kGuardExtra sizeof(GuardExtra)
/* this gets tucked in at the start of the buffer; struct size must be even */
typedef struct GuardExtra {
u4 magic;
uLong adler;
size_t originalLen;
const void* originalPtr;
} GuardExtra;
/* find the GuardExtra given the pointer into the "live" data */
inline static GuardExtra* getGuardExtra(const void* dataBuf)
{
u1* fullBuf = ((u1*) dataBuf) - kGuardLen / 2;
return (GuardExtra*) fullBuf;
}
/*
* Create an oversized buffer to hold the contents of "buf". Copy it in,
* filling in the area around it with guard data.
*
* We use a 16-bit pattern to make a rogue memset less likely to elude us.
*/
static void* createGuardedCopy(const void* buf, size_t len, bool modOkay)
{
GuardExtra* pExtra;
size_t newLen = (len + kGuardLen +1) & ~0x01;
u1* newBuf;
u2* pat;
int i;
newBuf = (u1*)malloc(newLen);
if (newBuf == NULL) {
LOGE("createGuardedCopy failed on alloc of %d bytes", newLen);
dvmAbort();
}
/* fill it in with a pattern */
pat = (u2*) newBuf;
for (i = 0; i < (int)newLen / 2; i++)
*pat++ = kGuardPattern;
/* copy the data in; note "len" could be zero */
memcpy(newBuf + kGuardLen / 2, buf, len);
/* if modification is not expected, grab a checksum */
uLong adler = 0;
if (!modOkay) {
adler = adler32(0L, Z_NULL, 0);
adler = adler32(adler, (const Bytef*)buf, len);
*(uLong*)newBuf = adler;
}
pExtra = (GuardExtra*) newBuf;
pExtra->magic = kGuardMagic;
pExtra->adler = adler;
pExtra->originalPtr = buf;
pExtra->originalLen = len;
return newBuf + kGuardLen / 2;
}
/*
* Verify the guard area and, if "modOkay" is false, that the data itself
* has not been altered.
*
* The caller has already checked that "dataBuf" is non-NULL.
*/
static bool checkGuardedCopy(const void* dataBuf, bool modOkay)
{
static const u4 kMagicCmp = kGuardMagic;
const u1* fullBuf = ((const u1*) dataBuf) - kGuardLen / 2;
const GuardExtra* pExtra = getGuardExtra(dataBuf);
size_t len;
const u2* pat;
int i;
/*
* Before we do anything with "pExtra", check the magic number. We
* do the check with memcmp rather than "==" in case the pointer is
* unaligned. If it points to completely bogus memory we're going
* to crash, but there's no easy way around that.
*/
if (memcmp(&pExtra->magic, &kMagicCmp, 4) != 0) {
u1 buf[4];
memcpy(buf, &pExtra->magic, 4);
LOGE("JNI: guard magic does not match (found 0x%02x%02x%02x%02x) "
"-- incorrect data pointer %p?",
buf[3], buf[2], buf[1], buf[0], dataBuf); /* assume little endian */
return false;
}
len = pExtra->originalLen;
/* check bottom half of guard; skip over optional checksum storage */
pat = (u2*) fullBuf;
for (i = kGuardExtra / 2; i < (int) (kGuardLen / 2 - kGuardExtra) / 2; i++)
{
if (pat[i] != kGuardPattern) {
LOGE("JNI: guard pattern(1) disturbed at %p + %d",
fullBuf, i*2);
return false;
}
}
int offset = kGuardLen / 2 + len;
if (offset & 0x01) {
/* odd byte; expected value depends on endian-ness of host */
const u2 patSample = kGuardPattern;
if (fullBuf[offset] != ((const u1*) &patSample)[1]) {
LOGE("JNI: guard pattern disturbed in odd byte after %p "
"(+%d) 0x%02x 0x%02x",
fullBuf, offset, fullBuf[offset], ((const u1*) &patSample)[1]);
return false;
}
offset++;
}
/* check top half of guard */
pat = (u2*) (fullBuf + offset);
for (i = 0; i < kGuardLen / 4; i++) {
if (pat[i] != kGuardPattern) {
LOGE("JNI: guard pattern(2) disturbed at %p + %d",
fullBuf, offset + i*2);
return false;
}
}
/*
* If modification is not expected, verify checksum. Strictly speaking
* this is wrong: if we told the client that we made a copy, there's no
* reason they can't alter the buffer.
*/
if (!modOkay) {
uLong adler = adler32(0L, Z_NULL, 0);
adler = adler32(adler, (const Bytef*)dataBuf, len);
if (pExtra->adler != adler) {
LOGE("JNI: buffer modified (0x%08lx vs 0x%08lx) at addr %p",
pExtra->adler, adler, dataBuf);
return false;
}
}
return true;
}
/*
* Free up the guard buffer, scrub it, and return the original pointer.
*/
static void* freeGuardedCopy(void* dataBuf)
{
u1* fullBuf = ((u1*) dataBuf) - kGuardLen / 2;
const GuardExtra* pExtra = getGuardExtra(dataBuf);
void* originalPtr = (void*) pExtra->originalPtr;
size_t len = pExtra->originalLen;
memset(dataBuf, 0xdd, len);
free(fullBuf);
return originalPtr;
}
/*
* Just pull out the original pointer.
*/
static void* getGuardedCopyOriginalPtr(const void* dataBuf)
{
const GuardExtra* pExtra = getGuardExtra(dataBuf);
return (void*) pExtra->originalPtr;
}
/*
* Grab the data length.
*/
static size_t getGuardedCopyOriginalLen(const void* dataBuf)
{
const GuardExtra* pExtra = getGuardExtra(dataBuf);
return pExtra->originalLen;
}
/*
* Return the width, in bytes, of a primitive type.
*/
static int dvmPrimitiveTypeWidth(PrimitiveType primType)
{
switch (primType) {
case PRIM_BOOLEAN: return 1;
case PRIM_BYTE: return 1;
case PRIM_SHORT: return 2;
case PRIM_CHAR: return 2;
case PRIM_INT: return 4;
case PRIM_LONG: return 8;
case PRIM_FLOAT: return 4;
case PRIM_DOUBLE: return 8;
case PRIM_VOID:
default: {
assert(false);
return -1;
}
}
}
/*
* Create a guarded copy of a primitive array. Modifications to the copied
* data are allowed. Returns a pointer to the copied data.
*/
static void* createGuardedPACopy(JNIEnv* env, const jarray jarr,
jboolean* isCopy)
{
JNI_ENTER();
ArrayObject* arrObj = (ArrayObject*) dvmDecodeIndirectRef(env, jarr);
PrimitiveType primType = arrObj->obj.clazz->elementClass->primitiveType;
int len = arrObj->length * dvmPrimitiveTypeWidth(primType);
void* result;
result = createGuardedCopy(arrObj->contents, len, true);
if (isCopy != NULL)
*isCopy = JNI_TRUE;
JNI_EXIT();
return result;
}
/*
* Perform the array "release" operation, which may or may not copy data
* back into the VM, and may or may not release the underlying storage.
*/
static void* releaseGuardedPACopy(JNIEnv* env, jarray jarr, void* dataBuf,
int mode)
{
JNI_ENTER();
ArrayObject* arrObj = (ArrayObject*) dvmDecodeIndirectRef(env, jarr);
bool release, copyBack;
u1* result = NULL;
if (!checkGuardedCopy(dataBuf, true)) {
LOGE("JNI: failed guarded copy check in releaseGuardedPACopy");
abortMaybe();
goto bail;
}
switch (mode) {
case 0:
release = copyBack = true;
break;
case JNI_ABORT:
release = true;
copyBack = false;
break;
case JNI_COMMIT:
release = false;
copyBack = true;
break;
default:
LOGE("JNI: bad release mode %d", mode);
dvmAbort();
goto bail;
}
if (copyBack) {
size_t len = getGuardedCopyOriginalLen(dataBuf);
memcpy(arrObj->contents, dataBuf, len);
}
if (release) {
result = (u1*) freeGuardedCopy(dataBuf);
} else {
result = (u1*) getGuardedCopyOriginalPtr(dataBuf);
}
/* pointer is to the array contents; back up to the array object */
result -= offsetof(ArrayObject, contents);
bail:
JNI_EXIT();
return result;
}
/*
* ===========================================================================
* JNI functions
* ===========================================================================
*/
static jint Check_GetVersion(JNIEnv* env)
{
CHECK_ENTER(env, kFlag_Default);
jint result;
result = BASE_ENV(env)->GetVersion(env);
CHECK_EXIT(env);
return result;
}
static jclass Check_DefineClass(JNIEnv* env, const char* name, jobject loader,
const jbyte* buf, jsize bufLen)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, loader);
CHECK_UTF_STRING(env, name);
CHECK_CLASS_NAME(env, name);
jclass result;
result = BASE_ENV(env)->DefineClass(env, name, loader, buf, bufLen);
CHECK_EXIT(env);
return result;
}
static jclass Check_FindClass(JNIEnv* env, const char* name)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_UTF_STRING(env, name);
CHECK_CLASS_NAME(env, name);
jclass result;
result = BASE_ENV(env)->FindClass(env, name);
CHECK_EXIT(env);
return result;
}
static jclass Check_GetSuperclass(JNIEnv* env, jclass clazz)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jclass result;
result = BASE_ENV(env)->GetSuperclass(env, clazz);
CHECK_EXIT(env);
return result;
}
static jboolean Check_IsAssignableFrom(JNIEnv* env, jclass clazz1,
jclass clazz2)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz1);
CHECK_CLASS(env, clazz2);
jboolean result;
result = BASE_ENV(env)->IsAssignableFrom(env, clazz1, clazz2);
CHECK_EXIT(env);
return result;
}
static jmethodID Check_FromReflectedMethod(JNIEnv* env, jobject method)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, method);
jmethodID result;
result = BASE_ENV(env)->FromReflectedMethod(env, method);
CHECK_EXIT(env);
return result;
}
static jfieldID Check_FromReflectedField(JNIEnv* env, jobject field)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, field);
jfieldID result;
result = BASE_ENV(env)->FromReflectedField(env, field);
CHECK_EXIT(env);
return result;
}
static jobject Check_ToReflectedMethod(JNIEnv* env, jclass cls,
jmethodID methodID, jboolean isStatic)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, cls);
jobject result;
result = BASE_ENV(env)->ToReflectedMethod(env, cls, methodID, isStatic);
CHECK_EXIT(env);
return result;
}
static jobject Check_ToReflectedField(JNIEnv* env, jclass cls, jfieldID fieldID,
jboolean isStatic)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, cls);
jobject result;
result = BASE_ENV(env)->ToReflectedField(env, cls, fieldID, isStatic);
CHECK_EXIT(env);
return result;
}
static jint Check_Throw(JNIEnv* env, jthrowable obj)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
/* TODO: verify that "obj" is an instance of Throwable */
jint result;
result = BASE_ENV(env)->Throw(env, obj);
CHECK_EXIT(env);
return result;
}
static jint Check_ThrowNew(JNIEnv* env, jclass clazz, const char* message)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
CHECK_NULLABLE_UTF_STRING(env, message);
jint result;
result = BASE_ENV(env)->ThrowNew(env, clazz, message);
CHECK_EXIT(env);
return result;
}
static jthrowable Check_ExceptionOccurred(JNIEnv* env)
{
CHECK_ENTER(env, kFlag_ExcepOkay);
jthrowable result;
result = BASE_ENV(env)->ExceptionOccurred(env);
CHECK_EXIT(env);
return result;
}
static void Check_ExceptionDescribe(JNIEnv* env)
{
CHECK_ENTER(env, kFlag_ExcepOkay);
BASE_ENV(env)->ExceptionDescribe(env);
CHECK_EXIT(env);
}
static void Check_ExceptionClear(JNIEnv* env)
{
CHECK_ENTER(env, kFlag_ExcepOkay);
BASE_ENV(env)->ExceptionClear(env);
CHECK_EXIT(env);
}
static void Check_FatalError(JNIEnv* env, const char* msg)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_NULLABLE_UTF_STRING(env, msg);
BASE_ENV(env)->FatalError(env, msg);
CHECK_EXIT(env);
}
static jint Check_PushLocalFrame(JNIEnv* env, jint capacity)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
jint result;
result = BASE_ENV(env)->PushLocalFrame(env, capacity);
CHECK_EXIT(env);
return result;
}
static jobject Check_PopLocalFrame(JNIEnv* env, jobject res)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
CHECK_OBJECT(env, res);
jobject result;
result = BASE_ENV(env)->PopLocalFrame(env, res);
CHECK_EXIT(env);
return result;
}
static jobject Check_NewGlobalRef(JNIEnv* env, jobject obj)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
jobject result;
result = BASE_ENV(env)->NewGlobalRef(env, obj);
CHECK_EXIT(env);
return result;
}
static void Check_DeleteGlobalRef(JNIEnv* env, jobject globalRef)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
CHECK_OBJECT(env, globalRef);
if (globalRef != NULL &&
dvmGetJNIRefType(env, globalRef) != JNIGlobalRefType)
{
LOGW("JNI WARNING: DeleteGlobalRef on non-global %p (type=%d)",
globalRef, dvmGetJNIRefType(env, globalRef));
abortMaybe();
} else
{
BASE_ENV(env)->DeleteGlobalRef(env, globalRef);
}
CHECK_EXIT(env);
}
static jobject Check_NewLocalRef(JNIEnv* env, jobject ref)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, ref);
jobject result;
result = BASE_ENV(env)->NewLocalRef(env, ref);
CHECK_EXIT(env);
return result;
}
static void Check_DeleteLocalRef(JNIEnv* env, jobject localRef)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
CHECK_OBJECT(env, localRef);
if (localRef != NULL &&
dvmGetJNIRefType(env, localRef) != JNILocalRefType)
{
LOGW("JNI WARNING: DeleteLocalRef on non-local %p (type=%d)",
localRef, dvmGetJNIRefType(env, localRef));
abortMaybe();
} else
{
BASE_ENV(env)->DeleteLocalRef(env, localRef);
}
CHECK_EXIT(env);
}
static jint Check_EnsureLocalCapacity(JNIEnv *env, jint capacity)
{
CHECK_ENTER(env, kFlag_Default);
jint result;
result = BASE_ENV(env)->EnsureLocalCapacity(env, capacity);
CHECK_EXIT(env);
return result;
}
static jboolean Check_IsSameObject(JNIEnv* env, jobject ref1, jobject ref2)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, ref1);
CHECK_OBJECT(env, ref2);
jboolean result;
result = BASE_ENV(env)->IsSameObject(env, ref1, ref2);
CHECK_EXIT(env);
return result;
}
static jobject Check_AllocObject(JNIEnv* env, jclass clazz)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jobject result;
result = BASE_ENV(env)->AllocObject(env, clazz);
CHECK_EXIT(env);
return result;
}
static jobject Check_NewObject(JNIEnv* env, jclass clazz, jmethodID methodID,
...)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jobject result;
va_list args;
va_start(args, methodID);
result = BASE_ENV(env)->NewObjectV(env, clazz, methodID, args);
va_end(args);
CHECK_EXIT(env);
return result;
}
static jobject Check_NewObjectV(JNIEnv* env, jclass clazz, jmethodID methodID,
va_list args)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jobject result;
result = BASE_ENV(env)->NewObjectV(env, clazz, methodID, args);
CHECK_EXIT(env);
return result;
}
static jobject Check_NewObjectA(JNIEnv* env, jclass clazz, jmethodID methodID,
jvalue* args)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jobject result;
result = BASE_ENV(env)->NewObjectA(env, clazz, methodID, args);
CHECK_EXIT(env);
return result;
}
static jclass Check_GetObjectClass(JNIEnv* env, jobject obj)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
jclass result;
result = BASE_ENV(env)->GetObjectClass(env, obj);
CHECK_EXIT(env);
return result;
}
static jboolean Check_IsInstanceOf(JNIEnv* env, jobject obj, jclass clazz)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
CHECK_CLASS(env, clazz);
jboolean result;
result = BASE_ENV(env)->IsInstanceOf(env, obj, clazz);
CHECK_EXIT(env);
return result;
}
static jmethodID Check_GetMethodID(JNIEnv* env, jclass clazz, const char* name,
const char* sig)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
CHECK_UTF_STRING(env, name);
CHECK_UTF_STRING(env, sig);
jmethodID result;
result = BASE_ENV(env)->GetMethodID(env, clazz, name, sig);
CHECK_EXIT(env);
return result;
}
static jfieldID Check_GetFieldID(JNIEnv* env, jclass clazz,
const char* name, const char* sig)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
CHECK_UTF_STRING(env, name);
CHECK_UTF_STRING(env, sig);
jfieldID result;
result = BASE_ENV(env)->GetFieldID(env, clazz, name, sig);
CHECK_EXIT(env);
return result;
}
static jmethodID Check_GetStaticMethodID(JNIEnv* env, jclass clazz,
const char* name, const char* sig)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
CHECK_UTF_STRING(env, name);
CHECK_UTF_STRING(env, sig);
jmethodID result;
result = BASE_ENV(env)->GetStaticMethodID(env, clazz, name, sig);
CHECK_EXIT(env);
return result;
}
static jfieldID Check_GetStaticFieldID(JNIEnv* env, jclass clazz,
const char* name, const char* sig)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
CHECK_UTF_STRING(env, name);
CHECK_UTF_STRING(env, sig);
jfieldID result;
result = BASE_ENV(env)->GetStaticFieldID(env, clazz, name, sig);
CHECK_EXIT(env);
return result;
}
#define GET_STATIC_TYPE_FIELD(_ctype, _jname) \
static _ctype Check_GetStatic##_jname##Field(JNIEnv* env, jclass clazz, \
jfieldID fieldID) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
_ctype result; \
CHECK_STATIC_FIELD_ID(env, clazz, fieldID); \
result = BASE_ENV(env)->GetStatic##_jname##Field(env, clazz, \
fieldID); \
CHECK_EXIT(env); \
return result; \
}
GET_STATIC_TYPE_FIELD(jobject, Object);
GET_STATIC_TYPE_FIELD(jboolean, Boolean);
GET_STATIC_TYPE_FIELD(jbyte, Byte);
GET_STATIC_TYPE_FIELD(jchar, Char);
GET_STATIC_TYPE_FIELD(jshort, Short);
GET_STATIC_TYPE_FIELD(jint, Int);
GET_STATIC_TYPE_FIELD(jlong, Long);
GET_STATIC_TYPE_FIELD(jfloat, Float);
GET_STATIC_TYPE_FIELD(jdouble, Double);
#define SET_STATIC_TYPE_FIELD(_ctype, _jname, _ftype) \
static void Check_SetStatic##_jname##Field(JNIEnv* env, jclass clazz, \
jfieldID fieldID, _ctype value) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_STATIC_FIELD_ID(env, clazz, fieldID); \
/* "value" arg only used when type == ref */ \
CHECK_FIELD_TYPE(env, (jobject)(u4)value, fieldID, _ftype, true); \
BASE_ENV(env)->SetStatic##_jname##Field(env, clazz, fieldID, \
value); \
CHECK_EXIT(env); \
}
SET_STATIC_TYPE_FIELD(jobject, Object, PRIM_NOT);
SET_STATIC_TYPE_FIELD(jboolean, Boolean, PRIM_BOOLEAN);
SET_STATIC_TYPE_FIELD(jbyte, Byte, PRIM_BYTE);
SET_STATIC_TYPE_FIELD(jchar, Char, PRIM_CHAR);
SET_STATIC_TYPE_FIELD(jshort, Short, PRIM_SHORT);
SET_STATIC_TYPE_FIELD(jint, Int, PRIM_INT);
SET_STATIC_TYPE_FIELD(jlong, Long, PRIM_LONG);
SET_STATIC_TYPE_FIELD(jfloat, Float, PRIM_FLOAT);
SET_STATIC_TYPE_FIELD(jdouble, Double, PRIM_DOUBLE);
#define GET_TYPE_FIELD(_ctype, _jname) \
static _ctype Check_Get##_jname##Field(JNIEnv* env, jobject obj, \
jfieldID fieldID) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_OBJECT(env, obj); \
_ctype result; \
CHECK_INST_FIELD_ID(env, obj, fieldID); \
result = BASE_ENV(env)->Get##_jname##Field(env, obj, fieldID); \
CHECK_EXIT(env); \
return result; \
}
GET_TYPE_FIELD(jobject, Object);
GET_TYPE_FIELD(jboolean, Boolean);
GET_TYPE_FIELD(jbyte, Byte);
GET_TYPE_FIELD(jchar, Char);
GET_TYPE_FIELD(jshort, Short);
GET_TYPE_FIELD(jint, Int);
GET_TYPE_FIELD(jlong, Long);
GET_TYPE_FIELD(jfloat, Float);
GET_TYPE_FIELD(jdouble, Double);
#define SET_TYPE_FIELD(_ctype, _jname, _ftype) \
static void Check_Set##_jname##Field(JNIEnv* env, jobject obj, \
jfieldID fieldID, _ctype value) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_OBJECT(env, obj); \
CHECK_INST_FIELD_ID(env, obj, fieldID); \
/* "value" arg only used when type == ref */ \
CHECK_FIELD_TYPE(env, (jobject)(u4) value, fieldID, _ftype, false); \
BASE_ENV(env)->Set##_jname##Field(env, obj, fieldID, value); \
CHECK_EXIT(env); \
}
SET_TYPE_FIELD(jobject, Object, PRIM_NOT);
SET_TYPE_FIELD(jboolean, Boolean, PRIM_BOOLEAN);
SET_TYPE_FIELD(jbyte, Byte, PRIM_BYTE);
SET_TYPE_FIELD(jchar, Char, PRIM_CHAR);
SET_TYPE_FIELD(jshort, Short, PRIM_SHORT);
SET_TYPE_FIELD(jint, Int, PRIM_INT);
SET_TYPE_FIELD(jlong, Long, PRIM_LONG);
SET_TYPE_FIELD(jfloat, Float, PRIM_FLOAT);
SET_TYPE_FIELD(jdouble, Double, PRIM_DOUBLE);
#define CALL_VIRTUAL(_ctype, _jname, _retdecl, _retasgn, _retok, _retsig) \
static _ctype Check_Call##_jname##Method(JNIEnv* env, jobject obj, \
jmethodID methodID, ...) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_OBJECT(env, obj); \
CHECK_SIG(env, methodID, _retsig, false); \
CHECK_VIRTUAL_METHOD(env, obj, methodID); \
_retdecl; \
va_list args; \
va_start(args, methodID); \
_retasgn BASE_ENV(env)->Call##_jname##MethodV(env, obj, methodID, \
args); \
va_end(args); \
CHECK_EXIT(env); \
return _retok; \
} \
static _ctype Check_Call##_jname##MethodV(JNIEnv* env, jobject obj, \
jmethodID methodID, va_list args) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_OBJECT(env, obj); \
CHECK_SIG(env, methodID, _retsig, false); \
CHECK_VIRTUAL_METHOD(env, obj, methodID); \
_retdecl; \
_retasgn BASE_ENV(env)->Call##_jname##MethodV(env, obj, methodID, \
args); \
CHECK_EXIT(env); \
return _retok; \
} \
static _ctype Check_Call##_jname##MethodA(JNIEnv* env, jobject obj, \
jmethodID methodID, jvalue* args) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_OBJECT(env, obj); \
CHECK_SIG(env, methodID, _retsig, false); \
CHECK_VIRTUAL_METHOD(env, obj, methodID); \
_retdecl; \
_retasgn BASE_ENV(env)->Call##_jname##MethodA(env, obj, methodID, \
args); \
CHECK_EXIT(env); \
return _retok; \
}
CALL_VIRTUAL(jobject, Object, Object* result, result=(Object*), result, 'L');
CALL_VIRTUAL(jboolean, Boolean, jboolean result, result=, result, 'Z');
CALL_VIRTUAL(jbyte, Byte, jbyte result, result=, result, 'B');
CALL_VIRTUAL(jchar, Char, jchar result, result=, result, 'C');
CALL_VIRTUAL(jshort, Short, jshort result, result=, result, 'S');
CALL_VIRTUAL(jint, Int, jint result, result=, result, 'I');
CALL_VIRTUAL(jlong, Long, jlong result, result=, result, 'J');
CALL_VIRTUAL(jfloat, Float, jfloat result, result=, result, 'F');
CALL_VIRTUAL(jdouble, Double, jdouble result, result=, result, 'D');
CALL_VIRTUAL(void, Void, , , , 'V');
#define CALL_NONVIRTUAL(_ctype, _jname, _retdecl, _retasgn, _retok, \
_retsig) \
static _ctype Check_CallNonvirtual##_jname##Method(JNIEnv* env, \
jobject obj, jclass clazz, jmethodID methodID, ...) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_OBJECT(env, obj); \
CHECK_SIG(env, methodID, _retsig, false); \
CHECK_VIRTUAL_METHOD(env, obj, methodID); \
_retdecl; \
va_list args; \
va_start(args, methodID); \
_retasgn BASE_ENV(env)->CallNonvirtual##_jname##MethodV(env, obj, \
clazz, methodID, args); \
va_end(args); \
CHECK_EXIT(env); \
return _retok; \
} \
static _ctype Check_CallNonvirtual##_jname##MethodV(JNIEnv* env, \
jobject obj, jclass clazz, jmethodID methodID, va_list args) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_OBJECT(env, obj); \
CHECK_SIG(env, methodID, _retsig, false); \
CHECK_VIRTUAL_METHOD(env, obj, methodID); \
_retdecl; \
_retasgn BASE_ENV(env)->CallNonvirtual##_jname##MethodV(env, obj, \
clazz, methodID, args); \
CHECK_EXIT(env); \
return _retok; \
} \
static _ctype Check_CallNonvirtual##_jname##MethodA(JNIEnv* env, \
jobject obj, jclass clazz, jmethodID methodID, jvalue* args) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_OBJECT(env, obj); \
CHECK_SIG(env, methodID, _retsig, false); \
CHECK_VIRTUAL_METHOD(env, obj, methodID); \
_retdecl; \
_retasgn BASE_ENV(env)->CallNonvirtual##_jname##MethodA(env, obj, \
clazz, methodID, args); \
CHECK_EXIT(env); \
return _retok; \
}
CALL_NONVIRTUAL(jobject, Object, Object* result, result=(Object*), result, 'L');
CALL_NONVIRTUAL(jboolean, Boolean, jboolean result, result=, result, 'Z');
CALL_NONVIRTUAL(jbyte, Byte, jbyte result, result=, result, 'B');
CALL_NONVIRTUAL(jchar, Char, jchar result, result=, result, 'C');
CALL_NONVIRTUAL(jshort, Short, jshort result, result=, result, 'S');
CALL_NONVIRTUAL(jint, Int, jint result, result=, result, 'I');
CALL_NONVIRTUAL(jlong, Long, jlong result, result=, result, 'J');
CALL_NONVIRTUAL(jfloat, Float, jfloat result, result=, result, 'F');
CALL_NONVIRTUAL(jdouble, Double, jdouble result, result=, result, 'D');
CALL_NONVIRTUAL(void, Void, , , , 'V');
#define CALL_STATIC(_ctype, _jname, _retdecl, _retasgn, _retok, _retsig) \
static _ctype Check_CallStatic##_jname##Method(JNIEnv* env, \
jclass clazz, jmethodID methodID, ...) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_SIG(env, methodID, _retsig, true); \
CHECK_STATIC_METHOD(env, clazz, methodID); \
_retdecl; \
va_list args; \
va_start(args, methodID); \
_retasgn BASE_ENV(env)->CallStatic##_jname##MethodV(env, clazz, \
methodID, args); \
va_end(args); \
CHECK_EXIT(env); \
return _retok; \
} \
static _ctype Check_CallStatic##_jname##MethodV(JNIEnv* env, \
jclass clazz, jmethodID methodID, va_list args) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_SIG(env, methodID, _retsig, true); \
CHECK_STATIC_METHOD(env, clazz, methodID); \
_retdecl; \
_retasgn BASE_ENV(env)->CallStatic##_jname##MethodV(env, clazz, \
methodID, args); \
CHECK_EXIT(env); \
return _retok; \
} \
static _ctype Check_CallStatic##_jname##MethodA(JNIEnv* env, \
jclass clazz, jmethodID methodID, jvalue* args) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_CLASS(env, clazz); \
CHECK_SIG(env, methodID, _retsig, true); \
CHECK_STATIC_METHOD(env, clazz, methodID); \
_retdecl; \
_retasgn BASE_ENV(env)->CallStatic##_jname##MethodA(env, clazz, \
methodID, args); \
CHECK_EXIT(env); \
return _retok; \
}
CALL_STATIC(jobject, Object, Object* result, result=(Object*), result, 'L');
CALL_STATIC(jboolean, Boolean, jboolean result, result=, result, 'Z');
CALL_STATIC(jbyte, Byte, jbyte result, result=, result, 'B');
CALL_STATIC(jchar, Char, jchar result, result=, result, 'C');
CALL_STATIC(jshort, Short, jshort result, result=, result, 'S');
CALL_STATIC(jint, Int, jint result, result=, result, 'I');
CALL_STATIC(jlong, Long, jlong result, result=, result, 'J');
CALL_STATIC(jfloat, Float, jfloat result, result=, result, 'F');
CALL_STATIC(jdouble, Double, jdouble result, result=, result, 'D');
CALL_STATIC(void, Void, , , , 'V');
static jstring Check_NewString(JNIEnv* env, const jchar* unicodeChars,
jsize len)
{
CHECK_ENTER(env, kFlag_Default);
jstring result;
result = BASE_ENV(env)->NewString(env, unicodeChars, len);
CHECK_EXIT(env);
return result;
}
static jsize Check_GetStringLength(JNIEnv* env, jstring string)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_STRING(env, string);
jsize result;
result = BASE_ENV(env)->GetStringLength(env, string);
CHECK_EXIT(env);
return result;
}
static const jchar* Check_GetStringChars(JNIEnv* env, jstring string,
jboolean* isCopy)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_STRING(env, string);
const jchar* result;
result = BASE_ENV(env)->GetStringChars(env, string, isCopy);
if (((JNIEnvExt*)env)->forceDataCopy && result != NULL) {
JNI_ENTER();
StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(env, string);
int byteCount = dvmStringLen(strObj) * 2;
JNI_EXIT();
result = (const jchar*) createGuardedCopy(result, byteCount, false);
if (isCopy != NULL)
*isCopy = JNI_TRUE;
}
CHECK_EXIT(env);
return result;
}
static void Check_ReleaseStringChars(JNIEnv* env, jstring string,
const jchar* chars)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
CHECK_STRING(env, string);
CHECK_NON_NULL(env, chars);
if (((JNIEnvExt*)env)->forceDataCopy) {
if (!checkGuardedCopy(chars, false)) {
LOGE("JNI: failed guarded copy check in ReleaseStringChars");
abortMaybe();
return;
}
chars = (const jchar*) freeGuardedCopy((jchar*)chars);
}
BASE_ENV(env)->ReleaseStringChars(env, string, chars);
CHECK_EXIT(env);
}
static jstring Check_NewStringUTF(JNIEnv* env, const char* bytes)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_NULLABLE_UTF_STRING(env, bytes);
jstring result;
result = BASE_ENV(env)->NewStringUTF(env, bytes);
CHECK_EXIT(env);
return result;
}
static jsize Check_GetStringUTFLength(JNIEnv* env, jstring string)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_STRING(env, string);
jsize result;
result = BASE_ENV(env)->GetStringUTFLength(env, string);
CHECK_EXIT(env);
return result;
}
static const char* Check_GetStringUTFChars(JNIEnv* env, jstring string,
jboolean* isCopy)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_STRING(env, string);
const char* result;
result = BASE_ENV(env)->GetStringUTFChars(env, string, isCopy);
if (((JNIEnvExt*)env)->forceDataCopy && result != NULL) {
result = (const char*) createGuardedCopy(result, strlen(result)+1, false);
if (isCopy != NULL)
*isCopy = JNI_TRUE;
}
CHECK_EXIT(env);
return result;
}
static void Check_ReleaseStringUTFChars(JNIEnv* env, jstring string,
const char* utf)
{
CHECK_ENTER(env, kFlag_ExcepOkay);
CHECK_STRING(env, string);
CHECK_NON_NULL(env, utf);
if (((JNIEnvExt*)env)->forceDataCopy) {
//int len = dvmStringUtf8ByteLen(string) + 1;
if (!checkGuardedCopy(utf, false)) {
LOGE("JNI: failed guarded copy check in ReleaseStringUTFChars");
abortMaybe();
return;
}
utf = (const char*) freeGuardedCopy((char*)utf);
}
BASE_ENV(env)->ReleaseStringUTFChars(env, string, utf);
CHECK_EXIT(env);
}
static jsize Check_GetArrayLength(JNIEnv* env, jarray array)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_ARRAY(env, array);
jsize result;
result = BASE_ENV(env)->GetArrayLength(env, array);
CHECK_EXIT(env);
return result;
}
static jobjectArray Check_NewObjectArray(JNIEnv* env, jsize length,
jclass elementClass, jobject initialElement)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, elementClass);
CHECK_OBJECT(env, initialElement);
CHECK_LENGTH_POSITIVE(env, length);
jobjectArray result;
result = BASE_ENV(env)->NewObjectArray(env, length, elementClass,
initialElement);
CHECK_EXIT(env);
return result;
}
static jobject Check_GetObjectArrayElement(JNIEnv* env, jobjectArray array,
jsize index)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_ARRAY(env, array);
jobject result;
result = BASE_ENV(env)->GetObjectArrayElement(env, array, index);
CHECK_EXIT(env);
return result;
}
static void Check_SetObjectArrayElement(JNIEnv* env, jobjectArray array,
jsize index, jobject value)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_ARRAY(env, array);
BASE_ENV(env)->SetObjectArrayElement(env, array, index, value);
CHECK_EXIT(env);
}
#define NEW_PRIMITIVE_ARRAY(_artype, _jname) \
static _artype Check_New##_jname##Array(JNIEnv* env, jsize length) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_LENGTH_POSITIVE(env, length); \
_artype result; \
result = BASE_ENV(env)->New##_jname##Array(env, length); \
CHECK_EXIT(env); \
return result; \
}
NEW_PRIMITIVE_ARRAY(jbooleanArray, Boolean);
NEW_PRIMITIVE_ARRAY(jbyteArray, Byte);
NEW_PRIMITIVE_ARRAY(jcharArray, Char);
NEW_PRIMITIVE_ARRAY(jshortArray, Short);
NEW_PRIMITIVE_ARRAY(jintArray, Int);
NEW_PRIMITIVE_ARRAY(jlongArray, Long);
NEW_PRIMITIVE_ARRAY(jfloatArray, Float);
NEW_PRIMITIVE_ARRAY(jdoubleArray, Double);
/*
* Hack to allow forcecopy to work with jniGetNonMovableArrayElements.
* The code deliberately uses an invalid sequence of operations, so we
* need to pass it through unmodified. Review that code before making
* any changes here.
*/
#define kNoCopyMagic 0xd5aab57f
#define GET_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname) \
static _ctype* Check_Get##_jname##ArrayElements(JNIEnv* env, \
_ctype##Array array, jboolean* isCopy) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_ARRAY(env, array); \
_ctype* result; \
u4 noCopy = 0; \
if (((JNIEnvExt*)env)->forceDataCopy && isCopy != NULL) { \
/* capture this before the base call tramples on it */ \
noCopy = *(u4*) isCopy; \
} \
result = BASE_ENV(env)->Get##_jname##ArrayElements(env, \
array, isCopy); \
if (((JNIEnvExt*)env)->forceDataCopy && result != NULL) { \
if (noCopy == kNoCopyMagic) { \
LOGV("FC: not copying %p %x\n", array, noCopy); \
} else { \
result = (_ctype*) createGuardedPACopy(env, array, isCopy); \
} \
} \
CHECK_EXIT(env); \
return result; \
}
#define RELEASE_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname) \
static void Check_Release##_jname##ArrayElements(JNIEnv* env, \
_ctype##Array array, _ctype* elems, jint mode) \
{ \
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay); \
CHECK_ARRAY(env, array); \
CHECK_NON_NULL(env, elems); \
CHECK_RELEASE_MODE(env, mode); \
if (((JNIEnvExt*)env)->forceDataCopy) { \
if ((uintptr_t)elems == kNoCopyMagic) { \
LOGV("FC: not freeing %p\n", array); \
elems = NULL; /* base JNI call doesn't currently need */ \
} else { \
elems = (_ctype*) releaseGuardedPACopy(env, array, elems, \
mode); \
} \
} \
BASE_ENV(env)->Release##_jname##ArrayElements(env, \
array, elems, mode); \
CHECK_EXIT(env); \
}
#define GET_PRIMITIVE_ARRAY_REGION(_ctype, _jname) \
static void Check_Get##_jname##ArrayRegion(JNIEnv* env, \
_ctype##Array array, jsize start, jsize len, _ctype* buf) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_ARRAY(env, array); \
BASE_ENV(env)->Get##_jname##ArrayRegion(env, array, start, \
len, buf); \
CHECK_EXIT(env); \
}
#define SET_PRIMITIVE_ARRAY_REGION(_ctype, _jname) \
static void Check_Set##_jname##ArrayRegion(JNIEnv* env, \
_ctype##Array array, jsize start, jsize len, const _ctype* buf) \
{ \
CHECK_ENTER(env, kFlag_Default); \
CHECK_ARRAY(env, array); \
BASE_ENV(env)->Set##_jname##ArrayRegion(env, array, start, \
len, buf); \
CHECK_EXIT(env); \
}
#define PRIMITIVE_ARRAY_FUNCTIONS(_ctype, _jname, _typechar) \
GET_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname); \
RELEASE_PRIMITIVE_ARRAY_ELEMENTS(_ctype, _jname); \
GET_PRIMITIVE_ARRAY_REGION(_ctype, _jname); \
SET_PRIMITIVE_ARRAY_REGION(_ctype, _jname);
/* TODO: verify primitive array type matches call type */
PRIMITIVE_ARRAY_FUNCTIONS(jboolean, Boolean, 'Z');
PRIMITIVE_ARRAY_FUNCTIONS(jbyte, Byte, 'B');
PRIMITIVE_ARRAY_FUNCTIONS(jchar, Char, 'C');
PRIMITIVE_ARRAY_FUNCTIONS(jshort, Short, 'S');
PRIMITIVE_ARRAY_FUNCTIONS(jint, Int, 'I');
PRIMITIVE_ARRAY_FUNCTIONS(jlong, Long, 'J');
PRIMITIVE_ARRAY_FUNCTIONS(jfloat, Float, 'F');
PRIMITIVE_ARRAY_FUNCTIONS(jdouble, Double, 'D');
static jint Check_RegisterNatives(JNIEnv* env, jclass clazz,
const JNINativeMethod* methods, jint nMethods)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jint result;
result = BASE_ENV(env)->RegisterNatives(env, clazz, methods, nMethods);
CHECK_EXIT(env);
return result;
}
static jint Check_UnregisterNatives(JNIEnv* env, jclass clazz)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_CLASS(env, clazz);
jint result;
result = BASE_ENV(env)->UnregisterNatives(env, clazz);
CHECK_EXIT(env);
return result;
}
static jint Check_MonitorEnter(JNIEnv* env, jobject obj)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
jint result;
result = BASE_ENV(env)->MonitorEnter(env, obj);
CHECK_EXIT(env);
return result;
}
static jint Check_MonitorExit(JNIEnv* env, jobject obj)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
CHECK_OBJECT(env, obj);
jint result;
result = BASE_ENV(env)->MonitorExit(env, obj);
CHECK_EXIT(env);
return result;
}
static jint Check_GetJavaVM(JNIEnv *env, JavaVM **vm)
{
CHECK_ENTER(env, kFlag_Default);
jint result;
result = BASE_ENV(env)->GetJavaVM(env, vm);
CHECK_EXIT(env);
return result;
}
static void Check_GetStringRegion(JNIEnv* env, jstring str, jsize start,
jsize len, jchar* buf)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_STRING(env, str);
BASE_ENV(env)->GetStringRegion(env, str, start, len, buf);
CHECK_EXIT(env);
}
static void Check_GetStringUTFRegion(JNIEnv* env, jstring str, jsize start,
jsize len, char* buf)
{
CHECK_ENTER(env, kFlag_CritOkay);
CHECK_STRING(env, str);
BASE_ENV(env)->GetStringUTFRegion(env, str, start, len, buf);
CHECK_EXIT(env);
}
static void* Check_GetPrimitiveArrayCritical(JNIEnv* env, jarray array,
jboolean* isCopy)
{
CHECK_ENTER(env, kFlag_CritGet);
CHECK_ARRAY(env, array);
void* result;
result = BASE_ENV(env)->GetPrimitiveArrayCritical(env, array, isCopy);
if (((JNIEnvExt*)env)->forceDataCopy && result != NULL) {
result = createGuardedPACopy(env, array, isCopy);
}
CHECK_EXIT(env);
return result;
}
static void Check_ReleasePrimitiveArrayCritical(JNIEnv* env, jarray array,
void* carray, jint mode)
{
CHECK_ENTER(env, kFlag_CritRelease | kFlag_ExcepOkay);
CHECK_ARRAY(env, array);
CHECK_NON_NULL(env, carray);
CHECK_RELEASE_MODE(env, mode);
if (((JNIEnvExt*)env)->forceDataCopy) {
carray = releaseGuardedPACopy(env, array, carray, mode);
}
BASE_ENV(env)->ReleasePrimitiveArrayCritical(env, array, carray, mode);
CHECK_EXIT(env);
}
static const jchar* Check_GetStringCritical(JNIEnv* env, jstring string,
jboolean* isCopy)
{
CHECK_ENTER(env, kFlag_CritGet);
CHECK_STRING(env, string);
const jchar* result;
result = BASE_ENV(env)->GetStringCritical(env, string, isCopy);
if (((JNIEnvExt*)env)->forceDataCopy && result != NULL) {
JNI_ENTER();
StringObject* strObj = (StringObject*) dvmDecodeIndirectRef(env, string);
int byteCount = dvmStringLen(strObj) * 2;
JNI_EXIT();
result = (const jchar*) createGuardedCopy(result, byteCount, false);
if (isCopy != NULL)
*isCopy = JNI_TRUE;
}
CHECK_EXIT(env);
return result;
}
static void Check_ReleaseStringCritical(JNIEnv* env, jstring string,
const jchar* carray)
{
CHECK_ENTER(env, kFlag_CritRelease | kFlag_ExcepOkay);
CHECK_STRING(env, string);
CHECK_NON_NULL(env, carray);
if (((JNIEnvExt*)env)->forceDataCopy) {
if (!checkGuardedCopy(carray, false)) {
LOGE("JNI: failed guarded copy check in ReleaseStringCritical");
abortMaybe();
return;
}
carray = (const jchar*) freeGuardedCopy((jchar*)carray);
}
BASE_ENV(env)->ReleaseStringCritical(env, string, carray);
CHECK_EXIT(env);
}
static jweak Check_NewWeakGlobalRef(JNIEnv* env, jobject obj)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
jweak result;
result = BASE_ENV(env)->NewWeakGlobalRef(env, obj);
CHECK_EXIT(env);
return result;
}
static void Check_DeleteWeakGlobalRef(JNIEnv* env, jweak obj)
{
CHECK_ENTER(env, kFlag_Default | kFlag_ExcepOkay);
CHECK_OBJECT(env, obj);
BASE_ENV(env)->DeleteWeakGlobalRef(env, obj);
CHECK_EXIT(env);
}
static jboolean Check_ExceptionCheck(JNIEnv* env)
{
CHECK_ENTER(env, kFlag_CritOkay | kFlag_ExcepOkay);
jboolean result;
result = BASE_ENV(env)->ExceptionCheck(env);
CHECK_EXIT(env);
return result;
}
static jobjectRefType Check_GetObjectRefType(JNIEnv* env, jobject obj)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, obj);
jobjectRefType result;
result = BASE_ENV(env)->GetObjectRefType(env, obj);
CHECK_EXIT(env);
return result;
}
static jobject Check_NewDirectByteBuffer(JNIEnv* env, void* address,
jlong capacity)
{
CHECK_ENTER(env, kFlag_Default);
jobject result;
if (address == NULL || capacity < 0) {
LOGW("JNI WARNING: invalid values for address (%p) or capacity (%ld)",
address, (long) capacity);
abortMaybe();
return NULL;
}
result = BASE_ENV(env)->NewDirectByteBuffer(env, address, capacity);
CHECK_EXIT(env);
return result;
}
static void* Check_GetDirectBufferAddress(JNIEnv* env, jobject buf)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, buf);
void* result = BASE_ENV(env)->GetDirectBufferAddress(env, buf);
CHECK_EXIT(env);
return result;
}
static jlong Check_GetDirectBufferCapacity(JNIEnv* env, jobject buf)
{
CHECK_ENTER(env, kFlag_Default);
CHECK_OBJECT(env, buf);
/* TODO: verify "buf" is an instance of java.nio.Buffer */
jlong result = BASE_ENV(env)->GetDirectBufferCapacity(env, buf);
CHECK_EXIT(env);
return result;
}
/*
* ===========================================================================
* JNI invocation functions
* ===========================================================================
*/
static jint Check_DestroyJavaVM(JavaVM* vm)
{
CHECK_VMENTER(vm, false);
jint result;
result = BASE_VM(vm)->DestroyJavaVM(vm);
CHECK_VMEXIT(vm, false);
return result;
}
static jint Check_AttachCurrentThread(JavaVM* vm, JNIEnv** p_env,
void* thr_args)
{
CHECK_VMENTER(vm, false);
jint result;
result = BASE_VM(vm)->AttachCurrentThread(vm, p_env, thr_args);
CHECK_VMEXIT(vm, true);
return result;
}
static jint Check_AttachCurrentThreadAsDaemon(JavaVM* vm, JNIEnv** p_env,
void* thr_args)
{
CHECK_VMENTER(vm, false);
jint result;
result = BASE_VM(vm)->AttachCurrentThreadAsDaemon(vm, p_env, thr_args);
CHECK_VMEXIT(vm, true);
return result;
}
static jint Check_DetachCurrentThread(JavaVM* vm)
{
CHECK_VMENTER(vm, true);
jint result;
result = BASE_VM(vm)->DetachCurrentThread(vm);
CHECK_VMEXIT(vm, false);
return result;
}
static jint Check_GetEnv(JavaVM* vm, void** env, jint version)
{
CHECK_VMENTER(vm, true);
jint result;
result = BASE_VM(vm)->GetEnv(vm, env, version);
CHECK_VMEXIT(vm, true);
return result;
}
/*
* ===========================================================================
* Function tables
* ===========================================================================
*/
static const struct JNINativeInterface gCheckNativeInterface = {
NULL,
NULL,
NULL,
NULL,
Check_GetVersion,
Check_DefineClass,
Check_FindClass,
Check_FromReflectedMethod,
Check_FromReflectedField,
Check_ToReflectedMethod,
Check_GetSuperclass,
Check_IsAssignableFrom,
Check_ToReflectedField,
Check_Throw,
Check_ThrowNew,
Check_ExceptionOccurred,
Check_ExceptionDescribe,
Check_ExceptionClear,
Check_FatalError,
Check_PushLocalFrame,
Check_PopLocalFrame,
Check_NewGlobalRef,
Check_DeleteGlobalRef,
Check_DeleteLocalRef,
Check_IsSameObject,
Check_NewLocalRef,
Check_EnsureLocalCapacity,
Check_AllocObject,
Check_NewObject,
Check_NewObjectV,
Check_NewObjectA,
Check_GetObjectClass,
Check_IsInstanceOf,
Check_GetMethodID,
Check_CallObjectMethod,
Check_CallObjectMethodV,
Check_CallObjectMethodA,
Check_CallBooleanMethod,
Check_CallBooleanMethodV,
Check_CallBooleanMethodA,
Check_CallByteMethod,
Check_CallByteMethodV,
Check_CallByteMethodA,
Check_CallCharMethod,
Check_CallCharMethodV,
Check_CallCharMethodA,
Check_CallShortMethod,
Check_CallShortMethodV,
Check_CallShortMethodA,
Check_CallIntMethod,
Check_CallIntMethodV,
Check_CallIntMethodA,
Check_CallLongMethod,
Check_CallLongMethodV,
Check_CallLongMethodA,
Check_CallFloatMethod,
Check_CallFloatMethodV,
Check_CallFloatMethodA,
Check_CallDoubleMethod,
Check_CallDoubleMethodV,
Check_CallDoubleMethodA,
Check_CallVoidMethod,
Check_CallVoidMethodV,
Check_CallVoidMethodA,
Check_CallNonvirtualObjectMethod,
Check_CallNonvirtualObjectMethodV,
Check_CallNonvirtualObjectMethodA,
Check_CallNonvirtualBooleanMethod,
Check_CallNonvirtualBooleanMethodV,
Check_CallNonvirtualBooleanMethodA,
Check_CallNonvirtualByteMethod,
Check_CallNonvirtualByteMethodV,
Check_CallNonvirtualByteMethodA,
Check_CallNonvirtualCharMethod,
Check_CallNonvirtualCharMethodV,
Check_CallNonvirtualCharMethodA,
Check_CallNonvirtualShortMethod,
Check_CallNonvirtualShortMethodV,
Check_CallNonvirtualShortMethodA,
Check_CallNonvirtualIntMethod,
Check_CallNonvirtualIntMethodV,
Check_CallNonvirtualIntMethodA,
Check_CallNonvirtualLongMethod,
Check_CallNonvirtualLongMethodV,
Check_CallNonvirtualLongMethodA,
Check_CallNonvirtualFloatMethod,
Check_CallNonvirtualFloatMethodV,
Check_CallNonvirtualFloatMethodA,
Check_CallNonvirtualDoubleMethod,
Check_CallNonvirtualDoubleMethodV,
Check_CallNonvirtualDoubleMethodA,
Check_CallNonvirtualVoidMethod,
Check_CallNonvirtualVoidMethodV,
Check_CallNonvirtualVoidMethodA,
Check_GetFieldID,
Check_GetObjectField,
Check_GetBooleanField,
Check_GetByteField,
Check_GetCharField,
Check_GetShortField,
Check_GetIntField,
Check_GetLongField,
Check_GetFloatField,
Check_GetDoubleField,
Check_SetObjectField,
Check_SetBooleanField,
Check_SetByteField,
Check_SetCharField,
Check_SetShortField,
Check_SetIntField,
Check_SetLongField,
Check_SetFloatField,
Check_SetDoubleField,
Check_GetStaticMethodID,
Check_CallStaticObjectMethod,
Check_CallStaticObjectMethodV,
Check_CallStaticObjectMethodA,
Check_CallStaticBooleanMethod,
Check_CallStaticBooleanMethodV,
Check_CallStaticBooleanMethodA,
Check_CallStaticByteMethod,
Check_CallStaticByteMethodV,
Check_CallStaticByteMethodA,
Check_CallStaticCharMethod,
Check_CallStaticCharMethodV,
Check_CallStaticCharMethodA,
Check_CallStaticShortMethod,
Check_CallStaticShortMethodV,
Check_CallStaticShortMethodA,
Check_CallStaticIntMethod,
Check_CallStaticIntMethodV,
Check_CallStaticIntMethodA,
Check_CallStaticLongMethod,
Check_CallStaticLongMethodV,
Check_CallStaticLongMethodA,
Check_CallStaticFloatMethod,
Check_CallStaticFloatMethodV,
Check_CallStaticFloatMethodA,
Check_CallStaticDoubleMethod,
Check_CallStaticDoubleMethodV,
Check_CallStaticDoubleMethodA,
Check_CallStaticVoidMethod,
Check_CallStaticVoidMethodV,
Check_CallStaticVoidMethodA,
Check_GetStaticFieldID,
Check_GetStaticObjectField,
Check_GetStaticBooleanField,
Check_GetStaticByteField,
Check_GetStaticCharField,
Check_GetStaticShortField,
Check_GetStaticIntField,
Check_GetStaticLongField,
Check_GetStaticFloatField,
Check_GetStaticDoubleField,
Check_SetStaticObjectField,
Check_SetStaticBooleanField,
Check_SetStaticByteField,
Check_SetStaticCharField,
Check_SetStaticShortField,
Check_SetStaticIntField,
Check_SetStaticLongField,
Check_SetStaticFloatField,
Check_SetStaticDoubleField,
Check_NewString,
Check_GetStringLength,
Check_GetStringChars,
Check_ReleaseStringChars,
Check_NewStringUTF,
Check_GetStringUTFLength,
Check_GetStringUTFChars,
Check_ReleaseStringUTFChars,
Check_GetArrayLength,
Check_NewObjectArray,
Check_GetObjectArrayElement,
Check_SetObjectArrayElement,
Check_NewBooleanArray,
Check_NewByteArray,
Check_NewCharArray,
Check_NewShortArray,
Check_NewIntArray,
Check_NewLongArray,
Check_NewFloatArray,
Check_NewDoubleArray,
Check_GetBooleanArrayElements,
Check_GetByteArrayElements,
Check_GetCharArrayElements,
Check_GetShortArrayElements,
Check_GetIntArrayElements,
Check_GetLongArrayElements,
Check_GetFloatArrayElements,
Check_GetDoubleArrayElements,
Check_ReleaseBooleanArrayElements,
Check_ReleaseByteArrayElements,
Check_ReleaseCharArrayElements,
Check_ReleaseShortArrayElements,
Check_ReleaseIntArrayElements,
Check_ReleaseLongArrayElements,
Check_ReleaseFloatArrayElements,
Check_ReleaseDoubleArrayElements,
Check_GetBooleanArrayRegion,
Check_GetByteArrayRegion,
Check_GetCharArrayRegion,
Check_GetShortArrayRegion,
Check_GetIntArrayRegion,
Check_GetLongArrayRegion,
Check_GetFloatArrayRegion,
Check_GetDoubleArrayRegion,
Check_SetBooleanArrayRegion,
Check_SetByteArrayRegion,
Check_SetCharArrayRegion,
Check_SetShortArrayRegion,
Check_SetIntArrayRegion,
Check_SetLongArrayRegion,
Check_SetFloatArrayRegion,
Check_SetDoubleArrayRegion,
Check_RegisterNatives,
Check_UnregisterNatives,
Check_MonitorEnter,
Check_MonitorExit,
Check_GetJavaVM,
Check_GetStringRegion,
Check_GetStringUTFRegion,
Check_GetPrimitiveArrayCritical,
Check_ReleasePrimitiveArrayCritical,
Check_GetStringCritical,
Check_ReleaseStringCritical,
Check_NewWeakGlobalRef,
Check_DeleteWeakGlobalRef,
Check_ExceptionCheck,
Check_NewDirectByteBuffer,
Check_GetDirectBufferAddress,
Check_GetDirectBufferCapacity,
Check_GetObjectRefType
};
static const struct JNIInvokeInterface gCheckInvokeInterface = {
NULL,
NULL,
NULL,
Check_DestroyJavaVM,
Check_AttachCurrentThread,
Check_DetachCurrentThread,
Check_GetEnv,
Check_AttachCurrentThreadAsDaemon,
};
/*
* Replace the normal table with the checked table.
*/
void dvmUseCheckedJniEnv(JNIEnvExt* pEnv)
{
assert(pEnv->funcTable != &gCheckNativeInterface);
pEnv->baseFuncTable = pEnv->funcTable;
pEnv->funcTable = &gCheckNativeInterface;
}
/*
* Replace the normal table with the checked table.
*/
void dvmUseCheckedJniVm(JavaVMExt* pVm)
{
assert(pVm->funcTable != &gCheckInvokeInterface);
pVm->baseFuncTable = pVm->funcTable;
pVm->funcTable = &gCheckInvokeInterface;
}
|