summaryrefslogtreecommitdiff
path: root/javax/net/ssl/SSLEngine.java
blob: efab9725b593ca7aa893be829e805ed90406e43a (plain)
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
/* SSLEngine.java -- advanced, generic utility for manipulating SSL messages.
   Copyright (C) 2006  Free Software Foundation, Inc.

This file is a part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
USA

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version.  */


package javax.net.ssl;

import java.nio.ByteBuffer;

/**
 * A class for low-level message wrapping and unwrapping of SSL
 * messages.
 *
 * @author Casey Marshall (csm@gnu.org)
 * @since 1.5
 */
public abstract class SSLEngine
{
  private final String peerHost;
  private final int peerPort;

  /**
   * Creates a new SSLEngine with no peer host name or port number.
   */
  protected SSLEngine ()
  {
    this (null, -1);
  }

  /**
   * Creates a new SSLEngine with the specified peer host name and
   * port number.
   *
   * @param peerHost The peer's host name.
   * @param peerPort The peer's port number.
   */
  protected SSLEngine (String peerHost, int peerPort)
  {
    this.peerHost = peerHost;
    this.peerPort = peerPort;
  }



  /**
   * Begin, or restart, the SSL handshake.
   *
   * @throws SSLException
   */
  public abstract void beginHandshake () throws SSLException;

  /**
   * Close the inbound state.
   *
   * @throws SSLException
   */
  public abstract void closeInbound () throws SSLException;

  /**
   * Close the outbound state.
   */
  public abstract void closeOutbound ();

  /**
   *
   */
  public abstract Runnable getDelegatedTask ();

  /**
   * Returns the peer host name this SSL session is connected to, or
   * <code>null</code> if this value was not set.
   *
   * @return The peer host's name.
   */
  public String getPeerHost ()
  {
    return peerHost;
  }

  /**
   * Returns the peer IP port number this SSL session in communicating
   * on, or -1 if this value was not set.
   *
   * @return The peer's port number.
   */
  public int getPeerPort ()
  {
    return peerPort;
  }

  /**
   * Returns a list of SSL cipher suite names this SSLEngine is
   * configured to use.
   *
   * @return The list of enabled cipher suite names.
   */
  public abstract String[] getEnabledCipherSuites();

  /**
   * Returns a list of SSL protocol version names this SSLEngine is
   * configured to use.
   *
   * @return The list of enabled protocol names.
   */
  public abstract String[] getEnabledProtocols ();

  /**
   * Tells if sessions will be created by this engine, and therefore
   * may be resumed at a later time.
   *
   * @return True if sessions will be created.
   */
  public abstract boolean getEnableSessionCreation();

  /**
   * Return the current handshake status.
   *
   * @return The current handshake status.
   */
  public abstract SSLEngineResult.HandshakeStatus getHandshakeStatus ();

  /**
   * Tells if this SSLEngine is configured to require client
   * authentication when in server mode.
   *
   * @return True iff client authentication is required.
   */
  public abstract boolean getNeedClientAuth ();

  /**
   * Return the {@link SSLSession} object this connection represents.
   *
   * @return The SSL session.
   */
  public abstract SSLSession getSession ();

  /**
   * Returns a list of SSL cipher suite names this SSLEngine
   * implementation supports.
   *
   * @return The list of cipher suite names supported by this
   * implementation.
   */
  public abstract String[] getSupportedCipherSuites ();

  /**
   * Returns a list of SSL protocol version names this SSLEngine
   * implementation supports. SSL protocol names include things like
   * "SSLv3" or "TLSv1".
   *
   * @return The list of SSL protocol names
   */
  public abstract String[] getSupportedProtocols ();

  /**
   * Tells if this SSLEngine is a "client" session.
   *
   * @return True iff this session is configured for client mode.
   */
  public abstract boolean getUseClientMode ();

  /**
   * Tells if client authentication is requested, but not required,
   * for sessions in server mode. If true, a server session will
   * request an authentication message from connecting clients, but
   * will still allow clients to connect if they cannot be
   * authenticated.
   *
   * @return True iff client authentication is requested.
   */
  public abstract boolean getWantClientAuth ();

  /**
   * Tells if the incoming data stream is finished, and thus if no
   * more data will be available to be unwrapped.
   *
   * @return True if no more data is to be unwrapped.
   */
  public abstract boolean isInboundDone ();

