-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.rs
348 lines (326 loc) · 12.4 KB
/
proxy.rs
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
use crate::{
convert::*, jni_attach_vm, jni_clear_ex, jni_last_cleared_ex, loader::*, AutoLocal,
AutoLocalGlobalize, JObjectAutoLocal,
};
use jni::{
descriptors::Desc,
errors::Error,
objects::{GlobalRef, JClass, JObject, JObjectArray, JThrowable},
sys::{jlong, jsize},
JNIEnv, NativeMethod,
};
use std::{
cell::Cell,
collections::HashMap,
sync::{Arc, LazyLock, Mutex, OnceLock},
time::Instant,
};
// Maps Java invocation handler IDs to Rust closures.
// `LazyLock` is required for a const initializer.
// `Arc` is required for having `dyn` closures and using them after dropping the MutexGuard.
static RUST_HANDLERS: LazyLock<Mutex<HashMap<i64, Arc<RustHandler>>>> =
LazyLock::new(|| Mutex::new(HashMap::new()));
// The lifetime sugar cannot apply here, because the closure requires multiple reference
// as parameters. Reference: <https://doc.rust-lang.org/stable/nomicon/hrtb.html>.
// Requiring all references here to have the same lifetime bounds doesn't introduce
// any inconvenience outside, because these closures are called only in `rust_callback()`.
// It's tested that returning a new local reference to the Java caller doesn't leak.
type RustHandler = dyn for<'a> Fn(&mut JNIEnv<'a>, &JObject<'a>, &[&JObject<'a>]) -> Result<AutoLocal<'a>, Error>
+ Send
+ Sync;
// This indicates the invoked proxy ID for the Rust handler; it should be `None` elsewhere.
thread_local! {
static CURRENT_PROXY_ID: Cell<Option<i64>> = const { Cell::new(None) };
}
/// Java dynamic proxy with an invocation handler backed by the Rust closure.
///
/// It removes the Rust handler on dropping. Dropping the handler will cause problems
/// if methods with non-void returning type are still called from the Java side.
///
/// References:
/// - <https://developer.classpath.org/doc/java/lang/reflect/InvocationHandler.html>
/// - <https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/InvocationHandler.html>
/// - <https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Proxy.html>
///
/// Note: this cannot create an object of an abstract class, while `javassist` supports it.
///
/// ```
/// use jni_min_helper::*;
/// let env = &mut jni_attach_vm().unwrap();
/// let proxy = JniProxy::build(
/// None,
/// &["java/util/concurrent/Callable"],
/// |env, method, args| {
/// assert_eq!(args.len(), 0);
/// format!(
/// "Method `{}` is called with proxy {}.",
/// method.get_method_name(env)?,
/// JniProxy::current_proxy_id().unwrap()
/// )
/// .new_jobject(env)
/// }
/// )
/// .unwrap();
/// let result = env
/// .call_method(&proxy, "call", "()Ljava/lang/Object;", &[])
/// .get_object(env)
/// .unwrap() // panic here if the handler returned an error
/// .get_string(env)
/// .unwrap();
/// assert_eq!(result, format!("Method `call` is called with proxy {}.", proxy.id()));
///
/// // Now throw an exception inside the handler
/// let _ = jni_last_cleared_ex(); // discards it
/// assert!(jni_last_cleared_ex().is_none());
/// let proxy = JniProxy::build(None, &["java/lang/Runnable"], |env, _, _| {
/// let s = "a".new_jobject(env)?;
/// let _ = env.call_static_method(
/// "java/lang/Integer",
/// "parseInt",
/// "(Ljava/lang/String;)I",
/// &[(&s).into()],
/// )
/// .get_int()?; // prints exception and throws it
/// JniProxy::void(env)
/// })
/// .unwrap();
///
/// let result = env
/// .call_method(&proxy, "run", "()V", &[])
/// .map_err(jni_clear_ex_silent); // catches
/// assert!(result.is_err());
/// let last_ex = jni_last_cleared_ex().unwrap(); // takes it
/// assert!(last_ex.get_class_name(env).unwrap().contains("NumberFormatException"));
/// assert!(jni_last_cleared_ex().is_none());
///
/// // makes sure that further JNI operations still work
/// let x = jni::objects::JValue::from(-10);
/// let val = env
/// .call_static_method("java/lang/Math", "abs", "(I)I", &[x])
/// .get_int()
/// .unwrap();
/// assert_eq!(val, 10);
/// ```
#[derive(Debug)]
pub struct JniProxy {
rust_hdl_id: i64,
java_proxy: GlobalRef,
forget: bool,
}
impl AsRef<JObject<'static>> for JniProxy {
fn as_ref(&self) -> &JObject<'static> {
self.java_proxy.as_obj()
}
}
impl std::ops::Deref for JniProxy {
type Target = JObject<'static>;
fn deref(&self) -> &Self::Target {
self.java_proxy.as_obj()
}
}
impl JniProxy {
/// Gets the proxy handler ID for debugging.
pub fn id(&self) -> i64 {
self.rust_hdl_id
}
/// Leaks the Rust handler and returns the global reference of the Java proxy.
/// This is useful if the proxy is created for *once* in the program.
pub fn forget(mut self) -> GlobalRef {
self.forget = true;
self.java_proxy.clone()
}
}
impl Drop for JniProxy {
fn drop(&mut self) {
if self.forget {
return;
}
if let Ok(mut hdls_locked) = RUST_HANDLERS.lock() {
hdls_locked.remove(&self.rust_hdl_id);
}
}
}
impl JniProxy {
/// Creates a Java dynamic proxy with a new invocation handler backed by the Rust closure.
///
/// `class_loader` is needed if the interface definition is loaded from embeded class/dex data;
/// in such case, `interfaces` should not be strings. Otherwise they can be strings of Java
/// binary names (internal form) for `jni-rs` to look up them at runtime.
///
/// The Rust `handler` should implement methods required by these interfaces. Primitive types
/// have to be wrapped.
///
/// Returning an error in the Rust handler function causes a Java exception to be thrown,
/// which might be as bad as panicking in the function if the Java caller doesn't expect it.
/// Note: the thread ID got from Rust standard library may be printed, which can be different
/// from the ID printed by `ExceptionDescribe()` which is used on PC platforms: `Thread-0`
/// may be `ThreadId(1)` in Rust.
///
/// `equals()`, `hashCode()` and `toString()` are already implemented in the Java handler.
pub fn build<'a, T, E, I, F>(
class_loader: Option<&JObject<'_>>,
interfaces: I,
handler: F,
) -> Result<Self, Error>
where
T: Desc<'a, JClass<'a>>,
E: ExactSizeIterator<Item = T>,
I: IntoIterator<Item = T, IntoIter = E>,
F: for<'f> Fn(
&mut JNIEnv<'f>,
&JObject<'f>,
&[&JObject<'f>],
) -> Result<AutoLocal<'f>, Error>
+ Send
+ Sync
+ 'static,
{
let env = &mut jni_attach_vm()?;
// creates a Java class array for interfaces that should be supported
let interfaces = interfaces.into_iter();
let arr_interfaces = env
.new_object_array(
interfaces.len() as jsize,
"java/lang/Class",
JObject::null(),
)
.auto_local(env)?;
let arr_interfaces: &JObjectArray<'_> = arr_interfaces.as_ref().into();
for (i, intr) in interfaces.enumerate() {
let intr = intr.lookup(env)?;
env.set_object_array_element(arr_interfaces, i as jsize, intr.as_ref())
.map_err(jni_clear_ex)?
}
// creates the proxy object with a new invocation handler, register the Rust handler with its ID
let id: i64 = new_hdl_id();
let cls_invoc_hdl: &JClass<'_> = get_invoc_hdl_class()?.into();
let invoc_hdl = env
.new_object(cls_invoc_hdl, "(J)V", &[id.into()])
.auto_local(env)?;
let proxy = env.call_static_method(
"java/lang/reflect/Proxy",
"newProxyInstance",
"(Ljava/lang/ClassLoader;[Ljava/lang/Class;Ljava/lang/reflect/InvocationHandler;)Ljava/lang/Object;",
&[
class_loader.unwrap_or(&JObject::null()).into(),
(&arr_interfaces).into(),
(&invoc_hdl).into()
]
)
.get_object(env)
.globalize(env)?;
RUST_HANDLERS.lock().unwrap().insert(id, Arc::new(handler));
Ok(Self {
rust_hdl_id: id,
java_proxy: proxy,
forget: false,
})
}
/// Gets a proper void returning value for the Rust proxy handler.
/// Note that it doesn't clear any exception being thrown.
pub fn void<'a>(env: &JNIEnv<'a>) -> Result<AutoLocal<'a>, Error> {
Ok(JObject::null()).auto_local(env)
}
/// Gets the invoked proxy ID inside the Rust handler; returns `None` elsewhere.
pub fn current_proxy_id() -> Option<i64> {
CURRENT_PROXY_ID.get()
}
}
fn get_invoc_hdl_class() -> Result<&'static JObject<'static>, Error> {
static INVOC_HDL_CLASS: OnceLock<GlobalRef> = OnceLock::new();
if INVOC_HDL_CLASS.get().is_none() {
let env = &mut jni_attach_vm()?;
let class_loader = get_helper_class_loader()?;
let class = class_loader.load_class("rust/jniminhelper/InvocHdl")?;
// register `rust_callback()`
let native_method = NativeMethod {
name: "rustHdl".into(),
sig: "(JLjava/lang/reflect/Method;[Ljava/lang/Object;)Ljava/lang/Object;".into(),
fn_ptr: rust_callback as *mut _,
};
env.register_native_methods(class.as_class(), &[native_method])
.map_err(jni_clear_ex)?;
let _ = INVOC_HDL_CLASS.set(class);
}
Ok(INVOC_HDL_CLASS.get().unwrap())
}
// Note: this function depends on `clock_gettime()` on UNIX, including Android.
fn new_hdl_id() -> i64 {
static STARTUP_INSTANT: LazyLock<Instant> = LazyLock::new(Instant::now);
loop {
let nanos = STARTUP_INSTANT.elapsed().as_nanos();
let num = (nanos % (i64::MAX as u128)) as i64;
let lock = RUST_HANDLERS.lock().unwrap();
if !lock.contains_key(&num) {
return num;
}
}
}
fn read_object_array<'e>(
arr: &JObjectArray<'_>,
env: &mut JNIEnv<'e>,
) -> Result<Vec<AutoLocal<'e>>, Error> {
if arr.is_null() {
return Err(Error::NullPtr("read_object_array"));
}
let len = env.get_array_length(arr).map_err(jni_clear_ex)?;
let mut vec = Vec::with_capacity(len as usize);
for i in 0..len {
vec.push(env.get_object_array_element(arr, i).auto_local(env)?);
}
Ok(vec)
}
// Its local reference parameters are casted from their C counterparts,
// they don't cause memory leak problem.
extern "C" fn rust_callback<'a>(
mut env: JNIEnv<'a>,
_this: JObject<'a>,
rust_hdl_id: jlong,
method: JObject<'a>,
args: JObjectArray<'a>,
) -> JObject<'a> {
let lock = RUST_HANDLERS.lock().unwrap();
let rust_hdl = if let Some(f) = (*lock).get(&rust_hdl_id) {
f.clone()
} else {
warn!("Proxy {rust_hdl_id} is used, but the Rust handler has been dropped.");
return JObject::null();
};
// ReentrantMutex is not needed(?) even if `rust_hdl()` registers another handler.
drop(lock);
let args = read_object_array(&args, &mut env).unwrap_or_default();
let args: Vec<_> = args.iter().map(|o| o.as_ref()).collect();
CURRENT_PROXY_ID.replace(Some(rust_hdl_id as i64));
let result = rust_hdl(&mut env, &method, &args);
let _ = CURRENT_PROXY_ID.take();
match result {
Ok(obj) => obj.forget(),
Err(Error::JavaException) => {
let th = std::thread::current().id();
if !env.exception_check().unwrap() {
if let Some(ex) = jni_last_cleared_ex() {
// it was cleared by `jni_clear_ex()`, throw it again
warn!(
"{th:?}: Rust handler of proxy {rust_hdl_id} got an exception, throwing..."
);
let ex = env.new_local_ref(&ex).unwrap();
env.throw(JThrowable::from(ex)) // tested: it doesn't cause memory leak here
} else {
// it was cleared by some other mean in the closure
env.throw("{th:?}: Rust handler of proxy {rust_hdl_id} got an exception.")
}
.unwrap();
} // or else let it throw the exception automatically
JObject::null()
}
Err(e) => {
let th = std::thread::current().id();
env.throw(format!(
"{th:?}: Rust handler of proxy {rust_hdl_id}: {:?}",
e
))
.unwrap();
JObject::null()
}
}
}