src/java.base/share/classes/sun/net/InetAddressCachePolicy.java
author chegar
Fri, 18 Oct 2019 21:25:01 +0100
branchdatagramsocketimpl-branch
changeset 58697 e3ff12d14d43
parent 47216 71c04702a3d5
permissions -rw-r--r--
datagramsocketimpl-branch: minor refactoring
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
     2
 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.net;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.Security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
public final class InetAddressCachePolicy {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
    // Controls the cache policy for successful lookups only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    private static final String cachePolicyProp = "networkaddress.cache.ttl";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    private static final String cachePolicyPropFallback =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
        "sun.net.inetaddr.ttl";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    // Controls the cache policy for negative lookups only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static final String negativeCachePolicyProp =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        "networkaddress.cache.negative.ttl";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private static final String negativeCachePolicyPropFallback =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        "sun.net.inetaddr.negative.ttl";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    public static final int FOREVER = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    public static final int NEVER = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    /* default value for positive lookups */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    public static final int DEFAULT_POSITIVE = 30;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    /* The Java-level namelookup cache policy for successful lookups:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * -1: caching forever
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * any positive value: the number of seconds to cache an address for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * default value is forever (FOREVER), as we let the platform do the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * caching. For security reasons, this caching is made forever when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * a security manager is set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     */
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    59
    private static volatile int cachePolicy = FOREVER;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /* The Java-level namelookup cache policy for negative lookups:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * -1: caching forever
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * any positive value: the number of seconds to cache an address for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * default value is 0. It can be set to some other value for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * performance reasons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
    69
    private static volatile int negativeCachePolicy = NEVER;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Whether or not the cache policy for successful lookups was set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * using a property (cmd line).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
    75
    private static boolean propertySet;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Whether or not the cache policy for negative lookups was set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * using a property (cmd line).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
    81
    private static boolean propertyNegativeSet;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Initialize
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    static {
24041
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    87
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    88
        Integer tmp = java.security.AccessController.doPrivileged(
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    89
          new PrivilegedAction<Integer>() {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    90
            public Integer run() {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    91
                try {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    92
                    String tmpString = Security.getProperty(cachePolicyProp);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    93
                    if (tmpString != null) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    94
                        return Integer.valueOf(tmpString);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    95
                    }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    96
                } catch (NumberFormatException ignored) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    97
                    // Ignore
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
    98
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
24041
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   100
                try {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   101
                    String tmpString = System.getProperty(cachePolicyPropFallback);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   102
                    if (tmpString != null) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   103
                        return Integer.decode(tmpString);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   104
                    }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   105
                } catch (NumberFormatException ignored) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   106
                    // Ignore
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   107
                }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   108
                return null;
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   109
            }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   110
          });
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   111
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (tmp != null) {
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   113
            cachePolicy = tmp < 0 ? FOREVER : tmp;
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
   114
            propertySet = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        } else {
24041
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   116
            /* No properties defined for positive caching. If there is no
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   117
             * security manager then use the default positive cache value.
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   118
             */
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   119
            if (System.getSecurityManager() == null) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   120
                cachePolicy = DEFAULT_POSITIVE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
24041
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   123
        tmp = java.security.AccessController.doPrivileged (
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   124
          new PrivilegedAction<Integer>() {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   125
            public Integer run() {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   126
                try {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   127
                    String tmpString = Security.getProperty(negativeCachePolicyProp);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   128
                    if (tmpString != null) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   129
                        return Integer.valueOf(tmpString);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   130
                    }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   131
                } catch (NumberFormatException ignored) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   132
                    // Ignore
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   133
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
24041
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   135
                try {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   136
                    String tmpString = System.getProperty(negativeCachePolicyPropFallback);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   137
                    if (tmpString != null) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   138
                        return Integer.decode(tmpString);
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   139
                    }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   140
                } catch (NumberFormatException ignored) {
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   141
                    // Ignore
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   142
                }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   143
                return null;
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   144
            }
2bb2c08c958b 8040837: Avoid provoking NFEs when initializing InetAddrCachePolicy
mduigou
parents: 7668
diff changeset
   145
          });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        if (tmp != null) {
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   148
            negativeCachePolicy = tmp < 0 ? FOREVER : tmp;
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
   149
            propertyNegativeSet = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   153
    public static int get() {
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
   154
        return cachePolicy;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   157
    public static int getNegative() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        return negativeCachePolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * Sets the cache policy for successful lookups if the user has not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * already specified a cache policy for it using a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * command-property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @param newPolicy the value in seconds for how long the lookup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * should be cached
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    public static synchronized void setIfNotSet(int newPolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
         * When setting the new value we may want to signal that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
         * cache should be flushed, though this doesn't seem strictly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
         * necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
         */
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
   174
        if (!propertySet) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            checkValue(newPolicy, cachePolicy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            cachePolicy = newPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Sets the cache policy for negative lookups if the user has not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * already specified a cache policy for it using a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * command-property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @param newPolicy the value in seconds for how long the lookup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * should be cached
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   187
    public static void setNegativeIfNotSet(int newPolicy) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
         * When setting the new value we may want to signal that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
         * cache should be flushed, though this doesn't seem strictly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
         * necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
         */
7023
9509e6a18f6e 6992859: InetAddressCachePolicy.setIfNotSet() fails
chegar
parents: 5506
diff changeset
   193
        if (!propertyNegativeSet) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            // Negative caching does not seem to have any security
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            // implications.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            // checkValue(newPolicy, negativeCachePolicy);
26199
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   197
            // but we should normalize negative policy
f30d82a2c06f 8049228: Improve multithreaded scalability of InetAddress cache
plevart
parents: 25859
diff changeset
   198
            negativeCachePolicy = newPolicy < 0 ? FOREVER : newPolicy;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    private static void checkValue(int newPolicy, int oldPolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
         * If malicious code gets a hold of this method, prevent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
         * setting the cache policy to something laxer or some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
         * invalid negative value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        if (newPolicy == FOREVER)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if ((oldPolicy == FOREVER) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            (newPolicy < oldPolicy) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            (newPolicy < FOREVER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            throw new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                SecurityException("can't make InetAddress cache more lax");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
}