Skip to content

Commit 0aa0644

Browse files
authored
Unrolled build for rust-lang#121694
Rollup merge of rust-lang#121694 - davidtwco:stabilize-relro-level, r=Mark-Simulacrum sess: stabilize `-Zrelro-level` as `-Crelro-level` Stabilise `-Zrelro-level` as `-Crelro-level`. There's no tracking issue for this flag to close.
2 parents 4e1f5d9 + 420c58f commit 0aa0644

File tree

6 files changed

+29
-9
lines changed

6 files changed

+29
-9
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2059,7 +2059,7 @@ fn add_library_search_dirs(cmd: &mut dyn Linker, sess: &Session, self_contained:
20592059
/// Add options making relocation sections in the produced ELF files read-only
20602060
/// and suppressing lazy binding.
20612061
fn add_relro_args(cmd: &mut dyn Linker, sess: &Session) {
2062-
match sess.opts.unstable_opts.relro_level.unwrap_or(sess.target.relro_level) {
2062+
match sess.opts.cg.relro_level.unwrap_or(sess.target.relro_level) {
20632063
RelroLevel::Full => cmd.full_relro(),
20642064
RelroLevel::Partial => cmd.partial_relro(),
20652065
RelroLevel::Off => cmd.no_relro(),

compiler/rustc_interface/src/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,7 @@ fn test_codegen_options_tracking_hash() {
624624
tracked!(profile_generate, SwitchWithOptPath::Enabled(None));
625625
tracked!(profile_use, Some(PathBuf::from("abc")));
626626
tracked!(relocation_model, Some(RelocModel::Pic));
627+
tracked!(relro_level, Some(RelroLevel::Full));
627628
tracked!(soft_float, true);
628629
tracked!(split_debuginfo, Some(SplitDebuginfo::Packed));
629630
tracked!(symbol_mangling_version, Some(SymbolManglingVersion::V0));
@@ -822,7 +823,6 @@ fn test_unstable_options_tracking_hash() {
822823
tracked!(profile_sample_use, Some(PathBuf::from("abc")));
823824
tracked!(profiler_runtime, "abc".to_string());
824825
tracked!(relax_elf_relocations, Some(true));
825-
tracked!(relro_level, Some(RelroLevel::Full));
826826
tracked!(remap_cwd_prefix, Some(PathBuf::from("abc")));
827827
tracked!(sanitizer, SanitizerSet::ADDRESS);
828828
tracked!(sanitizer_cfi_canonical_jump_tables, None);

compiler/rustc_session/src/options.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,8 @@ options! {
15341534
relocation_model: Option<RelocModel> = (None, parse_relocation_model, [TRACKED],
15351535
"control generation of position-independent code (PIC) \
15361536
(`rustc --print relocation-models` for details)"),
1537+
relro_level: Option<RelroLevel> = (None, parse_relro_level, [TRACKED],
1538+
"choose which RELRO level to use"),
15371539
remark: Passes = (Passes::Some(Vec::new()), parse_passes, [UNTRACKED],
15381540
"output remarks for these optimization passes (space separated, or \"all\")"),
15391541
rpath: bool = (false, parse_bool, [UNTRACKED],
@@ -1881,8 +1883,6 @@ options! {
18811883
"randomize the layout of types (default: no)"),
18821884
relax_elf_relocations: Option<bool> = (None, parse_opt_bool, [TRACKED],
18831885
"whether ELF relocations can be relaxed"),
1884-
relro_level: Option<RelroLevel> = (None, parse_relro_level, [TRACKED],
1885-
"choose which RELRO level to use"),
18861886
remap_cwd_prefix: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED],
18871887
"remap paths under the current working directory to this path prefix"),
18881888
remap_path_scope: RemapPathScopeComponents = (RemapPathScopeComponents::all(), parse_remap_path_scope, [TRACKED],

compiler/rustc_session/src/session.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ impl Session {
573573

574574
let dbg_opts = &self.opts.unstable_opts;
575575

576-
let relro_level = dbg_opts.relro_level.unwrap_or(self.target.relro_level);
576+
let relro_level = self.opts.cg.relro_level.unwrap_or(self.target.relro_level);
577577

578578
// Only enable this optimization by default if full relro is also enabled.
579579
// In this case, lazy binding was already unavailable, so nothing is lost.

src/doc/rustc/src/codegen-options/index.md

+20
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,26 @@ then `-C target-feature=+crt-static` "wins" over `-C relocation-model=pic`,
479479
and the linker is instructed (`-static`) to produce a statically linked
480480
but not position-independent executable.
481481

482+
## relro-level
483+
484+
This flag controls what level of RELRO (Relocation Read-Only) is enabled. RELRO is an exploit
485+
mitigation which makes the Global Offset Table (GOT) read-only.
486+
487+
Supported values for this option are:
488+
489+
- `off`: Dynamically linked functions are resolved lazily and the GOT is writable.
490+
- `partial`: Dynamically linked functions are resolved lazily and written into the Procedure
491+
Linking Table (PLT) part of the GOT (`.got.plt`). The non-PLT part of the GOT (`.got`) is made
492+
read-only and both are moved to prevent writing from buffer overflows.
493+
- `full`: Dynamically linked functions are resolved at the start of program execution and the
494+
Global Offset Table (`.got`/`.got.plt`) is populated eagerly and then made read-only. The GOT is
495+
also moved to prevent writing from buffer overflows. Full RELRO uses more memory and increases
496+
process startup time.
497+
498+
This flag is ignored on platforms where RELRO is not supported (targets which do not use the ELF
499+
binary format), such as Windows or macOS. Each rustc target has its own default for RELRO. rustc
500+
enables Full RELRO by default on platforms where it is supported.
501+
482502
## remark
483503

484504
This flag lets you print remarks for optimization passes.

tests/run-make/relro-levels/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ include ../tools.mk
33

44
# only-linux
55
#
6-
# This tests the different -Zrelro-level values, and makes sure that they work properly.
6+
# This tests the different -Crelro-level values, and makes sure that they work properly.
77

88
all:
99
# Ensure that binaries built with the full relro level links them with both
1010
# RELRO and BIND_NOW for doing eager symbol resolving.
11-
$(RUSTC) -Zrelro-level=full hello.rs
11+
$(RUSTC) -Crelro-level=full hello.rs
1212
readelf -l $(TMPDIR)/hello | grep -q GNU_RELRO
1313
readelf -d $(TMPDIR)/hello | grep -q BIND_NOW
1414

15-
$(RUSTC) -Zrelro-level=partial hello.rs
15+
$(RUSTC) -Crelro-level=partial hello.rs
1616
readelf -l $(TMPDIR)/hello | grep -q GNU_RELRO
1717

1818
# Ensure that we're *not* built with RELRO when setting it to off. We do
1919
# not want to check for BIND_NOW however, as the linker might have that
2020
# enabled by default.
21-
$(RUSTC) -Zrelro-level=off hello.rs
21+
$(RUSTC) -Crelro-level=off hello.rs
2222
! readelf -l $(TMPDIR)/hello | grep -q GNU_RELRO

0 commit comments

Comments
 (0)