-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
llvm lint: buffer overflow in src/test/ui/foreign/foreign-truncated-arguments.rs #75839
Comments
I captured the LLVM-IR in a single codegen unit, then ran
Here are the relevant snippets from that IR: %S = type { [0 x i32], i32, [0 x i32], float, [0 x i32], i32, [0 x i32] }
[...]
; foreign_truncated_arguments::main
; Function Attrs: nonlazybind uwtable
define internal void @_ZN27foreign_truncated_arguments4main17h8a09fc9d120f0135E() unnamed_addr #1 {
start:
%_26 = alloca i32*, align 8
%_24 = alloca i32*, align 8
%_22 = alloca { i64*, i64* }, align 8
%_21 = alloca [2 x { i8*, i64* }], align 8
%_14 = alloca %"core::fmt::Arguments", align 8
%_4 = alloca %S, align 4
%_3 = alloca i32, align 4
%_1 = alloca { i32*, i32* }, align 8
%0 = bitcast %S* %_4 to i32*
store i32 0, i32* %0, align 4
%1 = getelementptr inbounds %S, %S* %_4, i32 0, i32 3
store float 0.000000e+00, float* %1, align 4
%2 = getelementptr inbounds %S, %S* %_4, i32 0, i32 5
store i32 42, i32* %2, align 4
%3 = bitcast %S* %_4 to { i64, i32 }*
%4 = load { i64, i32 }, { i64, i32 }* %3, align 4
%5 = call i32 @test({ i64, i32 } %4)
store i32 %5, i32* %_3, align 4
br label %bb1 I expect The lint goes away if I change all |
We've been working on enabling ASAN in rusty_v8 (https://github.com/denoland/rusty_v8) and we suspect this is causing some real-world bugs when we call into V8 from Rust. In particular, some exceptions in V8 aren't correctly detected when we compile the Rust parts with opt-level=0. |
WG-prioritization assigning priority (Zulip discussion). @rustbot label -I-prioritize +P-high |
@rustbot claim |
Use the aligned size for alloca at args/ret when the pass mode is cast Fixes rust-lang#75839. Fixes rust-lang#121028. The `load` and `store` instructions in LLVM access the aligned size. For example, `load { i64, i32 }` accesses 16 bytes on x86_64: https://alive2.llvm.org/ce/z/n8CHAp. BTW, this example is expected to be optimized to immediate UB by Alive2: https://rust.godbolt.org/z/b7xK7hv1c and https://alive2.llvm.org/ce/z/vZDtZH. r? compiler
Rollup merge of rust-lang#127168 - DianQK:cast-size, r=workingjubilee Use the aligned size for alloca at args/ret when the pass mode is cast Fixes rust-lang#75839. Fixes rust-lang#121028. The `load` and `store` instructions in LLVM access the aligned size. For example, `load { i64, i32 }` accesses 16 bytes on x86_64: https://alive2.llvm.org/ce/z/n8CHAp. BTW, this example is expected to be optimized to immediate UB by Alive2: https://rust.godbolt.org/z/b7xK7hv1c and https://alive2.llvm.org/ce/z/vZDtZH. r? compiler
reopening to follow the beta backport of #127168 |
@mmastrac Can you reproduce the problem on the latest nightly? I can't confirm that #127168 has fixed it. |
@apiraino We can close it again. |
code from
tests/ui/foreign/foreign-truncated-arguments.rs
When checked with
rustc -Cpasses=lint src/test/ui/foreign/foreign-truncated-arguments.rs
, this generates the following llvm-ir lint warning:repo @ 2342cc3
The text was updated successfully, but these errors were encountered: