blob: cb19296886a62565fba0ea3379638f15f733b942 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.signapk;
18
19import sun.misc.BASE64Encoder;
20import sun.security.pkcs.ContentInfo;
21import sun.security.pkcs.PKCS7;
22import sun.security.pkcs.SignerInfo;
23import sun.security.x509.AlgorithmId;
24import sun.security.x509.X500Name;
25
26import java.io.BufferedReader;
27import java.io.ByteArrayOutputStream;
28import java.io.DataInputStream;
29import java.io.File;
30import java.io.FileInputStream;
31import java.io.FileOutputStream;
32import java.io.FilterOutputStream;
33import java.io.IOException;
34import java.io.InputStream;
35import java.io.InputStreamReader;
36import java.io.OutputStream;
37import java.io.PrintStream;
38import java.security.AlgorithmParameters;
39import java.security.DigestOutputStream;
40import java.security.GeneralSecurityException;
41import java.security.Key;
42import java.security.KeyFactory;
43import java.security.MessageDigest;
44import java.security.PrivateKey;
45import java.security.Signature;
46import java.security.SignatureException;
47import java.security.cert.Certificate;
48import java.security.cert.CertificateFactory;
49import java.security.cert.X509Certificate;
50import java.security.spec.InvalidKeySpecException;
51import java.security.spec.KeySpec;
52import java.security.spec.PKCS8EncodedKeySpec;
53import java.util.ArrayList;
54import java.util.Collections;
55import java.util.Date;
56import java.util.Enumeration;
57import java.util.List;
58import java.util.Map;
59import java.util.TreeMap;
60import java.util.jar.Attributes;
61import java.util.jar.JarEntry;
62import java.util.jar.JarFile;
63import java.util.jar.JarOutputStream;
64import java.util.jar.Manifest;
Doug Zongkeraf482b62009-06-08 10:46:55 -070065import java.util.regex.Pattern;
The Android Open Source Project88b60792009-03-03 19:28:42 -080066import javax.crypto.Cipher;
67import javax.crypto.EncryptedPrivateKeyInfo;
68import javax.crypto.SecretKeyFactory;
69import javax.crypto.spec.PBEKeySpec;
70
71/**
72 * Command line tool to sign JAR files (including APKs and OTA updates) in
73 * a way compatible with the mincrypt verifier, using SHA1 and RSA keys.
74 */
75class SignApk {
76 private static final String CERT_SF_NAME = "META-INF/CERT.SF";
77 private static final String CERT_RSA_NAME = "META-INF/CERT.RSA";
78
Doug Zongker7bb04232012-05-11 09:20:50 -070079 private static final String OTACERT_NAME = "META-INF/com/android/otacert";
80
Doug Zongkeraf482b62009-06-08 10:46:55 -070081 // Files matching this pattern are not copied to the output.
82 private static Pattern stripPattern =
83 Pattern.compile("^META-INF/(.*)[.](SF|RSA|DSA)$");
84
The Android Open Source Project88b60792009-03-03 19:28:42 -080085 private static X509Certificate readPublicKey(File file)
86 throws IOException, GeneralSecurityException {
87 FileInputStream input = new FileInputStream(file);
88 try {
89 CertificateFactory cf = CertificateFactory.getInstance("X.509");
90 return (X509Certificate) cf.generateCertificate(input);
91 } finally {
92 input.close();
93 }
94 }
95
96 /**
97 * Reads the password from stdin and returns it as a string.
98 *
99 * @param keyFile The file containing the private key. Used to prompt the user.
100 */
101 private static String readPassword(File keyFile) {
102 // TODO: use Console.readPassword() when it's available.
103 System.out.print("Enter password for " + keyFile + " (password will not be hidden): ");
104 System.out.flush();
105 BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in));
106 try {
107 return stdin.readLine();
108 } catch (IOException ex) {
109 return null;
110 }
111 }
112
113 /**
114 * Decrypt an encrypted PKCS 8 format private key.
115 *
116 * Based on ghstark's post on Aug 6, 2006 at
117 * http://forums.sun.com/thread.jspa?threadID=758133&messageID=4330949
118 *
119 * @param encryptedPrivateKey The raw data of the private key
120 * @param keyFile The file containing the private key
121 */
122 private static KeySpec decryptPrivateKey(byte[] encryptedPrivateKey, File keyFile)
123 throws GeneralSecurityException {
124 EncryptedPrivateKeyInfo epkInfo;
125 try {
126 epkInfo = new EncryptedPrivateKeyInfo(encryptedPrivateKey);
127 } catch (IOException ex) {
128 // Probably not an encrypted key.
129 return null;
130 }
131
132 char[] password = readPassword(keyFile).toCharArray();
133
134 SecretKeyFactory skFactory = SecretKeyFactory.getInstance(epkInfo.getAlgName());
135 Key key = skFactory.generateSecret(new PBEKeySpec(password));
136
137 Cipher cipher = Cipher.getInstance(epkInfo.getAlgName());
138 cipher.init(Cipher.DECRYPT_MODE, key, epkInfo.getAlgParameters());
139
140 try {
141 return epkInfo.getKeySpec(cipher);
142 } catch (InvalidKeySpecException ex) {
143 System.err.println("signapk: Password for " + keyFile + " may be bad.");
144 throw ex;
145 }
146 }
147
148 /** Read a PKCS 8 format private key. */
149 private static PrivateKey readPrivateKey(File file)
150 throws IOException, GeneralSecurityException {
151 DataInputStream input = new DataInputStream(new FileInputStream(file));
152 try {
153 byte[] bytes = new byte[(int) file.length()];
154 input.read(bytes);
155
156 KeySpec spec = decryptPrivateKey(bytes, file);
157 if (spec == null) {
158 spec = new PKCS8EncodedKeySpec(bytes);
159 }
160
161 try {
162 return KeyFactory.getInstance("RSA").generatePrivate(spec);
163 } catch (InvalidKeySpecException ex) {
164 return KeyFactory.getInstance("DSA").generatePrivate(spec);
165 }
166 } finally {
167 input.close();
168 }
169 }
170
171 /** Add the SHA1 of every file to the manifest, creating it if necessary. */
172 private static Manifest addDigestsToManifest(JarFile jar)
173 throws IOException, GeneralSecurityException {
174 Manifest input = jar.getManifest();
175 Manifest output = new Manifest();
176 Attributes main = output.getMainAttributes();
177 if (input != null) {
178 main.putAll(input.getMainAttributes());
179 } else {
180 main.putValue("Manifest-Version", "1.0");
181 main.putValue("Created-By", "1.0 (Android SignApk)");
182 }
183
184 BASE64Encoder base64 = new BASE64Encoder();
185 MessageDigest md = MessageDigest.getInstance("SHA1");
186 byte[] buffer = new byte[4096];
187 int num;
188
189 // We sort the input entries by name, and add them to the
190 // output manifest in sorted order. We expect that the output
191 // map will be deterministic.
192
193 TreeMap<String, JarEntry> byName = new TreeMap<String, JarEntry>();
194
195 for (Enumeration<JarEntry> e = jar.entries(); e.hasMoreElements(); ) {
196 JarEntry entry = e.nextElement();
197 byName.put(entry.getName(), entry);
198 }
199
200 for (JarEntry entry: byName.values()) {
201 String name = entry.getName();
202 if (!entry.isDirectory() && !name.equals(JarFile.MANIFEST_NAME) &&
Doug Zongkeraf482b62009-06-08 10:46:55 -0700203 !name.equals(CERT_SF_NAME) && !name.equals(CERT_RSA_NAME) &&
Doug Zongker7bb04232012-05-11 09:20:50 -0700204 !name.equals(OTACERT_NAME) &&
Doug Zongkeraf482b62009-06-08 10:46:55 -0700205 (stripPattern == null ||
206 !stripPattern.matcher(name).matches())) {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800207 InputStream data = jar.getInputStream(entry);
208 while ((num = data.read(buffer)) > 0) {
209 md.update(buffer, 0, num);
210 }
211
212 Attributes attr = null;
213 if (input != null) attr = input.getAttributes(name);
214 attr = attr != null ? new Attributes(attr) : new Attributes();
215 attr.putValue("SHA1-Digest", base64.encode(md.digest()));
216 output.getEntries().put(name, attr);
217 }
218 }
219
220 return output;
221 }
222
Doug Zongker7bb04232012-05-11 09:20:50 -0700223 /**
224 * Add a copy of the public key to the archive; this should
225 * exactly match one of the files in
226 * /system/etc/security/otacerts.zip on the device. (The same
227 * cert can be extracted from the CERT.RSA file but this is much
228 * easier to get at.)
229 */
230 private static void addOtacert(JarOutputStream outputJar,
231 File publicKeyFile,
232 long timestamp,
233 Manifest manifest)
234 throws IOException, GeneralSecurityException {
235 BASE64Encoder base64 = new BASE64Encoder();
236 MessageDigest md = MessageDigest.getInstance("SHA1");
237
238 JarEntry je = new JarEntry(OTACERT_NAME);
239 je.setTime(timestamp);
240 outputJar.putNextEntry(je);
241 FileInputStream input = new FileInputStream(publicKeyFile);
242 byte[] b = new byte[4096];
243 int read;
244 while ((read = input.read(b)) != -1) {
245 outputJar.write(b, 0, read);
246 md.update(b, 0, read);
247 }
248 input.close();
249
250 Attributes attr = new Attributes();
251 attr.putValue("SHA1-Digest", base64.encode(md.digest()));
252 manifest.getEntries().put(OTACERT_NAME, attr);
253 }
254
255
The Android Open Source Project88b60792009-03-03 19:28:42 -0800256 /** Write to another stream and also feed it to the Signature object. */
257 private static class SignatureOutputStream extends FilterOutputStream {
258 private Signature mSignature;
Ficus Kirkpatrick7978d502010-09-23 22:57:05 -0700259 private int mCount;
The Android Open Source Project88b60792009-03-03 19:28:42 -0800260
261 public SignatureOutputStream(OutputStream out, Signature sig) {
262 super(out);
263 mSignature = sig;
Ficus Kirkpatrick7978d502010-09-23 22:57:05 -0700264 mCount = 0;
The Android Open Source Project88b60792009-03-03 19:28:42 -0800265 }
266
267 @Override
268 public void write(int b) throws IOException {
269 try {
270 mSignature.update((byte) b);
271 } catch (SignatureException e) {
272 throw new IOException("SignatureException: " + e);
273 }
274 super.write(b);
Ficus Kirkpatrick7978d502010-09-23 22:57:05 -0700275 mCount++;
The Android Open Source Project88b60792009-03-03 19:28:42 -0800276 }
277
278 @Override
279 public void write(byte[] b, int off, int len) throws IOException {
280 try {
281 mSignature.update(b, off, len);
282 } catch (SignatureException e) {
283 throw new IOException("SignatureException: " + e);
284 }
285 super.write(b, off, len);
Ficus Kirkpatrick7978d502010-09-23 22:57:05 -0700286 mCount += len;
287 }
288
289 public int size() {
290 return mCount;
The Android Open Source Project88b60792009-03-03 19:28:42 -0800291 }
292 }
293
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700294 /** Write a .SF file with a digest of the specified manifest. */
Ficus Kirkpatrick7978d502010-09-23 22:57:05 -0700295 private static void writeSignatureFile(Manifest manifest, SignatureOutputStream out)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800296 throws IOException, GeneralSecurityException {
297 Manifest sf = new Manifest();
298 Attributes main = sf.getMainAttributes();
299 main.putValue("Signature-Version", "1.0");
300 main.putValue("Created-By", "1.0 (Android SignApk)");
301
302 BASE64Encoder base64 = new BASE64Encoder();
303 MessageDigest md = MessageDigest.getInstance("SHA1");
304 PrintStream print = new PrintStream(
305 new DigestOutputStream(new ByteArrayOutputStream(), md),
306 true, "UTF-8");
307
308 // Digest of the entire manifest
309 manifest.write(print);
310 print.flush();
311 main.putValue("SHA1-Digest-Manifest", base64.encode(md.digest()));
312
313 Map<String, Attributes> entries = manifest.getEntries();
314 for (Map.Entry<String, Attributes> entry : entries.entrySet()) {
315 // Digest of the manifest stanza for this entry.
316 print.print("Name: " + entry.getKey() + "\r\n");
317 for (Map.Entry<Object, Object> att : entry.getValue().entrySet()) {
318 print.print(att.getKey() + ": " + att.getValue() + "\r\n");
319 }
320 print.print("\r\n");
321 print.flush();
322
323 Attributes sfAttr = new Attributes();
324 sfAttr.putValue("SHA1-Digest", base64.encode(md.digest()));
325 sf.getEntries().put(entry.getKey(), sfAttr);
326 }
327
328 sf.write(out);
Ficus Kirkpatrick7978d502010-09-23 22:57:05 -0700329
330 // A bug in the java.util.jar implementation of Android platforms
331 // up to version 1.6 will cause a spurious IOException to be thrown
332 // if the length of the signature file is a multiple of 1024 bytes.
333 // As a workaround, add an extra CRLF in this case.
334 if ((out.size() % 1024) == 0) {
335 out.write('\r');
336 out.write('\n');
337 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800338 }
339
340 /** Write a .RSA file with a digital signature. */
341 private static void writeSignatureBlock(
342 Signature signature, X509Certificate publicKey, OutputStream out)
343 throws IOException, GeneralSecurityException {
344 SignerInfo signerInfo = new SignerInfo(
345 new X500Name(publicKey.getIssuerX500Principal().getName()),
346 publicKey.getSerialNumber(),
347 AlgorithmId.get("SHA1"),
348 AlgorithmId.get("RSA"),
349 signature.sign());
350
351 PKCS7 pkcs7 = new PKCS7(
352 new AlgorithmId[] { AlgorithmId.get("SHA1") },
353 new ContentInfo(ContentInfo.DATA_OID, null),
354 new X509Certificate[] { publicKey },
355 new SignerInfo[] { signerInfo });
356
357 pkcs7.encodeSignedData(out);
358 }
359
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700360 private static void signWholeOutputFile(byte[] zipData,
361 OutputStream outputStream,
362 X509Certificate publicKey,
363 PrivateKey privateKey)
364 throws IOException, GeneralSecurityException {
365
366 // For a zip with no archive comment, the
367 // end-of-central-directory record will be 22 bytes long, so
368 // we expect to find the EOCD marker 22 bytes from the end.
369 if (zipData[zipData.length-22] != 0x50 ||
370 zipData[zipData.length-21] != 0x4b ||
371 zipData[zipData.length-20] != 0x05 ||
372 zipData[zipData.length-19] != 0x06) {
373 throw new IllegalArgumentException("zip data already has an archive comment");
374 }
375
376 Signature signature = Signature.getInstance("SHA1withRSA");
377 signature.initSign(privateKey);
378 signature.update(zipData, 0, zipData.length-2);
379
380 ByteArrayOutputStream temp = new ByteArrayOutputStream();
381
382 // put a readable message and a null char at the start of the
383 // archive comment, so that tools that display the comment
384 // (hopefully) show something sensible.
385 // TODO: anything more useful we can put in this message?
386 byte[] message = "signed by SignApk".getBytes("UTF-8");
387 temp.write(message);
388 temp.write(0);
389 writeSignatureBlock(signature, publicKey, temp);
390 int total_size = temp.size() + 6;
391 if (total_size > 0xffff) {
392 throw new IllegalArgumentException("signature is too big for ZIP file comment");
393 }
394 // signature starts this many bytes from the end of the file
395 int signature_start = total_size - message.length - 1;
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700396 temp.write(signature_start & 0xff);
397 temp.write((signature_start >> 8) & 0xff);
Doug Zongkerbadd2ca2009-08-14 16:42:35 -0700398 // Why the 0xff bytes? In a zip file with no archive comment,
399 // bytes [-6:-2] of the file are the little-endian offset from
400 // the start of the file to the central directory. So for the
401 // two high bytes to be 0xff 0xff, the archive would have to
402 // be nearly 4GB in side. So it's unlikely that a real
403 // commentless archive would have 0xffs here, and lets us tell
404 // an old signed archive from a new one.
405 temp.write(0xff);
406 temp.write(0xff);
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700407 temp.write(total_size & 0xff);
408 temp.write((total_size >> 8) & 0xff);
409 temp.flush();
410
Doug Zongkerbadd2ca2009-08-14 16:42:35 -0700411 // Signature verification checks that the EOCD header is the
412 // last such sequence in the file (to avoid minzip finding a
413 // fake EOCD appended after the signature in its scan). The
414 // odds of producing this sequence by chance are very low, but
415 // let's catch it here if it does.
416 byte[] b = temp.toByteArray();
417 for (int i = 0; i < b.length-3; ++i) {
418 if (b[i] == 0x50 && b[i+1] == 0x4b && b[i+2] == 0x05 && b[i+3] == 0x06) {
419 throw new IllegalArgumentException("found spurious EOCD header at " + i);
420 }
421 }
422
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700423 outputStream.write(zipData, 0, zipData.length-2);
424 outputStream.write(total_size & 0xff);
425 outputStream.write((total_size >> 8) & 0xff);
426 temp.writeTo(outputStream);
427 }
428
Doug Zongkera2378742009-07-15 15:43:39 -0700429 /**
430 * Copy all the files in a manifest from input to output. We set
431 * the modification times in the output to a fixed time, so as to
432 * reduce variation in the output file and make incremental OTAs
433 * more efficient.
434 */
The Android Open Source Project88b60792009-03-03 19:28:42 -0800435 private static void copyFiles(Manifest manifest,
Doug Zongkera2378742009-07-15 15:43:39 -0700436 JarFile in, JarOutputStream out, long timestamp) throws IOException {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800437 byte[] buffer = new byte[4096];
438 int num;
439
440 Map<String, Attributes> entries = manifest.getEntries();
441 List<String> names = new ArrayList(entries.keySet());
442 Collections.sort(names);
443 for (String name : names) {
444 JarEntry inEntry = in.getJarEntry(name);
Doug Zongkera2378742009-07-15 15:43:39 -0700445 JarEntry outEntry = null;
The Android Open Source Project88b60792009-03-03 19:28:42 -0800446 if (inEntry.getMethod() == JarEntry.STORED) {
447 // Preserve the STORED method of the input entry.
Doug Zongkera2378742009-07-15 15:43:39 -0700448 outEntry = new JarEntry(inEntry);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800449 } else {
450 // Create a new entry so that the compressed len is recomputed.
Doug Zongkera2378742009-07-15 15:43:39 -0700451 outEntry = new JarEntry(name);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800452 }
Doug Zongkera2378742009-07-15 15:43:39 -0700453 outEntry.setTime(timestamp);
454 out.putNextEntry(outEntry);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800455
456 InputStream data = in.getInputStream(inEntry);
457 while ((num = data.read(buffer)) > 0) {
458 out.write(buffer, 0, num);
459 }
460 out.flush();
461 }
462 }
463
464 public static void main(String[] args) {
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700465 if (args.length != 4 && args.length != 5) {
466 System.err.println("Usage: signapk [-w] " +
The Android Open Source Project88b60792009-03-03 19:28:42 -0800467 "publickey.x509[.pem] privatekey.pk8 " +
468 "input.jar output.jar");
469 System.exit(2);
470 }
471
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700472 boolean signWholeFile = false;
473 int argstart = 0;
474 if (args[0].equals("-w")) {
475 signWholeFile = true;
476 argstart = 1;
477 }
478
The Android Open Source Project88b60792009-03-03 19:28:42 -0800479 JarFile inputJar = null;
480 JarOutputStream outputJar = null;
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700481 FileOutputStream outputFile = null;
The Android Open Source Project88b60792009-03-03 19:28:42 -0800482
483 try {
Doug Zongker7bb04232012-05-11 09:20:50 -0700484 File publicKeyFile = new File(args[argstart+0]);
485 X509Certificate publicKey = readPublicKey(publicKeyFile);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800486
487 // Assume the certificate is valid for at least an hour.
488 long timestamp = publicKey.getNotBefore().getTime() + 3600L * 1000;
489
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700490 PrivateKey privateKey = readPrivateKey(new File(args[argstart+1]));
491 inputJar = new JarFile(new File(args[argstart+2]), false); // Don't verify.
492
493 OutputStream outputStream = null;
494 if (signWholeFile) {
495 outputStream = new ByteArrayOutputStream();
496 } else {
497 outputStream = outputFile = new FileOutputStream(args[argstart+3]);
498 }
499 outputJar = new JarOutputStream(outputStream);
Doug Zongkere6913732012-07-03 15:03:04 -0700500
501 // For signing .apks, use the maximum compression to make
502 // them as small as possible (since they live forever on
503 // the system partition). For OTA packages, use the
504 // default compression level, which is much much faster
505 // and produces output that is only a tiny bit larger
506 // (~0.1% on full OTA packages I tested).
507 if (!signWholeFile) {
508 outputJar.setLevel(9);
509 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800510
511 JarEntry je;
512
The Android Open Source Project88b60792009-03-03 19:28:42 -0800513 Manifest manifest = addDigestsToManifest(inputJar);
Doug Zongker7bb04232012-05-11 09:20:50 -0700514
515 // Everything else
516 copyFiles(manifest, inputJar, outputJar, timestamp);
517
518 // otacert
519 if (signWholeFile) {
520 addOtacert(outputJar, publicKeyFile, timestamp, manifest);
521 }
522
523 // MANIFEST.MF
The Android Open Source Project88b60792009-03-03 19:28:42 -0800524 je = new JarEntry(JarFile.MANIFEST_NAME);
525 je.setTime(timestamp);
526 outputJar.putNextEntry(je);
527 manifest.write(outputJar);
528
529 // CERT.SF
530 Signature signature = Signature.getInstance("SHA1withRSA");
531 signature.initSign(privateKey);
532 je = new JarEntry(CERT_SF_NAME);
533 je.setTime(timestamp);
534 outputJar.putNextEntry(je);
535 writeSignatureFile(manifest,
536 new SignatureOutputStream(outputJar, signature));
537
538 // CERT.RSA
539 je = new JarEntry(CERT_RSA_NAME);
540 je.setTime(timestamp);
541 outputJar.putNextEntry(je);
542 writeSignatureBlock(signature, publicKey, outputJar);
543
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700544 outputJar.close();
545 outputJar = null;
546 outputStream.flush();
547
548 if (signWholeFile) {
549 outputFile = new FileOutputStream(args[argstart+3]);
550 signWholeOutputFile(((ByteArrayOutputStream)outputStream).toByteArray(),
551 outputFile, publicKey, privateKey);
552 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800553 } catch (Exception e) {
554 e.printStackTrace();
555 System.exit(1);
556 } finally {
557 try {
558 if (inputJar != null) inputJar.close();
Doug Zongkerc6cf01a2009-08-12 18:20:24 -0700559 if (outputFile != null) outputFile.close();
The Android Open Source Project88b60792009-03-03 19:28:42 -0800560 } catch (IOException e) {
561 e.printStackTrace();
562 System.exit(1);
563 }
564 }
565 }
566}