1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.commons.compress.archivers.ar;
20
21 import java.io.EOFException;
22 import java.io.IOException;
23 import java.io.InputStream;
24 import java.nio.charset.StandardCharsets;
25 import java.util.Arrays;
26 import java.util.regex.Pattern;
27
28 import org.apache.commons.compress.archivers.ArchiveInputStream;
29 import org.apache.commons.compress.utils.ArchiveUtils;
30 import org.apache.commons.compress.utils.IOUtils;
31 import org.apache.commons.compress.utils.ParsingUtils;
32
33
34
35
36
37
38 public class ArArchiveInputStream extends ArchiveInputStream<ArArchiveEntry> {
39
40
41 private static final int NAME_OFFSET = 0;
42 private static final int NAME_LEN = 16;
43 private static final int LAST_MODIFIED_OFFSET = NAME_LEN;
44
45 private static final int LAST_MODIFIED_LEN = 12;
46
47 private static final int USER_ID_OFFSET = LAST_MODIFIED_OFFSET + LAST_MODIFIED_LEN;
48
49 private static final int USER_ID_LEN = 6;
50
51 private static final int GROUP_ID_OFFSET = USER_ID_OFFSET + USER_ID_LEN;
52 private static final int GROUP_ID_LEN = 6;
53 private static final int FILE_MODE_OFFSET = GROUP_ID_OFFSET + GROUP_ID_LEN;
54 private static final int FILE_MODE_LEN = 8;
55 private static final int LENGTH_OFFSET = FILE_MODE_OFFSET + FILE_MODE_LEN;
56 private static final int LENGTH_LEN = 10;
57 static final String BSD_LONGNAME_PREFIX = "#1/";
58 private static final int BSD_LONGNAME_PREFIX_LEN = BSD_LONGNAME_PREFIX.length();
59 private static final Pattern BSD_LONGNAME_PATTERN = Pattern.compile("^" + BSD_LONGNAME_PREFIX + "\\d+");
60 private static final String GNU_STRING_TABLE_NAME = "//";
61 private static final Pattern GNU_LONGNAME_PATTERN = Pattern.compile("^/\\d+");
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85 private static boolean isBSDLongName(final String name) {
86 return name != null && BSD_LONGNAME_PATTERN.matcher(name).matches();
87 }
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103 private static boolean isGNUStringTable(final String name) {
104 return GNU_STRING_TABLE_NAME.equals(name);
105 }
106
107
108
109
110
111
112
113
114 public static boolean matches(final byte[] signature, final int length) {
115
116
117 return length >= 8 &&
118 signature[0] == 0x21 &&
119 signature[1] == 0x3c &&
120 signature[2] == 0x61 &&
121 signature[3] == 0x72 &&
122 signature[4] == 0x63 &&
123 signature[5] == 0x68 &&
124 signature[6] == 0x3e &&
125 signature[7] == 0x0a;
126
127 }
128
129 private long offset;
130
131 private boolean closed;
132
133
134
135
136 private ArArchiveEntry currentEntry;
137
138
139 private byte[] namebuffer;
140
141
142
143
144 private long entryOffset = -1;
145
146
147 private final byte[] metaData = new byte[NAME_LEN + LAST_MODIFIED_LEN + USER_ID_LEN + GROUP_ID_LEN + FILE_MODE_LEN + LENGTH_LEN];
148
149
150
151
152
153
154 public ArArchiveInputStream(final InputStream inputStream) {
155 super(inputStream, StandardCharsets.US_ASCII.name());
156 }
157
158 private int asInt(final byte[] byteArray, final int offset, final int len) throws IOException {
159 return asInt(byteArray, offset, len, 10, false);
160 }
161
162 private int asInt(final byte[] byteArray, final int offset, final int len, final boolean treatBlankAsZero) throws IOException {
163 return asInt(byteArray, offset, len, 10, treatBlankAsZero);
164 }
165
166 private int asInt(final byte[] byteArray, final int offset, final int len, final int base) throws IOException {
167 return asInt(byteArray, offset, len, base, false);
168 }
169
170 private int asInt(final byte[] byteArray, final int offset, final int len, final int base, final boolean treatBlankAsZero) throws IOException {
171 final String string = ArchiveUtils.toAsciiString(byteArray, offset, len).trim();
172 if (string.isEmpty() && treatBlankAsZero) {
173 return 0;
174 }
175 return ParsingUtils.parseIntValue(string, base);
176 }
177
178 private long asLong(final byte[] byteArray, final int offset, final int len) throws IOException {
179 return ParsingUtils.parseLongValue(ArchiveUtils.toAsciiString(byteArray, offset, len).trim());
180 }
181
182
183
184
185
186
187 @Override
188 public void close() throws IOException {
189 if (!closed) {
190 closed = true;
191 in.close();
192 }
193 currentEntry = null;
194 }
195
196
197
198
199
200
201
202
203 private String getBSDLongName(final String bsdLongName) throws IOException {
204 final int nameLen = ParsingUtils.parseIntValue(bsdLongName.substring(BSD_LONGNAME_PREFIX_LEN));
205 final byte[] name = IOUtils.readRange(in, nameLen);
206 final int read = name.length;
207 trackReadBytes(read);
208 if (read != nameLen) {
209 throw new EOFException();
210 }
211 return ArchiveUtils.toAsciiString(name);
212 }
213
214
215
216
217
218
219
220
221 private String getExtendedName(final int offset) throws IOException {
222 if (namebuffer == null) {
223 throw new IOException("Cannot process GNU long file name as no // record was found");
224 }
225 for (int i = offset; i < namebuffer.length; i++) {
226 if (namebuffer[i] == '\012' || namebuffer[i] == 0) {
227
228 if (i == 0) {
229 break;
230 }
231 if (namebuffer[i - 1] == '/') {
232 i--;
233 }
234
235 if (i - offset > 0) {
236 return ArchiveUtils.toAsciiString(namebuffer, offset, i - offset);
237 }
238 break;
239 }
240 }
241 throw new IOException("Failed to read entry: " + offset);
242 }
243
244
245
246
247
248
249
250
251 @Deprecated
252 public ArArchiveEntry getNextArEntry() throws IOException {
253 if (currentEntry != null) {
254 final long entryEnd = entryOffset + currentEntry.getLength();
255 final long skipped = org.apache.commons.io.IOUtils.skip(in, entryEnd - offset);
256 trackReadBytes(skipped);
257 currentEntry = null;
258 }
259 if (offset == 0) {
260 final byte[] expected = ArchiveUtils.toAsciiBytes(ArArchiveEntry.HEADER);
261 final byte[] realized = IOUtils.readRange(in, expected.length);
262 final int read = realized.length;
263 trackReadBytes(read);
264 if (read != expected.length) {
265 throw new IOException("Failed to read header. Occurred at byte: " + getBytesRead());
266 }
267 if (!Arrays.equals(expected, realized)) {
268 throw new IOException("Invalid header " + ArchiveUtils.toAsciiString(realized));
269 }
270 }
271 if (offset % 2 != 0) {
272 if (in.read() < 0) {
273
274 return null;
275 }
276 trackReadBytes(1);
277 }
278 {
279 final int read = IOUtils.readFully(in, metaData);
280 trackReadBytes(read);
281 if (read == 0) {
282 return null;
283 }
284 if (read < metaData.length) {
285 throw new IOException("Truncated ar archive");
286 }
287 }
288 {
289 final byte[] expected = ArchiveUtils.toAsciiBytes(ArArchiveEntry.TRAILER);
290 final byte[] realized = IOUtils.readRange(in, expected.length);
291 final int read = realized.length;
292 trackReadBytes(read);
293 if (read != expected.length) {
294 throw new IOException("Failed to read entry trailer. Occurred at byte: " + getBytesRead());
295 }
296 if (!Arrays.equals(expected, realized)) {
297 throw new IOException("Invalid entry trailer. not read the content? Occurred at byte: " + getBytesRead());
298 }
299 }
300
301 entryOffset = offset;
302
303
304 String temp = ArchiveUtils.toAsciiString(metaData, NAME_OFFSET, NAME_LEN).trim();
305 if (isGNUStringTable(temp)) {
306 currentEntry = readGNUStringTable(metaData, LENGTH_OFFSET, LENGTH_LEN);
307 return getNextArEntry();
308 }
309 long len;
310 try {
311 len = asLong(metaData, LENGTH_OFFSET, LENGTH_LEN);
312 } catch (final NumberFormatException ex) {
313 throw new IOException("Broken archive, unable to parse ar_size field as a number", ex);
314 }
315 if (temp.endsWith("/")) {
316 temp = temp.substring(0, temp.length() - 1);
317 } else if (isGNULongName(temp)) {
318 final int off = ParsingUtils.parseIntValue(temp.substring(1));
319 temp = getExtendedName(off);
320 } else if (isBSDLongName(temp)) {
321 temp = getBSDLongName(temp);
322
323
324
325 final int nameLen = temp.length();
326 len -= nameLen;
327 entryOffset += nameLen;
328 }
329 if (len < 0) {
330 throw new IOException("broken archive, entry with negative size");
331 }
332 try {
333 currentEntry = new ArArchiveEntry(temp, len, asInt(metaData, USER_ID_OFFSET, USER_ID_LEN, true),
334 asInt(metaData, GROUP_ID_OFFSET, GROUP_ID_LEN, true), asInt(metaData, FILE_MODE_OFFSET, FILE_MODE_LEN, 8),
335 asLong(metaData, LAST_MODIFIED_OFFSET, LAST_MODIFIED_LEN));
336 return currentEntry;
337 } catch (final NumberFormatException ex) {
338 throw new IOException("Broken archive, unable to parse entry metadata fields as numbers", ex);
339 }
340 }
341
342
343
344
345
346
347 @Override
348 public ArArchiveEntry getNextEntry() throws IOException {
349 return getNextArEntry();
350 }
351
352
353
354
355
356
357 private boolean isGNULongName(final String name) {
358 return name != null && GNU_LONGNAME_PATTERN.matcher(name).matches();
359 }
360
361
362
363
364
365
366 @Override
367 public int read(final byte[] b, final int off, final int len) throws IOException {
368 if (len == 0) {
369 return 0;
370 }
371 if (currentEntry == null) {
372 throw new IllegalStateException("No current ar entry");
373 }
374 final long entryEnd = entryOffset + currentEntry.getLength();
375 if (len < 0 || offset >= entryEnd) {
376 return -1;
377 }
378 final int toRead = (int) Math.min(len, entryEnd - offset);
379 final int ret = this.in.read(b, off, toRead);
380 trackReadBytes(ret);
381 return ret;
382 }
383
384
385
386
387
388
389 private ArArchiveEntry readGNUStringTable(final byte[] length, final int offset, final int len) throws IOException {
390 int bufflen;
391 try {
392 bufflen = asInt(length, offset, len);
393 } catch (final NumberFormatException ex) {
394 throw new IOException("Broken archive, unable to parse GNU string table length field as a number", ex);
395 }
396 namebuffer = IOUtils.readRange(in, bufflen);
397 final int read = namebuffer.length;
398 trackReadBytes(read);
399 if (read != bufflen) {
400 throw new IOException("Failed to read complete // record: expected=" + bufflen + " read=" + read);
401 }
402 return new ArArchiveEntry(GNU_STRING_TABLE_NAME, bufflen);
403 }
404
405 private void trackReadBytes(final long read) {
406 count(read);
407 if (read > 0) {
408 offset += read;
409 }
410 }
411 }