Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
bd55ca2b
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看板
提交
bd55ca2b
编写于
1月 31, 2014
作者:
V
vlivanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8033278: Missed access checks for Lookup.unreflect* after 8032585
Reviewed-by: jrose, twisti
上级
b824ea6b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
63 addition
and
26 deletion
+63
-26
src/share/classes/sun/invoke/util/VerifyAccess.java
src/share/classes/sun/invoke/util/VerifyAccess.java
+10
-17
test/java/lang/invoke/ProtectedMemberDifferentPackage/Test.java
...ava/lang/invoke/ProtectedMemberDifferentPackage/Test.java
+1
-1
test/java/lang/invoke/ProtectedMemberDifferentPackage/p1/T2.java
...va/lang/invoke/ProtectedMemberDifferentPackage/p1/T2.java
+51
-2
test/java/lang/invoke/ProtectedMemberDifferentPackage/p2/T3.java
...va/lang/invoke/ProtectedMemberDifferentPackage/p2/T3.java
+1
-6
未找到文件。
src/share/classes/sun/invoke/util/VerifyAccess.java
浏览文件 @
bd55ca2b
...
...
@@ -90,33 +90,26 @@ public class VerifyAccess {
if
(
allowedModes
==
0
)
return
false
;
assert
((
allowedModes
&
PUBLIC
)
!=
0
&&
(
allowedModes
&
~(
ALL_ACCESS_MODES
|
PACKAGE_ALLOWED
))
==
0
);
// Usually refc and defc are the same, but if they differ, verify them both.
if
(
refc
!=
defc
)
{
if
(!
isClassAccessible
(
refc
,
lookupClass
,
allowedModes
))
{
// Note that defc is verified in the switch below.
return
false
;
}
if
((
mods
&
(
ALL_ACCESS_MODES
|
STATIC
))
==
(
PROTECTED
|
STATIC
)
&&
(
allowedModes
&
PROTECTED_OR_PACKAGE_ALLOWED
)
!=
0
)
{
// Apply the special rules for refc here.
if
(!
isRelatedClass
(
refc
,
lookupClass
))
return
isSamePackage
(
defc
,
lookupClass
);
// If refc == defc, the call to isPublicSuperClass will do
// the whole job, since in that case refc (as defc) will be
// a superclass of the lookup class.
}
// The symbolic reference class (refc) must always be fully verified.
if
(!
isClassAccessible
(
refc
,
lookupClass
,
allowedModes
))
{
return
false
;
}
// Usually refc and defc are the same, but verify defc also in case they differ.
if
(
defc
==
lookupClass
&&
(
allowedModes
&
PRIVATE
)
!=
0
)
return
true
;
// easy check; all self-access is OK
switch
(
mods
&
ALL_ACCESS_MODES
)
{
case
PUBLIC:
if
(
refc
!=
defc
)
return
true
;
// already checked above
return
isClassAccessible
(
refc
,
lookupClass
,
allowedModes
);
return
true
;
// already checked above
case
PROTECTED:
if
((
allowedModes
&
PROTECTED_OR_PACKAGE_ALLOWED
)
!=
0
&&
isSamePackage
(
defc
,
lookupClass
))
return
true
;
if
((
allowedModes
&
PROTECTED
)
==
0
)
return
false
;
if
((
mods
&
STATIC
)
!=
0
&&
!
isRelatedClass
(
refc
,
lookupClass
))
return
false
;
if
((
allowedModes
&
PROTECTED
)
!=
0
&&
isSuperClass
(
defc
,
lookupClass
))
return
true
;
...
...
test/java/lang/invoke/ProtectedMemberDifferentPackage/Test.java
浏览文件 @
bd55ca2b
...
...
@@ -24,7 +24,7 @@
/**
* @test
* @bug 8032585
* @bug 8032585
8033278
* @summary JSR292: IllegalAccessError when attempting to invoke protected method from different package
*
* @compile p1/T2.java p2/T3.java
...
...
test/java/lang/invoke/ProtectedMemberDifferentPackage/p1/T2.java
浏览文件 @
bd55ca2b
...
...
@@ -23,8 +23,57 @@
*/
package
p1
;
import
p2.T3
;
import
java.lang.invoke.MethodHandle
;
import
java.lang.invoke.MethodHandles
;
import
java.lang.invoke.MethodHandles.Lookup
;
import
java.lang.invoke.MethodType
;
import
java.util.concurrent.Callable
;
class
T1
{
protected
void
m
()
{
System
.
out
.
println
(
"T1.m"
);}
protected
void
m1
()
{}
protected
static
void
m2
()
{}
}
public
class
T2
extends
T1
{}
public
class
T2
extends
T1
{
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
Lookup
LOOKUP
=
T3
.
lookup
();
Class
<
IllegalAccessException
>
IAE
=
IllegalAccessException
.
class
;
assertFailure
(
IAE
,
()
->
LOOKUP
.
findVirtual
(
T1
.
class
,
"m1"
,
MethodType
.
methodType
(
void
.
class
)));
assertFailure
(
IAE
,
()
->
LOOKUP
.
findStatic
(
T1
.
class
,
"m2"
,
MethodType
.
methodType
(
void
.
class
)));
assertSuccess
(()
->
LOOKUP
.
findVirtual
(
T2
.
class
,
"m1"
,
MethodType
.
methodType
(
void
.
class
)));
assertSuccess
(()
->
LOOKUP
.
findVirtual
(
T3
.
class
,
"m1"
,
MethodType
.
methodType
(
void
.
class
)));
assertSuccess
(()
->
LOOKUP
.
findStatic
(
T2
.
class
,
"m2"
,
MethodType
.
methodType
(
void
.
class
)));
assertSuccess
(()
->
LOOKUP
.
findStatic
(
T3
.
class
,
"m2"
,
MethodType
.
methodType
(
void
.
class
)));
assertFailure
(
IAE
,
()
->
LOOKUP
.
unreflect
(
T1
.
class
.
getDeclaredMethod
(
"m1"
)));
assertFailure
(
IAE
,
()
->
LOOKUP
.
unreflect
(
T1
.
class
.
getDeclaredMethod
(
"m2"
)));
System
.
out
.
println
(
"TEST PASSED"
);
}
public
static
void
assertFailure
(
Class
<?
extends
Throwable
>
expectedError
,
Callable
r
)
{
try
{
r
.
call
();
}
catch
(
Throwable
e
)
{
if
(
expectedError
.
isAssignableFrom
(
e
.
getClass
()))
{
return
;
// expected error
}
else
{
throw
new
Error
(
"Unexpected error type: "
+
e
.
getClass
()+
"; expected type: "
+
expectedError
,
e
);
}
}
throw
new
Error
(
"No error"
);
}
public
static
void
assertSuccess
(
Callable
r
)
{
try
{
r
.
call
();
}
catch
(
Throwable
e
)
{
throw
new
Error
(
"Unexpected error"
,
e
);
}
}
}
test/java/lang/invoke/ProtectedMemberDifferentPackage/p2/T3.java
浏览文件 @
bd55ca2b
...
...
@@ -25,13 +25,8 @@ package p2;
import
p1.T2
;
import
java.lang.invoke.MethodHandle
;
import
java.lang.invoke.MethodHandles
;
import
java.lang.invoke.MethodType
;
public
class
T3
extends
T2
{
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
MethodHandles
.
lookup
().
findVirtual
(
T3
.
class
,
"m"
,
MethodType
.
methodType
(
void
.
class
));
System
.
out
.
println
(
"TEST PASSED"
);
}
public
static
MethodHandles
.
Lookup
lookup
()
{
return
MethodHandles
.
lookup
();
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录