Skip to content

Commit 767bee7

Browse files
committed
Fix error message for env! when env var is not valid Unicode
1 parent 35dfc67 commit 767bee7

File tree

7 files changed

+62
-22
lines changed

7 files changed

+62
-22
lines changed

compiler/rustc_builtin_macros/messages.ftl

+2
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ builtin_macros_env_not_defined = environment variable `{$var}` not defined at co
114114
.cargo = Cargo sets build script variables at run time. Use `std::env::var({$var_expr})` instead
115115
.custom = use `std::env::var({$var_expr})` to read the variable at run time
116116
117+
builtin_macros_env_not_unicode = environment variable `{$var}` is not a valid Unicode string
118+
117119
builtin_macros_env_takes_args = `env!()` takes 1 or 2 arguments
118120
119121
builtin_macros_expected_one_cfg_pattern = expected 1 cfg-pattern

compiler/rustc_builtin_macros/src/env.rs

+30-21
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@ use rustc_expand::base::{DummyResult, ExpandResult, ExtCtxt, MacEager, MacroExpa
1111
use rustc_span::symbol::{kw, sym, Ident, Symbol};
1212
use rustc_span::Span;
1313
use std::env;
14+
use std::env::VarError;
1415
use thin_vec::thin_vec;
1516

1617
use crate::errors;
1718

18-
fn lookup_env<'cx>(cx: &'cx ExtCtxt<'_>, var: Symbol) -> Option<Symbol> {
19+
fn lookup_env<'cx>(cx: &'cx ExtCtxt<'_>, var: Symbol) -> Result<Symbol, VarError> {
1920
let var = var.as_str();
2021
if let Some(value) = cx.sess.opts.logical_env.get(var) {
21-
return Some(Symbol::intern(value));
22+
return Ok(Symbol::intern(value));
2223
}
2324
// If the environment variable was not defined with the `--env-set` option, we try to retrieve it
2425
// from rustc's environment.
25-
env::var(var).ok().as_deref().map(Symbol::intern)
26+
Ok(Symbol::intern(&env::var(var)?))
2627
}
2728

2829
pub fn expand_option_env<'cx>(
@@ -39,7 +40,7 @@ pub fn expand_option_env<'cx>(
3940
};
4041

4142
let sp = cx.with_def_site_ctxt(sp);
42-
let value = lookup_env(cx, var);
43+
let value = lookup_env(cx, var).ok();
4344
cx.sess.psess.env_depinfo.borrow_mut().insert((var, value));
4445
let e = match value {
4546
None => {
@@ -108,35 +109,43 @@ pub fn expand_env<'cx>(
108109

109110
let span = cx.with_def_site_ctxt(sp);
110111
let value = lookup_env(cx, var);
111-
cx.sess.psess.env_depinfo.borrow_mut().insert((var, value));
112+
cx.sess.psess.env_depinfo.borrow_mut().insert((var, value.as_ref().ok().copied()));
112113
let e = match value {
113-
None => {
114+
Err(err) => {
114115
let ExprKind::Lit(token::Lit {
115116
kind: LitKind::Str | LitKind::StrRaw(..), symbol, ..
116117
}) = &var_expr.kind
117118
else {
118119
unreachable!("`expr_to_string` ensures this is a string lit")
119120
};
120121

121-
let guar = if let Some(msg_from_user) = custom_msg {
122-
cx.dcx().emit_err(errors::EnvNotDefinedWithUserMessage { span, msg_from_user })
123-
} else if is_cargo_env_var(var.as_str()) {
124-
cx.dcx().emit_err(errors::EnvNotDefined::CargoEnvVar {
125-
span,
126-
var: *symbol,
127-
var_expr: var_expr.ast_deref(),
128-
})
129-
} else {
130-
cx.dcx().emit_err(errors::EnvNotDefined::CustomEnvVar {
131-
span,
132-
var: *symbol,
133-
var_expr: var_expr.ast_deref(),
134-
})
122+
let guar = match err {
123+
VarError::NotPresent => {
124+
if let Some(msg_from_user) = custom_msg {
125+
cx.dcx()
126+
.emit_err(errors::EnvNotDefinedWithUserMessage { span, msg_from_user })
127+
} else if is_cargo_env_var(var.as_str()) {
128+
cx.dcx().emit_err(errors::EnvNotDefined::CargoEnvVar {
129+
span,
130+
var: *symbol,
131+
var_expr: var_expr.ast_deref(),
132+
})
133+
} else {
134+
cx.dcx().emit_err(errors::EnvNotDefined::CustomEnvVar {
135+
span,
136+
var: *symbol,
137+
var_expr: var_expr.ast_deref(),
138+
})
139+
}
140+
}
141+
VarError::NotUnicode(_) => {
142+
cx.dcx().emit_err(errors::EnvNotUnicode { span, var: *symbol })
143+
}
135144
};
136145

137146
return ExpandResult::Ready(DummyResult::any(sp, guar));
138147
}
139-
Some(value) => cx.expr_str(span, value),
148+
Ok(value) => cx.expr_str(span, value),
140149
};
141150
ExpandResult::Ready(MacEager::expr(e))
142151
}

compiler/rustc_builtin_macros/src/errors.rs

+8
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,14 @@ pub(crate) enum EnvNotDefined<'a> {
458458
},
459459
}
460460

461+
#[derive(Diagnostic)]
462+
#[diag(builtin_macros_env_not_unicode)]
463+
pub(crate) struct EnvNotUnicode {
464+
#[primary_span]
465+
pub(crate) span: Span,
466+
pub(crate) var: Symbol,
467+
}
468+
461469
#[derive(Diagnostic)]
462470
#[diag(builtin_macros_format_requires_string)]
463471
pub(crate) struct FormatRequiresString {

library/core/src/macros/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,8 @@ pub(crate) mod builtin {
10531053
///
10541054
/// If the environment variable is not defined, then a compilation error
10551055
/// will be emitted. To not emit a compile error, use the [`option_env!`]
1056-
/// macro instead.
1056+
/// macro instead. A compilation error will also be emitted if the
1057+
/// environment variable is not a vaild Unicode string.
10571058
///
10581059
/// # Examples
10591060
///

tests/run-make/non-utf8-env/Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
include ../tools.mk
2+
3+
# only-unix
4+
# ignore-cross-compile
5+
6+
all:
7+
(NOT_UTF8_VAR=$$(printf "\377") $(RUSTC) non_utf8_env.rs 2>&1 && exit 1 || exit 0) | diff - non_utf8_env.stderr
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
let _ = env!("NOT_UTF8_VAR");
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
error: environment variable `NOT_UTF8_VAR` is not a valid Unicode string
2+
--> non_utf8_env.rs:2:13
3+
|
4+
2 | let _ = env!("NOT_UTF8_VAR");
5+
| ^^^^^^^^^^^^^^^^^^^^
6+
|
7+
= note: this error originates in the macro `env` (in Nightly builds, run with -Z macro-backtrace for more info)
8+
9+
error: aborting due to 1 previous error
10+

0 commit comments

Comments
 (0)