mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-18 18:04:13 +00:00
rustc: Avoid UB with signed division/remainder
Division and remainder by 0 are undefined behavior, and are detected at runtime. This commit adds support for ensuring that MIN / -1 is also checked for at runtime, as this would cause signed overflow, or undefined behvaior. Closes #8460
This commit is contained in:
parent
9fd075f5af
commit
f35328caed
@ -80,6 +80,7 @@ use libc::{c_uint, uint64_t};
|
||||
use std::c_str::ToCStr;
|
||||
use std::cell::{Cell, RefCell};
|
||||
use std::rc::Rc;
|
||||
use std::{i8, i16, i32, i64};
|
||||
use syntax::abi::{X86, X86_64, Arm, Mips, Rust, RustIntrinsic};
|
||||
use syntax::ast_util::{local_def, is_local};
|
||||
use syntax::attr::AttrMetaMethods;
|
||||
@ -777,35 +778,77 @@ pub fn cast_shift_rhs(op: ast::BinOp,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn fail_if_zero<'a>(
|
||||
pub fn fail_if_zero_or_overflows<'a>(
|
||||
cx: &'a Block<'a>,
|
||||
span: Span,
|
||||
divrem: ast::BinOp,
|
||||
lhs: ValueRef,
|
||||
rhs: ValueRef,
|
||||
rhs_t: ty::t)
|
||||
-> &'a Block<'a> {
|
||||
let text = if divrem == ast::BiDiv {
|
||||
"attempted to divide by zero"
|
||||
let (zero_text, overflow_text) = if divrem == ast::BiDiv {
|
||||
("attempted to divide by zero",
|
||||
"attempted to divide with overflow")
|
||||
} else {
|
||||
"attempted remainder with a divisor of zero"
|
||||
("attempted remainder with a divisor of zero",
|
||||
"attempted remainder with overflow")
|
||||
};
|
||||
let is_zero = match ty::get(rhs_t).sty {
|
||||
ty::ty_int(t) => {
|
||||
let zero = C_integral(Type::int_from_ty(cx.ccx(), t), 0u64, false);
|
||||
ICmp(cx, lib::llvm::IntEQ, rhs, zero)
|
||||
}
|
||||
ty::ty_uint(t) => {
|
||||
let zero = C_integral(Type::uint_from_ty(cx.ccx(), t), 0u64, false);
|
||||
ICmp(cx, lib::llvm::IntEQ, rhs, zero)
|
||||
}
|
||||
_ => {
|
||||
cx.sess().bug(format!("fail-if-zero on unexpected type: {}",
|
||||
ty_to_str(cx.tcx(), rhs_t)).as_slice());
|
||||
}
|
||||
let (is_zero, is_signed) = match ty::get(rhs_t).sty {
|
||||
ty::ty_int(t) => {
|
||||
let zero = C_integral(Type::int_from_ty(cx.ccx(), t), 0u64, false);
|
||||
(ICmp(cx, lib::llvm::IntEQ, rhs, zero), true)
|
||||
}
|
||||
ty::ty_uint(t) => {
|
||||
let zero = C_integral(Type::uint_from_ty(cx.ccx(), t), 0u64, false);
|
||||
(ICmp(cx, lib::llvm::IntEQ, rhs, zero), false)
|
||||
}
|
||||
_ => {
|
||||
cx.sess().bug(format!("fail-if-zero on unexpected type: {}",
|
||||
ty_to_str(cx.tcx(), rhs_t)).as_slice());
|
||||
}
|
||||
};
|
||||
with_cond(cx, is_zero, |bcx| {
|
||||
controlflow::trans_fail(bcx, span, InternedString::new(text))
|
||||
})
|
||||
let bcx = with_cond(cx, is_zero, |bcx| {
|
||||
controlflow::trans_fail(bcx, span, InternedString::new(zero_text))
|
||||
});
|
||||
|
||||
// To quote LLVM's documentation for the sdiv instruction:
|
||||
//
|
||||
// Division by zero leads to undefined behavior. Overflow also leads
|
||||
// to undefined behavior; this is a rare case, but can occur, for
|
||||
// example, by doing a 32-bit division of -2147483648 by -1.
|
||||
//
|
||||
// In order to avoid undefined behavior, we perform runtime checks for
|
||||
// signed division/remainder which would trigger overflow. For unsigned
|
||||
// integers, no action beyond checking for zero need be taken.
|
||||
if is_signed {
|
||||
let (llty, min) = match ty::get(rhs_t).sty {
|
||||
ty::ty_int(t) => {
|
||||
let llty = Type::int_from_ty(cx.ccx(), t);
|
||||
let min = match t {
|
||||
ast::TyI if llty == Type::i32(cx.ccx()) => i32::MIN as u64,
|
||||
ast::TyI => i64::MIN as u64,
|
||||
ast::TyI8 => i8::MIN as u64,
|
||||
ast::TyI16 => i16::MIN as u64,
|
||||
ast::TyI32 => i32::MIN as u64,
|
||||
ast::TyI64 => i64::MIN as u64,
|
||||
};
|
||||
(llty, min)
|
||||
}
|
||||
_ => unreachable!(),
|
||||
};
|
||||
let minus_one = ICmp(bcx, lib::llvm::IntEQ, rhs,
|
||||
C_integral(llty, -1, false));
|
||||
with_cond(bcx, minus_one, |bcx| {
|
||||
let is_min = ICmp(bcx, lib::llvm::IntEQ, lhs,
|
||||
C_integral(llty, min, true));
|
||||
with_cond(bcx, is_min, |bcx| {
|
||||
controlflow::trans_fail(bcx, span,
|
||||
InternedString::new(overflow_text))
|
||||
})
|
||||
})
|
||||
} else {
|
||||
bcx
|
||||
}
|
||||
}
|
||||
|
||||
pub fn trans_external_path(ccx: &CrateContext, did: ast::DefId, t: ty::t) -> ValueRef {
|
||||
|
@ -1297,8 +1297,8 @@ fn trans_eager_binop<'a>(
|
||||
FDiv(bcx, lhs, rhs)
|
||||
} else {
|
||||
// Only zero-check integers; fp /0 is NaN
|
||||
bcx = base::fail_if_zero(bcx, binop_expr.span,
|
||||
op, rhs, rhs_t);
|
||||
bcx = base::fail_if_zero_or_overflows(bcx, binop_expr.span,
|
||||
op, lhs, rhs, rhs_t);
|
||||
if is_signed {
|
||||
SDiv(bcx, lhs, rhs)
|
||||
} else {
|
||||
@ -1311,8 +1311,8 @@ fn trans_eager_binop<'a>(
|
||||
FRem(bcx, lhs, rhs)
|
||||
} else {
|
||||
// Only zero-check integers; fp %0 is NaN
|
||||
bcx = base::fail_if_zero(bcx, binop_expr.span,
|
||||
op, rhs, rhs_t);
|
||||
bcx = base::fail_if_zero_or_overflows(bcx, binop_expr.span,
|
||||
op, lhs, rhs, rhs_t);
|
||||
if is_signed {
|
||||
SRem(bcx, lhs, rhs)
|
||||
} else {
|
||||
|
35
src/test/run-pass/issue-8460.rs
Normal file
35
src/test/run-pass/issue-8460.rs
Normal file
@ -0,0 +1,35 @@
|
||||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
use std::{int, i8, i16, i32, i64};
|
||||
use std::task;
|
||||
|
||||
fn main() {
|
||||
assert!(task::try(proc() int::MIN / -1).is_err());
|
||||
assert!(task::try(proc() i8::MIN / -1).is_err());
|
||||
assert!(task::try(proc() i16::MIN / -1).is_err());
|
||||
assert!(task::try(proc() i32::MIN / -1).is_err());
|
||||
assert!(task::try(proc() i64::MIN / -1).is_err());
|
||||
assert!(task::try(proc() 1i / 0).is_err());
|
||||
assert!(task::try(proc() 1i8 / 0).is_err());
|
||||
assert!(task::try(proc() 1i16 / 0).is_err());
|
||||
assert!(task::try(proc() 1i32 / 0).is_err());
|
||||
assert!(task::try(proc() 1i64 / 0).is_err());
|
||||
assert!(task::try(proc() int::MIN % -1).is_err());
|
||||
assert!(task::try(proc() i8::MIN % -1).is_err());
|
||||
assert!(task::try(proc() i16::MIN % -1).is_err());
|
||||
assert!(task::try(proc() i32::MIN % -1).is_err());
|
||||
assert!(task::try(proc() i64::MIN % -1).is_err());
|
||||
assert!(task::try(proc() 1i % 0).is_err());
|
||||
assert!(task::try(proc() 1i8 % 0).is_err());
|
||||
assert!(task::try(proc() 1i16 % 0).is_err());
|
||||
assert!(task::try(proc() 1i32 % 0).is_err());
|
||||
assert!(task::try(proc() 1i64 % 0).is_err());
|
||||
}
|
Loading…
Reference in New Issue
Block a user