Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
53cc812f
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
53cc812f
编写于
10月 22, 2013
作者:
R
rriggs
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
2bf5a83f
5c7eb1c5
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
210 addition
and
15 deletion
+210
-15
src/share/classes/java/net/URLClassLoader.java
src/share/classes/java/net/URLClassLoader.java
+29
-13
src/share/classes/javax/management/remote/rmi/NoCallStackClassLoader.java
...s/javax/management/remote/rmi/NoCallStackClassLoader.java
+1
-0
src/share/classes/sun/applet/AppletClassLoader.java
src/share/classes/sun/applet/AppletClassLoader.java
+1
-0
src/share/classes/sun/security/provider/certpath/RevocationChecker.java
...ses/sun/security/provider/certpath/RevocationChecker.java
+1
-1
test/java/net/URLClassLoader/NullURLTest.java
test/java/net/URLClassLoader/NullURLTest.java
+175
-0
test/java/security/cert/PKIXRevocationChecker/UnitTest.java
test/java/security/cert/PKIXRevocationChecker/UnitTest.java
+3
-1
未找到文件。
src/share/classes/java/net/URLClassLoader.java
浏览文件 @
53cc812f
...
...
@@ -25,21 +25,30 @@
package
java.net
;
import
java.io.*
;
import
java.util.*
;
import
java.util.jar.Manifest
;
import
java.util.jar.JarFile
;
import
java.util.jar.Attributes
;
import
java.util.jar.Attributes.Name
;
import
java.security.CodeSigner
;
import
java.security.PrivilegedAction
;
import
java.security.PrivilegedExceptionAction
;
import
java.security.AccessController
;
import
java.io.Closeable
;
import
java.io.File
;
import
java.io.FilePermission
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.security.AccessControlContext
;
import
java.security.SecureClassLoader
;
import
java.security.AccessController
;
import
java.security.CodeSigner
;
import
java.security.CodeSource
;
import
java.security.Permission
;
import
java.security.PermissionCollection
;
import
java.security.PrivilegedAction
;
import
java.security.PrivilegedExceptionAction
;
import
java.security.SecureClassLoader
;
import
java.util.Enumeration
;
import
java.util.List
;
import
java.util.NoSuchElementException
;
import
java.util.Objects
;
import
java.util.Set
;
import
java.util.WeakHashMap
;
import
java.util.jar.Attributes
;
import
java.util.jar.Attributes.Name
;
import
java.util.jar.JarFile
;
import
java.util.jar.Manifest
;
import
sun.misc.Resource
;
import
sun.misc.URLClassPath
;
import
sun.net.www.ParseUtil
;
...
...
@@ -84,6 +93,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* @exception SecurityException if a security manager exists and its
* {@code checkCreateClassLoader} method doesn't allow
* creation of a class loader.
* @exception NullPointerException if {@code urls} is {@code null}.
* @see SecurityManager#checkCreateClassLoader
*/
public
URLClassLoader
(
URL
[]
urls
,
ClassLoader
parent
)
{
...
...
@@ -127,6 +137,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* @exception SecurityException if a security manager exists and its
* {@code checkCreateClassLoader} method doesn't allow
* creation of a class loader.
* @exception NullPointerException if {@code urls} is {@code null}.
* @see SecurityManager#checkCreateClassLoader
*/
public
URLClassLoader
(
URL
[]
urls
)
{
...
...
@@ -169,6 +180,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* @exception SecurityException if a security manager exists and its
* {@code checkCreateClassLoader} method doesn't allow
* creation of a class loader.
* @exception NullPointerException if {@code urls} is {@code null}.
* @see SecurityManager#checkCreateClassLoader
*/
public
URLClassLoader
(
URL
[]
urls
,
ClassLoader
parent
,
...
...
@@ -260,13 +272,13 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* and errors are not caught. Calling close on an already closed
* loader has no effect.
* <p>
* @
throws
IOException if closing any file opened by this class loader
* @
exception
IOException if closing any file opened by this class loader
* resulted in an IOException. Any such exceptions are caught internally.
* If only one is caught, then it is re-thrown. If more than one exception
* is caught, then the second and following exceptions are added
* as suppressed exceptions of the first one caught, which is then re-thrown.
*
* @
throws
SecurityException if a security manager is set, and it denies
* @
exception
SecurityException if a security manager is set, and it denies
* {@link RuntimePermission}{@code ("closeClassLoader")}
*
* @since 1.7
...
...
@@ -339,6 +351,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* @return the resulting class
* @exception ClassNotFoundException if the class could not be found,
* or if the loader is closed.
* @exception NullPointerException if {@code name} is {@code null}.
*/
protected
Class
<?>
findClass
(
final
String
name
)
throws
ClassNotFoundException
...
...
@@ -621,6 +634,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* If the protocol is not "file", then permission
* to connect to and accept connections from the URL's host is granted.
* @param codesource the codesource
* @exception NullPointerException if {@code codesource} is {@code null}.
* @return the permissions granted to the codesource
*/
protected
PermissionCollection
getPermissions
(
CodeSource
codesource
)
...
...
@@ -700,6 +714,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
*
* @param urls the URLs to search for classes and resources
* @param parent the parent class loader for delegation
* @exception NullPointerException if {@code urls} is {@code null}.
* @return the resulting class loader
*/
public
static
URLClassLoader
newInstance
(
final
URL
[]
urls
,
...
...
@@ -725,6 +740,7 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
* loading the class.
*
* @param urls the URLs to search for classes and resources
* @exception NullPointerException if {@code urls} is {@code null}.
* @return the resulting class loader
*/
public
static
URLClassLoader
newInstance
(
final
URL
[]
urls
)
{
...
...
src/share/classes/javax/management/remote/rmi/NoCallStackClassLoader.java
浏览文件 @
53cc812f
...
...
@@ -120,6 +120,7 @@ class NoCallStackClassLoader extends ClassLoader {
*/
@Override
protected
Class
<?>
findClass
(
String
name
)
throws
ClassNotFoundException
{
// Note: classNames is guaranteed by the constructor to be non-null.
for
(
int
i
=
0
;
i
<
classNames
.
length
;
i
++)
{
if
(
name
.
equals
(
classNames
[
i
]))
{
return
defineClass
(
classNames
[
i
],
byteCodes
[
i
],
0
,
...
...
src/share/classes/sun/applet/AppletClassLoader.java
浏览文件 @
53cc812f
...
...
@@ -239,6 +239,7 @@ public class AppletClassLoader extends URLClassLoader {
* the "localhost".
*
* @param codesource the codesource
* @throws NullPointerException if {@code codesource} is {@code null}.
* @return the permissions granted to the codesource
*/
protected
PermissionCollection
getPermissions
(
CodeSource
codesource
)
...
...
src/share/classes/sun/security/provider/certpath/RevocationChecker.java
浏览文件 @
53cc812f
...
...
@@ -307,7 +307,7 @@ class RevocationChecker extends PKIXRevocationChecker {
:
anchor
.
getCAPublicKey
();
}
crlSignFlag
=
true
;
if
(
params
.
certPath
()
!=
null
)
{
if
(
params
!=
null
&&
params
.
certPath
()
!=
null
)
{
certIndex
=
params
.
certPath
().
getCertificates
().
size
()
-
1
;
}
else
{
certIndex
=
-
1
;
...
...
test/java/net/URLClassLoader/NullURLTest.java
0 → 100644
浏览文件 @
53cc812f
/*
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 7179567
* @summary Test that URLClassLoader public constructors and factory methods
* throw NullPointerException when appropriate.
*
* Tests whether URLClassLoader public constructors and factory methods throw
* appropriate NullPointerExceptions for 1) a null URL array parameter, and
* 2) a non-null URL array containing a null element.
*/
import
java.io.File
;
import
java.io.IOException
;
import
java.net.URL
;
import
java.net.URLClassLoader
;
import
java.util.jar.JarFile
;
public
class
NullURLTest
{
JarFile
jarFile
;
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
new
NullURLTest
();
}
NullURLTest
()
throws
Throwable
{
File
local
=
new
File
(
System
.
getProperty
(
"test.src"
,
"."
),
"jars"
);
String
path
=
"jar:file:"
+
local
.
getPath
()
+
"/class_path_test.jar!/Foo.class"
;
URL
validURL
=
new
URL
(
path
);
URL
[]
validURLArray
=
new
URL
[]
{
validURL
,
validURL
};
URL
[]
invalidURLArray
=
new
URL
[]
{
validURL
,
null
};
int
failures
=
0
;
URLClassLoader
loader
;
try
{
loader
=
new
URLClassLoader
(
validURLArray
);
}
catch
(
Throwable
t
)
{
System
.
err
.
println
(
"URLClassLoader(validURLArray) threw "
+
t
);
failures
++;
}
try
{
loader
=
new
URLClassLoader
(
null
);
System
.
err
.
println
(
"URLClassLoader(null) did not throw NPE"
);
failures
++;
}
catch
(
NullPointerException
e
)
{
// expected
}
// This section should be uncommented if 8026517 is fixed.
// try {
// loader = new URLClassLoader(invalidURLArray);
// System.err.println("URLClassLoader(invalidURLArray) did not throw NPE");
// failures++;
// } catch (NullPointerException e) {
// // expected
// }
try
{
loader
=
new
URLClassLoader
(
validURLArray
,
null
);
}
catch
(
Throwable
t
)
{
System
.
err
.
println
(
"URLClassLoader(validURLArray, null) threw "
+
t
);
failures
++;
}
try
{
loader
=
new
URLClassLoader
(
null
,
null
);
System
.
err
.
println
(
"URLClassLoader(null, null) did not throw NPE"
);
failures
++;
}
catch
(
NullPointerException
e
)
{
// expected
}
// This section should be uncommented if 8026517 is fixed.
// try {
// loader = new URLClassLoader(invalidURLArray, null);
// System.err.println("URLClassLoader(invalidURLArray, null) did not throw NPE");
// failures++;
// } catch (NullPointerException e) {
// // expected
// }
try
{
loader
=
new
URLClassLoader
(
validURLArray
,
null
,
null
);
}
catch
(
Throwable
t
)
{
System
.
err
.
println
(
"URLClassLoader(validURLArray, null, null) threw "
+
t
);
failures
++;
}
try
{
loader
=
new
URLClassLoader
(
null
,
null
,
null
);
System
.
err
.
println
(
"URLClassLoader(null, null, null) did not throw NPE"
);
failures
++;
}
catch
(
NullPointerException
e
)
{
// expected
}
// This section should be uncommented if 8026517 is fixed.
// try {
// loader = new URLClassLoader(invalidURLArray, null, null);
// System.err.println("URLClassLoader(invalidURLArray, null, null) did not throw NPE");
// failures++;
// } catch (NullPointerException e) {
// // expected
// }
try
{
loader
=
URLClassLoader
.
newInstance
(
validURLArray
);
}
catch
(
Throwable
t
)
{
System
.
err
.
println
(
"URLClassLoader.newInstance(validURLArray) threw "
+
t
);
failures
++;
}
try
{
loader
=
URLClassLoader
.
newInstance
(
null
);
System
.
err
.
println
(
"URLClassLoader.newInstance(null) did not throw NPE"
);
failures
++;
}
catch
(
NullPointerException
e
)
{
// expected
}
// This section should be uncommented if 8026517 is fixed.
// try {
// loader = URLClassLoader.newInstance(invalidURLArray);
// System.err.println("URLClassLoader.newInstance(invalidURLArray) did not throw NPE");
// failures++;
// } catch (NullPointerException e) {
// // expected
// }
try
{
loader
=
URLClassLoader
.
newInstance
(
validURLArray
,
null
);
}
catch
(
Throwable
t
)
{
System
.
err
.
println
(
"URLClassLoader.newInstance(validURLArray, null) threw "
+
t
);
failures
++;
}
try
{
loader
=
URLClassLoader
.
newInstance
(
null
,
null
);
System
.
err
.
println
(
"URLClassLoader.newInstance(null, null) did not throw NPE"
);
failures
++;
}
catch
(
NullPointerException
e
)
{
// expected
}
// This section should be uncommented if 8026517 is fixed.
// try {
// loader = URLClassLoader.newInstance(invalidURLArray, null);
// System.err.println("URLClassLoader.newInstance(invalidURLArray, null) did not throw NPE");
// failures++;
// } catch (NullPointerException e) {
// // expected
// }
if
(
failures
!=
0
)
{
throw
new
Exception
(
"URLClassLoader NullURLTest had "
+
failures
+
" failures!"
);
}
}
}
test/java/security/cert/PKIXRevocationChecker/UnitTest.java
浏览文件 @
53cc812f
...
...
@@ -23,7 +23,7 @@
/**
* @test
* @bug 6854712 7171570 8010748
* @bug 6854712 7171570 8010748
8025287
* @summary Basic unit test for PKIXRevocationChecker
*/
...
...
@@ -44,6 +44,8 @@ public class UnitTest {
CertPathChecker
cpc
=
cpv
.
getRevocationChecker
();
PKIXRevocationChecker
prc
=
(
PKIXRevocationChecker
)
cpc
;
prc
.
init
(
false
);
System
.
out
.
println
(
"Testing that get methods return null or "
+
"empty lists/sets/maps"
);
requireNull
(
prc
.
getOcspResponder
(),
"getOcspResponder()"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录