Skip to content

Commit

Permalink
Disallow setting registry tokens with --config
Browse files Browse the repository at this point in the history
As per the concern `restricted-values` in
rust-lang#7722 (comment).
  • Loading branch information
Jon Gjengset committed Apr 19, 2022
1 parent 46c7a2b commit 10c4f32
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/cargo/util/config/mod.rs
Expand Up @@ -1244,10 +1244,28 @@ impl Config {
);
}

let toml_v = toml::from_document(doc).with_context(|| {
let toml_v: toml::Value = toml::from_document(doc).with_context(|| {
format!("failed to parse value from --config argument `{arg}`")
})?;

if toml_v
.get("registry")
.and_then(|v| v.as_table())
.and_then(|t| t.get("token"))
.is_some()
{
bail!("registry.token cannot be set through --config for security reasons");
} else if let Some((k, _)) = toml_v
.get("registries")
.and_then(|v| v.as_table())
.and_then(|t| t.iter().find(|(_, v)| v.get("token").is_some()))
{
bail!(
"registries.{}.token cannot be set through --config for security reasons",
k
);
}

CV::from_toml(Definition::Cli, toml_v)
.with_context(|| format!("failed to convert --config argument `{arg}`"))?
};
Expand Down
18 changes: 18 additions & 0 deletions tests/testsuite/config_cli.rs
Expand Up @@ -368,6 +368,24 @@ b=2` was not a TOML dotted key expression (such as `build.jobs = 2`)",
);
}

#[cargo_test]
fn no_disallowed_values() {
let config = ConfigBuilder::new()
.config_arg("registry.token=\"hello\"")
.build_err();
assert_error(
config.unwrap_err(),
"registry.token cannot be set through --config for security reasons",
);
let config = ConfigBuilder::new()
.config_arg("registries.crates-io.token=\"hello\"")
.build_err();
assert_error(
config.unwrap_err(),
"registries.crates-io.token cannot be set through --config for security reasons",
);
}

#[cargo_test]
fn no_inline_table_value() {
// Disallow inline tables
Expand Down

0 comments on commit 10c4f32

Please sign in to comment.