gpt4 book ai didi

windows - 如何安全包装回调传递给Windows FFI?

转载 作者:行者123 更新时间:2023-12-03 11:39:27 26 4
gpt4 key购买 nike

我试图在winapi上写一个包装器。我想包装接受回调函数指针的函数。
例如,考虑以下情况:

// The unsafe callback type the FFI function accepts
type UnsafeCallback = unsafe extern "system" fn(exception_info: *mut ExceptionInfo) -> u32;

// The safe callback type my function should accept
type SafeCallback = fn(exception_info: &ConvertedExceptionInfo) -> u32;
将使用的功能:
// The function exposed by winapi
unsafe extern "system" fn SetExceptionHandler(handler: UnsafeCallback);

// The function I want to expose in my library
fn SetExceptionHandler(handler: SafeCallback);
我想创建一个包装函数,如下所示:
unsafe extern "system" fn(exception_info: *mut ExceptionInfo) -> u32 {
let result = panic::catch_unwind(|| {
// Convert ExceptionInfo into ConvertedExceptionInfo. I know this is undefined behavior, but its only here
// to demonstrate program flow
let converted_exception_info: ConvertedExceptionInfo = (*exception_info).into();

// Call the corresponding safe function (as to how we get the function pointer here, that's
// the whole question)
return safe_callback(&converted_exception_info);
});

return match result {
Ok(val) => val,
Err(_) => _
};
}
我可以想到两种创建包装函数的可能性:
  • 在运行时创建包装函数
    在保险箱内创建一个闭合或类似的构造SetExceptionHandler方法。
    我不知道如何跨越FFI边界。
  • 公开转换宏并在编译时生成函数
    编辑SetExceptionHandler函数以接受UnsafeCallback类型。
    然后,我可以创建一个在编译时生成包装函数的宏,并将此宏向用户公开。
    我将不得不再次公开不安全的extern参数,所以它不是
    我更喜欢这样做。
    我不知道如何构造这样的宏,或者甚至是不可能的。

  • 我的第一个想法可能可行吗?如果是这样,怎么办呢?
    如果没有,那么编写像第二个想法这样的宏是否可能并且可行?如果是这样,怎么办呢?
    基于
  • How do I create a Rust callback function to pass to a FFI function?
  • How do I convert a Rust closure to a C-style callback?
  • How do I pass a closure through raw pointers as an argument to a C function?

  • 我的印象是,除了 trampolining之类的东西外,我的第一个主意可能是不可能的。
    在这种情况下,可以在安全的Rust中进行蹦床吗?

    最佳答案

    经过大量搜索之后,我发现了一篇博客文章,该文章为包装回调问题提供了一个很好的解决方案。 Article here

    关于windows - 如何安全包装回调传递给Windows FFI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62565082/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com