Skip to content

Commit

Permalink
Don't assume llvm::StringRef is null terminated
Browse files Browse the repository at this point in the history
StringRefs have a length and their contents are not usually null-terminated.
The solution is to either copy the string data (in rustc_llvm::diagnostic) or take the size into account (in LLVMRustPrintPasses).
I couldn't trigger a bug caused by this (apparently all the strings returned in practice are actually null-terminated) but this is more correct and more future-proof.
  • Loading branch information
Robin Kruppe committed Nov 28, 2016
1 parent c7ddb89 commit 85dc08e
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 28 deletions.
22 changes: 12 additions & 10 deletions src/librustc_llvm/diagnostic.rs
Expand Up @@ -13,7 +13,7 @@
pub use self::OptimizationDiagnosticKind::*;
pub use self::Diagnostic::*;

use libc::{c_char, c_uint};
use libc::c_uint;
use std::ptr;

use {DiagnosticInfoRef, TwineRef, ValueRef};
Expand Down Expand Up @@ -45,7 +45,7 @@ impl OptimizationDiagnosticKind {

pub struct OptimizationDiagnostic {
pub kind: OptimizationDiagnosticKind,
pub pass_name: *const c_char,
pub pass_name: String,
pub function: ValueRef,
pub debug_loc: DebugLocRef,
pub message: String,
Expand All @@ -55,21 +55,23 @@ impl OptimizationDiagnostic {
unsafe fn unpack(kind: OptimizationDiagnosticKind,
di: DiagnosticInfoRef)
-> OptimizationDiagnostic {
let mut pass_name = ptr::null();
let mut function = ptr::null_mut();
let mut debug_loc = ptr::null_mut();

let message = super::build_string(|message|
super::LLVMRustUnpackOptimizationDiagnostic(di,
&mut pass_name,
&mut function,
&mut debug_loc,
message)
let mut message = None;
let pass_name = super::build_string(|pass_name|
message = super::build_string(|message|
super::LLVMRustUnpackOptimizationDiagnostic(di,
pass_name,
&mut function,
&mut debug_loc,
message)
)
);

OptimizationDiagnostic {
kind: kind,
pass_name: pass_name,
pass_name: pass_name.expect("got a non-UTF8 pass name from LLVM"),
function: function,
debug_loc: debug_loc,
message: message.expect("got a non-UTF8 OptimizationDiagnostic message from LLVM")
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_llvm/ffi.rs
Expand Up @@ -1820,7 +1820,7 @@ extern "C" {
DiagnosticContext: *mut c_void);

pub fn LLVMRustUnpackOptimizationDiagnostic(DI: DiagnosticInfoRef,
pass_name_out: *mut *const c_char,
pass_name_out: RustStringRef,
function_out: *mut ValueRef,
debugloc_out: *mut DebugLocRef,
message_out: RustStringRef);
Expand Down
9 changes: 3 additions & 6 deletions src/librustc_trans/back/write.rs
Expand Up @@ -26,7 +26,7 @@ use errors::emitter::Emitter;
use syntax_pos::MultiSpan;
use context::{is_pie_binary, get_reloc_model};

use std::ffi::{CStr, CString};
use std::ffi::CString;
use std::fs;
use std::path::{Path, PathBuf};
use std::str;
Expand Down Expand Up @@ -403,19 +403,16 @@ unsafe extern "C" fn diagnostic_handler(info: DiagnosticInfoRef, user: *mut c_vo
}

llvm::diagnostic::Optimization(opt) => {
let pass_name = str::from_utf8(CStr::from_ptr(opt.pass_name).to_bytes())
.ok()
.expect("got a non-UTF8 pass name from LLVM");
let enabled = match cgcx.remark {
AllPasses => true,
SomePasses(ref v) => v.iter().any(|s| *s == pass_name),
SomePasses(ref v) => v.iter().any(|s| *s == opt.pass_name),
};

if enabled {
let loc = llvm::debug_loc_to_string(llcx, opt.debug_loc);
cgcx.handler.note_without_error(&format!("optimization {} for {} at {}: {}",
opt.kind.describe(),
pass_name,
opt.pass_name,
if loc.is_empty() { "[unknown]" } else { &*loc },
opt.message));
}
Expand Down
8 changes: 5 additions & 3 deletions src/rustllvm/PassWrapper.cpp
Expand Up @@ -530,9 +530,11 @@ LLVMRustPrintPasses() {
struct MyListener : PassRegistrationListener {
void passEnumerate(const PassInfo *info) {
#if LLVM_VERSION_GE(4, 0)
if (!info->getPassArgument().empty()) {
printf("%15s - %s\n", info->getPassArgument().data(),
info->getPassName().data());
StringRef PassArg = info->getPassArgument();
StringRef PassName = info->getPassName();
if (!PassArg.empty()) {
printf("%15.*s - %.*s\n", PassArg.size(), PassArg.data(),

This comment has been minimized.

Copy link
@shepmaster

shepmaster Dec 7, 2016

Member

@rkruppe

warning: ../rustllvm/PassWrapper.cpp:543:29: warning: field precision should have type 'int', but argument has type 'size_t' (aka 'unsigned long') [-Wformat]
warning:                 printf("%15.*s - %.*s\n", PassArg.size(), PassArg.data(),
warning:                         ~~~~^~            ~~~~~~~~~~~~~~

Any concern?

This comment has been minimized.

Copy link
@hanna-kruppe

hanna-kruppe Dec 7, 2016

Contributor

Oh my, yes. It's a miracle that doesn't break on 64 bit platforms (I think I tested it on a 64 bit platform). I'll prepare a fix.

PassName.size(), PassName.data());
}
#else
if (info->getPassArgument() && *info->getPassArgument()) {
Expand Down
13 changes: 5 additions & 8 deletions src/rustllvm/RustWrapper.cpp
Expand Up @@ -872,7 +872,7 @@ LLVMRustWriteTwineToString(LLVMTwineRef T, RustStringRef str) {
extern "C" void
LLVMRustUnpackOptimizationDiagnostic(
LLVMDiagnosticInfoRef di,
const char **pass_name_out,
RustStringRef pass_name_out,
LLVMValueRef *function_out,
LLVMDebugLocRef *debugloc_out,
RustStringRef message_out)
Expand All @@ -881,15 +881,12 @@ LLVMRustUnpackOptimizationDiagnostic(
llvm::DiagnosticInfoOptimizationBase *opt
= static_cast<llvm::DiagnosticInfoOptimizationBase*>(unwrap(di));

#if LLVM_VERSION_GE(4, 0)
*pass_name_out = opt->getPassName().data();
#else
*pass_name_out = opt->getPassName();
#endif
raw_rust_string_ostream pass_name_os(pass_name_out);
pass_name_os << opt->getPassName();
*function_out = wrap(&opt->getFunction());
*debugloc_out = wrap(&opt->getDebugLoc());
raw_rust_string_ostream os(message_out);
os << opt->getMsg();
raw_rust_string_ostream message_os(message_out);
message_os << opt->getMsg();
}

extern "C" void
Expand Down

0 comments on commit 85dc08e

Please sign in to comment.