-
Notifications
You must be signed in to change notification settings - Fork 751
/
Copy pathjnicsup.cpp
2501 lines (2047 loc) · 75 KB
/
jnicsup.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
/*******************************************************************************
* Copyright (c) 1991, 2020 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
* distribution and is available at https://www.eclipse.org/legal/epl-2.0/
* or the Apache License, Version 2.0 which accompanies this distribution and
* is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* This Source Code may also be made available under the following
* Secondary Licenses when the conditions for such availability set
* forth in the Eclipse Public License, v. 2.0 are satisfied: GNU
* General Public License, version 2 with the GNU Classpath
* Exception [1] and GNU General Public License, version 2 with the
* OpenJDK Assembly Exception [2].
*
* [1] https://www.gnu.org/software/classpath/license.html
* [2] http://openjdk.java.net/legal/assembly-exception.html
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception
*******************************************************************************/
#include "j9.h"
#include "jni.h"
#include "j9comp.h"
#include "vmaccess.h"
#include "j9cfg.h"
#include "j9consts.h"
#include "j9protos.h"
#include "rommeth.h"
#include "stackwalk.h"
#include "ut_j9vm.h"
#include "j9vmnls.h"
#include <string.h>
#include <stdlib.h>
#include "j9port.h"
#include "jnicsup.h"
#include "jnicimap.h"
#include "jnifield.h"
#include "jnireflect.h"
#include "j9cp.h"
#include "jvminit.h"
#include "vm_internal.h"
#include "j2sever.h"
#include "util_api.h"
#include "j9accessbarrier.h"
#include "VMHelpers.hpp"
#include "VMAccess.hpp"
#include "ObjectMonitor.hpp"
extern "C" {
typedef union J9GenericJNIID {
J9JNIFieldID fieldID;
J9JNIMethodID methodID;
} J9GenericJNIID;
#define METHODID_CLASS_REF(methodID) ((jclass) &(J9_CP_FROM_METHOD(((J9JNIMethodID *) (methodID))->method)->ramClass->classObject))
#define MAX_LOCAL_CAPACITY (64 * 1024)
#define J9JNIID_METHOD 0
#define J9JNIID_FIELD 1
#define J9JNIID_STATIC 2
static void * JNICALL getDirectBufferAddress (JNIEnv *env, jobject buf);
static jmethodID JNICALL getMethodID (JNIEnv *env, jclass clazz, const char *name, const char *signature);
static void JNICALL exceptionClear (JNIEnv *env);
static jobject JNICALL newObject (JNIEnv *env, jclass clazz, jmethodID methodID, ...);
static jfieldID JNICALL getFieldID (JNIEnv *env, jclass clazz, const char *name, const char *sig);
static jobject JNICALL newObjectA (JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args);
static jobject JNICALL newObjectV (JNIEnv *env, jclass clazz, jmethodID methodID, va_list args);
static jthrowable JNICALL exceptionOccurred (JNIEnv *env);
static jint JNICALL pushLocalFrame (JNIEnv *env, jint capacity);
static jint JNICALL ensureLocalCapacityWrapper (JNIEnv *env, jint capacity);
#if (defined(J9VM_INTERP_FLOAT_SUPPORT))
static jfloatArray JNICALL newFloatArray (JNIEnv *env, jsize length);
static jdoubleArray JNICALL newDoubleArray (JNIEnv *env, jsize length);
#endif /* J9VM_INTERP_FLOAT_SUPPORT */
#if !defined(J9VM_INTERP_MINIMAL_JNI)
static jobject JNICALL gpCheckToReflectedField (JNIEnv * env, jclass clazz, jfieldID fieldID, jboolean isStatic);
static UDATA gpProtectedToReflected (void *entryArg);
static jobject JNICALL gpCheckToReflectedMethod (JNIEnv * env, jclass clazz, jmethodID methodID, jboolean isStatic);
#endif /* !INTERP_MINIMAL_JNI */
static UDATA gpProtectedSetNativeOutOfMemoryError(void * entryArg);
static UDATA gpProtectedSetHeapOutOfMemoryError(void * entryArg);
static UDATA gpProtectedSetCurrentExceptionNLS (void * entryArg);
static UDATA gpProtectedRunCallInMethod (void *entryArg);
static UDATA gpProtectedSetCurrentException (void * entryArg);
static UDATA gpProtectedFindClass (void * entryArg);
static jclass JNICALL gpCheckFindClass (JNIEnv * env, const char *name);
static UDATA gpProtectedInitialize (void * entryArg);
static UDATA jniPushFrame (J9VMThread * vmThread, UDATA type, UDATA capacity);
static jint JNICALL getJavaVM (JNIEnv *env, JavaVM **vm);
static jboolean isDirectBuffer(JNIEnv *env, jobject buf);
static jlong JNICALL getDirectBufferCapacity (JNIEnv *env, jobject buf);
static void JNICALL deleteGlobalRef (JNIEnv *env, jobject globalRef);
static jweak JNICALL newWeakGlobalRef (JNIEnv *env, jobject localOrGlobalRef);
static jbooleanArray JNICALL newBooleanArray (JNIEnv *env, jsize length);
static jobject allocateGlobalRef (JNIEnv *env, jobject localOrGlobalRef, jboolean isWeak);
static void ensurePendingJNIException (JNIEnv* env);
static void deallocateGlobalRef (JNIEnv *env, jobject weakOrStrongGlobalRef, jboolean isWeak);
static jobject JNICALL newLocalRef (JNIEnv *env, jobject object);
static jobject JNICALL newGlobalRef (JNIEnv *env, jobject localOrGlobalRef);
static jobject JNICALL popLocalFrame (JNIEnv *env, jobject result);
static void JNICALL deleteWeakGlobalRef (JNIEnv *env, jweak weakGlobalRef);
static jfieldID JNICALL getStaticFieldID (JNIEnv *env, jclass clazz, const char *name, const char *sig);
static jboolean JNICALL initDirectByteBufferCache (JNIEnv *env);
static void JNICALL setStaticByteField (JNIEnv *env, jclass cls, jfieldID fieldID, jbyte value);
static jshortArray JNICALL newShortArray (JNIEnv *env, jsize length);
static void JNICALL setStaticBooleanField (JNIEnv *env, jclass cls, jfieldID fieldID, jboolean value);
static void JNICALL setStaticShortField (JNIEnv *env, jclass cls, jfieldID fieldID, jshort value);
static jstring JNICALL newString (JNIEnv *env, const jchar* uchars, jsize len);
static jboolean JNICALL exceptionCheck (JNIEnv *env);
static jcharArray JNICALL newCharArray (JNIEnv *env, jsize length);
static jobject JNICALL newDirectByteBuffer (JNIEnv *env, void *address, jlong capacity);
static void JNICALL setStaticCharField (JNIEnv *env, jclass cls, jfieldID fieldID, jchar value);
static jlongArray JNICALL newLongArray (JNIEnv *env, jsize length);
static jmethodID JNICALL getStaticMethodID (JNIEnv *env, jclass clazz, const char *name, const char *signature);
static jintArray JNICALL newIntArray (JNIEnv *env, jsize length);
static jint JNICALL throwNew (JNIEnv *env, jclass clazz, const char *message);
static jbyteArray JNICALL newByteArray (JNIEnv *env, jsize length);
static jint JNICALL monitorEnter(JNIEnv* env, jobject obj);
static jint JNICALL monitorExit(JNIEnv* env, jobject obj);
static jboolean JNICALL isInstanceOf(JNIEnv *env, jobject obj, jclass clazz);
static void* getMethodOrFieldID(JNIEnv *env, jclass classReference, const char *name, const char *signature, UDATA flags);
static jobjectRefType JNICALL getObjectRefType(JNIEnv *env, jobject obj);
static void * JNICALL getPrimitiveArrayCritical(JNIEnv *env, jarray array, jboolean *isCopy);
static void JNICALL releasePrimitiveArrayCritical(JNIEnv *env, jarray array, void * elems, jint mode);
static const jchar * JNICALL getStringCritical(JNIEnv *env, jstring str, jboolean *isCopy);
static void JNICALL releaseStringCritical(JNIEnv *env, jstring str, const jchar * elems);
#if JAVA_SPEC_VERSION >= 9
static jobject JNICALL getModule(JNIEnv *env, jclass clazz);
#endif /* JAVA_SPEC_VERSION >= 9 */
#define FIND_CLASS gpCheckFindClass
#define TO_REFLECTED_METHOD gpCheckToReflectedMethod
#define TO_REFLECTED_FIELD gpCheckToReflectedField
#define SET_CURRENT_EXCEPTION gpCheckSetCurrentException
#define SET_CURRENT_EXCEPTION_NLS gpCheckSetCurrentExceptionNLS
#define SET_NATIVE_OUT_OF_MEMORY_ERROR gpCheckSetNativeOutOfMemoryError
#define GET_BOOLEAN_ARRAY_ELEMENTS ((jboolean * (JNICALL *)(JNIEnv *env, jbooleanArray array, jboolean * isCopy))getArrayElements)
#define GET_BYTE_ARRAY_ELEMENTS ((jbyte * (JNICALL *)(JNIEnv *env, jbyteArray array, jboolean * isCopy))getArrayElements)
#define GET_CHAR_ARRAY_ELEMENTS ((jchar * (JNICALL *)(JNIEnv *env, jcharArray array, jboolean * isCopy))getArrayElements)
#define GET_SHORT_ARRAY_ELEMENTS ((jshort * (JNICALL *)(JNIEnv *env, jshortArray array, jboolean * isCopy))getArrayElements)
#define GET_INT_ARRAY_ELEMENTS ((jint * (JNICALL *)(JNIEnv *env, jintArray array, jboolean * isCopy))getArrayElements)
#define GET_LONG_ARRAY_ELEMENTS ((jlong * (JNICALL *)(JNIEnv *env, jlongArray array, jboolean * isCopy))getArrayElements)
#define GET_FLOAT_ARRAY_ELEMENTS ((jfloat * (JNICALL *)(JNIEnv *env, jfloatArray array, jboolean * isCopy))getArrayElements)
#define GET_DOUBLE_ARRAY_ELEMENTS ((jdouble * (JNICALL *)(JNIEnv *env, jdoubleArray array, jboolean * isCopy))getArrayElements)
#define RELEASE_BOOLEAN_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jbooleanArray array, jboolean * elems, jint mode))releaseArrayElements)
#define RELEASE_BYTE_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jbyteArray array, jbyte * elems, jint mode))releaseArrayElements)
#define RELEASE_CHAR_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jcharArray array, jchar * elems, jint mode))releaseArrayElements)
#define RELEASE_SHORT_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jshortArray array, jshort * elems, jint mode))releaseArrayElements)
#define RELEASE_INT_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jintArray array, jint * elems, jint mode))releaseArrayElements)
#define RELEASE_LONG_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jlongArray array, jlong * elems, jint mode))releaseArrayElements)
#define RELEASE_FLOAT_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jfloatArray array, jfloat * elems, jint mode))releaseArrayElements)
#define RELEASE_DOUBLE_ARRAY_ELEMENTS ((void (JNICALL *)(JNIEnv *env, jdoubleArray array, jdouble * elems, jint mode))releaseArrayElements)
#define GET_BOOLEAN_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jbooleanArray array, jsize start, jsize len, jboolean *buf))getArrayRegion)
#define GET_BYTE_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jbyteArray array, jsize start, jsize len, jbyte *buf))getArrayRegion)
#define GET_CHAR_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jcharArray array, jsize start, jsize len, jchar *buf))getArrayRegion)
#define GET_SHORT_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jshortArray array, jsize start, jsize len, jshort *buf))getArrayRegion)
#define GET_INT_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jintArray array, jsize start, jsize len, jint *buf))getArrayRegion)
#define GET_LONG_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jlongArray array, jsize start, jsize len, jlong *buf))getArrayRegion)
#define GET_FLOAT_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jfloatArray array, jsize start, jsize len, jfloat *buf))getArrayRegion)
#define GET_DOUBLE_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jdoubleArray array, jsize start, jsize len, jdouble *buf))getArrayRegion)
#define SET_BOOLEAN_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jbooleanArray array, jsize start, jsize len, jboolean *buf))setArrayRegion)
#define SET_BYTE_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jbyteArray array, jsize start, jsize len, jbyte *buf))setArrayRegion)
#define SET_CHAR_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jcharArray array, jsize start, jsize len, jchar *buf))setArrayRegion)
#define SET_SHORT_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jshortArray array, jsize start, jsize len, jshort *buf))setArrayRegion)
#define SET_INT_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jintArray array, jsize start, jsize len, jint *buf))setArrayRegion)
#define SET_LONG_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jlongArray array, jsize start, jsize len, jlong *buf))setArrayRegion)
#define SET_FLOAT_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jfloatArray array, jsize start, jsize len, jfloat *buf))setArrayRegion)
#define SET_DOUBLE_ARRAY_REGION ((void (JNICALL *)(JNIEnv *env, jdoubleArray array, jsize start, jsize len, jdouble *buf))setArrayRegion)
static jobject JNICALL newObject(JNIEnv *env, jclass clazz, jmethodID methodID, ...)
{
jobject obj;
obj = allocObject(env, clazz);
if (obj) {
va_list args;
va_start(args, methodID);
CALL_NONVIRTUAL_VOID_METHOD_V(env, obj, METHODID_CLASS_REF(methodID), methodID, args);
va_end(args);
if (exceptionCheck(env)) {
deleteLocalRef(env, obj);
obj = (jobject) NULL;
}
}
return obj;
}
static jobject JNICALL newObjectA(JNIEnv *env, jclass clazz, jmethodID methodID, jvalue *args)
{
jobject obj;
obj = allocObject(env, clazz);
if (obj) {
CALL_NONVIRTUAL_VOID_METHOD_A(env, obj, METHODID_CLASS_REF(methodID), methodID, args);
if (exceptionCheck(env)) {
deleteLocalRef(env, obj);
obj = (jobject) NULL;
}
}
return obj;
}
static jobject JNICALL newObjectV(JNIEnv *env, jclass clazz, jmethodID methodID, va_list args)
{
jobject obj;
obj = allocObject(env, clazz);
if (obj) {
CALL_NONVIRTUAL_VOID_METHOD_V(env, obj, METHODID_CLASS_REF(methodID), methodID, args);
if (exceptionCheck(env)) {
deleteLocalRef(env, obj);
obj = (jobject) NULL;
}
}
return obj;
}
void JNICALL OMRNORETURN fatalError(JNIEnv *env, const char *msg)
{
PORT_ACCESS_FROM_VMC( ((J9VMThread *) env) );
j9tty_printf( PORTLIB, "\nFatal error: %s\n", msg);
exitJavaVM((J9VMThread*) env, 1111);
dontreturn: goto dontreturn; /* avoid warnings */
}
static UDATA
gpProtectedRunCallInMethod(void *entryArg)
{
J9RedirectedCallInArgs *args = (J9RedirectedCallInArgs *) entryArg;
J9VMThread *vmThread = (J9VMThread*)args->env;
VM_VMAccess::inlineEnterVMFromJNI(vmThread);
runCallInMethod(args->env, args->receiver, args->clazz, args->methodID, args->args);
VM_VMAccess::inlineExitVMToJNI(vmThread);
return 0; /* return value required to clone from to port library definition */
}
static UDATA gpProtectedFindClass(void * entryArg)
{
J9RedirectedFindClassArgs * args = (J9RedirectedFindClassArgs *) entryArg;
return (UDATA) findClass (args->env, args->name);
}
#if !defined(J9VM_INTERP_MINIMAL_JNI)
static UDATA gpProtectedToReflected(void *entryArg)
{
J9RedirectedToReflectedArgs * args = (J9RedirectedToReflectedArgs *) entryArg;
return (UDATA) (args->func) (args->env, args->clazz, args->id, args->isStatic);
}
#endif /* !INTERP_MINIMAL_JNI */
static jclass JNICALL gpCheckFindClass(JNIEnv * env, const char *name)
{
/* Check if already protected or -Xrs is set and short-circuit the path through gpProtectAndRun */
if ((((J9VMThread *) env)->gpProtected) || (J9_ARE_ALL_BITS_SET(((J9VMThread *) env)->javaVM->sigFlags, J9_SIG_XRS_SYNC))) {
return findClass(env, name);
} else {
J9RedirectedFindClassArgs args;
args.env = env;
args.name = name;
return (jclass) gpProtectAndRun(gpProtectedFindClass, env, &args);
}
}
#if !defined(J9VM_INTERP_MINIMAL_JNI)
static jobject JNICALL gpCheckToReflectedField(JNIEnv * env, jclass clazz, jfieldID fieldID, jboolean isStatic)
{
/* Check if already protected or -Xrs is set and short-circuit the path through gpProtectAndRun */
if ((((J9VMThread *) env)->gpProtected) || (J9_ARE_ALL_BITS_SET(((J9VMThread *) env)->javaVM->sigFlags, J9_SIG_XRS_SYNC))) {
return (jobject) toReflectedField(env, clazz, fieldID, isStatic);
} else {
J9RedirectedToReflectedArgs args;
args.func = (void *(JNICALL *) (JNIEnv *, jclass, void *, jboolean)) toReflectedField;
args.env = env;
args.clazz = clazz;
args.id = fieldID;
args.isStatic = isStatic;
return (jobject) gpProtectAndRun(gpProtectedToReflected, env, &args);
}
}
#endif /* !INTERP_MINIMAL_JNI */
#if !defined(J9VM_INTERP_MINIMAL_JNI)
static jobject JNICALL gpCheckToReflectedMethod(JNIEnv * env, jclass clazz, jmethodID methodID, jboolean isStatic)
{
/* Check if already protected or -Xrs is set and short-circuit the path through gpProtectAndRun */
if ((((J9VMThread *) env)->gpProtected) || (J9_ARE_ALL_BITS_SET(((J9VMThread *) env)->javaVM->sigFlags, J9_SIG_XRS_SYNC))) {
return (jobject) toReflectedMethod(env, clazz, methodID, isStatic);
} else {
J9RedirectedToReflectedArgs args;
args.func = (void *(JNICALL *) (JNIEnv *, jclass, void *, jboolean)) toReflectedMethod;
args.env = env;
args.clazz = clazz;
args.id = methodID;
args.isStatic = isStatic;
return (jobject) gpProtectAndRun(gpProtectedToReflected, env, &args);
}
}
#endif /* !INTERP_MINIMAL_JNI */
static jint
JNICALL throwNew(JNIEnv *env, jclass clazz, const char *message)
{
jmethodID constructor;
jobject throwable;
if (message) {
jstring messageObject;
constructor = getMethodID(env, clazz, "<init>", "(Ljava/lang/String;)V");
if (constructor == NULL) {
return -1;
}
messageObject = newStringUTF(env, message);
if (messageObject == NULL) {
return -1;
}
throwable = newObject(env, clazz, constructor, messageObject);
deleteLocalRef(env, messageObject);
} else {
constructor = getMethodID(env, clazz, "<init>", "()V");
if (constructor == NULL) {
return -1;
}
throwable = newObject(env, clazz, constructor);
}
if (throwable == NULL) {
return -1;
}
jniThrow(env, (jthrowable)throwable);
return 0;
}
static void JNICALL setStaticBooleanField(JNIEnv *env, jclass cls, jfieldID fieldID, jboolean value)
{
setStaticIntField(env, cls, fieldID, (jint)(value & 1));
}
static void JNICALL setStaticByteField(JNIEnv *env, jclass cls, jfieldID fieldID, jbyte value)
{
setStaticIntField(env, cls, fieldID, (jint)value);
}
static void JNICALL setStaticCharField(JNIEnv *env, jclass cls, jfieldID fieldID, jchar value)
{
setStaticIntField(env, cls, fieldID, (jint)value);
}
static void JNICALL setStaticShortField(JNIEnv *env, jclass cls, jfieldID fieldID, jshort value)
{
setStaticIntField(env, cls, fieldID, (jint)value);
}
static UDATA gpProtectedInitialize(void * entryArg)
{
J9RedirectedInitializeArgs * args = (J9RedirectedInitializeArgs *) entryArg;
initializeClass(args->env, args->clazz);
return 0;
}
void JNICALL gpCheckInitialize(J9VMThread* env, J9Class* clazz)
{
/* Check if already protected or -Xrs is set and short-circuit the path through gpProtectAndRun */
if ((((J9VMThread *) env)->gpProtected) || (J9_ARE_ALL_BITS_SET(((J9VMThread *) env)->javaVM->sigFlags, J9_SIG_XRS_SYNC))) {
initializeClass(env, clazz);
} else {
J9RedirectedInitializeArgs args;
args.env = env;
args.clazz = clazz;
gpProtectAndRun(gpProtectedInitialize, (JNIEnv*)env, &args);
}
}
void
gpCheckCallin(JNIEnv *env, jobject receiver, jclass cls, jmethodID methodID, void* args)
{
J9RedirectedCallInArgs handlerArgs;
handlerArgs.env = env;
handlerArgs.receiver = receiver;
handlerArgs.clazz = cls;
handlerArgs.methodID = methodID;
handlerArgs.args = args;
/* Check if already protected or -Xrs is set and short-circuit the path through gpProtectAndRun */
if ((((J9VMThread *) env)->gpProtected) || (J9_ARE_ALL_BITS_SET(((J9VMThread *) env)->javaVM->sigFlags, J9_SIG_XRS_SYNC))) {
gpProtectedRunCallInMethod(&handlerArgs);
} else {
gpProtectAndRun(gpProtectedRunCallInMethod, env, &handlerArgs);
}
}
UDATA JNICALL pushArguments(J9VMThread *vmThread, J9Method* method, void *args) {
jvalue* jvalues;
U_8 *sigChar;
jobject objArg;
UDATA* sp;
if ( (UDATA)args & 1 ) {
/* pointer is tagged. This means it's an array of jvalues */
jvalues = (jvalue*)((U_8*)args - 1);
} else {
jvalues = NULL;
}
#define ARG(type, sig) (jvalues ? (jvalues++->sig) : va_arg(*(va_list*)args, type))
/* process the arguments */
sigChar = &J9UTF8_DATA(J9ROMMETHOD_SIGNATURE(J9_ROM_METHOD_FROM_RAM_METHOD(method)))[1]; /* skip the opening '(' */
sp = vmThread->sp;
for (;;) {
BOOLEAN skipSignature = TRUE;
switch (*sigChar++) {
case '[':
/* skip the rest of the signature */
while ('[' == *sigChar) {
sigChar += 1;
}
skipSignature = ('L' == *sigChar++);
case 'L': /* FALLTHROUGH */
/* skip the rest of the signature */
if (skipSignature) {
while (';' != *sigChar) {
sigChar += 1;
}
}
sp -= 1;
objArg = ARG(jobject, l);
*sp = (NULL == objArg) ? 0: (UDATA) *((j9object_t*) objArg);
break;
case 'B':
/* byte type */
*(I_32*)(--sp) = (I_32)(jbyte)ARG(int, b);
break;
case 'Z':
/* boolean type */
*(I_32*)(--sp) = (I_32)(ARG(int, z) != 0);
break;
case 'S':
/* short type */
*(I_32*)(--sp) = (I_32)(jshort)ARG(int, s);
break;
case 'C':
/* char type */
*(U_32*)(--sp) = (U_32)(jchar)ARG(int, c);
break;
case 'I':
/* int type */
*(I_32*)(--sp) = (I_32)(jint)ARG(jint, i); /* NOTE: jint may be larger than int, but jchar, jshort, etc, must be no larger than int */
break;
#ifdef J9VM_INTERP_FLOAT_SUPPORT
case 'F':
/* float type */
sp -= 1;
/* jfloat is promoted to double when passed through '...' */
*((jfloat*) sp) = (jfloat) ARG(jdouble, f);
break;
case 'D':
/* double type */
sp -= 2;
*((jdouble*) sp) = ARG(jdouble, d);
break;
#endif
case 'J':
/* long type */
sp -= 2;
*((jlong*) sp) = ARG(jlong, j);
break;
case ')':
vmThread->sp = sp;
return (*sigChar == 'L' || *sigChar == '[') ? J9_SSF_RETURNS_OBJECT : 0;
}
}
}
#undef ARG
void JNICALL gpCheckSetCurrentException(J9VMThread* env, UDATA exceptionNumber, UDATA* detailMessage)
{
/* Check if already protected or -Xrs is set and short-circuit the path through gpProtectAndRun */
if ((((J9VMThread *) env)->gpProtected) || (J9_ARE_ALL_BITS_SET(((J9VMThread *) env)->javaVM->sigFlags, J9_SIG_XRS_SYNC))) {
setCurrentException(env, exceptionNumber, detailMessage);
} else {
J9RedirectedSetCurrentExceptionArgs args;
args.env = env;
args.exceptionNumber = exceptionNumber;
args.detailMessage = detailMessage;
gpProtectAndRun(gpProtectedSetCurrentException, (JNIEnv*)env, &args);
}
}
static UDATA gpProtectedSetCurrentException(void * entryArg)
{
J9RedirectedSetCurrentExceptionArgs * args = (J9RedirectedSetCurrentExceptionArgs *) entryArg;
setCurrentException(args->env, args->exceptionNumber, args->detailMessage);
return 0;
}
static jfieldID JNICALL getFieldID(JNIEnv *env, jclass clazz, const char *name, const char *sig)
{
return (jfieldID)getMethodOrFieldID(env, clazz, name, sig, J9JNIID_FIELD);
}
static jfieldID JNICALL getStaticFieldID(JNIEnv *env, jclass clazz, const char *name, const char *sig)
{
return (jfieldID)getMethodOrFieldID(env, clazz, name, sig, J9JNIID_FIELD | J9JNIID_STATIC);
}
static jmethodID JNICALL getStaticMethodID(JNIEnv *env, jclass clazz, const char *name, const char *signature)
{
return (jmethodID)getMethodOrFieldID(env, clazz, name, signature, J9JNIID_METHOD | J9JNIID_STATIC);
}
static jmethodID JNICALL getMethodID(JNIEnv *env, jclass clazz, const char *name, const char *signature)
{
return (jmethodID)getMethodOrFieldID(env, clazz, name, signature, J9JNIID_METHOD);
}
static jint JNICALL getJavaVM(JNIEnv *env, JavaVM **vm) {
*vm = (JavaVM*)((J9VMThread*)env)->javaVM;
return 0;
}
static jboolean
isDirectBuffer(JNIEnv *env, jobject buf)
{
if (initDirectByteBufferCache(env) && (buf != NULL) && ((*(j9object_t*)buf) != NULL)) {
J9JavaVM *javaVM = ((J9VMThread *) env)->javaVM;
/* Must be instance of java.nio.Buffer and implement sun.nio.ch.DirectBuffer */
if (env->IsInstanceOf(buf, javaVM->java_nio_Buffer) && env->IsInstanceOf(buf, javaVM->sun_nio_ch_DirectBuffer)) {
return JNI_TRUE;
}
}
return JNI_FALSE;
}
static jlong JNICALL getDirectBufferCapacity(JNIEnv *env, jobject buf)
{
if (isDirectBuffer(env, buf)) {
return env->GetIntField(buf, ((J9VMThread *) env)->javaVM->java_nio_Buffer_capacity);
}
return (jlong)-1;
}
static void * JNICALL getDirectBufferAddress(JNIEnv *env, jobject buf)
{
void* result = NULL;
Trc_VM_JNI_GetDirectBufferAddress_Entry(env, buf);
if (isDirectBuffer(env, buf)) {
result = (void*)(UDATA) (env->GetLongField(buf, ((J9VMThread *) env)->javaVM->java_nio_Buffer_address));
}
Trc_VM_JNI_GetDirectBufferAddress_Exit(env, result);
return result;
}
/**
* Looks up a class by name and creates a GlobalRef to maintain
* a reference to it.
* @param env
* @param className The name of the class to find.
* @return A JNI GlobalRef on success, NULL on failure.
*/
static jclass JNICALL
findClassAndCreateGlobalRef(JNIEnv *env, const char* className)
{
jclass globalRef;
jclass localRef = env->FindClass(className);
if (localRef == NULL) {
return NULL;
}
globalRef = (jclass)env->NewGlobalRef(localRef);
if (globalRef == NULL) {
return NULL;
}
return globalRef;
}
/**
* Initialize JNI ID's that are specific to the Sun class library.
* @param env
* @param java_nio_Buffer globalref of the java_nio_Buffer class, guaranteed non-NULL.
* @param java_nio_DirectByteBuffer globalref of the java_nio_DirectByteBuffer class, guaranteed non-NULL.
* @return JNI_TRUE if all refs are filled in, JNI_FALSE otherwise.
*/
static jboolean JNICALL
initDirectByteBufferCacheSun(JNIEnv *env, jclass java_nio_Buffer, jclass java_nio_DirectByteBuffer)
{
J9JavaVM *javaVM = ((J9VMThread *) env)->javaVM;
jclass sun_nio_ch_DirectBuffer = javaVM->sun_nio_ch_DirectBuffer;
jmethodID java_nio_DirectByteBuffer_init = javaVM->java_nio_DirectByteBuffer_init;
jfieldID java_nio_Buffer_address = javaVM->java_nio_Buffer_address;
/* Check to see if we are already initialized */
if ( (NULL != sun_nio_ch_DirectBuffer) &&
(NULL != java_nio_DirectByteBuffer_init) &&
(NULL != java_nio_Buffer_address) ) {
return JNI_TRUE;
}
sun_nio_ch_DirectBuffer = findClassAndCreateGlobalRef(env, "sun/nio/ch/DirectBuffer");
if (sun_nio_ch_DirectBuffer == NULL) {
goto fail;
}
java_nio_DirectByteBuffer_init = env->GetMethodID(java_nio_DirectByteBuffer, "<init>", "(JI)V");
if (java_nio_DirectByteBuffer_init == NULL) {
goto fail;
}
java_nio_Buffer_address = env->GetFieldID(java_nio_Buffer, "address", "J");
if (java_nio_Buffer_address == NULL) {
goto fail;
}
javaVM->sun_nio_ch_DirectBuffer = sun_nio_ch_DirectBuffer;
javaVM->java_nio_DirectByteBuffer_init = java_nio_DirectByteBuffer_init;
javaVM->java_nio_Buffer_address = java_nio_Buffer_address;
return JNI_TRUE;
fail:
env->ExceptionClear();
env->DeleteGlobalRef(sun_nio_ch_DirectBuffer);
return JNI_FALSE;
}
static jboolean JNICALL
initDirectByteBufferCache(JNIEnv *env)
{
J9JavaVM *javaVM = ((J9VMThread *) env)->javaVM;
jclass java_nio_Buffer = javaVM->java_nio_Buffer;
jclass java_nio_DirectByteBuffer = javaVM->java_nio_DirectByteBuffer;
jfieldID java_nio_Buffer_capacity = javaVM->java_nio_Buffer_capacity;
if (java_nio_Buffer && java_nio_DirectByteBuffer && java_nio_Buffer_capacity) {
return initDirectByteBufferCacheSun(env, java_nio_Buffer, java_nio_DirectByteBuffer);
}
java_nio_DirectByteBuffer = NULL;
java_nio_Buffer = findClassAndCreateGlobalRef(env, "java/nio/Buffer");
if (java_nio_Buffer == NULL) {
goto fail;
}
java_nio_DirectByteBuffer = findClassAndCreateGlobalRef(env, "java/nio/DirectByteBuffer");
if (java_nio_DirectByteBuffer == NULL) {
goto fail;
}
java_nio_Buffer_capacity = env->GetFieldID(java_nio_Buffer, "capacity", "I");
if (java_nio_Buffer_capacity == NULL) {
goto fail;
}
/* Commit the common IDs */
javaVM->java_nio_Buffer = java_nio_Buffer;
javaVM->java_nio_DirectByteBuffer = java_nio_DirectByteBuffer;
javaVM->java_nio_Buffer_capacity = java_nio_Buffer_capacity;
if (JNI_TRUE != initDirectByteBufferCacheSun(env, java_nio_Buffer, java_nio_DirectByteBuffer)) {
goto fail;
}
return JNI_TRUE;
fail:
env->ExceptionClear();
env->DeleteGlobalRef(java_nio_Buffer);
env->DeleteGlobalRef(java_nio_DirectByteBuffer);
return JNI_FALSE;
}
static jobject JNICALL newDirectByteBuffer(JNIEnv *env, void *address, jlong capacity)
{
J9JavaVM *javaVM = ((J9VMThread *) env)->javaVM;
jint actualCapacity = (jint)capacity;
jobject result = NULL;
Trc_VM_JNI_NewDirectByteBuffer_Entry(env, address, capacity);
if (!initDirectByteBufferCache(env)) {
return NULL;
}
/* if capacity exceeds the range of a jint, pass in a value known to cause IllegalArgumentException */
if (actualCapacity != capacity) {
actualCapacity = -1;
}
result = env->NewObject(javaVM->java_nio_DirectByteBuffer, javaVM->java_nio_DirectByteBuffer_init, (jlong)(UDATA)address, actualCapacity);
Trc_VM_JNI_NewDirectByteBuffer_Exit(env, result);
return result;
}
static jint JNICALL pushLocalFrame(JNIEnv *env, jint capacity) {
UDATA result = 0;
J9VMThread *vmThread = (J9VMThread*)env;
J9SFJNINativeMethodFrame* frame;
VM_VMAccess::inlineEnterVMFromJNI(vmThread);
/* ensure that there is an internal frame allocated before any user frames. Otherwise
* we won't know when to stop freeing frames when we return from the method
*/
frame = (J9SFJNINativeMethodFrame*)((U_8*)vmThread->sp + (UDATA)vmThread->literals);
if ((frame->specialFrameFlags & J9_SSF_CALL_OUT_FRAME_ALLOC) == 0) {
result = jniPushFrame(vmThread, JNIFRAME_TYPE_INTERNAL, 16);
}
if (result == 0) {
result = jniPushFrame(vmThread, JNIFRAME_TYPE_USER, capacity);
if (result == 0) {
/* ensure that the frame is marked as allocated */
frame->specialFrameFlags |= J9_SSF_CALL_OUT_FRAME_ALLOC;
}
}
VM_VMAccess::inlineExitVMToJNI(vmThread);
if (result) {
ensurePendingJNIException(env);
return -1;
}
return 0;
}
static jobject JNICALL popLocalFrame(JNIEnv *env, jobject result) {
j9object_t unwrappedResult;
VM_VMAccess::inlineEnterVMFromJNI((J9VMThread*)env);
unwrappedResult = result ? *(j9object_t*)result : NULL;
jniPopFrame((J9VMThread*)env, JNIFRAME_TYPE_USER);
result = VM_VMHelpers::createLocalRef(env, unwrappedResult);
VM_VMAccess::inlineExitVMToJNI((J9VMThread*)env);
return result;
}
/* 1) Private routine. Used to create a jni local reference from an actual object pointer.
2) We don't acquire VM access - if you have an object pointer in your hands, you had better already have it.
*/
jobject JNICALL j9jni_createLocalRef(JNIEnv *env, j9object_t object) {
J9VMThread *vmThread = (J9VMThread*)env;
J9SFJNINativeMethodFrame* frame;
J9JNIReferenceFrame *referenceFrame;
j9object_t* ref;
if (object == NULL) return NULL;
frame = (J9SFJNINativeMethodFrame*)((U_8*)vmThread->sp + (UDATA)vmThread->literals);
if ( (frame->specialFrameFlags & J9_SSF_CALL_OUT_FRAME_ALLOC) == 0) {
/* try to allocate from stack */
if ( (UDATA)vmThread->literals < J9_SSF_CO_REF_SLOT_CNT * sizeof(UDATA) ) {
vmThread->literals = (J9Method*)((UDATA)vmThread->literals + sizeof(UDATA));
#ifdef J9VM_INTERP_GROWABLE_STACKS
frame->specialFrameFlags += 1;
#endif
ref = (j9object_t*)--(vmThread->sp); /* predecrement sp */
*ref = object;
return (jobject)ref;
} else {
/* search for a free element on the stack */
for (ref = (j9object_t*)vmThread->sp; ref < (j9object_t*)vmThread->sp + J9_SSF_CO_REF_SLOT_CNT; ref++) {
if (*ref == NULL) {
*ref = object;
return (jobject)ref;
}
}
/* couldn't find a free entry. Now we need to grow a pool */
if (jniPushFrame(vmThread, JNIFRAME_TYPE_INTERNAL, 16)) {
fatalError(env, "Could not allocate JNI local ref");
return NULL;
}
frame->specialFrameFlags |= J9_SSF_CALL_OUT_FRAME_ALLOC;
}
}
/* allocate from frame */
referenceFrame = (J9JNIReferenceFrame*)vmThread->jniLocalReferences;
ref = (j9object_t*)pool_newElement((J9Pool*)referenceFrame->references);
if (ref == NULL) {
fatalError(env, "Could not allocate JNI local ref");
return NULL;
}
*ref = object;
return (jobject)ref;
}
static jint JNICALL
ensureLocalCapacityWrapper(JNIEnv *env, jint capacity)
{
J9VMThread *vmThread = (J9VMThread*)env;
J9SFJNINativeMethodFrame* frame;
J9JNIReferenceFrame *referenceFrame;
jint rc = 0;
Trc_VM_ensureLocalCapacity_Entry(env, capacity);
if (capacity > MAX_LOCAL_CAPACITY && (vmThread->javaVM->runtimeFlags & J9_RUNTIME_XFUTURE) ) {
/* The JCK test vm.jni.enlc001 tries to allocate as many local references as possible.
* Sun only permits about 8192 local refs, allowing the test to pass. On J9, the capacity was limited only
* by available memory. This means that the test would exhaust system memory. Sometimes the test
* passed, sometimes the OS killed the process, sometimes another thread ran out of memory.
* 8192 seems a bit low, so we'll allow up to 64K refs.
*/
rc = JNI_ERR;
} else {
VM_VMAccess::inlineEnterVMFromJNI(vmThread);
frame = (J9SFJNINativeMethodFrame*)((U_8*)vmThread->sp + (UDATA)vmThread->literals);
if ( (frame->specialFrameFlags & J9_SSF_CALL_OUT_FRAME_ALLOC) == 0) {
/* try to allocate from stack */
if ( capacity >= J9_SSF_CO_REF_SLOT_CNT) {
Trc_VM_ensureLocalCapacity_allocateNewFrame(env);
if (jniPushFrame(vmThread, JNIFRAME_TYPE_INTERNAL, capacity)) {
Trc_VM_ensureLocalCapacity_allocateFailed(env);
rc = -1;
} else {
frame->specialFrameFlags |= J9_SSF_CALL_OUT_FRAME_ALLOC;
}
}
} else {
referenceFrame = (J9JNIReferenceFrame*)vmThread->jniLocalReferences;
Trc_VM_ensureLocalCapacity_growExistingFrame(env, referenceFrame);
if (pool_ensureCapacity((J9Pool*)referenceFrame->references, (UDATA)capacity)) {
Trc_VM_ensureLocalCapacity_growFailed(env);
rc = -1;
}
}
VM_VMAccess::inlineExitVMToJNI(vmThread);
}
if (rc) {
ensurePendingJNIException(env);
}
Trc_VM_ensureLocalCapacity_Exit(env, rc);
return rc;
}
static jbooleanArray JNICALL newBooleanArray(JNIEnv *env, jsize length)
{
return (jbooleanArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, booleanArrayClass));
}
static jbyteArray JNICALL newByteArray(JNIEnv *env, jsize length)
{
return (jbyteArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, byteArrayClass));
}
static jcharArray JNICALL newCharArray(JNIEnv *env, jsize length)
{
return (jcharArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, charArrayClass));
}
#if (defined(J9VM_INTERP_FLOAT_SUPPORT))
static jdoubleArray JNICALL newDoubleArray(JNIEnv *env, jsize length)
{
return (jdoubleArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, doubleArrayClass));
}
#endif /* J9VM_INTERP_FLOAT_SUPPORT */
#if (defined(J9VM_INTERP_FLOAT_SUPPORT))
static jfloatArray JNICALL newFloatArray(JNIEnv *env, jsize length)
{
return (jfloatArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, floatArrayClass));
}
#endif /* J9VM_INTERP_FLOAT_SUPPORT */
static jintArray JNICALL newIntArray(JNIEnv *env, jsize length)
{
return (jintArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, intArrayClass));
}
static jlongArray JNICALL newLongArray(JNIEnv *env, jsize length)
{
return (jlongArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, longArrayClass));
}
static jshortArray JNICALL newShortArray(JNIEnv *env, jsize length)
{
return (jshortArray)newBaseTypeArray(env, length, offsetof(J9JavaVM, shortArrayClass));
}
static jobject JNICALL
newGlobalRef(JNIEnv *env, jobject localOrGlobalRef)
{
return allocateGlobalRef(env, localOrGlobalRef, JNI_FALSE);
}
static jobject
allocateGlobalRef(JNIEnv *env, jobject localOrGlobalRef, jboolean isWeak)