1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

fix(npm): support old packages and registries with no integrity, but with a sha1sum (#17289)

Closes #17281
This commit is contained in:
David Sherret 2023-01-06 11:36:12 -05:00 committed by GitHub
parent f26700862a
commit 7db729a42d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 62 additions and 52 deletions

View file

@ -289,12 +289,7 @@ impl Lockfile {
) -> Result<(), LockfileError> { ) -> Result<(), LockfileError> {
let specifier = package.id.as_serialized(); let specifier = package.id.as_serialized();
if let Some(package_info) = self.content.npm.packages.get(&specifier) { if let Some(package_info) = self.content.npm.packages.get(&specifier) {
let integrity = package if package_info.integrity.as_str() != package.dist.integrity().as_str() {
.dist
.integrity
.as_ref()
.unwrap_or(&package.dist.shasum);
if &package_info.integrity != integrity {
return Err(LockfileError(format!( return Err(LockfileError(format!(
"Integrity check failed for npm package: \"{}\". Unable to verify that the package "Integrity check failed for npm package: \"{}\". Unable to verify that the package
is the same as when the lockfile was generated. is the same as when the lockfile was generated.
@ -321,15 +316,10 @@ Use \"--lock-write\" flag to regenerate the lockfile at \"{}\".",
.map(|(name, id)| (name.to_string(), id.as_serialized())) .map(|(name, id)| (name.to_string(), id.as_serialized()))
.collect::<BTreeMap<String, String>>(); .collect::<BTreeMap<String, String>>();
let integrity = package
.dist
.integrity
.as_ref()
.unwrap_or(&package.dist.shasum);
self.content.npm.packages.insert( self.content.npm.packages.insert(
package.id.as_serialized(), package.id.as_serialized(),
NpmPackageInfo { NpmPackageInfo {
integrity: integrity.to_string(), integrity: package.dist.integrity().to_string(),
dependencies, dependencies,
}, },
); );
@ -545,11 +535,11 @@ mod tests {
peer_dependencies: Vec::new(), peer_dependencies: Vec::new(),
}, },
copy_index: 0, copy_index: 0,
dist: NpmPackageVersionDistInfo { dist: NpmPackageVersionDistInfo::new(
tarball: "foo".to_string(), "foo".to_string(),
shasum: "foo".to_string(), "shasum".to_string(),
integrity: Some("sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==".to_string()) Some("sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==".to_string()),
}, ),
dependencies: HashMap::new(), dependencies: HashMap::new(),
}; };
let check_ok = lockfile.check_or_insert_npm_package(&npm_package); let check_ok = lockfile.check_or_insert_npm_package(&npm_package);
@ -562,11 +552,11 @@ mod tests {
peer_dependencies: Vec::new(), peer_dependencies: Vec::new(),
}, },
copy_index: 0, copy_index: 0,
dist: NpmPackageVersionDistInfo { dist: NpmPackageVersionDistInfo::new(
tarball: "foo".to_string(), "foo".to_string(),
shasum: "foo".to_string(), "shasum".to_string(),
integrity: Some("sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==".to_string()) Some("sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==".to_string()),
}, ),
dependencies: HashMap::new(), dependencies: HashMap::new(),
}; };
// Integrity is borked in the loaded lockfile // Integrity is borked in the loaded lockfile
@ -580,11 +570,11 @@ mod tests {
peer_dependencies: Vec::new(), peer_dependencies: Vec::new(),
}, },
copy_index: 0, copy_index: 0,
dist: NpmPackageVersionDistInfo { dist: NpmPackageVersionDistInfo::new(
tarball: "foo".to_string(), "foo".to_string(),
shasum: "foo".to_string(), "foo".to_string(),
integrity: Some("sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==".to_string()) Some("sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==".to_string()),
}, ),
dependencies: HashMap::new(), dependencies: HashMap::new(),
}; };
// Not present in lockfile yet, should be inserted and check passed. // Not present in lockfile yet, should be inserted and check passed.
@ -598,11 +588,11 @@ mod tests {
peer_dependencies: Vec::new(), peer_dependencies: Vec::new(),
}, },
copy_index: 0, copy_index: 0,
dist: NpmPackageVersionDistInfo { dist: NpmPackageVersionDistInfo::new(
tarball: "foo".to_string(), "foo".to_string(),
shasum: "foo".to_string(), "foo".to_string(),
integrity: Some("sha512-foobar".to_string()), Some("sha512-foobar".to_string()),
}, ),
dependencies: HashMap::new(), dependencies: HashMap::new(),
}; };
// Now present in lockfile, should file due to borked integrity // Now present in lockfile, should file due to borked integrity

View file

