On Thu, Feb 27, 2025 at 12:17 PM Greg KH <gregkh@xxxxxxxxxxxxxxxxxxx> wrote: > > On Thu, Feb 27, 2025 at 01:09:41PM +1000, Alistair Francis wrote: > > + return rust_authenticated_show(spdm_state, buf); > > Here you have C code calling into Rust code. I'm not complaining about > it, but I think it will be the first use of this, and I didn't think > that the rust maintainers were willing to do that just yet. > > Has that policy changed? > > The issue here is that the C signature for this is not being > auto-generated, you have to manually keep it in sync (as you did above), > with the Rust side. That's not going to scale over time at all, you > MUST have a .h file somewhere for C to know how to call into this and > for the compiler to check that all is sane on both sides. > > And you are passing a random void * into the Rust side, what could go > wrong? I think this needs more thought as this is fragile-as-f***. I don't think we have a policy against it? I'm pretty sure the QR code thing does it. Alice