37
37
38
38
import java .lang .Thread .UncaughtExceptionHandler ;
39
39
import java .lang .reflect .Field ;
40
- import java .security .AccessController ;
41
- import java .security .AccessControlContext ;
42
- import java .security .Permission ;
43
- import java .security .Permissions ;
44
- import java .security .PrivilegedAction ;
45
- import java .security .ProtectionDomain ;
46
40
import java .util .ArrayList ;
47
41
import java .util .Collection ;
48
42
import java .util .Collections ;
@@ -811,9 +805,7 @@ public class ForkJoinPool extends AbstractExecutorService {
811
805
* initialization. Since it (or any other created pool) need
812
806
* never be used, we minimize initial construction overhead and
813
807
* footprint to the setup of about a dozen fields, although with
814
- * some System property parsing and security processing that takes
815
- * far longer than the actual construction when SecurityManagers
816
- * are used or properties are set. The common pool is
808
+ * some System property parsing properties are set. The common pool is
817
809
* distinguished by having a null workerNamePrefix (which is an
818
810
* odd convention, but avoids the need to decode status in factory
819
811
* classes). It also has PRESET_SIZE config set if parallelism
@@ -839,13 +831,12 @@ public class ForkJoinPool extends AbstractExecutorService {
839
831
*
840
832
* As a more appropriate default in managed environments, unless
841
833
* overridden by system properties, we use workers of subclass
842
- * InnocuousForkJoinWorkerThread when there is a SecurityManager
843
- * present. These workers have no permissions set, do not belong
844
- * to any user-defined ThreadGroup, and clear all ThreadLocals and
845
- * reset the ContextClassLoader before (re)activating to execute
846
- * top-level task. The associated mechanics may be JVM-dependent
847
- * and must access particular Thread class fields to achieve this
848
- * effect.
834
+ * InnocuousForkJoinWorkerThread for the commonPool. These
835
+ * workers do not belong to any user-defined ThreadGroup, and
836
+ * clear all ThreadLocals and reset the ContextClassLoader before
837
+ * (re)activating to execute top-level tasks. The associated
838
+ * mechanics may be JVM-dependent and must access particular
839
+ * Thread class fields to achieve this effect.
849
840
*
850
841
* InterruptibleTasks
851
842
* ====================
@@ -917,9 +908,6 @@ public class ForkJoinPool extends AbstractExecutorService {
917
908
* shorts would suffice. For class WorkQueue, an
918
909
* embedded @Contended region segregates fields most heavily
919
910
* updated by owners from those most commonly read by stealers or
920
- * other management. For class WorkQueue, an embedded padded
921
- * region segregates fields (all declared as "int") most heavily
922
- * updated by owners from those most commonly read by stealers or
923
911
* other management.
924
912
*
925
913
* Initial sizing and resizing of WorkQueue arrays is an even more
@@ -929,8 +917,10 @@ public class ForkJoinPool extends AbstractExecutorService {
929
917
* direct false-sharing and indirect cases due to GC bookkeeping
930
918
* (cardmarks etc), and reduce the number of resizes, which are
931
919
* not especially fast because they require atomic transfers.
932
- * Currently, arrays are initialized to be just large enough to
933
- * avoid resizing in most tree-structured tasks. (Maintenance note:
920
+ * Currently, arrays for workers are initialized to be just large
921
+ * enough to avoid resizing in most tree-structured tasks, but
922
+ * larger for external queues where both false-sharing problems
923
+ * and the need for resizing are more common. (Maintenance note:
934
924
* any changes in fields, queues, or their uses, or JVM layout
935
925
* policies, must be accompanied by re-evaluation of these
936
926
* placement and sizing decisions.)
@@ -1019,6 +1009,12 @@ public class ForkJoinPool extends AbstractExecutorService {
1019
1009
*/
1020
1010
static final int INITIAL_QUEUE_CAPACITY = 1 << 6 ;
1021
1011
1012
+ /**
1013
+ * Initial capacity of work-stealing queue array for external queues.
1014
+ * Must be a power of two, at least 2. See above.
1015
+ */
1016
+ static final int INITIAL_EXTERNAL_QUEUE_CAPACITY = 1 << 9 ;
1017
+
1022
1018
// conversions among short, int, long
1023
1019
static final int SMASK = 0xffff ; // (unsigned) short bits
1024
1020
static final long LMASK = 0xffffffffL ; // lower 32 bits of long
@@ -1097,21 +1093,6 @@ static long slotOffset(int index) {
1097
1093
return ((long )index << ASHIFT ) + ABASE ;
1098
1094
}
1099
1095
1100
- /**
1101
- * If there is a security manager, makes sure caller has
1102
- * permission to modify threads.
1103
- */
1104
- @ SuppressWarnings ("removal" )
1105
- private static void checkPermission () {
1106
- SecurityManager security ; RuntimePermission perm ;
1107
- if ((security = System .getSecurityManager ()) != null ) {
1108
- if ((perm = modifyThreadPermission ) == null )
1109
- modifyThreadPermission = perm = // races OK
1110
- new RuntimePermission ("modifyThread" );
1111
- security .checkPermission (perm );
1112
- }
1113
- }
1114
-
1115
1096
// Nested classes
1116
1097
1117
1098
/**
@@ -1147,64 +1128,9 @@ public static interface ForkJoinWorkerThreadFactory {
1147
1128
static final class DefaultForkJoinWorkerThreadFactory
1148
1129
implements ForkJoinWorkerThreadFactory {
1149
1130
public final ForkJoinWorkerThread newThread (ForkJoinPool pool ) {
1150
- boolean isCommon = (pool .workerNamePrefix == null );
1151
- @ SuppressWarnings ("removal" )
1152
- SecurityManager sm = System .getSecurityManager ();
1153
- if (sm != null && isCommon )
1154
- return newCommonWithACC (pool );
1155
- else
1156
- return newRegularWithACC (pool );
1157
- }
1158
-
1159
- /*
1160
- * Create and use static AccessControlContexts only if there
1161
- * is a SecurityManager. (These can be removed if/when
1162
- * SecurityManagers are removed from platform.) The ACCs are
1163
- * immutable and equivalent even when racily initialized, so
1164
- * they don't require locking, although with the chance of
1165
- * needlessly duplicate construction.
1166
- */
1167
- @ SuppressWarnings ("removal" )
1168
- static volatile AccessControlContext regularACC , commonACC ;
1169
-
1170
- @ SuppressWarnings ("removal" )
1171
- static ForkJoinWorkerThread newRegularWithACC (ForkJoinPool pool ) {
1172
- AccessControlContext acc = regularACC ;
1173
- if (acc == null ) {
1174
- Permissions ps = new Permissions ();
1175
- ps .add (new RuntimePermission ("getClassLoader" ));
1176
- ps .add (new RuntimePermission ("setContextClassLoader" ));
1177
- regularACC = acc =
1178
- new AccessControlContext (new ProtectionDomain [] {
1179
- new ProtectionDomain (null , ps ) });
1180
- }
1181
- return AccessController .doPrivileged (
1182
- new PrivilegedAction <>() {
1183
- public ForkJoinWorkerThread run () {
1184
- return new ForkJoinWorkerThread (null , pool , true , false );
1185
- }}, acc );
1186
- }
1187
-
1188
- @ SuppressWarnings ("removal" )
1189
- static ForkJoinWorkerThread newCommonWithACC (ForkJoinPool pool ) {
1190
- AccessControlContext acc = commonACC ;
1191
- if (acc == null ) {
1192
- Permissions ps = new Permissions ();
1193
- ps .add (new RuntimePermission ("getClassLoader" ));
1194
- ps .add (new RuntimePermission ("setContextClassLoader" ));
1195
- ps .add (new RuntimePermission ("modifyThread" ));
1196
- ps .add (new RuntimePermission ("enableContextClassLoaderOverride" ));
1197
- ps .add (new RuntimePermission ("modifyThreadGroup" ));
1198
- commonACC = acc =
1199
- new AccessControlContext (new ProtectionDomain [] {
1200
- new ProtectionDomain (null , ps ) });
1201
- }
1202
- return AccessController .doPrivileged (
1203
- new PrivilegedAction <>() {
1204
- public ForkJoinWorkerThread run () {
1205
- return new ForkJoinWorkerThread .
1206
- InnocuousForkJoinWorkerThread (pool );
1207
- }}, acc );
1131
+ return ((pool .workerNamePrefix == null ) ? // is commonPool
1132
+ new ForkJoinWorkerThread .InnocuousForkJoinWorkerThread (pool ) :
1133
+ new ForkJoinWorkerThread (null , pool , true , false ));
1208
1134
}
1209
1135
}
1210
1136
@@ -1264,7 +1190,9 @@ final boolean tryLockPhase() { // seqlock acquire
1264
1190
*/
1265
1191
WorkQueue (ForkJoinWorkerThread owner , int id , int cfg ,
1266
1192
boolean clearThreadLocals ) {
1267
- array = new ForkJoinTask <?>[INITIAL_QUEUE_CAPACITY ];
1193
+ array = new ForkJoinTask <?>[owner == null ?
1194
+ INITIAL_EXTERNAL_QUEUE_CAPACITY :
1195
+ INITIAL_QUEUE_CAPACITY ];
1268
1196
this .owner = owner ;
1269
1197
this .config = (clearThreadLocals ) ? cfg | CLEAR_TLS : cfg ;
1270
1198
}
@@ -3024,7 +2952,6 @@ public ForkJoinPool(int parallelism,
3024
2952
Predicate <? super ForkJoinPool > saturate ,
3025
2953
long keepAliveTime ,
3026
2954
TimeUnit unit ) {
3027
- checkPermission ();
3028
2955
int p = parallelism ;
3029
2956
if (p <= 0 || p > MAX_CAP || p > maximumPoolSize || keepAliveTime <= 0L )
3030
2957
throw new IllegalArgumentException ();
@@ -3312,7 +3239,6 @@ public int setParallelism(int size) {
3312
3239
throw new IllegalArgumentException ();
3313
3240
if ((config & PRESET_SIZE ) != 0 )
3314
3241
throw new UnsupportedOperationException ("Cannot override System property" );
3315
- checkPermission ();
3316
3242
return getAndSetParallelism (size );
3317
3243
}
3318
3244
@@ -3710,7 +3636,6 @@ public String toString() {
3710
3636
* may not be rejected.
3711
3637
*/
3712
3638
public void shutdown () {
3713
- checkPermission ();
3714
3639
if (workerNamePrefix != null ) // not common pool
3715
3640
tryTerminate (false , true );
3716
3641
}
@@ -3730,7 +3655,6 @@ public void shutdown() {
3730
3655
* @return an empty list
3731
3656
*/
3732
3657
public List <Runnable > shutdownNow () {
3733
- checkPermission ();
3734
3658
if (workerNamePrefix != null ) // not common pool
3735
3659
tryTerminate (true , true );
3736
3660
return Collections .emptyList ();
@@ -3837,7 +3761,6 @@ public boolean awaitQuiescence(long timeout, TimeUnit unit) {
3837
3761
@ Override
3838
3762
public void close () {
3839
3763
if (workerNamePrefix != null ) {
3840
- checkPermission ();
3841
3764
CountDownLatch done = null ;
3842
3765
boolean interrupted = false ;
3843
3766
while ((tryTerminate (interrupted , true ) & TERMINATED ) == 0 ) {
@@ -4075,11 +3998,6 @@ public void endCompensatedBlock(ForkJoinPool pool, long post) {
4075
3998
});
4076
3999
defaultForkJoinWorkerThreadFactory =
4077
4000
new DefaultForkJoinWorkerThreadFactory ();
4078
- @ SuppressWarnings ("removal" )
4079
- ForkJoinPool p = common = (System .getSecurityManager () == null ) ?
4080
- new ForkJoinPool ((byte )0 ) :
4081
- AccessController .doPrivileged (new PrivilegedAction <>() {
4082
- public ForkJoinPool run () {
4083
- return new ForkJoinPool ((byte )0 ); }});
4001
+ common = new ForkJoinPool ((byte )0 );
4084
4002
}
4085
4003
}
1 commit comments
openjdk-notifier[bot] commentedon Nov 26, 2024
Review
Issues