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
|
/* GNUSecurityParameters.java -- SSL security parameters.
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 gnu.javax.net.ssl.provider;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.security.SecureRandom;
import java.security.Security;
import java.util.Arrays;
import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
import java.util.zip.Inflater;
import javax.net.ssl.SSLException;
import gnu.javax.crypto.mac.IMac;
import gnu.javax.crypto.mode.IMode;
import gnu.java.security.prng.IRandom;
import gnu.java.security.prng.LimitReachedException;
/**
* This class implements the {@link SecurityParameters} interface, using the
* GNU Crypto interface for ciphers and macs, and the JZlib package for
* record compression.
*/
class GNUSecurityParameters implements SecurityParameters
{
// Fields.
// -------------------------------------------------------------------------
private static final boolean DEBUG_RECORD_LAYER = false;
private static final PrintWriter debug = new PrintWriter (System.err, true);
/**
* The CBC block cipher, if any.
*/
IMode inCipher, outCipher;
/**
* The RC4 PRNG, if any.
*/
IRandom inRandom, outRandom;
/**
* The MAC algorithm.
*/
IMac inMac, outMac;
long inSequence, outSequence;
Session session;
ProtocolVersion version;
int fragmentLength;
private Inflater inflater;
private Deflater deflater;
// Constructors.
// -------------------------------------------------------------------------
GNUSecurityParameters (Session session)
{
inSequence = 0;
outSequence = 0;
this.session = session;
fragmentLength = 16384;
}
// Instance methods.
// -------------------------------------------------------------------------
public void reset()
{
inSequence = 0L;
outSequence = 0L;
inCipher = null;
outCipher = null;
inMac = null;
outMac = null;
inRandom = null;
outRandom = null;
deflater = null;
inflater = null;
}
public ProtocolVersion getVersion()
{
return version;
}
public void setVersion(ProtocolVersion version)
{
this.version = version;
}
public void setInCipher(Object inCipher)
{
if (inCipher instanceof IMode)
{
this.inCipher = (IMode) inCipher;
inRandom = null;
}
else
{
inRandom = (IRandom) inCipher;
this.inCipher = null;
}
}
public void setOutCipher(Object outCipher)
{
if (outCipher instanceof IMode)
{
this.outCipher = (IMode) outCipher;
outRandom = null;
}
else
{
outRandom = (IRandom) outCipher;
this.outCipher = null;
}
}
public void setInMac(Object inMac)
{
this.inMac = (IMac) inMac;
inSequence = 0L;
}
public void setOutMac(Object outMac)
{
this.outMac = (IMac) outMac;
outSequence = 0L;
}
public void setDeflating (boolean deflate)
{
if (deflate)
{
if (deflater == null)
deflater = new Deflater();
}
else
deflater = null;
}
public void setInflating (boolean inflate)
{
if (inflate)
{
if (inflater == null)
inflater = new Inflater();
}
else
inflater = null;
}
public int getFragmentLength()
{
return fragmentLength;
}
public void setFragmentLength (int fragmentLength)
{
this.fragmentLength = fragmentLength;
}
/**
* Decrypt, verify, and decompress a fragment, returning the transformed
* fragment.
*
* @param fragment The fragment to decrypt.
* @param version The protocol version of the fragment's record.
* @param type The content type of the record.
* @return The decrypted fragment.
* @throws MacException If the MAC could not be verified.
* @throws OverflowException If the inflated data is too large.
* @throws SSLException If decompressing fails.
*/
public synchronized byte[] decrypt (byte[] fragment, ProtocolVersion version,
ContentType type)
throws MacException, OverflowException, SSLException
{
boolean badPadding = false;
// Decrypt the ciphertext, if it is encrypted.
if (inCipher != null)
{
int bs = inCipher.currentBlockSize ();
for (int i = 0; i < fragment.length; i += bs)
{
inCipher.update (fragment, i, fragment, i);
}
int padLen = fragment[fragment.length-1] & 0xFF;
int len = fragment.length - padLen - 1;
if (version == ProtocolVersion.SSL_3)
{
// SSLv3 requires that the padding length not exceed the
// cipher's block size.
if (padLen >= bs)
{
badPadding = true;
}
}
else
{
for (int i = len; i < fragment.length; i++)
{
// If the TLS padding is wrong, throw a MAC exception below.
if ((fragment[i] & 0xFF) != padLen)
{
badPadding = true;
}
}
}
fragment = Util.trim (fragment, len);
}
else if (inRandom != null)
{
transformRC4 (fragment, 0, fragment.length, fragment, 0, inRandom);
}
// Check the MAC.
if (inMac != null)
{
inMac.update ((byte) (inSequence >>> 56));
inMac.update ((byte) (inSequence >>> 48));
inMac.update ((byte) (inSequence >>> 40));
inMac.update ((byte) (inSequence >>> 32));
inMac.update ((byte) (inSequence >>> 24));
inMac.update ((byte) (inSequence >>> 16));
inMac.update ((byte) (inSequence >>> 8));
inMac.update ((byte) inSequence);
inMac.update ((byte) type.getValue());
if (version != ProtocolVersion.SSL_3)
{
inMac.update ((byte) version.getMajor());
inMac.update ((byte) version.getMinor());
}
int macLen = inMac.macSize ();
int fragLen = fragment.length - macLen;
inMac.update ((byte) (fragLen >>> 8));
inMac.update ((byte) fragLen);
inMac.update (fragment, 0, fragLen);
byte[] mac = inMac.digest ();
inMac.reset ();
for (int i = 0; i < macLen; i++)
{
if (fragment[i + fragLen] != mac[i])
{
throw new MacException();
}
}
if (badPadding)
{
throw new MacException();
}
fragment = Util.trim (fragment, fragLen);
}
if (inflater != null)
{
byte[] buf = new byte[1024];
ByteArrayOutputStream bout = new ByteArrayOutputStream (fragment.length << 1);
inflater.setInput (fragment);
int len;
try
{
while ((len = inflater.inflate (buf)) > 0)
{
bout.write (buf, 0, len);
if (bout.size() > fragmentLength + 1024)
throw new OverflowException ("inflated data too large");
}
}
catch (DataFormatException dfe)
{
throw new SSLException (String.valueOf (dfe));
}
fragment = bout.toByteArray();
inflater.reset();
}
inSequence++;
return fragment;
}
/**
* Compress, MAC, encrypt, and write a record. The fragment of the
* record is taken from <i>buf</i> as <i>len</i> bytes starting at
* <i>offset</i>. <i>len</i> <b>must</b> be smaller than or equal to
* the configured fragment length.
*
* @param buf The fragment bytes.
* @param off The offset from whence to read.
* @param len The size of the fragment.
* @param type The content-type for this record.
* @param out The output stream to write the record to.
* @throws IOException If an I/O error occurs.
* @throws SSLException If compression fails.
* @throws OverflowException If compression inflates the data beyond
* the fragment length plus 1024 bytes.
*/
public synchronized byte[] encrypt (byte[] buf, int off, int len,
ContentType type)
throws SSLException, OverflowException
{
// If we are compressing, do it.
if (deflater != null)
{
byte[] buf2 = new byte[1024];
ByteArrayOutputStream bout = new ByteArrayOutputStream (len >>> 1);
deflater.setInput (buf, off, len);
deflater.finish();
len = 0;
while ((len = deflater.deflate (buf2)) > 0)
bout.write (buf2, 0, len);
// This should technically never happen for zlib.
if (bout.size() > fragmentLength + 1024)
throw new OverflowException ("deflated data too large");
buf = bout.toByteArray();
off = 0;
len = buf.length;
deflater.reset();
}
// If there is a MAC, compute it.
byte[] mac = new byte[0];
if (outMac != null)
{
outMac.update((byte) (outSequence >>> 56));
outMac.update((byte) (outSequence >>> 48));
outMac.update((byte) (outSequence >>> 40));
outMac.update((byte) (outSequence >>> 32));
outMac.update((byte) (outSequence >>> 24));
outMac.update((byte) (outSequence >>> 16));
outMac.update((byte) (outSequence >>> 8));
outMac.update((byte) outSequence);
outMac.update((byte) type.getValue());
if (version != ProtocolVersion.SSL_3)
{
outMac.update((byte) version.getMajor());
outMac.update((byte) version.getMinor());
}
outMac.update((byte) (len >>> 8));
outMac.update((byte) len);
outMac.update(buf, off, len);
mac = outMac.digest();
outMac.reset();
}
outSequence++;
// Compute padding if needed.
byte[] pad = new byte[0];
if (outCipher != null)
{
int padLen = outCipher.currentBlockSize() -
((len + mac.length + 1) % outCipher.currentBlockSize());
// Use a random amount of padding if the protocol is TLS.
if (version != ProtocolVersion.SSL_3 && session.random != null)
{
padLen += (Math.abs(session.random.nextInt ()) & 7) *
outCipher.currentBlockSize();
while (padLen > 255)
{
padLen -= outCipher.currentBlockSize();
}
}
pad = new byte[padLen+1];
Arrays.fill (pad, (byte) padLen);
}
// Write the record header.
final int fraglen = len + mac.length + pad.length;
// Encrypt and write the fragment.
if (outCipher != null)
{
byte[] buf2 = new byte[fraglen];
System.arraycopy (buf, off, buf2, 0, len);
System.arraycopy (mac, 0, buf2, len, mac.length);
System.arraycopy (pad, 0, buf2, len + mac.length, pad.length);
int bs = outCipher.currentBlockSize ();
for (int i = 0; i < fraglen; i += bs)
{
outCipher.update (buf2, i, buf2, i);
}
return buf2;
}
else if (outRandom != null)
{
byte[] buf2 = new byte[fraglen];
transformRC4 (buf, off, len, buf2, 0, outRandom);
transformRC4 (mac, 0, mac.length, buf2, len, outRandom);
return buf2;
}
else
{
if (mac.length == 0)
{
return Util.trim (buf, off, len);
}
else
{
return Util.concat (Util.trim (buf, off, len), mac);
}
}
}
// Own methods.
// -------------------------------------------------------------------------
/**
* Encrypt/decrypt a byte array with the RC4 stream cipher.
*
* @param in The input data.
* @param off The input offset.
* @param len The number of bytes to transform.
* @param out The output buffer.
* @param outOffset The offest into the output buffer.
* @param random The ARCFOUR PRNG.
*/
private static void transformRC4(byte[] in, int off, int len,
byte[] out, int outOffset, IRandom random)
{
if (random == null)
{
throw new IllegalStateException();
}
if (in == null || out == null)
{
throw new NullPointerException();
}
if (off < 0 || off + len > in.length ||
outOffset < 0 || outOffset + len > out.length)
{
throw new ArrayIndexOutOfBoundsException();
}
try
{
for (int i = 0; i < len; i++)
{
out[outOffset+i] = (byte) (in[off+i] ^ random.nextByte());
}
}
catch (LimitReachedException cannotHappen)
{
throw new Error(cannotHappen.toString());
}
}
}
|