  /**
   * Tells if the outgoing data stream is finished, and thus if no
   * more data may be wrapped.
   *
   * @return True if no more data may be wrapped.
   */
  public abstract boolean isOutboundDone ();

  /**
   * Sets the list of enabled cipher suites. The argument is an array
   * of strings of the canonical suite names.
   *
   * @param suites The cipher suites to enable.
   * @throws IllegalArgumentException If any of the specified suite
   * strings is not supported by this implementation, or if the
   * argument is null.
   */
  public abstract void setEnabledCipherSuites (String[] suites);

  /**
   * Sets the list of enabled protocol versions. The argument is an
   * array of strings of the canonical protocol version names, such as
   * "TLSv1".
   *
   * @param protocols The protocol versions to enable.
   * @throws IllegalArgumentException If any of the specified
   * protocols are not supported, or if the argument is null.
   */
  public abstract void setEnabledProtocols (String[] protocols);

  /**
   * Enables or disables session creation. If enabled, each connection
   * will create session that may be resumed by another connection.
   *
   * @param create Whether or not to enable session creation.
   */
  public abstract void setEnableSessionCreation (boolean create);

  /**
   * Enables client or server mode. If the argument is true, this
   * engine will run in client mode; if false, server mode.
   *
   * @param clientMode Whether or not to use client mode.
   */
  public abstract void setUseClientMode (boolean clientMode);

  /**
   * Enables or disables required client authentication. If enabled,
   * clients may only connect if they provide proper identification.
   *
   * <p>This parameter is only used in server mode.
   *
   * @param needAuth Whether or not client authentication is required.
   */
  public abstract void setNeedClientAuth (boolean needAuth);

  /**
   * Enables or disables requested client authentication. If enabled,
   * clients will be asked to provide proper identification, but will
   * still be allowed to connect if they do not provide it.
   *
   * <p>This parameter is only used in server mode.
   *
   * @param wantAuth Whether or not client authentication will be
   * requested, but not required.
   */
  public abstract void setWantClientAuth (boolean wantAuth);

  /**
   * Unwraps a byte buffer recieved from the network, storing the
   * decrypted, unwrapped bytes into the given buffer.
   *
   * <p>This call is exactly equivalent to <code>unwrap (source, new
   * ByteBuffer[] { sink }, 0, 1)</code>.
   *
   * @param source The source bytes, coming from the network.
   * @param sink The buffer to hold the unwrapped message.
   * @return An engine result object for the operation.
   * @throws SSLException If an SSL message parsing error occurs.
   * @throws java.nio.ReadOnlyBufferException If 'sink' is not
   * writable.
   * @throws IllegalArgumentException If either 'source' or 'sink' is
   * null.
   * @throws IllegalStateException If this engine has not been put
   * into client or server mode.
   */
  public SSLEngineResult unwrap (ByteBuffer source, ByteBuffer sink)
    throws SSLException
  {
    return unwrap (source, new ByteBuffer[] { sink }, 0, 1);
  }

  /**
   * Unwraps a byte buffer recieved from the network, storing the
   * decrypted, unwrapped bytes into the given buffers.
   *
   * <p>This call is exactly equivalent to <code>unwrap (source,
   * sinks, 0, sinks.length)</code>.
   *
   * @param source The source bytes, coming from the network.
   * @param sinks The buffers to hold the unwrapped message.
   * @return An engine result object for the operation.
   * @throws SSLException If an SSL message parsing error occurs.
   * @throws java.nio.ReadOnlyBufferException If any buffer in 'sinks'
   * is not writable.
   * @throws IllegalArgumentException If either 'source' or 'sinks' is
   * null.
   * @throws IllegalStateException If this engine has not been put
   * into client or server mode.
   */
  public SSLEngineResult unwrap (ByteBuffer source, ByteBuffer[] sinks)
    throws SSLException
  {
    return unwrap (source, sinks, 0, sinks.length);
  }

