1 /*
   2  * Copyright (c) 2005, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * 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  */
  31 import java.io.InputStream;
  32 import java.security.CodeSigner;
  33 import java.security.cert.Certificate;
  34 import java.util.*;
  35 import java.util.jar.*;
  36 
  37 public 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 }