author | alanb |
Fri, 22 Feb 2013 14:04:06 +0000 | |
changeset 16023 | 58ecc1b8327b |
parent 11119 | 6ff03c1202ce |
child 19409 | d7c7b9d56631 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
2 |
* Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.util.jar; |
|
27 |
||
28 |
import java.io.IOException; |
|
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
29 |
import java.net.URL; |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
30 |
import java.security.CodeSource; |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
31 |
import java.util.Enumeration; |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
32 |
import java.util.List; |
2 | 33 |
import sun.misc.JavaUtilJarAccess; |
34 |
||
35 |
class JavaUtilJarAccessImpl implements JavaUtilJarAccess { |
|
36 |
public boolean jarFileHasClassPathAttribute(JarFile jar) throws IOException { |
|
37 |
return jar.hasClassPathAttribute(); |
|
38 |
} |
|
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
39 |
|
16023
58ecc1b8327b
8008290: (profiles) Startup regression due to additional checking of JAR file manifests
alanb
parents:
11119
diff
changeset
|
40 |
public boolean jarFileHasProfileAttribute(JarFile jar) throws IOException { |
58ecc1b8327b
8008290: (profiles) Startup regression due to additional checking of JAR file manifests
alanb
parents:
11119
diff
changeset
|
41 |
return jar.hasProfileAttribute(); |
58ecc1b8327b
8008290: (profiles) Startup regression due to additional checking of JAR file manifests
alanb
parents:
11119
diff
changeset
|
42 |
} |
58ecc1b8327b
8008290: (profiles) Startup regression due to additional checking of JAR file manifests
alanb
parents:
11119
diff
changeset
|
43 |
|
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
44 |
public CodeSource[] getCodeSources(JarFile jar, URL url) { |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
45 |
return jar.getCodeSources(url); |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
46 |
} |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
47 |
|
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
48 |
public CodeSource getCodeSource(JarFile jar, URL url, String name) { |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
49 |
return jar.getCodeSource(url, name); |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
50 |
} |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
51 |
|
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
52 |
public Enumeration<String> entryNames(JarFile jar, CodeSource[] cs) { |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
53 |
return jar.entryNames(cs); |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
54 |
} |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
55 |
|
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
56 |
public Enumeration<JarEntry> entries2(JarFile jar) { |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
57 |
return jar.entries2(); |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
58 |
} |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
59 |
|
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
60 |
public void setEagerValidation(JarFile jar, boolean eager) { |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
61 |
jar.setEagerValidation(eager); |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
62 |
} |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
63 |
|
11119
6ff03c1202ce
7116722: Miscellaneous warnings sun.misc ( and related classes )
chegar
parents:
8387
diff
changeset
|
64 |
public List<Object> getManifestDigests(JarFile jar) { |
8387
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
65 |
return jar.getManifestDigests(); |
f0fa7bbf889e
6742654: Code insertion/replacement attacks against signed jars
weijun
parents:
5506
diff
changeset
|
66 |
} |
2 | 67 |
} |