FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
jruby-openssl/src/build/java/ShimInliner.java at master · jruby/jruby-openssl · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
jruby
/
jruby-openssl
Public
Notifications
You must be signed in to change notification settings
Fork
87
Star
49
Code
Issues
20
Pull requests
3
Discussions
Actions
Wiki
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
jruby-openssl
/
src
/
build
/
java
/
ShimInliner.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
264 lines (236 loc) · 11 KB
Breadcrumbs
jruby-openssl
/
src
/
build
/
java
/
ShimInliner.java
Copy path
File metadata and controls
264 lines (236 loc) · 11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
import
java
.
io
.
IOException
;
import
java
.
nio
.
file
.
Files
;
import
java
.
nio
.
file
.
Path
;
import
java
.
nio
.
file
.
Paths
;
import
java
.
util
.
ArrayList
;
import
java
.
util
.
Collection
;
import
java
.
util
.
HashMap
;
import
java
.
util
.
LinkedHashMap
;
import
java
.
util
.
LinkedHashSet
;
import
java
.
util
.
List
;
import
java
.
util
.
Map
;
import
java
.
util
.
stream
.
Stream
;
import
org
.
objectweb
.
asm
.
ClassReader
;
import
org
.
objectweb
.
asm
.
ClassWriter
;
import
org
.
objectweb
.
asm
.
Opcodes
;
import
org
.
objectweb
.
asm
.
Type
;
import
org
.
objectweb
.
asm
.
tree
.
AbstractInsnNode
;
import
org
.
objectweb
.
asm
.
tree
.
ClassNode
;
import
org
.
objectweb
.
asm
.
tree
.
FrameNode
;
import
org
.
objectweb
.
asm
.
tree
.
IincInsnNode
;
import
org
.
objectweb
.
asm
.
tree
.
InsnList
;
import
org
.
objectweb
.
asm
.
tree
.
JumpInsnNode
;
import
org
.
objectweb
.
asm
.
tree
.
LabelNode
;
import
org
.
objectweb
.
asm
.
tree
.
LineNumberNode
;
import
org
.
objectweb
.
asm
.
tree
.
MethodInsnNode
;
import
org
.
objectweb
.
asm
.
tree
.
MethodNode
;
import
org
.
objectweb
.
asm
.
tree
.
TryCatchBlockNode
;
import
org
.
objectweb
.
asm
.
tree
.
VarInsnNode
;
import
org
.
objectweb
.
asm
.
tree
.
analysis
.
Analyzer
;
import
org
.
objectweb
.
asm
.
tree
.
analysis
.
BasicInterpreter
;
import
org
.
objectweb
.
asm
.
tree
.
analysis
.
BasicValue
;
import
org
.
objectweb
.
asm
.
tree
.
analysis
.
Frame
;
/*
* Inlines every static method of org.jruby.ext.openssl.shim and the classes.
* Classes that do not call into the shim are not rewritten at all.
*
* NOTE: unlike ProGuard only removes the *call*; does not fold the constant left behind,
* so a dead FIPS branch still stays in the bytecode.
*/
public
class
ShimInliner
{
private
static
final
String
SHIM_PKG
=
"org/jruby/ext/openssl/shim/"
;
public
static
void
main
(
String
[]
args
)
throws
Exception
{
final
Path
classesDir
=
Paths
.
get
(
args
[
0
]);
final
List
<
Path
>
classFiles
=
new
ArrayList
<>();
try
(
Stream
<
Path
>
walk
=
Files
.
walk
(
classesDir
)) {
walk
.
filter
(
p
->
p
.
toString
().
endsWith
(
".class"
)).
forEach
(
classFiles
::
add
);
}
// every static shim method is a candidate
final
Map
<
String
,
ClassNode
>
shims
=
new
LinkedHashMap
<>();
for
(
Path
p
:
classFiles
) {
ClassNode
cn
=
read
(
p
);
if
(
cn
.
name
.
startsWith
(
SHIM_PKG
))
shims
.
put
(
cn
.
name
,
cn
);
}
if
(
shims
.
isEmpty
()) {
// already inlined (re-run over the same output dir)
// unless a caller still points at a shim we just cannot see
if
(
referencedBy
(
classFiles
,
classesDir
,
SHIM_PKG
)) {
throw
new
IllegalStateException
(
"shim classes are gone but still referenced - "
+
classesDir
+
" is half-compiled, run a clean build"
);
}
System
.
out
.
println
(
"[ShimInliner] no shim classes, nothing to do"
);
return
;
}
final
Map
<
String
,
MethodNode
>
candidates
=
new
HashMap
<>();
for
(
ClassNode
cn
:
shims
.
values
()) {
for
(
MethodNode
mn
:
cn
.
methods
) {
if
((
mn
.
access
&
Opcodes
.
ACC_STATIC
) !=
0
&& !
"<clinit>"
.
equals
(
mn
.
name
)) {
candidates
.
put
(
cn
.
name
+
'.'
+
mn
.
name
+
mn
.
desc
,
mn
);
}
}
}
// some shim methods call each other (decodeString -> private helpers);
// flatten the shim bodies first - avoid an inlined body pointing at a shim class
for
(
int
pass
=
0
;
pass
<
3
;
pass
++) {
for
(
ClassNode
cn
:
shims
.
values
()) {
// a skip here may still inline on a later pass, leftovers surface as a kept shim
for
(
MethodNode
mn
:
cn
.
methods
)
inlineInto
(
cn
,
mn
,
candidates
,
new
ArrayList
<>());
}
}
final
Collection
<
String
>
skipped
=
new
LinkedHashSet
<>();
int
rewritten
=
0
,
inlined
=
0
;
for
(
Path
p
:
classFiles
) {
ClassNode
cn
=
read
(
p
);
if
(
cn
.
name
.
startsWith
(
SHIM_PKG
))
continue
;
int
n
=
0
;
for
(
MethodNode
mn
:
cn
.
methods
)
n
+=
inlineInto
(
cn
,
mn
,
candidates
,
skipped
);
if
(
n
>
0
) {
Files
.
write
(
p
,
write
(
cn
));
rewritten
++;
inlined
+=
n
;
System
.
out
.
println
(
"[ShimInliner] "
+
cn
.
name
+
": inlined "
+
n
+
" call(s)"
);
}
}
int
deleted
=
0
;
final
List
<
String
>
kept
=
new
ArrayList
<>();
for
(
String
shim
:
shims
.
keySet
()) {
if
(
referencedBy
(
classFiles
,
classesDir
,
shim
)) {
kept
.
add
(
shim
);
continue
;
}
Files
.
delete
(
classesDir
.
resolve
(
shim
+
".class"
));
deleted
++;
}
System
.
out
.
println
(
"[ShimInliner] inlined "
+
inlined
+
" call(s) in "
+
rewritten
+
" class(es), deleted "
+
deleted
+
" of "
+
shims
.
size
() +
" shim class(es)"
);
// a shim left behind ships FIPS-variant code in the plain gem, refusing to build beats
// shipping it silently
if
(!
skipped
.
isEmpty
() || !
kept
.
isEmpty
()) {
StringBuilder
msg
=
new
StringBuilder
(
"shim inlining incomplete:"
);
for
(
String
s
:
skipped
)
msg
.
append
(
"
\n
not inlined: "
).
append
(
s
);
for
(
String
s
:
kept
)
msg
.
append
(
"
\n
still referenced: "
).
append
(
s
);
throw
new
IllegalStateException
(
msg
.
toString
());
}
}
/** @return number of call sites inlined */
private
static
int
inlineInto
(
ClassNode
owner
,
MethodNode
method
,
Map
<
String
,
MethodNode
>
candidates
,
Collection
<
String
>
skipped
)
throws
Exception
{
if
(
method
.
instructions
==
null
||
method
.
instructions
.
size
() ==
0
)
return
0
;
final
List
<
MethodInsnNode
>
calls
=
new
ArrayList
<>();
for
(
AbstractInsnNode
insn
:
method
.
instructions
.
toArray
()) {
if
(
insn
.
getOpcode
() ==
Opcodes
.
INVOKESTATIC
) {
MethodInsnNode
call
= (
MethodInsnNode
)
insn
;
if
(
call
.
owner
.
startsWith
(
SHIM_PKG
) &&
candidates
.
containsKey
(
key
(
call
)))
calls
.
add
(
call
);
}
}
if
(
calls
.
isEmpty
())
return
0
;
// entering a handler clears the operand stack, so a callee that catches can only be
// inlined where the stack holds nothing but the call arguments - index up front,
// splicing shifts instruction positions
Frame
<
BasicValue
>[]
frames
=
null
;
final
Map
<
MethodInsnNode
,
Integer
>
indices
=
new
HashMap
<>();
for
(
MethodInsnNode
call
:
calls
) {
if
(!
candidates
.
get
(
key
(
call
)).
tryCatchBlocks
.
isEmpty
()) {
if
(
frames
==
null
)
frames
=
new
Analyzer
<>(
new
BasicInterpreter
()).
analyze
(
owner
.
name
,
method
);
indices
.
put
(
call
,
method
.
instructions
.
indexOf
(
call
));
}
}
int
count
=
0
;
for
(
MethodInsnNode
call
:
calls
) {
MethodNode
callee
=
candidates
.
get
(
key
(
call
));
if
(!
callee
.
tryCatchBlocks
.
isEmpty
()) {
Frame
<
BasicValue
>
frame
=
frames
[
indices
.
get
(
call
)];
int
args
=
Type
.
getArgumentTypes
(
call
.
desc
).
length
;
if
(
frame
==
null
||
frame
.
getStackSize
() -
args
!=
0
) {
skipped
.
add
(
key
(
call
) +
" in "
+
owner
.
name
+
'.'
+
method
.
name
+
" - catches exceptions, stack not empty"
);
continue
;
}
}
splice
(
method
,
call
,
callee
);
count
++;
}
return
count
;
}
private
static
void
splice
(
MethodNode
method
,
MethodInsnNode
call
,
MethodNode
callee
) {
final
int
base
=
method
.
maxLocals
;
// callee locals live above the caller's
final
Type
[]
argTypes
=
Type
.
getArgumentTypes
(
call
.
desc
);
final
InsnList
body
=
new
InsnList
();
int
[]
slots
=
new
int
[
argTypes
.
length
];
for
(
int
i
=
0
,
slot
=
0
;
i
<
argTypes
.
length
;
i
++) {
slots
[
i
] =
slot
;
slot
+=
argTypes
[
i
].
getSize
();
}
for
(
int
i
=
argTypes
.
length
-
1
;
i
>=
0
;
i
--) {
// arguments come off the stack in reverse
body
.
add
(
new
VarInsnNode
(
argTypes
[
i
].
getOpcode
(
Opcodes
.
ISTORE
),
base
+
slots
[
i
]));
}
final
Map
<
LabelNode
,
LabelNode
>
labels
=
new
HashMap
<>();
for
(
AbstractInsnNode
insn
:
callee
.
instructions
.
toArray
()) {
if
(
insn
instanceof
LabelNode
)
labels
.
put
((
LabelNode
)
insn
,
new
LabelNode
());
}
final
LabelNode
end
=
new
LabelNode
();
for
(
AbstractInsnNode
insn
:
callee
.
instructions
.
toArray
()) {
// callee's line numbers belong to another source file, and frames get
// recomputed on write
if
(
insn
instanceof
LineNumberNode
||
insn
instanceof
FrameNode
)
continue
;
int
op
=
insn
.
getOpcode
();
if
(
op
>=
Opcodes
.
IRETURN
&&
op
<=
Opcodes
.
RETURN
) {
body
.
add
(
new
JumpInsnNode
(
Opcodes
.
GOTO
,
end
));
// return value stays on the stack
continue
;
}
AbstractInsnNode
copy
=
insn
.
clone
(
labels
);
if
(
copy
instanceof
VarInsnNode
) ((
VarInsnNode
)
copy
).
var
+=
base
;
else
if
(
copy
instanceof
IincInsnNode
) ((
IincInsnNode
)
copy
).
var
+=
base
;
body
.
add
(
copy
);
}
body
.
add
(
end
);
for
(
TryCatchBlockNode
tcb
:
callee
.
tryCatchBlocks
) {
method
.
tryCatchBlocks
.
add
(
new
TryCatchBlockNode
(
labels
.
get
(
tcb
.
start
),
labels
.
get
(
tcb
.
end
),
labels
.
get
(
tcb
.
handler
),
tcb
.
type
));
}
method
.
instructions
.
insertBefore
(
call
,
body
);
method
.
instructions
.
remove
(
call
);
method
.
maxLocals
=
base
+
callee
.
maxLocals
;
}
private
static
boolean
referencedBy
(
List
<
Path
>
classFiles
,
Path
classesDir
,
String
shim
)
throws
IOException
{
final
byte
[]
needle
=
shim
.
getBytes
(
"UTF-8"
);
// the constant pool stores it verbatim
for
(
Path
p
:
classFiles
) {
if
(
p
.
startsWith
(
classesDir
.
resolve
(
SHIM_PKG
)))
continue
;
if
(
indexOf
(
Files
.
readAllBytes
(
p
),
needle
) >=
0
)
return
true
;
}
return
false
;
}
private
static
int
indexOf
(
byte
[]
haystack
,
byte
[]
needle
) {
outer
:
for
(
int
i
=
0
;
i
<=
haystack
.
length
-
needle
.
length
;
i
++) {
for
(
int
j
=
0
;
j
<
needle
.
length
;
j
++) {
if
(
haystack
[
i
+
j
] !=
needle
[
j
])
continue
outer
;
}
return
i
;
}
return
-
1
;
}
private
static
String
key
(
MethodInsnNode
call
) {
return
call
.
owner
+
'.'
+
call
.
name
+
call
.
desc
;
}
private
static
ClassNode
read
(
Path
p
)
throws
IOException
{
ClassNode
cn
=
new
ClassNode
();
new
ClassReader
(
Files
.
readAllBytes
(
p
)).
accept
(
cn
,
ClassReader
.
SKIP_FRAMES
);
return
cn
;
}
private
static
byte
[]
write
(
ClassNode
cn
) {
ClassWriter
cw
=
new
ClassWriter
(
ClassWriter
.
COMPUTE_FRAMES
|
ClassWriter
.
COMPUTE_MAXS
) {
@
Override
protected
String
getCommonSuperClass
(
String
type1
,
String
type2
) {
// resolved off the compile classpath we were launched with
try
{
return
super
.
getCommonSuperClass
(
type1
,
type2
);
}
catch
(
RuntimeException
e
) {
throw
new
IllegalStateException
(
"cannot resolve "
+
type1
+
" / "
+
type2
,
e
);
}
}
};
cn
.
accept
(
cw
);
return
cw
.
toByteArray
();
}
}
Back
|
FazBrowse Home
|
New Git URL