containerd2: upgrade to 2.3.4 and runc to 1.4.3 - #18777
Open
Nan Liu (liunan-ms) wants to merge 2 commits into
Open
containerd2: upgrade to 2.3.4 and runc to 1.4.3#18777Nan Liu (liunan-ms) wants to merge 2 commits into
Nan Liu (liunan-ms) wants to merge 2 commits into
Conversation
Nan Liu (liunan-ms)
force-pushed
the
liunan/containerd_runc_upgrade
branch
2 times, most recently
from
September 9, 2026 18:42
8e724bd to
d7640f8
Compare
Nan Liu (liunan-ms)
marked this pull request as ready for review
September 9, 2026 18:48
Update runc to 1.4.3 and build it with Go < 1.25 to retain the established pre-systemcrypto toolchain without an explicit systemcrypto policy opt-out.
Nan Liu (liunan-ms)
force-pushed
the
liunan/containerd_runc_upgrade
branch
from
September 10, 2026 18:03
d7640f8 to
518df92
Compare
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
Snapshotter availability can be misdetected or remain stale, causing failed sandbox creation or repeated image pulls.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Upgrades Azure Linux’s container runtime packages and synchronizes patches and supply-chain metadata.
Changes:
- Upgrades containerd2 to 2.3.4 and runc to 1.4.3.
- Rebases retained patches and removes fixes now provided upstream.
- Updates source hashes, signatures, changelogs, and component manifests.
File summaries
| File | Description |
|---|---|
SPECS/runc/runc.spec |
Updates runc version, commit, and changelog. |
SPECS/runc/runc.signatures.json |
Updates the runc source signature. |
SPECS/containerd2/multi-snapshotters-support.patch |
Rebases multi-snapshotter support. |
SPECS/containerd2/CVE-2026-56852.patch |
Rebases the retained Unicode normalization fix. |
SPECS/containerd2/CVE-2026-53492.patch |
Removes an upstreamed checkpoint fix. |
SPECS/containerd2/CVE-2026-53489.patch |
Removes upstreamed checkpoint hardening. |
SPECS/containerd2/CVE-2026-53488.patch |
Removes upstreamed label filtering. |
SPECS/containerd2/CVE-2026-50195.patch |
Removes an upstreamed checkpoint fix. |
SPECS/containerd2/CVE-2026-47262.patch |
Removes upstreamed user-file bounds. |
SPECS/containerd2/CVE-2026-42506.patch |
Removes an upstreamed HTML parser fix. |
SPECS/containerd2/CVE-2026-42502.patch |
Removes an upstreamed HTML rendering fix. |
SPECS/containerd2/CVE-2026-39882.patch |
Removes upstreamed OTLP response limits. |
SPECS/containerd2/CVE-2026-33814.patch |
Removes an upstreamed HTTP/2 fix. |
SPECS/containerd2/CVE-2026-27136.patch |
Removes an upstreamed tokenizer fix. |
SPECS/containerd2/CVE-2026-25681.patch |
Removes an upstreamed doctype fix. |
SPECS/containerd2/CVE-2026-25680.patch |
Removes an upstreamed parser performance fix. |
SPECS/containerd2/containerd2.spec |
Updates containerd2 and its patch set. |
SPECS/containerd2/containerd2.signatures.json |
Updates the containerd source signature. |
cgmanifest.json |
Records both upgraded dependencies. |
Review details
- Files reviewed: 19/20 changed files
- Comments generated: 2
- Review effort level: Balanced
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
29
to
31
| + if _, ok := image.Snapshotters[snapshotter]; ok || len(image.Snapshotters) == 0 { | ||
| + return &image, nil | ||
| + return nil | ||
| + } |
Comment on lines
65
to
+69
| + snapshotters := make(map[string]struct{}) | ||
| + for label := range info.Labels { | ||
| + const Prefix = "containerd.io/gc.ref.snapshot." | ||
| + if strings.HasPrefix(label, Prefix) { | ||
| + snapshotters[label[len(Prefix):]] = struct{}{} | ||
| + const prefix = "containerd.io/gc.ref.snapshot." | ||
| + if strings.HasPrefix(label, prefix) { | ||
| + snapshotters[label[len(prefix):]] = struct{}{} |
| Patch17: CVE-2026-37236.patch | ||
| Patch2: fix-TestCgroupNamespace-cgroupv1.patch | ||
| Patch3: CVE-2026-56852.patch | ||
| Patch4: CVE-2026-37236.patch |
There was a problem hiding this comment.
issue (blocking): CVE-2026-37236.patch does not apply cleanly - buddy build failed
Rebase the multi-snapshotter and CVE-2026-56852 patches for containerd 2.3.4, and remove CVE patches that are fixed upstream.
Nan Liu (liunan-ms)
force-pushed
the
liunan/containerd_runc_upgrade
branch
from
September 10, 2026 23:58
518df92 to
33c4704
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Validation