  /**
   * Unwraps a byte buffer received from the network, storing the
   * decrypted, unwrapped bytes into the given buffers. After
   * unwrapping, the bytes placed into the sink buffers are ready for
   * consumption by the application.
   *
   * <p>This method may place no bytes in the destination buffer; for
   * example, if this engine is still performing the SSL handshake,
   * only handshake data will be consumed, and no application data.
   *
   * <p>It is stated that this method may modify the source buffer,
   * and that it must not be passed to another SSLEngine (SSL
   * connections are independent, so another SSLEngine will not have
   * the parameters or state to handle messages meant for this
   * engine).
   *
   * @param source The source bytes, coming from the network.
   * @param sinks The buffers to hold the unwrapped message.
   * @param offset The index of the first buffer in 'sinks' to use.
   * @param length The number of buffers in 'sinks' to use.
   * @return An engine result object for the operation.
   * @throws SSLException If an SSL message parsing error occurs.
   * @throws java.nio.ReadOnlyBufferException If any buffer in 'sinks'
   * is not writable.
   * @throws IllegalArgumentException If either 'source' or 'sinks' is
   * null.
   * @throws IllegalStateException If this engine has not been put
   * into client or server mode.
   * @throws IndexOutOfBoundsException If 'offset' or 'length' is
   * negative, or if 'length+offset' is greater than 'sinks.length'.
   */
  public abstract SSLEngineResult unwrap (ByteBuffer source,
					  ByteBuffer[] sinks, int offset,
					  int length)
    throws javax.net.ssl.SSLException;

  /**
   * Wraps a byte buffer into an SSL message, for preparation to send
   * it over the network.
   *
   * <p>This method is exactly equivalent to <code>wrap (new
   * ByteBuffer[] { source }, 0, 1, sink)</code>.
   *
   * @param source The source buffer with application data.
   * @param sink The buffer to hold the wrapped data.
   * @return An engine result object for the operation.
   * @throws SSLException If an SSL error occurs.
   * @throws java.nio.ReadOnlyBufferException If 'sink' is read-only.
   * @throws IllegalArgumentException If either 'source' or 'sink' is
   * null.
   * @throws IllegalStateException If this engine has not been put
   * into client or server mode.
   */
  public SSLEngineResult wrap (ByteBuffer source, ByteBuffer sink)
    throws SSLException
  {
    return wrap (new ByteBuffer[] { source }, 0, 1, sink);
  }

  /**
   * Wraps byte buffers into an SSL message, for preparation to send
   * them over the network.
   *
   * <p>This method is exactly equivalent to <code>wrap (sources, 0,
   * 1, sink)</code>.
   *
   * @param sources The source buffers with application data.
   * @param sink The buffer to hold the wrapped data.
   * @return An engine result object for the operation.
   * @throws SSLException If an SSL error occurs.
   * @throws java.nio.ReadOnlyBufferException If 'sink' is read-only.
   * @throws IllegalArgumentException If either 'sources' or 'sink' is
   * null.
   * @throws IllegalStateException If this engine has not been put
   * into client or server mode.
   */
  public SSLEngineResult wrap (ByteBuffer[] sources, ByteBuffer sink)
    throws SSLException
  {
    return wrap (sources, 0, sources.length, sink);
  }

  /**
   * Wraps byte buffers into an SSL message, for preparation to send
   * them over the network. After wrapping, the data in the sink
   * buffer is ready to be sent over the transport layer.
   *
   * <p>This method may consume no data from the source buffers, and
   * yet still produce output that should be sent accross the wire;
   * for example if this engine has not yet completed the SSL
   * handshake, the sink buffer will be filled with handshake
   * messages.
   *
   * @param sources The source buffers with application data.
   * @param offset The offset into the source buffers to start reading
   * application data.
   * @param length The number of buffers to read from 'sources'.
   * @param sink The buffer to hold the wrapped data.
   * @return An engine result object for the operation.
   * @throws SSLException If an SSL error occurs.
   * @throws java.nio.ReadOnlyBufferException If 'sink' is read-only.
   * @throws IllegalArgumentException If either 'sources' or 'sink' is
   * null.
   * @throws IllegalStateException If this engine has not been put
   * into client or server mode.
   * @throws IndexOutOfBoundsException If 'offset' or 'length' is
   * negative, or if 'length+offset' is greater than 'sources.length'.
   */
  public abstract SSLEngineResult wrap (ByteBuffer[] sources, int offset,
					int length, ByteBuffer sink)
    throws SSLException;

}