-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.0-dev' into anphel/1.0-april-2023-update
- Loading branch information
Showing
44 changed files
with
934 additions
and
3,333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"Signatures": { | ||
"c-ares-1.18.1.tar.gz": "1a7d52a8a84a9fbffb1be9133c0f6e17217d91ea5a6fa61f6b4729cda78ebbcf" | ||
} | ||
"Signatures": { | ||
"c-ares-1.19.0.tar.gz": "bfceba37e23fd531293829002cac0401ef49a6dc55923f7f92236585b7ad1dd3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Summary: A library that performs asynchronous DNS operations | ||
Name: c-ares | ||
Version: 1.18.1 | ||
Version: 1.19.0 | ||
Release: 1%{?dist} | ||
License: MIT | ||
Vendor: Microsoft Corporation | ||
|
@@ -70,6 +70,9 @@ rm -rf %{buildroot} | |
%{_mandir}/man3/ares_* | ||
|
||
%changelog | ||
* Tue Apr 04 2023 CBL-Mariner Servicing Account <[email protected]> - 1.19.0-1 | ||
- Auto-upgrade to 1.19.0 - To Address CVE-2022-4904 | ||
|
||
* Sun Nov 28 2021 Muhammad Falak <[email protected]> - 1.18.1-1 | ||
- Bump version to fix CVE-2021-3672 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ Name: ca-certificates | |
|
||
# When updating, "Version" AND "Release" tags must be updated in the "prebuilt-ca-certificates" package as well. | ||
Version: 20200720 | ||
Release: 29%{?dist} | ||
Release: 30%{?dist} | ||
License: MPLv2.0 | ||
Vendor: Microsoft Corporation | ||
Distribution: Mariner | ||
|
@@ -319,6 +319,9 @@ rm -f %{pkidir}/tls/certs/*.{0,pem} | |
%{_bindir}/bundle2pem.sh | ||
|
||
%changelog | ||
* Thu Mar 30 2023 CBL-Mariner Service Account <[email protected]> - 20200720-30 | ||
- Updating Microsoft trusted root CAs. | ||
|
||
* Mon Dec 12 2022 Pawel Winogrodzki <[email protected]> - 20200720-29 | ||
- Adding 'Obsoletes' for the old 'ca-certificates-microsoft' packages before release 19. | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
diff -Naur a/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/src/primitives.rs b/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/src/primitives.rs | ||
--- a/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/src/primitives.rs 2021-04-25 17:00:00.000000000 -0700 | ||
+++ b/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/src/primitives.rs 2023-04-05 15:33:56.893718099 -0700 | ||
@@ -367,6 +367,16 @@ | ||
let entries: Vec<<T as FamStruct>::Entry> = | ||
Vec::deserialize(reader, version_map, app_version) | ||
.map_err(|ref err| VersionizeError::Deserialize(format!("{:?}", err)))?; | ||
+ if header.len() != entries.len() { | ||
+ let msg = format!( | ||
+ "Mismatch between length of FAM specified in FamStruct header ({}) \ | ||
+ and actual size of FAM ({})", | ||
+ header.len(), | ||
+ entries.len() | ||
+ ); | ||
+ | ||
+ return Err(VersionizeError::Deserialize(msg)); | ||
+ } | ||
// Construct the object from the array items. | ||
// Header(T) fields will be initialized by Default trait impl. | ||
let mut object = FamStructWrapper::from_entries(&entries) | ||
diff -Naur a/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/tests/test.rs b/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/tests/test.rs | ||
--- a/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/tests/test.rs 2021-04-25 17:00:00.000000000 -0700 | ||
+++ b/.cargo/registry/src/github.com-1ecc6299db9ec823/versionize-0.1.6/tests/test.rs 2023-04-05 15:34:57.145737780 -0700 | ||
@@ -1321,6 +1321,32 @@ | ||
type Message2FamStructWrapper = FamStructWrapper<Message2>; | ||
|
||
#[test] | ||
+fn test_deserialize_famstructwrapper_invalid_len() { | ||
+ let mut vm = VersionMap::new(); | ||
+ vm.new_version() | ||
+ .set_type_version(Message::type_id(), 2) | ||
+ .new_version() | ||
+ .set_type_version(Message::type_id(), 3) | ||
+ .new_version() | ||
+ .set_type_version(Message::type_id(), 4); | ||
+ | ||
+ // Create FamStructWrapper with len 2 | ||
+ let state = MessageFamStructWrapper::new(0).unwrap(); | ||
+ let mut buffer = [0; 256]; | ||
+ | ||
+ state.serialize(&mut buffer.as_mut_slice(), &vm, 2).unwrap(); | ||
+ | ||
+ // the `len` field of the header is the first serialized field. | ||
+ // Let's corrupt it by making it bigger than the actual number of serialized elements | ||
+ buffer[0] = 255; | ||
+ | ||
+ assert_eq!( | ||
+ MessageFamStructWrapper::deserialize(&mut buffer.as_slice(), &vm, 2).unwrap_err(), | ||
+ VersionizeError::Deserialize("Mismatch between length of FAM specified in FamStruct header (255) and actual size of FAM (0)".to_string()) | ||
+ ); | ||
+} | ||
+ | ||
+#[test] | ||
fn test_versionize_famstructwrapper() { | ||
let mut vm = VersionMap::new(); | ||
vm.new_version() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Summary: A Rust-VMM based cloud hypervisor from Intel | ||
Name: cloud-hypervisor | ||
Version: 22.0 | ||
Release: 1%{?dist} | ||
Release: 2%{?dist} | ||
License: ASL 2.0 or BSD | ||
URL: https://github.com/cloud-hypervisor/cloud-hypervisor | ||
Group: Development/Tools | ||
|
@@ -12,6 +12,7 @@ Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz | |
# To update the cache run: | ||
# [repo_root]/toolkit/scripts/build_cargo_cache.sh %%{name}-%%{version}.tar.gz | ||
Source1: %{name}-%{version}-cargo.tar.gz | ||
Patch0: CVE-2023-28448.patch | ||
ExclusiveArch: x86_64 | ||
|
||
BuildRequires: gcc | ||
|
@@ -28,6 +29,7 @@ A Rust-VMM based cloud hypervisor from Intel. | |
mkdir -p $HOME | ||
pushd $HOME | ||
tar xf %{SOURCE1} --no-same-owner | ||
%patch0 -p1 | ||
popd | ||
%setup -q | ||
|
||
|
@@ -49,6 +51,9 @@ install -d %{buildroot}%{_libdir}/cloud-hypervisor | |
%exclude %{_libdir}/debug | ||
|
||
%changelog | ||
* Wed Apr 05 2023 Henry Beberman <[email protected]> - 22.0-2 | ||
- Patch CVE-2023-28448 in vendored versionize crate | ||
|
||
* Wed Mar 09 2022 Pawel Winogrodzki <[email protected]> - 22.0-1 | ||
- Updating to version 22.0 to build with 'rust' 1.59.0. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CVE-2023-1079 - patched in 5.10.173 - (generated by autopatch tool) | ||
upstream 4ab3a086d10eeec1424f2e8a968827a6336203df - stable 21a2eec4a440060a6eb294dc890eaf553101ba09 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CVE-2023-1281 - patched in 5.10.169 - (generated by autopatch tool) | ||
upstream ee059170b1f7e94e55fa6cadee544e176a6e59c2 - stable eb8e9d8572d1d9df17272783ad8a84843ce559d4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CVE-2023-1390 - patched in 5.10.10 - (generated by autopatch tool) | ||
upstream b77413446408fdd256599daf00d5be72b5f3e7c6 - stable 60b8b4e6310b7dfc551ba68e8639eeaf70a0b2dd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CVE-2023-1513 - patched in 5.10.169 - (generated by autopatch tool) | ||
upstream 2c10b61421a28e95a46ab489fd56c0f442ff6952 - stable 6416c2108ba54d569e4c98d3b62ac78cb12e7107 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
CVE-2023-28772 - patched in 5.10.51 - (generated by autopatch tool) | ||
upstream d3b16034a24a112bb83aeb669ac5b9b01f744bb7 - stable f9fb4986f4d81182f938d16beb4f983fe71212aa | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Summary: CBL-Mariner release files | ||
Name: mariner-release | ||
Version: 1.0 | ||
Release: 59%{?dist} | ||
Release: 60%{?dist} | ||
License: MIT | ||
Group: System Environment/Base | ||
URL: https://aka.ms/cbl-mariner | ||
|
@@ -67,6 +67,8 @@ rm -rf $RPM_BUILD_ROOT | |
%config(noreplace) /etc/issue.net | ||
|
||
%changelog | ||
* Thu Apr 13 2023 Andrew Phelps <[email protected]> - 1.0-60 | ||
- Updating version for April update. | ||
* Wed Mar 29 2023 Jon Slobodzian <[email protected]> - 1.0-59 | ||
- Updating version for March update2. | ||
* Mon Mar 06 2023 Jon Slobodzian <[email protected]> - 1.0-58 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Summary: CLI tool for spawning and running containers per OCI spec. | ||
Name: moby-runc | ||
Version: 1.1.2+azure | ||
Release: 4%{?dist} | ||
Version: 1.1.5+azure | ||
Release: 1%{?dist} | ||
License: ASL 2.0 | ||
Vendor: Microsoft Corporation | ||
Distribution: Mariner | ||
Group: Virtualization/Libraries | ||
URL: https://runc.io/ | ||
# See generate-sources.sh for creating runc source tarball | ||
#Source0: https://github.com/opencontainers/runc/archive/refs/tags/v1.1.2.tar.gz | ||
Source0: runc-v1.1.2.tar.gz | ||
#Source0: https://github.com/opencontainers/runc/archive/refs/tags/v1.1.5.tar.gz | ||
Source0: runc-v1.1.5.tar.gz | ||
#Source1: https://github.com/sirupsen/logrus/archive/v1.8.1.tar.gz | ||
Source1: logrus-v1.8.1.tar.gz | ||
#Source2: https://github.com/opencontainers/runtime-spec/archive/v1.0.2.tar.gz | ||
|
@@ -108,6 +108,9 @@ cp %{SOURCE7} %{buildroot}%{_docdir}/%{name}-%{version}/LICENSE | |
%{_mandir}/*/* | ||
|
||
%changelog | ||
* Thu Apr 13 2023 Rohit Rawat <[email protected]> - 1.1.5+azure-1 | ||
- Bump release to fix CVE-2023-28642, CVE-2023-27561, CVE-2023-25809 | ||
|
||
* Tue Dec 13 2022 Suresh Babu Chalamalasetty <[email protected]> - 1.1.2+azure-4 | ||
- Bump release to rebuild with go 1.18.8-2 | ||
|
||
|
Oops, something went wrong.