summaryrefslogtreecommitdiffstats
path: root/pki/base/util/src/netscape/security/util/DerValue.java
blob: bc2bf45e3f1c75fd7e9f029a9e9cdf291a66f13b (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
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
// --- BEGIN COPYRIGHT BLOCK ---
// This program 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; version 2 of the License.
//
// This program 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 this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package netscape.security.util;

import java.io.*;
import java.util.*;

import sun.io.ByteToCharConverter;

import netscape.security.x509.AVAValueConverter;
import netscape.security.x509.GenericValueConverter;

/**
 * Represents a single DER-encoded value.  DER encoding rules are a subset
 * of the "Basic" Encoding Rules (BER), but they only support a single way
 * ("Definite" encoding) to encode any given value.
 *
 * <P>All DER-encoded data are triples <em>{type, length, data}</em>.  This
 * class represents such tagged values as they have been read (or constructed),
 * and provides structured access to the encoded data.
 *
 * <P>At this time, this class supports only a subset of the types of DER
 * data encodings which are defined.  That subset is sufficient for parsing
 * most X.509 certificates, and working with selected additional formats
 * (such as PKCS #10 certificate requests, and some kinds of PKCS #7 data).
 *
 * @version 1.43
 *
 * @author David Brownell
 * @author Amit Kapoor
 * @author Hemma Prafullchandra
 */
public class DerValue {
    /** The tag class types */
    public static final byte TAG_UNIVERSAL = (byte)0x000;
    public static final byte TAG_APPLICATION = (byte)0x040;
    public static final byte TAG_CONTEXT = (byte)0x080;
    public static final byte TAG_PRIVATE = (byte)0x0c0;

    /** The DER tag of the value; one of the tag_ constants. */
    public byte			tag;

    protected DerInputBuffer	buffer;

    /**
     * The DER-encoded data of the value.
     */
    public DerInputStream 	data;

    private int 		length;

    /*
     * The type starts at the first byte of the encoding, and
     * is one of these tag_* values.  That may be all the type
     * data that is needed.
     */

    /*
     * These tags are the "universal" tags ... they mean the same
     * in all contexts.  (Mask with 0x1f -- five bits.)
     */

    /** Tag value indicating an ASN.1 "BOOLEAN" value. */
    public final static byte	tag_Boolean = 0x01;

    /** Tag value indicating an ASN.1 "INTEGER" value. */
    public final static byte	tag_Integer = 0x02;

    /** Tag value indicating an ASN.1 "BIT STRING" value. */
    public final static byte	tag_BitString = 0x03;

    /** Tag value indicating an ASN.1 "OCTET STRING" value. */
    public final static byte	tag_OctetString = 0x04;

    /** Tag value indicating an ASN.1 "NULL" value. */
    public final static byte	tag_Null = 0x05;

    /** Tag value indicating an ASN.1 "OBJECT IDENTIFIER" value. */
    public final static byte	tag_ObjectId = 0x06;

    /** Tag value including an ASN.1 "ENUMERATED" value */
    public final static byte	tag_Enumerated = 0x0A;

    /** Tag value including a "printable" string */
    public final static byte	tag_PrintableString = 0x13;

    public final static byte	tag_VisibleString = 0x1A;

    /** Tag value including a "teletype" string */
    public final static byte	tag_T61String = 0x14;

    /** Tag value including an ASCII string */
    public final static byte	tag_IA5String = 0x16;

    /** Tag value indicating an ASN.1 "UTCTime" value. */
    public final static byte	tag_UtcTime = 0x17;

    /** Tag value indicating an ASN.1 "GeneralizedTime" value. */
    public final static byte	tag_GeneralizedTime = 0x18;

    /** Tag value indicating an ASN.1 "GeneralString" value. */
    public final static byte    tag_GeneralString = 0x1B;

    /** Tag value indicating an ASN.1 "BMPString" value. */
    public final static byte    tag_BMPString = 0x1E;

    /** Tag value indicating an ASN.1 "UniversalString" value. */
    public final static byte    tag_UniversalString = 0x1C;

    /** Tag value indicating an ASN.1 "UTF8String" value. (since 1998) */
    public final static byte    tag_UTF8String = 0x0C;

    // CONSTRUCTED seq/set

    /** Tag value indicating an ASN.1
     * "SEQUENCE" (zero to N elements, order is significant). */
    public final static byte	tag_Sequence = 0x30;

    /** Tag value indicating an ASN.1
     * "SEQUENCE OF" (one to N elements, order is significant). */
    public final static byte	tag_SequenceOf = 0x30;

    /** Tag value indicating an ASN.1
     * "SET" (zero to N members, order does not matter). */
    public final static byte	tag_Set = 0x31;

    /** Tag value indicating an ASN.1
     * "SET OF" (one to N members, order does not matter). */
    public final static byte	tag_SetOf = 0x31;

    /*
     * These values are the high order bits for the other kinds of tags.
     */
    boolean isUniversal()      { return ((tag & 0x0c0) == 0x000); }
    boolean isApplication()    { return ((tag & 0x0c0) == 0x040); }

    /**
     * Returns true iff the CONTEXT SPECIFIC bit is set in the type tag.
     * This is associated with the ASN.1 "DEFINED BY" syntax.
     */
    public boolean isContextSpecific() { return ((tag & 0x0c0) == 0x080); }

    /**
     * Returns true iff the CONTEXT SPECIFIC TAG matches the passed tag.
     */
    public boolean isContextSpecific(byte cntxtTag) {
        if (!isContextSpecific ()) {
            return false;
        }
        return ((tag & 0x01f) == cntxtTag);
    }

    boolean isPrivate()        { return ((tag & 0x0c0) == 0x0c0); }

    /** Returns true iff the CONSTRUCTED bit is set in the type tag. */
    public boolean isConstructed()    { return ((tag & 0x020) == 0x020); }

    /**
     * Creates a DER value from a string
     * using a generic way of determining the proper tag for the string.
     * Assumes the string is a Generic attribute value and uses
     * the converter for generic string values to convert to the Der Value.
     */
    public DerValue (String value)
    throws IOException
    {
	AVAValueConverter genericValue = new GenericValueConverter();
	DerValue val;

	val = genericValue.getValue(value);
	tag = val.tag;
	buffer = val.buffer;
	length = val.length;
	data = val.data;
	data.mark (Integer.MAX_VALUE);
    }

    /**
     * Creates a DerValue from a tag and some DER-encoded data.
     *
     * @param tag the DER type tag
     * @param data the DER-encoded data
     */
    public DerValue(byte tag, byte[] data) {
	this.tag = tag;
	buffer = new DerInputBuffer((byte[])data.clone());
	length = data.length;
	this.data = new DerInputStream (buffer);
	this.data.mark (Integer.MAX_VALUE);
    }

    /*
     * package private
     */
    DerValue(DerInputBuffer in) throws IOException {
	// NOTE:  This must handle the special value used
	// to terminate BER indefinite encodings (tag and
	// length are both zero)

	// XXX must also parse BER-encoded constructed
	// values such as sequences, sets...

	tag = (byte) in.read ();
	length = DerInputStream.getLength (in);

	buffer = in.dup ();
	buffer.truncate (length);
	data = new DerInputStream (buffer);

	in.skip (length);
    }

    /**
     * Get an ASN.1/DER encoded datum from a buffer.  The
     * entire buffer must hold exactly one datum, including
     * its tag and length.
     *
     * @param buf buffer holding a single DER-encoded datum.
     */
    public DerValue(byte[] buf) throws IOException {
	init (true, new ByteArrayInputStream (buf));
    }

    /**
     * Get an ASN.1/DER encoded datum from part of a buffer.
     * That part of the buffer must hold exactly one datum, including
     * its tag and length.
     *
     * @param buf the buffer
     * @param offset start point of the single DER-encoded dataum
     * @param length how many bytes are in the encoded datum
     */
    public DerValue(byte[] buf, int offset, int len) throws IOException {
	init (true, new ByteArrayInputStream (buf, offset, len));
    }

    /**
     * Get an ASN1/DER encoded datum from an input stream.  The
     * stream may have additional data following the encoded datum.
     *
     * @param in the input stream holding a single DER datum,
     *	which may be followed by additional data
     */
    public DerValue(InputStream in) throws IOException {
	init (false, in);
    }

    /*
     * helper routine
     */
    private void init (boolean fullyBuffered, InputStream in)
    throws IOException {
 	byte[]	bytes;

	tag = (byte) in.read ();
	length = DerInputStream.getLength (in);

        /*
 	if (length == 0)
 	    return;
        */

	if (fullyBuffered && in.available () != length)
 	    throw new IOException ("extra DER value data (constructor)");

	bytes = new byte [length];

	// n.b. readFully not needed in normal fullyBuffered case
	DataInputStream		dis = new DataInputStream (in);

	dis.readFully (bytes);
	buffer = new DerInputBuffer (bytes);
 	data = new DerInputStream (buffer);
    }

    /**
     * Encode an ASN1/DER encoded datum onto a DER output stream.
     */
    public void encode(DerOutputStream out)
    throws IOException {
	out.write (tag);
	out.putLength (length);
	buffer.dump(out,length);

    }

    /**
     * Returns an ASN.1 BOOLEAN
     *
     * @return the boolean held in this DER value
     */
    public boolean getBoolean() throws IOException {
        if (tag != tag_Boolean) {
            throw new IOException ("DerValue.getBoolean, not a BOOLEAN " + tag);
        }
        if (length != 1) {
            throw new IOException ("DerValue.getBoolean, invalid length " + length);
        }
        if (buffer.read() != 0) {
            return true;
        }
        return false;
    }

    /**
     * Returns an ASN.1 OBJECT IDENTIFIER.
     *
     * @return the OID held in this DER value
     */
    public ObjectIdentifier getOID() throws IOException {
	if (tag != tag_ObjectId)
            throw new IOException ("DerValue.getOID, not an OID " + tag);
	return new ObjectIdentifier (buffer);
    }

    /**
     * Returns an ASN.1 OCTET STRING
     *
     * @return the octet string held in this DER value
     */
    public byte[] getOctetString() throws IOException {
	if (tag != tag_OctetString)
	    throw new IOException (
		"DerValue.getOctetString, not an Octet String: " + tag);

	byte [] bytes = new byte [length];

	if (buffer.read(bytes) != length)
	    throw new IOException("short read on DerValue buffer");
	return bytes;
    }

    /**
     * Returns an ASN.1 unsigned integer value of enumerated value.
     *
     * @return the (unsigned) integer held in this DER value
     */
    public int getEnumerated ()
    throws IOException
    {
        if (tag != tag_Enumerated)
            throw new IOException ("DerValue.getEnumerated, not an ENUMERATED " + tag);
        if (length == 0)
            return 0;
    	if (length > 4 || length < 1)
	        throw new IOException("DerValue.getEnumerated, invalid length " + length + "(must be between 1 and 4)");

	    int value = 0;
	    int nextbyte = buffer.read();
	    if (nextbyte == -1)
    	    throw new IOException("short read on DerValue buffer");
	    // perform sign extension
    	value = (byte) nextbyte;

	    for (int i = length - 1; i > 0; --i) {
	        nextbyte = buffer.read();
    	    if (nextbyte == -1)
        	    throw new IOException("short read on DerValue buffer");
	        value = 256 * value + nextbyte;
	    }
    	return value;
    }

    /**
     * Returns an ASN.1 unsigned INTEGER value.
     *
     * @return the (unsigned) integer held in this DER value
     */
    public BigInt getInteger() throws IOException {
        if (tag != tag_Integer)
            throw new IOException ("DerValue.getInteger, not an int " + tag);
	return buffer.getUnsigned (data.available ());
    }

    /**
     * Returns an ASN.1 unsigned INTEGER value, the parameter determining
     * if the tag is implicit.
     *
     * @param tagImplicit if true, ignores the tag value as it is
     *         assumed implicit.
     * @return the (unsigned) integer held in this DER value
     */
     public BigInt getInteger(boolean tagImplicit) throws IOException {
         if (!tagImplicit) {
             if (tag != tag_Integer) {
                 throw new IOException("DerValue.getInteger, not an int "
                                       + tag);
             }
         }
         return buffer.getUnsigned (data.available ());
     }

    /**
     * Returns an ASN.1 BIT STRING value.  The bit string must be byte-aligned. 
     *
     * @return the bit string held in this value
     */
    public byte[] getBitString() throws IOException {
	if (tag != tag_BitString)
            throw new IOException (
		"DerValue.getBitString, not a bit string " + tag);

	return buffer.getBitString ();
    }

    /**
     * Returns an ASN.1 BIT STRING value that need not be byte-aligned.
     *
     * @return a BitArray representing the bit string held in this value
     */
    public BitArray getUnalignedBitString() throws IOException {
	if (tag != tag_BitString)
            throw new IOException(
		"DerValue.getBitString, not a bit string " + tag);
	
	return buffer.getUnalignedBitString();
    }

    /**
     * Returns the name component as a Java string, regardless of its
     * encoding restrictions (ASCII, T61, Printable, etc).
     */
    public String getAsString () throws IOException
    {
	AVAValueConverter genericValue = new GenericValueConverter();
	return genericValue.getAsString(this);
    }

    /**
     * Returns an ASN.1 BIT STRING value, with the tag assumed implicit
     * based on the parameter.  The bit string must be byte-aligned.
     *
     * @param tagImplicit if true, the tag is assumed implicit.
     * @return the bit string held in this value
     */
    public byte[] getBitString(boolean tagImplicit) throws IOException {
        if (!tagImplicit) {
            if (tag != tag_BitString)
                throw new IOException ("DerValue.getBitString, not a bit string "
                                       + tag);
            }
        return buffer.getBitString ();
    }

    /**
     * Returns an ASN.1 BIT STRING value, with the tag assumed implicit
     * based on the parameter.  The bit string need not be byte-aligned.
     *
     * @param tagImplicit if true, the tag is assumed implicit.
     * @return the bit string held in this value
     */
    public BitArray getUnalignedBitString(boolean tagImplicit)
    throws IOException {
        if (!tagImplicit) {
            if (tag != tag_BitString)
                throw new IOException("DerValue.getBitString, not a bit string "
                                       + tag);
            }
        return buffer.getUnalignedBitString();
    }

    /**
     * Returns an ASN.1 STRING value
     *
     * @return the printable string held in this value
     */
    public String getPrintableString ()
    throws IOException {
	if (tag != tag_PrintableString)
            throw new IOException (
		"DerValue.getPrintableString, not a string " + tag);

	return getASN1CharString();
    }

    /*
     * Internal utility ... returns a string regardless of what
     * restrictions have been placed on its encoding.
     */
    private String simpleGetString() throws IOException {
	StringBuffer s = new StringBuffer(length);
	try {
	    int temp = length;

	    data.reset ();
	    while (temp-- > 0)
		s.append ((char) data.getByte ());
	} catch (IOException e) {
	    return null;
	}
	return new String (s);
    }

    /*
     * @eturns a string if the DerValue is a ASN.1 character string type and
     * if there is a ByteToChar converter for the type. Returns null otherwise.
     */
    public String getASN1CharString()
	throws IOException
    {
	ByteToCharConverter bcc;
	int ret;
	byte buf[];
	char cbuf[];

	try {
	    bcc = ASN1CharStrConvMap.getDefault().getBCC(tag);
	    if (bcc == null)
		return null;

	    buf = new byte[length];
	    cbuf = new char[bcc.getMaxCharsPerByte()*length];
	    data.reset();
	    data.getBytes(buf);
	    ret = bcc.convert(buf, 0, buf.length, cbuf, 0, cbuf.length);
	}
	catch (java.io.CharConversionException e) {
	    throw new IOException("Misformed DER value");
	}
	catch (IllegalAccessException e) {
	    throw new IOException("Illegal Access loading ByteToCharConverter");
	}
	catch (InstantiationException e) {
	    throw new IOException("Cannot instantiate ByteToCharConverter");
	}
	return new String(cbuf, 0, ret);
    }

    /**
     * Returns an ASN.1 T61 (Teletype) STRING value
     *
     * @return the teletype string held in this value
     */
    public String getT61String() throws IOException {
	if (tag != tag_T61String)
            throw new IOException (
		"DerValue.getT61String, not T61 " + tag);

	return getASN1CharString ();
    }

    /**
     * Returns an ASN.1 IA5 (ASCII) STRING value
     *
     * @return the ASCII string held in this value
     */
    public String getIA5String() throws IOException {
	if (tag != tag_IA5String)
            throw new IOException (
		"DerValue.getIA5String, not IA5 " + tag);

	return getASN1CharString ();
    }

    public String getBMPString ()
    throws IOException
    {
	if (tag != tag_BMPString)
            throw new IOException (
		"DerValue.getBMPString, not BMP " + tag);

	return getASN1CharString ();
    }

    public String getUniversalString ()
    throws IOException
    {
	if (tag != tag_UniversalString)
            throw new IOException (
		"DerValue.getUniversalString, not UniversalString " + tag);

	return getASN1CharString ();
    }

    public String getUTF8String ()
    throws IOException
    {
	if (tag != tag_UTF8String)
            throw new IOException (
		"DerValue.getUTF8String, not UTF8String " + tag);

	return getASN1CharString ();
    }

    /**
     * Returns true iff the other object is a DER value which
     * is bitwise equal to this one.
     *
     * @param other the object being compared with this one
     */
    public boolean equals(Object other) {
	if (other instanceof DerValue)
	    return equals ((DerValue)other);
	else
	    return false;
    }

    /**
     * Bitwise equality comparison.  DER encoded values have a single
     * encoding, so that bitwise equality of the encoded values is an
     * efficient way to establish equivalence of the unencoded values.
     *
     * @param other the object being compared with this one
     */
    public boolean equals(DerValue other) {
	data.reset ();
	other.data.reset();
	if (this == other)
	    return true;
	else if (tag != other.tag) {
	    return false;
	} else {
	    return buffer.equals (other.buffer);
	}
    }

    /**
     * Returns a printable representation of the value.
     *
     * @return printable representation of the value
     */
    public String toString() {
	try {
	    String s = getAsString();
	    if (s != null)
		return s;
	    if (tag == tag_Null)
		return "[DerValue, null]";
	    if (tag == tag_ObjectId)
		return "OID." + getOID ();

	    // integers
	    else
		return "[DerValue, tag = " + tag
			+ ", length = " + length + "]";
	} catch (IOException e) {
	    throw new IllegalArgumentException ("misformatted DER value");
	}
    }

    /**
     * Returns a DER-encoded value, such that if it's passed to the
     * DerValue constructor, a value equivalent to "this" is returned.
     *
     * @return DER-encoded value, including tag and length.
     */
    public byte[] toByteArray() throws IOException {
	DerOutputStream		out = new DerOutputStream ();

	encode (out);
	data.reset ();
	return out.toByteArray ();
    }

    /**
     * For "set" and "sequence" types, this function may be used
     * to return a DER stream of the members of the set or sequence.
     * This operation is not supported for primitive types such as
     * integers or bit strings.
     */
    public DerInputStream toDerInputStream() throws IOException {
	if (tag == tag_Sequence || tag == tag_Set)
	    return new DerInputStream (buffer);
	throw new IOException ("toDerInputStream rejects tag type " + tag);
    }

    /**
     * Get the length of the encoded value.
     */
    public int length() {
	return length;
    }

    /**
     * Create the tag of the attribute.
     *
     * @param class the tag class type, one of UNIVERSAL, CONTEXT,
     *               APPLICATION or PRIVATE
     * @param form if true, the value is constructed, otherwise it
     * is primitive.
     * @param val the tag value
     */
    public static byte createTag(byte tagClass, boolean form, byte val) {
        byte tag = (byte) (tagClass | val);
        if (form) {
            tag |= (byte)0x20;
        }
        return (tag);
    }

    /**
     * Set the tag of the attribute. Commonly used to reset the
     * tag value used for IMPLICIT encodings.
     *
     * @param tag the tag value
     */
    public void resetTag(byte tag) {
        this.tag = tag;
    }
}