Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
4e8d610c
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看板
提交
4e8d610c
编写于
7月 15, 2009
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
9d818d17
9c1aaa8c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
44 addition
and
24 deletion
+44
-24
src/share/classes/com/sun/jndi/toolkit/ctx/PartialCompositeContext.java
...ses/com/sun/jndi/toolkit/ctx/PartialCompositeContext.java
+2
-2
src/share/classes/java/net/URLClassLoader.java
src/share/classes/java/net/URLClassLoader.java
+42
-22
未找到文件。
src/share/classes/com/sun/jndi/toolkit/ctx/PartialCompositeContext.java
浏览文件 @
4e8d610c
...
...
@@ -493,9 +493,9 @@ public abstract class PartialCompositeContext implements Context, Resolver {
* Tests whether a name contains a nonempty component.
*/
protected
static
boolean
allEmpty
(
Name
name
)
{
Enumeration
enum_
=
name
.
getAll
();
Enumeration
<
String
>
enum_
=
name
.
getAll
();
while
(
enum_
.
hasMoreElements
())
{
if
(!
enum_
.
equals
(
""
))
{
if
(!
enum_
.
nextElement
().
isEmpty
(
))
{
return
false
;
}
}
...
...
src/share/classes/java/net/URLClassLoader.java
浏览文件 @
4e8d610c
...
...
@@ -305,6 +305,35 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
}
}
/*
* Retrieve the package using the specified package name.
* If non-null, verify the package using the specified code
* source and manifest.
*/
private
Package
getAndVerifyPackage
(
String
pkgname
,
Manifest
man
,
URL
url
)
{
Package
pkg
=
getPackage
(
pkgname
);
if
(
pkg
!=
null
)
{
// Package found, so check package sealing.
if
(
pkg
.
isSealed
())
{
// Verify that code source URL is the same.
if
(!
pkg
.
isSealed
(
url
))
{
throw
new
SecurityException
(
"sealing violation: package "
+
pkgname
+
" is sealed"
);
}
}
else
{
// Make sure we are not attempting to seal the package
// at this code source URL.
if
((
man
!=
null
)
&&
isSealed
(
pkgname
,
man
))
{
throw
new
SecurityException
(
"sealing violation: can't seal package "
+
pkgname
+
": already loaded"
);
}
}
}
return
pkg
;
}
/*
* Defines a Class using the class bytes obtained from the specified
* Resource. The resulting Class must be resolved before it can be
...
...
@@ -316,32 +345,23 @@ public class URLClassLoader extends SecureClassLoader implements Closeable {
if
(
i
!=
-
1
)
{
String
pkgname
=
name
.
substring
(
0
,
i
);
// Check if package already loaded.
Package
pkg
=
getPackage
(
pkgname
);
Manifest
man
=
res
.
getManifest
();
if
(
pkg
!=
null
)
{
// Package found, so check package sealing.
if
(
pkg
.
isSealed
())
{
// Verify that code source URL is the same.
if
(!
pkg
.
isSealed
(
url
))
{
throw
new
SecurityException
(
"sealing violation: package "
+
pkgname
+
" is sealed"
);
if
(
getAndVerifyPackage
(
pkgname
,
man
,
url
)
==
null
)
{
try
{
if
(
man
!=
null
)
{
definePackage
(
pkgname
,
man
,
url
);
}
else
{
definePackage
(
pkgname
,
null
,
null
,
null
,
null
,
null
,
null
,
null
);
}
}
else
{
// Make sure we are not attempting to seal the package
// at this code source URL.
if
((
man
!=
null
)
&&
isSealed
(
pkgname
,
man
))
{
throw
new
SecurityException
(
"sealing violation: can't seal package "
+
pkgname
+
": already loaded"
);
}
catch
(
IllegalArgumentException
iae
)
{
// parallel-capable class loaders: re-verify in case of a
// race condition
if
(
getAndVerifyPackage
(
pkgname
,
man
,
url
)
==
null
)
{
// Should never happen
throw
new
AssertionError
(
"Cannot find package "
+
pkgname
);
}
}
}
else
{
if
(
man
!=
null
)
{
definePackage
(
pkgname
,
man
,
url
);
}
else
{
definePackage
(
pkgname
,
null
,
null
,
null
,
null
,
null
,
null
,
null
);
}
}
}
// Now read the class bytes and define the class
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录