src/java.base/share/classes/javax/net/ssl/SSLSessionContext.java
author ascarpino
Wed, 17 Jul 2019 14:37:50 -0700
changeset 57485 af4b0fc25bc4
parent 52764 8a85d21d9616
permissions -rw-r--r--
8226338: Updates to Stateless Resumption Reviewed-by: xuelei, jnimeh
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
57485
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
package javax.net.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * A <code>SSLSessionContext</code> represents a set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <code>SSLSession</code>s associated with a single entity. For example,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * it could be associated with a server or client who participates in many
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * sessions concurrently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p>
57485
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    38
 * Not all environments will contain session contexts.  For example, stateless
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    39
 * session resumption.
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    40
 * <p>
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    41
 * Session contexts may not contain all sessions. For example, stateless
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    42
 * sessions are not stored in the session context.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * There are <code>SSLSessionContext</code> parameters that affect how
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * sessions are stored:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *      <LI>Sessions can be set to expire after a specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *      time limit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *      <LI>The number of sessions that can be stored in context
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *      can be limited.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * </UL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * A session can be retrieved based on its session id, and all session id's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * in a <code>SSLSessionContext</code> can be listed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @see SSLSession
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @author Nathan Abramson
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @author David Brownell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
public interface SSLSessionContext {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * Returns the <code>SSLSession</code> bound to the specified session id.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * @param sessionId the Session identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * @return the <code>SSLSession</code> or null if
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * the specified session id does not refer to a valid SSLSession.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * @throws NullPointerException if <code>sessionId</code> is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    public SSLSession getSession(byte[] sessionId);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    /**
57485
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    75
     * Returns an Enumeration of all known session id's grouped under this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * <code>SSLSessionContext</code>.
57485
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    77
     * <p>Session contexts may not contain all sessions. For example,
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    78
     * stateless sessions are not stored in the session context.
af4b0fc25bc4 8226338: Updates to Stateless Resumption
ascarpino
parents: 52764
diff changeset
    79
     * <p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * @return an enumeration of all the Session id's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public Enumeration<byte[]> getIds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * Sets the timeout limit for <code>SSLSession</code> objects grouped
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * under this <code>SSLSessionContext</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * If the timeout limit is set to 't' seconds, a session exceeds the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * timeout limit 't' seconds after its creation time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * When the timeout limit is exceeded for a session, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * <code>SSLSession</code> object is invalidated and future connections
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * cannot resume or rejoin the session.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * A check for sessions exceeding the timeout is made immediately whenever
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * the timeout limit is changed for this <code>SSLSessionContext</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     *
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
    97
     * @apiNote Note that the JDK Implementation uses default values for both
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
    98
     *          the session cache size and timeout.  See
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
    99
     *          {@code getSessionCacheSize} and {@code getSessionTimeout} for
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   100
     *          more information.  Applications should consider their
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   101
     *          performance requirements and override the defaults if necessary.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   102
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @param seconds the new session timeout limit in seconds; zero means
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   104
     *        there is no limit.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     *
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   106
     * @throws IllegalArgumentException if the timeout specified is {@code < 0}.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   107
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * @see #getSessionTimeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public void setSessionTimeout(int seconds)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                 throws IllegalArgumentException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * Returns the timeout limit of <code>SSLSession</code> objects grouped
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * under this <code>SSLSessionContext</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * If the timeout limit is set to 't' seconds, a session exceeds the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * timeout limit 't' seconds after its creation time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * When the timeout limit is exceeded for a session, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * <code>SSLSession</code> object is invalidated and future connections
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * cannot resume or rejoin the session.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * A check for sessions exceeding the timeout limit is made immediately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * whenever the timeout limit is changed for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * <code>SSLSessionContext</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   126
     * @implNote The JDK implementation returns the session timeout as set by
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   127
     *           the {@code setSessionTimeout} method, or if not set, a default
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   128
     *           value of 86400 seconds (24 hours).
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   129
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @return the session timeout limit in seconds; zero means there is no
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   131
     *         limit.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   132
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @see #setSessionTimeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    public int getSessionTimeout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   138
     * Sets the size of the cache used for storing <code>SSLSession</code>
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   139
     * objects grouped under this <code>SSLSessionContext</code>.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   140
     *
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   141
     * @apiNote Note that the JDK Implementation uses default values for both
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   142
     *          the session cache size and timeout.  See
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   143
     *          {@code getSessionCacheSize} and {@code getSessionTimeout} for
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   144
     *          more information.  Applications should consider their
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   145
     *          performance requirements and override the defaults if necessary.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param size the new session cache size limit; zero means there is no
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   148
     *        limit.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   149
     *
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   150
     * @throws IllegalArgumentException if the specified size is {@code < 0}.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   151
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @see #getSessionCacheSize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public void setSessionCacheSize(int size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                 throws IllegalArgumentException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    /**
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   158
     * Returns the size of the cache used for storing <code>SSLSession</code>
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   159
     * objects grouped under this <code>SSLSessionContext</code>.
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   160
     *
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   161
     * @implNote The JDK implementation returns the cache size as set by
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   162
     *           the {@code setSessionCacheSize} method, or if not set, the
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   163
     *           value of the {@systemProperty javax.net.ssl.sessionCacheSize}
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   164
     *           system property.  If neither is set, it returns a default
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   165
     *           value of 20480.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @return size of the session cache; zero means there is no size limit.
52764
8a85d21d9616 8210985: Update the default SSL session cache size to 20480
xuelei
parents: 47216
diff changeset
   168
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @see #setSessionCacheSize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    public int getSessionCacheSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
}