Improve use of github token (#1769)

* Add new dep zeroize

* Use Zeroizing to avoid leaking the token

* Optimize gh-auth-token

Spawn it as a task, and only await it
when using GhApiClient

* Fix binstalk-git-repo-api unit tests
This commit is contained in:
Jiahao XU 2024-06-15 15:42:09 +10:00 committed by GitHub
parent e3c8c40806
commit fff6aa8122
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 128 additions and 54 deletions

View file

@ -43,6 +43,7 @@ tracing-core = "0.1.32"
tracing = { version = "0.1.39", default-features = false }
tracing-log = { version = "0.2.0", default-features = false }
tracing-subscriber = { version = "0.3.17", features = ["fmt", "json", "ansi"], default-features = false }
zeroize = "1.8.1"
[build-dependencies]
embed-resource = "2.4.1"

View file

@ -15,11 +15,11 @@ use binstalk::{
};
use clap::{error::ErrorKind, CommandFactory, Parser, ValueEnum};
use compact_str::CompactString;
use log::LevelFilter;
use semver::VersionReq;
use strum::EnumCount;
use strum_macros::EnumCount;
use zeroize::Zeroizing;
#[derive(Debug, Parser)]
#[clap(
@ -308,7 +308,7 @@ pub struct Args {
/// token from `$HOME/.git-credentials` or `$HOME/.config/gh/hosts.yml`
/// unless `--no-discover-github-token` is specified.
#[clap(help_heading = "Options", long, env = "GITHUB_TOKEN")]
pub(crate) github_token: Option<CompactString>,
pub(crate) github_token: Option<GithubToken>,
/// Only install packages that are signed
///
@ -365,6 +365,15 @@ pub struct Args {
pub(crate) quiet: bool,
}
#[derive(Debug, Clone)]
pub(crate) struct GithubToken(pub(crate) Zeroizing<Box<str>>);
impl From<&str> for GithubToken {
fn from(s: &str) -> Self {
Self(Zeroizing::new(s.into()))
}
}
#[derive(Debug, Copy, Clone, ValueEnum)]
pub(crate) enum TLSVersion {
#[clap(name = "1.2")]
@ -575,7 +584,7 @@ You cannot use --{option} and specify multiple packages at the same time. Do one
if opts.github_token.is_none() {
if let Ok(github_token) = env::var("GH_TOKEN") {
opts.github_token = Some(github_token.into());
opts.github_token = Some(GithubToken(Zeroizing::new(github_token.into())));
}
}

View file

@ -9,8 +9,8 @@ use binstalk::{
fetchers::{Fetcher, GhCrateMeta, QuickInstall, SignaturePolicy},
get_desired_targets,
helpers::{
gh_api_client::GhApiClient,
jobserver_client::LazyJobserverClient,
lazy_gh_api_client::LazyGhApiClient,
remote::{Certificate, Client},
tasks::AutoAbortJoinHandle,
},
@ -27,7 +27,7 @@ use file_format::FileFormat;
use home::cargo_home;
use log::LevelFilter;
use miette::{miette, Report, Result, WrapErr};
use tokio::{runtime::Handle, task::block_in_place};
use tokio::task::block_in_place;
use tracing::{debug, error, info, warn};
use crate::{
@ -82,28 +82,6 @@ pub fn install_crates(
// Launch target detection
let desired_targets = get_desired_targets(args.targets);
// Launch scraping of gh token
let no_discover_github_token = args.no_discover_github_token;
let github_token = args.github_token.or_else(|| {
if args.no_discover_github_token {
None
} else {
git_credentials::try_from_home()
}
});
let get_gh_token_task = (github_token.is_none() && !no_discover_github_token).then(|| {
AutoAbortJoinHandle::spawn(async move {
match gh_token::get().await {
Ok(token) => Some(token),
Err(err) => {
debug!(?err, "Failed to retrieve token from `gh auth token`");
debug!("Failed to read git credential file");
None
}
}
})
});
// Computer cli_overrides
let cli_overrides = PkgOverride {
pkg_url: args.pkg_url,
@ -129,14 +107,33 @@ pub fn install_crates(
)
.map_err(BinstallError::from)?;
let gh_api_client = GhApiClient::new(
client.clone(),
if let Some(task) = get_gh_token_task {
Handle::current().block_on(task)?
} else {
github_token
},
);
let gh_api_client = args
.github_token
.map(|token| token.0)
.or_else(|| {
if args.no_discover_github_token {
None
} else {
git_credentials::try_from_home()
}
})
.map(|token| LazyGhApiClient::new(client.clone(), Some(token)))
.unwrap_or_else(|| {
if args.no_discover_github_token {
LazyGhApiClient::new(client.clone(), None)
} else {
LazyGhApiClient::with_get_gh_token_future(client.clone(), async {
match gh_token::get().await {
Ok(token) => Some(token),
Err(err) => {
debug!(?err, "Failed to retrieve token from `gh auth token`");
debug!("Failed to read git credential file");
None
}
}
})
}
});
// Create binstall_opts
let binstall_opts = Arc::new(Options {

View file

@ -1,12 +1,13 @@
use std::{
io,
process::{Output, Stdio},
str,
};
use compact_str::CompactString;
use tokio::process::Command;
use zeroize::Zeroizing;
pub(super) async fn get() -> io::Result<CompactString> {
pub(super) async fn get() -> io::Result<Zeroizing<Box<str>>> {
let Output { status, stdout, .. } = Command::new("gh")
.args(["auth", "token"])
.stdin(Stdio::null())
@ -15,6 +16,8 @@ pub(super) async fn get() -> io::Result<CompactString> {
.output()
.await?;
let stdout = Zeroizing::new(stdout);
if !status.success() {
return Err(io::Error::new(
io::ErrorKind::Other,
@ -22,14 +25,12 @@ pub(super) async fn get() -> io::Result<CompactString> {
));
}
// Use String here instead of CompactString here since
// `CompactString::from_utf8` allocates if it's longer than 24B.
let s = String::from_utf8(stdout).map_err(|err| {
let s = str::from_utf8(&stdout).map_err(|err| {
io::Error::new(
io::ErrorKind::InvalidData,
format!("Invalid output, expected utf8: {err}"),
)
})?;
Ok(s.trim().into())
Ok(Zeroizing::new(s.trim().into()))
}

View file

@ -1,9 +1,9 @@
use std::{env, fs, path::PathBuf};
use compact_str::CompactString;
use dirs::home_dir;
use zeroize::Zeroizing;
pub fn try_from_home() -> Option<CompactString> {
pub fn try_from_home() -> Option<Zeroizing<Box<str>>> {
if let Some(mut home) = home_dir() {
home.push(".git-credentials");
if let Some(cred) = from_file(home) {
@ -23,12 +23,12 @@ pub fn try_from_home() -> Option<CompactString> {
None
}
fn from_file(path: PathBuf) -> Option<CompactString> {
fs::read_to_string(path)
.ok()?
fn from_file(path: PathBuf) -> Option<Zeroizing<Box<str>>> {
Zeroizing::new(fs::read_to_string(path).ok()?)
.lines()
.find_map(from_line)
.map(CompactString::from)
.map(Box::<str>::from)
.map(Zeroizing::new)
}
fn from_line(line: &str) -> Option<&str> {