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
// The contents of this file is licensed by its authors and copyright holders under the Apache
// License (Version 2.0), MIT license, or Mozilla Public License (Version 2.0), at your option. The
// contents of this file may not be copied, modified, or distributed except according to those
// terms. See the COPYRIGHT file at the top-level directory of this distribution for copies of these
// licenses and more information.

// See https://github.com/opensource-apple/objc4/blob/master/runtime/objc-exception.h

// A Rust panic is not caught by Objective-C @catch (id) handlers. This is good.
// An Objective-C exception is caught by Rust unwind handlers. This sucks.

extern crate core;
extern crate libc;

use objc;

#[allow(non_camel_case_types)]
pub type objc_exception_preprocessor = unsafe extern "C" fn(objc::id) -> objc::id;

#[allow(non_camel_case_types)]
pub type objc_exception_matcher =
  unsafe extern "C" fn(catch_type: objc::Class, exception: objc::id) -> libc::c_int;

#[allow(non_camel_case_types)]
pub type objc_uncaught_exception_handler = unsafe extern "C" fn(exception: objc::id);

#[allow(non_camel_case_types)]
pub type objc_exception_handler =
  unsafe extern "C" fn(unused: objc::id, context: *mut libc::c_void);

// TODO: tag some of these as #[unwind]?
#[link(name = "objc")]
extern "C" {
  pub fn objc_exception_throw(exception: objc::id) -> !;
  pub fn objc_exception_rethrow() -> !;
  pub fn objc_begin_catch(exc_buf: *mut libc::c_void) -> objc::id;
  pub fn objc_end_catch();
  pub fn objc_terminate() -> !;

  pub fn objc_setExceptionPreprocessor(
    f: objc_exception_preprocessor,
  ) -> objc_exception_preprocessor;
  pub fn objc_setExceptionMatcher(f: objc_exception_matcher) -> objc_exception_matcher;
  pub fn objc_setUncaughtExceptionHandler(
    f: objc_uncaught_exception_handler,
  ) -> objc_uncaught_exception_handler;

  #[cfg(not(target = "ios"))]
  pub fn objc_addExceptionHandler(f: objc_exception_handler, context: *mut libc::c_void) -> usize;
  #[cfg(not(target = "ios"))]
  pub fn objc_removeExceptionHandler(token: usize);
}

// Instead of using global_asm, we could catch the exception in pure Rust code using
// core::intrinsics::try (see the following for a simple example that works, though is incomplete).
// But it's unlikely that core::intrinsics::try will ever be stabilized. Additionally, this requires
// marking functions with #[unwind], or else the optimizer will remove the exception handler (since
// there's no visible exception being thrown in the Rust code). On top of that, if the Rust code is
// compiled with panic=abort, then we can't catch the exception at all. As much as I'd love to catch
// exceptions with pure Rust code, it's just not practical.
// pub unsafe fn try_catch(fn_to_call: fn(_: *mut u8), fn_arg: *mut u8) -> bool {
//   // See __rust_maybe_catch_panic for an example of how to use core::intrinsics::try.
//   let mut exception: *mut u8 = core::ptr::null_mut();
//   if core::intrinsics::try(fn_to_call, fn_arg, &mut exception as *mut _ as *mut _) != 0 {
//     // There was an exception. We need to call objc_begin_catch and objc_end_catch (and perhaps
//     // other things that I'm ignorant of, like _Unwind_DeleteException).
//     return false;
//   } else {
//     // There was no exception.
//     return true;
//   }
// }

pub fn throw<T>(exception: T) -> !
where
  T: Into<objc::id>,
{
  // TODO: move the exception to the autorelease pool.
  unsafe { objc_exception_throw(exception.into()) };
}

extern "C" {
  fn __objrs_catch_exception(
    payload: *mut libc::c_void,
    function: extern "C" fn(_: *mut libc::c_void),
    exception: *mut objc::id,
  ) -> bool;
}

#[inline]
pub fn catch_exception<F: FnOnce() -> R, R>(f: F) -> Result<R, objc::id> {
  // This isn't idiomatic Rust. This is how I'd implement it in C.
  #[repr(C)]
  #[allow(unions_with_drop_fields)]
  union FunctionAndRet<F, R> {
    f: F,
    ret: R,
  }

  extern "C" fn execute<F: FnOnce() -> R, R>(ptr: *mut libc::c_void) {
    let f = unsafe { core::ptr::read(ptr as *mut F) };
    let ret = f();
    unsafe { core::ptr::write(ptr as *mut R, ret) };
  }

  let mut function_and_ret = FunctionAndRet::<F, R> { f: f };
  let mut exception = unsafe { core::mem::uninitialized() };
  if unsafe {
    __objrs_catch_exception(
      &mut function_and_ret as *mut _ as *mut libc::c_void,
      execute::<F, R>,
      &mut exception,
    )
  } {
    core::mem::drop(unsafe { function_and_ret.f });
    return Err(exception);
  } else {
    return Ok(unsafe { function_and_ret.ret });
  }
}

#[macro_export]
macro_rules! catch_exception {
  ($($tt: tt)*) => {
    $crate::catch_exception(|| { $($tt)* })
  };
}

// int __objrs_catch_exception(void *data, void (*fn)(void *), id *exception) {
//   @try {
//     fn(data);
//     return 0;
//   } @catch (id value) {
//     *exception = value;
//     return 1;
//   }
// }

