blob: 6e049f9783bfaf1c978a65bb82177cc99d6bc7d0 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2005 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/*
25 * @test
26 * @bug 6337925
27 * @summary Ensure that callers cannot modify the internal JarEntry cert and
28 * codesigner arrays.
29 * @author Sean Mullan
30 */
31import java.io.InputStream;
32import java.security.CodeSigner;
33import java.security.cert.Certificate;
34import java.util.*;
35import java.util.jar.*;
36
37public class GetMethodsReturnClones {
38
39 private final static String BASE = System.getProperty("test.src", ".") +
40 System.getProperty("file.separator");
41
42 public static void main(String[] args) throws Exception {
43 JarFile jf = new JarFile(BASE + "test.jar", true);
44
45 byte[] buffer = new byte[8192];
46 Enumeration<JarEntry> e = jf.entries();
47 List<JarEntry> entries = new ArrayList<JarEntry>();
48 while (e.hasMoreElements()) {
49 JarEntry je = e.nextElement();
50 entries.add(je);
51 InputStream is = jf.getInputStream(je);
52 while (is.read(buffer, 0, buffer.length) != -1) {
53 // we just read. this will throw a SecurityException
54 // if a signature/digest check fails.
55 }
56 is.close();
57 }
58 jf.close();
59
60 for (JarEntry je : entries) {
61 Certificate[] certs = je.getCertificates();
62 CodeSigner[] signers = je.getCodeSigners();
63 if (certs != null) {
64 certs[0] = null;
65 certs = je.getCertificates();
66 if (certs[0] == null) {
67 throw new Exception("Modified internal certs array");
68 }
69 }
70 if (signers != null) {
71 signers[0] = null;
72 signers = je.getCodeSigners();
73 if (signers[0] == null) {
74 throw new Exception("Modified internal codesigners array");
75 }
76 }
77 }
78 }
79}