mirrored from https://www.bouncycastle.org/repositories/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathBCPGInputStream.java
443 lines (395 loc) · 11 KB
/
BCPGInputStream.java
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
package org.bouncycastle.bcpg;
import java.io.BufferedInputStream;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import org.bouncycastle.util.io.Streams;
/**
* Stream reader for PGP objects
*/
public class BCPGInputStream
extends InputStream
implements PacketTags
{
/**
* If the argument is a {@link BCPGInputStream}, return it.
* Otherwise wrap it in a {@link BCPGInputStream} and then return the result.
*
* @param in input stream
* @return BCPGInputStream
*/
public static BCPGInputStream wrap(InputStream in)
{
if (in instanceof BCPGInputStream)
{
return (BCPGInputStream)in;
}
return new BCPGInputStream(in);
}
InputStream in;
boolean next = false;
int nextB;
boolean mNext = false;
int mNextB;
public BCPGInputStream(
InputStream in)
{
this.in = in;
}
public int available()
throws IOException
{
return in.available();
}
public boolean markSupported()
{
return in.markSupported();
}
public synchronized void mark(int readLimit)
{
mNext = next;
mNextB = nextB;
in.mark(readLimit);
}
public synchronized void reset()
throws IOException
{
next = mNext;
nextB = mNextB;
in.reset();
}
public int read()
throws IOException
{
if (next)
{
next = false;
return nextB;
}
else
{
return in.read();
}
}
public int read(
byte[] buf,
int off,
int len)
throws IOException
{
if (len == 0)
{
return 0;
}
if (!next)
{
return in.read(buf, off, len);
}
// We have next byte waiting, so return it
if (nextB < 0)
{
return -1; // EOF
}
buf[off] = (byte)nextB; // May throw NullPointerException...
next = false; // ...so only set this afterwards
return 1;
}
public void readFully(
byte[] buf,
int off,
int len)
throws IOException
{
if (Streams.readFully(this, buf, off, len) < len)
{
throw new EOFException();
}
}
public byte[] readAll()
throws IOException
{
return Streams.readAll(this);
}
public void readFully(
byte[] buf)
throws IOException
{
readFully(buf, 0, buf.length);
}
/**
* Obtains the tag of the next packet in the stream.
*
* @return the {@link PacketTags tag number}.
* @throws IOException if an error occurs reading the tag from the stream.
*/
public int nextPacketTag()
throws IOException
{
if (!next)
{
try
{
nextB = this.read();
}
catch (EOFException e)
{
nextB = -1;
}
next = true;
}
if (nextB < 0)
{
return nextB;
}
int maskB = nextB & 0x3f;
if ((nextB & 0x40) == 0) // old
{
maskB >>= 2;
}
return maskB;
}
/**
* Reads the next packet from the stream.
*
* @throws IOException
*/
public Packet readPacket()
throws IOException
{
int hdr = this.read();
if (hdr < 0)
{
return null;
}
if ((hdr & 0x80) == 0)
{
throw new IOException("invalid header encountered");
}
boolean newPacket = (hdr & 0x40) != 0;
int tag = 0;
int bodyLen = 0;
boolean partial = false;
if (newPacket)
{
tag = hdr & 0x3f;
boolean[] flags = new boolean[3];
bodyLen = StreamUtil.readBodyLen(this, flags);
partial = flags[StreamUtil.flag_partial];
if (partial && bodyLen < 512)
{
throw new IOException("First chunk of partial body MUST have a length of at least 512 octets.");
}
}
else
{
int lengthType = hdr & 0x3;
tag = (hdr & 0x3f) >> 2;
switch (lengthType)
{
case 0:
bodyLen = this.read();
break;
case 1:
bodyLen = StreamUtil.read2OctetLength(this);
break;
case 2:
bodyLen = StreamUtil.read4OctetLength(this);
break;
case 3:
partial = true;
break;
default:
throw new IOException("unknown length type encountered");
}
}
BCPGInputStream objStream;
if (bodyLen == 0 && partial)
{
objStream = this;
}
else
{
objStream = new BCPGInputStream(
new BufferedInputStream(new PartialInputStream(this, partial, bodyLen)));
}
switch (tag)
{
case RESERVED:
return new ReservedPacket(objStream, newPacket);
case PUBLIC_KEY_ENC_SESSION:
return new PublicKeyEncSessionPacket(objStream, newPacket);
case SIGNATURE:
return new SignaturePacket(objStream, newPacket);
case SYMMETRIC_KEY_ENC_SESSION:
return new SymmetricKeyEncSessionPacket(objStream, newPacket);
case ONE_PASS_SIGNATURE:
return new OnePassSignaturePacket(objStream, newPacket);
case SECRET_KEY:
return new SecretKeyPacket(objStream, newPacket);
case PUBLIC_KEY:
return new PublicKeyPacket(objStream, newPacket);
case SECRET_SUBKEY:
return new SecretSubkeyPacket(objStream, newPacket);
case COMPRESSED_DATA:
return new CompressedDataPacket(objStream, newPacket);
case SYMMETRIC_KEY_ENC:
return new SymmetricEncDataPacket(objStream, newPacket);
case MARKER:
return new MarkerPacket(objStream, newPacket);
case LITERAL_DATA:
return new LiteralDataPacket(objStream, newPacket);
case TRUST:
return new TrustPacket(objStream, newPacket);
case USER_ID:
return new UserIDPacket(objStream, newPacket);
case USER_ATTRIBUTE:
return new UserAttributePacket(objStream, newPacket);
case PUBLIC_SUBKEY:
return new PublicSubkeyPacket(objStream, newPacket);
case SYM_ENC_INTEGRITY_PRO:
return new SymmetricEncIntegrityPacket(objStream, newPacket);
case MOD_DETECTION_CODE:
return new ModDetectionCodePacket(objStream, newPacket);
case AEAD_ENC_DATA:
return new AEADEncDataPacket(objStream, newPacket);
case PADDING:
return new PaddingPacket(objStream, newPacket);
case EXPERIMENTAL_1:
case EXPERIMENTAL_2:
case EXPERIMENTAL_3:
case EXPERIMENTAL_4:
return new ExperimentalPacket(tag, objStream, newPacket);
default:
return new UnknownPacket(tag, objStream, newPacket);
}
}
/**
* @return the tag for the next non-marker/padding packet
* @throws IOException on a parsing issue.
* @deprecated use skipMarkerAndPaddingPackets
*/
public int skipMarkerPackets()
throws IOException
{
return skipMarkerAndPaddingPackets();
}
/**
* skip any marker and padding packets found in the stream.
*
* @return the tag for the next non-marker/padding packet
* @throws IOException on a parsing issue.
*/
public int skipMarkerAndPaddingPackets()
throws IOException
{
int tag;
while ((tag = nextPacketTag()) == PacketTags.MARKER
|| tag == PacketTags.PADDING)
{
readPacket();
}
return tag;
}
public void close()
throws IOException
{
in.close();
}
/**
* a stream that overlays our input stream, allowing the user to only read a segment of it.
* <p>
* NB: dataLength will be negative if the segment length is in the upper range above 2**31.
*/
private static class PartialInputStream
extends InputStream
{
private BCPGInputStream in;
private boolean partial;
private int dataLength;
PartialInputStream(
BCPGInputStream in,
boolean partial,
int dataLength)
{
this.in = in;
this.partial = partial;
this.dataLength = dataLength;
}
public int available()
throws IOException
{
int avail = in.available();
if (avail <= dataLength || dataLength < 0)
{
return avail;
}
else
{
if (partial && dataLength == 0)
{
return 1;
}
return dataLength;
}
}
private int loadDataLength()
throws IOException
{
boolean[] flags = new boolean[3];
dataLength = StreamUtil.readBodyLen(in, flags);
if (flags[StreamUtil.flag_eof])
{
return -1;
}
partial = flags[StreamUtil.flag_partial];
return dataLength;
}
public int read(byte[] buf, int offset, int len)
throws IOException
{
do
{
if (dataLength != 0)
{
int readLen = (dataLength > len || dataLength < 0) ? len : dataLength;
readLen = in.read(buf, offset, readLen);
if (readLen < 0)
{
throw new EOFException("premature end of stream in PartialInputStream");
}
dataLength -= readLen;
if (partial && dataLength == 0)
{
loadDataLength();
}
return readLen;
}
}
while (partial && loadDataLength() >= 0);
return -1;
}
public int read()
throws IOException
{
do
{
if (dataLength != 0)
{
int ch = in.read();
if (ch < 0)
{
throw new EOFException("premature end of stream in PartialInputStream");
}
dataLength--;
if (partial && dataLength == 0)
{
loadDataLength();
}
return ch;
}
}
while (partial && loadDataLength() >= 0);
return -1;
}
}
}