// I'm not entirely convinced the compiler generated truly optimal assembly here (in particular, the
// pushing and popping of registers).
#[cfg(target_arch = "x86_64")]
global_asm!{r#"
  .section  __TEXT,__text,regular,pure_instructions
  .globl  ___objrs_catch_exception
  .p2align  4, 0x90
___objrs_catch_exception:                             ## @__objrs_catch_exception
Lfunc_begin0:
  .cfi_startproc
  .cfi_personality 155, ___objc_personality_v0
  .cfi_lsda 16, Lexception0
## BB#0:
  pushq  %rbp
Lcfi0:
  .cfi_def_cfa_offset 16
  pushq  %rbx
Lcfi1:
  .cfi_def_cfa_offset 24
  pushq  %rax
Lcfi2:
  .cfi_def_cfa_offset 32
Lcfi3:
  .cfi_offset %rbx, -24
Lcfi4:
  .cfi_offset %rbp, -16
  movq  %rdx, %rbx
  xorl  %ebp, %ebp
Ltmp0:
  callq  *%rsi
Ltmp1:
LBB0_2:
  movl  %ebp, %eax
  addq  $8, %rsp
  popq  %rbx
  popq  %rbp
  retq
LBB0_1:
Ltmp2:
  movq  %rax, %rdi
  callq  _objc_begin_catch
  movq  %rax, %rbp
  movq  %rbp, %rdi
  callq  _objc_retainAutorelease
  movq  %rbp, (%rbx)
  callq  _objc_end_catch
  movl  $1, %ebp
  jmp  LBB0_2
Lfunc_end0:
  .cfi_endproc
  .section  __TEXT,__gcc_except_tab
  .p2align  2
GCC_except_table0:
Lexception0:
  .byte  255                     ## @LPStart Encoding = omit
  .byte  155                     ## @TType Encoding = indirect pcrel sdata4
  .asciz  "\242\200\200"          ## @TType base offset
  .byte  3                       ## Call site Encoding = udata4
  .byte  26                      ## Call site table length
Lset0 = Ltmp0-Lfunc_begin0              ## >> Call Site 1 <<
  .long  Lset0
Lset1 = Ltmp1-Ltmp0                     ##   Call between Ltmp0 and Ltmp1
  .long  Lset1
Lset2 = Ltmp2-Lfunc_begin0              ##     jumps to Ltmp2
  .long  Lset2
  .byte  1                       ##   On action: 1
Lset3 = Ltmp1-Lfunc_begin0              ## >> Call Site 2 <<
  .long  Lset3
Lset4 = Lfunc_end0-Ltmp1                ##   Call between Ltmp1 and Lfunc_end0
  .long  Lset4
  .long  0                       ##     has no landing pad
  .byte  0                       ##   On action: cleanup
  .byte  1                       ## >> Action Record 1 <<
                                        ##   Catch TypeInfo 1
  .byte  0                       ##   No further actions
                                        ## >> Catch TypeInfos <<
  .long  _OBJC_EHTYPE_id@GOTPCREL+4 ## TypeInfo 1
  .p2align  2
"#}

#[cfg(target_arch = "aarch64")]
global_asm!{r#"
  .section  __TEXT,__text,regular,pure_instructions
  .globl  ___objrs_catch_exception
  .p2align  2
___objrs_catch_exception:                             ; @__objrs_catch_exception
Lfunc_begin0:
  .cfi_startproc
  .cfi_personality 155, ___objc_personality_v0
  .cfi_lsda 16, Lexception0
; BB#0:
  stp  x20, x19, [sp, #-32]!   ; 8-byte Folded Spill
  stp  x29, x30, [sp, #16]     ; 8-byte Folded Spill
Lcfi0:
  .cfi_def_cfa_offset 32
Lcfi1:
  .cfi_offset w30, -8
Lcfi2:
  .cfi_offset w29, -16
Lcfi3:
  .cfi_offset w19, -24
Lcfi4:
  .cfi_offset w20, -32
  mov   x19, x2
Ltmp0:
  blr  x1
Ltmp1:
; BB#1:
  mov  w0, #0
LBB0_2:
  ldp  x29, x30, [sp, #16]     ; 8-byte Folded Reload
  ldp  x20, x19, [sp], #32     ; 8-byte Folded Reload
  ret
LBB0_3:
Ltmp2:
  bl  _objc_begin_catch
  str    x0, [x19]
  bl  _objc_end_catch
  orr  w0, wzr, #0x1
  b  LBB0_2
Lfunc_end0:
  .cfi_endproc
  .section  __TEXT,__gcc_except_tab
  .p2align  2
GCC_except_table0:
Lexception0:
  .byte  255                     ; @LPStart Encoding = omit
  .byte  155                     ; @TType Encoding = indirect pcrel sdata4
  .asciz  "\242\200\200"          ; @TType base offset
  .byte  3                       ; Call site Encoding = udata4
  .byte  26                      ; Call site table length
Lset0 = Ltmp0-Lfunc_begin0              ; >> Call Site 1 <<
  .long  Lset0
Lset1 = Ltmp1-Ltmp0                     ;   Call between Ltmp0 and Ltmp1
  .long  Lset1
Lset2 = Ltmp2-Lfunc_begin0              ;     jumps to Ltmp2
  .long  Lset2
  .byte  1                       ;   On action: 1
Lset3 = Ltmp1-Lfunc_begin0              ; >> Call Site 2 <<
  .long  Lset3
Lset4 = Lfunc_end0-Ltmp1                ;   Call between Ltmp1 and Lfunc_end0
  .long  Lset4
  .long  0                       ;     has no landing pad
  .byte  0                       ;   On action: cleanup
  .byte  1                       ; >> Action Record 1 <<
                                        ;   Catch TypeInfo 1
  .byte  0                       ;   No further actions
                                        ; >> Catch TypeInfos <<
Ltmp3:                                  ; TypeInfo 1
  .long  _OBJC_EHTYPE_id@GOT-Ltmp3
  .p2align  2
"#}