Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delegation makes it possible to define C-variadic associated functions #127413

Closed
fmease opened this issue Jul 6, 2024 · 1 comment · Fixed by #138407
Closed

Delegation makes it possible to define C-variadic associated functions #127413

fmease opened this issue Jul 6, 2024 · 1 comment · Fixed by #138407
Labels
C-bug Category: This is a bug. F-c_variadic `#![feature(c_variadic)]` F-fn_delegation `#![feature(fn_delegation)]` requires-incomplete-features This issue requires the use of incomplete features. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@fmease
Copy link
Member

fmease commented Jul 6, 2024

While the following code gets rejected:

#![feature(c_variadic)]

struct S;

impl S {
    unsafe extern "C" fn f(...) {}
    //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind"` functions may have a C-variadic arg
}

The code below doesn't:

#![feature(c_variadic, fn_delegation)]

struct S;

unsafe extern "C" fn f(...) {}

impl S {
    reuse f;
}

And yes, S::f does "appear to behave variadic". I'm not a C-FFI or ABI expert, so I guess it's for a very good reason that variadic associated functions generally get rejected.

@fmease fmease added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. C-bug Category: This is a bug. F-c_variadic `#![feature(c_variadic)]` requires-incomplete-features This issue requires the use of incomplete features. F-fn_delegation `#![feature(fn_delegation)]` labels Jul 6, 2024
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Jul 6, 2024
@fmease fmease removed the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Jul 6, 2024
@workingjubilee
Copy link
Member

workingjubilee commented Jul 6, 2024

I don't actually know any specific reason in principle to reject a function being defined like this:

#![feature(c_variadic)]

struct S;

impl S {
    unsafe extern "C" fn f(...) {}
    //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind"` functions may have a C-variadic arg
}

aside from "it'd be a pain to call from C due to mangling". But we allow people to do things that are wildly incorrect with variadic args and impossible to correctly handle on the other side of C FFI... unless the other side is also Rust.

We absolutely should not allow this though:

#![feature(c_variadic)]

struct S;

impl S {
    unsafe extern "C" fn f(&self, ...) {}
    //~^ ERROR only foreign, `unsafe extern "C"`, or `unsafe extern "C-unwind"` functions may have a C-variadic arg
}

@bors bors closed this as completed in 9d1b62c Mar 13, 2025
rust-timer added a commit to rust-lang-ci/rust that referenced this issue Mar 13, 2025
Rollup merge of rust-lang#138407 - Bryanskiy:delegation-variadic, r=petrochenkov

Delegation: reject C-variadics

The explanation is contained in attached issues.

Fixes rust-lang#127443
Fixes rust-lang#127413

r? `@petrochenkov`
jieyouxu pushed a commit to jieyouxu/rustc-dev-guide that referenced this issue Mar 13, 2025
Delegation: reject C-variadics

The explanation is contained in attached issues.

Fixes rust-lang/rust#127443
Fixes rust-lang/rust#127413

r? `@petrochenkov`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: This is a bug. F-c_variadic `#![feature(c_variadic)]` F-fn_delegation `#![feature(fn_delegation)]` requires-incomplete-features This issue requires the use of incomplete features. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants