Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
f9f977d4
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f9f977d4
编写于
2月 22, 2013
作者:
A
alanb
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8008290: (profiles) Startup regression due to additional checking of JAR file manifests
Reviewed-by: lancea, chegar, iris, mchung, sherman
上级
89687230
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
104 addition
and
52 deletion
+104
-52
src/share/classes/java/util/jar/JarFile.java
src/share/classes/java/util/jar/JarFile.java
+97
-48
src/share/classes/java/util/jar/JavaUtilJarAccessImpl.java
src/share/classes/java/util/jar/JavaUtilJarAccessImpl.java
+4
-0
src/share/classes/sun/misc/JavaUtilJarAccess.java
src/share/classes/sun/misc/JavaUtilJarAccess.java
+1
-0
src/share/classes/sun/misc/URLClassPath.java
src/share/classes/sun/misc/URLClassPath.java
+2
-4
未找到文件。
src/share/classes/java/util/jar/JarFile.java
浏览文件 @
f9f977d4
...
...
@@ -63,8 +63,13 @@ class JarFile extends ZipFile {
private
JarVerifier
jv
;
private
boolean
jvInitialized
;
private
boolean
verify
;
private
boolean
computedHasClassPathAttribute
;
// indicates if Class-Path attribute present (only valid if hasCheckedSpecialAttributes true)
private
boolean
hasClassPathAttribute
;
// indicates if Profile attribute present (only valid if hasCheckedSpecialAttributes true)
private
boolean
hasProfileAttribute
;
// true if manifest checked for special attributes
private
volatile
boolean
hasCheckedSpecialAttributes
;
// Set up JavaUtilJarAccess in SharedSecrets
static
{
...
...
@@ -421,27 +426,45 @@ class JarFile extends ZipFile {
jv
);
}
// Statics for hand-coded Boyer-Moore search in hasClassPathAttribute()
// Statics for hand-coded Boyer-Moore search
private
static
final
char
[]
CLASSPATH_CHARS
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'-'
,
'p'
,
'a'
,
't'
,
'h'
};
private
static
final
char
[]
PROFILE_CHARS
=
{
'p'
,
'r'
,
'o'
,
'f'
,
'i'
,
'l'
,
'e'
};
// The bad character shift for "class-path"
private
static
int
[]
lastOcc
;
private
static
final
int
[]
CLASSPATH_LASTOCC
;
// The good suffix shift for "class-path"
private
static
int
[]
optoSft
;
// Initialize the shift arrays to search for "class-path"
private
static
char
[]
src
=
{
'c'
,
'l'
,
'a'
,
's'
,
's'
,
'-'
,
'p'
,
'a'
,
't'
,
'h'
};
private
static
final
int
[]
CLASSPATH_OPTOSFT
;
// The bad character shift for "profile"
private
static
final
int
[]
PROFILE_LASTOCC
;
// The good suffix shift for "profile"
private
static
final
int
[]
PROFILE_OPTOSFT
;
static
{
lastOcc
=
new
int
[
128
];
optoSft
=
new
int
[
10
];
lastOcc
[(
int
)
'c'
]=
1
;
lastOcc
[(
int
)
'l'
]=
2
;
lastOcc
[(
int
)
's'
]=
5
;
lastOcc
[(
int
)
'-'
]=
6
;
lastOcc
[(
int
)
'p'
]=
7
;
lastOcc
[(
int
)
'a'
]=
8
;
lastOcc
[(
int
)
't'
]=
9
;
lastOcc
[(
int
)
'h'
]=
10
;
CLASSPATH_LASTOCC
=
new
int
[
128
];
CLASSPATH_OPTOSFT
=
new
int
[
10
];
CLASSPATH_LASTOCC
[(
int
)
'c'
]
=
1
;
CLASSPATH_LASTOCC
[(
int
)
'l'
]
=
2
;
CLASSPATH_LASTOCC
[(
int
)
's'
]
=
5
;
CLASSPATH_LASTOCC
[(
int
)
'-'
]
=
6
;
CLASSPATH_LASTOCC
[(
int
)
'p'
]
=
7
;
CLASSPATH_LASTOCC
[(
int
)
'a'
]
=
8
;
CLASSPATH_LASTOCC
[(
int
)
't'
]
=
9
;
CLASSPATH_LASTOCC
[(
int
)
'h'
]
=
10
;
for
(
int
i
=
0
;
i
<
9
;
i
++)
optoSft
[
i
]=
10
;
optoSft
[
9
]=
1
;
CLASSPATH_OPTOSFT
[
i
]
=
10
;
CLASSPATH_OPTOSFT
[
9
]=
1
;
PROFILE_LASTOCC
=
new
int
[
128
];
PROFILE_OPTOSFT
=
new
int
[
7
];
PROFILE_LASTOCC
[(
int
)
'p'
]
=
1
;
PROFILE_LASTOCC
[(
int
)
'r'
]
=
2
;
PROFILE_LASTOCC
[(
int
)
'o'
]
=
3
;
PROFILE_LASTOCC
[(
int
)
'f'
]
=
4
;
PROFILE_LASTOCC
[(
int
)
'i'
]
=
5
;
PROFILE_LASTOCC
[(
int
)
'l'
]
=
6
;
PROFILE_LASTOCC
[(
int
)
'e'
]
=
7
;
for
(
int
i
=
0
;
i
<
6
;
i
++)
PROFILE_OPTOSFT
[
i
]
=
7
;
PROFILE_OPTOSFT
[
6
]
=
1
;
}
private
JarEntry
getManEntry
()
{
...
...
@@ -466,17 +489,55 @@ class JarFile extends ZipFile {
return
manEntry
;
}
// Returns true iff this jar file has a manifest with a class path
// attribute. Returns false if there is no manifest or the manifest
// does not contain a "Class-Path" attribute. Currently exported to
// core libraries via sun.misc.SharedSecrets.
/**
* Returns {@code true} iff this JAR file has a manifest with the
* Class-Path attribute
*/
boolean
hasClassPathAttribute
()
throws
IOException
{
if
(
computedHasClassPathAttribute
)
{
return
hasClassPathAttribute
;
checkForSpecialAttributes
();
return
hasClassPathAttribute
;
}
/**
* Returns {@code true} iff this JAR file has a manifest with the
* Profile attribute
*/
boolean
hasProfileAttribute
()
throws
IOException
{
checkForSpecialAttributes
();
return
hasProfileAttribute
;
}
/**
* Returns true if the pattern {@code src} is found in {@code b}.
* The {@code lastOcc} and {@code optoSft} arrays are the precomputed
* bad character and good suffix shifts.
*/
private
boolean
match
(
char
[]
src
,
byte
[]
b
,
int
[]
lastOcc
,
int
[]
optoSft
)
{
int
len
=
src
.
length
;
int
last
=
b
.
length
-
len
;
int
i
=
0
;
next:
while
(
i
<=
last
)
{
for
(
int
j
=(
len
-
1
);
j
>=
0
;
j
--)
{
char
c
=
(
char
)
b
[
i
+
j
];
c
=
(((
c
-
'A'
)|(
'Z'
-
c
))
>=
0
)
?
(
char
)(
c
+
32
)
:
c
;
if
(
c
!=
src
[
j
])
{
i
+=
Math
.
max
(
j
+
1
-
lastOcc
[
c
&
0x7F
],
optoSft
[
j
]);
continue
next
;
}
}
return
true
;
}
return
false
;
}
hasClassPathAttribute
=
false
;
if
(!
isKnownToNotHaveClassPathAttribute
())
{
/**
* On first invocation, check if the JAR file has the Class-Path
* and/or Profile attributes. A no-op on subsequent calls.
*/
private
void
checkForSpecialAttributes
()
throws
IOException
{
if
(
hasCheckedSpecialAttributes
)
return
;
if
(!
isKnownNotToHaveSpecialAttributes
())
{
JarEntry
manEntry
=
getManEntry
();
if
(
manEntry
!=
null
)
{
byte
[]
b
=
new
byte
[(
int
)
manEntry
.
getSize
()];
...
...
@@ -484,31 +545,18 @@ class JarFile extends ZipFile {
super
.
getInputStream
(
manEntry
)))
{
dis
.
readFully
(
b
,
0
,
b
.
length
);
}
int
last
=
b
.
length
-
src
.
length
;
int
i
=
0
;
next:
while
(
i
<=
last
)
{
for
(
int
j
=
9
;
j
>=
0
;
j
--)
{
char
c
=
(
char
)
b
[
i
+
j
];
c
=
(((
c
-
'A'
)|(
'Z'
-
c
))
>=
0
)
?
(
char
)(
c
+
32
)
:
c
;
if
(
c
!=
src
[
j
])
{
i
+=
Math
.
max
(
j
+
1
-
lastOcc
[
c
&
0x7F
],
optoSft
[
j
]);
continue
next
;
}
}
if
(
match
(
CLASSPATH_CHARS
,
b
,
CLASSPATH_LASTOCC
,
CLASSPATH_OPTOSFT
))
hasClassPathAttribute
=
true
;
break
;
}
if
(
match
(
PROFILE_CHARS
,
b
,
PROFILE_LASTOCC
,
PROFILE_OPTOSFT
))
hasProfileAttribute
=
true
;
}
}
computedHasClassPathAttribute
=
true
;
return
hasClassPathAttribute
;
hasCheckedSpecialAttributes
=
true
;
}
private
static
String
javaHome
;
private
static
String
[]
jarNames
;
private
boolean
isKnown
ToNotHaveClassPathAttribute
()
{
private
static
volatile
String
[]
jarNames
;
private
boolean
isKnown
NotToHaveSpecialAttributes
()
{
// Optimize away even scanning of manifest for jar files we
// deliver which don't have a class-path attribute. If one of
// these jars is changed to include such an attribute this code
...
...
@@ -518,19 +566,20 @@ class JarFile extends ZipFile {
new
GetPropertyAction
(
"java.home"
));
}
if
(
jarNames
==
null
)
{
String
[]
names
=
new
String
[
1
0
];
String
[]
names
=
new
String
[
1
1
];
String
fileSep
=
File
.
separator
;
int
i
=
0
;
names
[
i
++]
=
fileSep
+
"rt.jar"
;
names
[
i
++]
=
fileSep
+
"sunrsasign.jar"
;
names
[
i
++]
=
fileSep
+
"jsse.jar"
;
names
[
i
++]
=
fileSep
+
"jce.jar"
;
names
[
i
++]
=
fileSep
+
"charsets.jar"
;
names
[
i
++]
=
fileSep
+
"dnsns.jar"
;
names
[
i
++]
=
fileSep
+
"
ldapsec
.jar"
;
names
[
i
++]
=
fileSep
+
"
zipfs
.jar"
;
names
[
i
++]
=
fileSep
+
"localedata.jar"
;
names
[
i
++]
=
fileSep
=
"cldrdata.jar"
;
names
[
i
++]
=
fileSep
+
"sunjce_provider.jar"
;
names
[
i
++]
=
fileSep
+
"sunpkcs11.jar"
;
names
[
i
++]
=
fileSep
+
"sunec.jar"
;
jarNames
=
names
;
}
...
...
src/share/classes/java/util/jar/JavaUtilJarAccessImpl.java
浏览文件 @
f9f977d4
...
...
@@ -37,6 +37,10 @@ class JavaUtilJarAccessImpl implements JavaUtilJarAccess {
return
jar
.
hasClassPathAttribute
();
}
public
boolean
jarFileHasProfileAttribute
(
JarFile
jar
)
throws
IOException
{
return
jar
.
hasProfileAttribute
();
}
public
CodeSource
[]
getCodeSources
(
JarFile
jar
,
URL
url
)
{
return
jar
.
getCodeSources
(
url
);
}
...
...
src/share/classes/sun/misc/JavaUtilJarAccess.java
浏览文件 @
f9f977d4
...
...
@@ -35,6 +35,7 @@ import java.util.jar.JarFile;
public
interface
JavaUtilJarAccess
{
public
boolean
jarFileHasClassPathAttribute
(
JarFile
jar
)
throws
IOException
;
public
boolean
jarFileHasProfileAttribute
(
JarFile
jar
)
throws
IOException
;
public
CodeSource
[]
getCodeSources
(
JarFile
jar
,
URL
url
);
public
CodeSource
getCodeSource
(
JarFile
jar
,
URL
url
,
String
name
);
public
Enumeration
<
String
>
entryNames
(
JarFile
jar
,
CodeSource
[]
cs
);
...
...
src/share/classes/sun/misc/URLClassPath.java
浏览文件 @
f9f977d4
...
...
@@ -808,9 +808,6 @@ public class URLClassPath {
/**
* If the Profile attribute is present then this method checks that the runtime
* supports that profile.
*
* ## Add a fast path like Class-Path to avoid reading the manifest when the attribute
* is not present.
*/
void
checkProfileAttribute
()
throws
IOException
{
Manifest
man
=
jar
.
getManifest
();
...
...
@@ -998,7 +995,8 @@ public class URLClassPath {
parseExtensionsDependencies
();
// check Profile attribute if present
if
(!
profileCheckSuppressedByLauncher
)
{
if
(!
profileCheckSuppressedByLauncher
&&
SharedSecrets
.
javaUtilJarAccess
().
jarFileHasProfileAttribute
(
jar
))
{
checkProfileAttribute
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录