jdk/test/java/util/jar/JarInputStream/TestIndexedJarWithBadSignature.java
author sherman
Mon, 15 Nov 2010 09:42:39 -0800
changeset 7190 2bd7f94e734d
child 9365 469cd39a25de
permissions -rw-r--r--
6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted Summary: Added code to deal with the index case specially. Reviewed-by: mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7190
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     1
/*
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     2
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     4
 *
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     7
 * published by the Free Software Foundation.
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     8
 *
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    13
 * accompanied this code).
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    14
 *
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    18
 *
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    21
 * questions.
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    22
 */
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    23
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    24
/*
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    25
 * @test
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    26
 * @bug 6544278
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    27
 * @summary Confirm the JarInputStream throws the SecurityException when
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    28
 *          verifying an indexed jar file with corrupted signature
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    29
 */
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    30
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    31
import java.io.IOException;
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    32
import java.io.FileInputStream;
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    33
import java.util.jar.JarEntry;
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    34
import java.util.jar.JarInputStream;
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    35
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    36
public class TestIndexedJarWithBadSignature {
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    37
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    38
    public static void main(String...args) throws Throwable {
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    39
        try (JarInputStream jis = new JarInputStream(
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    40
                 new FileInputStream(System.getProperty("tst.src", ".") +
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    41
                                     System.getProperty("file.separator") +
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    42
                                     "BadSignedJar.jar")))
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    43
        {
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    44
            JarEntry je1 = jis.getNextJarEntry();
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    45
            while(je1!=null){
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    46
                System.out.println("Jar Entry1==>"+je1.getName());
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    47
                je1 = jis.getNextJarEntry(); // This should throw Security Exception
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    48
            }
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    49
            throw new RuntimeException(
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    50
                "Test Failed:Security Exception not being thrown");
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    51
        } catch (IOException ie){
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    52
            ie.printStackTrace();
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    53
        } catch (SecurityException e) {
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    54
            System.out.println("Test passed: Security Exception thrown as expected");
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    55
        }
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    56
    }
2bd7f94e734d 6544278: SecurityException not thrown for Indexed Jar file whose signature is corrupted
sherman
parents:
diff changeset
    57
}