@ -1,5 +1,6 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::borrow::Cow;
use std::cmp::Ordering; use std::cmp::Ordering;
use std::collections::HashMap; use std::collections::HashMap;
use std::collections::HashSet; use std::collections::HashSet;
@ -178,8 +179,31 @@ impl NpmPackageVersionInfo {
pub struct NpmPackageVersionDistInfo { pub struct NpmPackageVersionDistInfo {
/// URL to the tarball. /// URL to the tarball.
pub tarball: String, pub tarball: String,
pub shasum: String, shasum: String,
pub integrity: Option<String>, integrity: Option<String>,
}
impl NpmPackageVersionDistInfo {
#[cfg(test)]
pub fn new(
tarball: String,
shasum: String,
integrity: Option<String>,
) -> Self {
Self {
tarball,
shasum,
integrity,
}
}
pub fn integrity(&self) -> Cow<String> {
self
.integrity
.as_ref()
.map(Cow::Borrowed)
.unwrap_or_else(|| Cow::Owned(format!("sha1-{}", self.shasum)))
}
} }
pub trait NpmRegistryApi: Clone + Sync + Send + 'static { pub trait NpmRegistryApi: Clone + Sync + Send + 'static {

View file

@ -275,11 +275,7 @@ impl NpmResolutionSnapshot {
id: package_id.clone(), id: package_id.clone(),
copy_index: copy_index_resolver.resolve(&package_id), copy_index: copy_index_resolver.resolve(&package_id),
// temporary dummy value // temporary dummy value
dist: NpmPackageVersionDistInfo { dist: NpmPackageVersionDistInfo::default(),
tarball: "foobar".to_string(),
shasum: "foobar".to_string(),
integrity: Some("foobar".to_string()),
},
dependencies, dependencies,
}; };

View file

@ -21,16 +21,7 @@ pub fn verify_and_extract_tarball(
dist_info: &NpmPackageVersionDistInfo, dist_info: &NpmPackageVersionDistInfo,
output_folder: &Path, output_folder: &Path,
) -> Result<(), AnyError> { ) -> Result<(), AnyError> {
if let Some(integrity) = &dist_info.integrity { verify_tarball_integrity(package, data, &dist_info.integrity())?;
verify_tarball_integrity(package, data, integrity)?;
} else {
// todo(dsherret): check shasum here
bail!(
"Errored on '{}@{}': npm packages with no integrity are not implemented.",
package.0,
package.1,
);
}
with_folder_sync_lock(package, output_folder, || { with_folder_sync_lock(package, output_folder, || {
extract_tarball(data, output_folder) extract_tarball(data, output_folder)
@ -43,11 +34,11 @@ fn verify_tarball_integrity(
npm_integrity: &str, npm_integrity: &str,
) -> Result<(), AnyError> { ) -> Result<(), AnyError> {
use ring::digest::Context; use ring::digest::Context;
use ring::digest::SHA512;
let (algo, expected_checksum) = match npm_integrity.split_once('-') { let (algo, expected_checksum) = match npm_integrity.split_once('-') {
Some((hash_kind, checksum)) => { Some((hash_kind, checksum)) => {
let algo = match hash_kind { let algo = match hash_kind {
"sha512" => &SHA512, "sha512" => &ring::digest::SHA512,
"sha1" => &ring::digest::SHA1_FOR_LEGACY_USE_ONLY,
hash_kind => bail!( hash_kind => bail!(
"Not implemented hash function for {}@{}: {}", "Not implemented hash function for {}@{}: {}",
package.0, package.0,
@ -144,11 +135,20 @@ mod test {
.to_string(), .to_string(),
"Not implemented integrity kind for package@1.0.0: test", "Not implemented integrity kind for package@1.0.0: test",
); );
assert_eq!(
verify_tarball_integrity(package, &Vec::new(), "notimplemented-test")
.unwrap_err()
.to_string(),
"Not implemented hash function for package@1.0.0: notimplemented",
);
assert_eq!( assert_eq!(
verify_tarball_integrity(package, &Vec::new(), "sha1-test") verify_tarball_integrity(package, &Vec::new(), "sha1-test")
.unwrap_err() .unwrap_err()
.to_string(), .to_string(),
"Not implemented hash function for package@1.0.0: sha1", concat!(
"Tarball checksum did not match what was provided by npm ",
"registry for package@1.0.0.\n\nExpected: test\nActual: 2jmj7l5rsw0yvb/vlwaykk/ybwk=",
),
); );
assert_eq!( assert_eq!(
verify_tarball_integrity(package, &Vec::new(), "sha512-test") verify_tarball_integrity(package, &Vec::new(), "sha512-test")