-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix panic due to nil dereference cgroups v2 #11069
Conversation
Notice the change only fixes/avoid the nil deference panic issue. It seems in current shim implementation, cgroups related errors in are ignored (only logged) and don't cause task |
Signed-off-by: Jin Dong <[email protected]>
ad5509e
to
0903f20
Compare
@AkihiroSuda could you PTAL? I realized the same issue exists in two places ( |
hi @AkihiroSuda could you please re-add this to merge queue? thanks. Last time it was moved out due to criu install/download failures. |
/cherrypick release/2.0 |
@djdongjin: new pull request created: #11098 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/cherrypick release/1.7 |
/cherrypick release/1.6 |
@djdongjin: #11069 failed to apply on top of branch "release/1.7":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
@djdongjin: #11069 failed to apply on top of branch "release/1.6":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Fix #11001
When the shim creates a container within
NewContainer
, the cgroups v1/v2 may be nil due to errors.containerd/cmd/containerd-shim-runc-v2/runc/container.go
Lines 149 to 166 in 566f9f4
However, a
nil
pointer of*cgroupsv2.Manager
type is not annil
interface{}. And it can be converted back to*cgroupsv2.Manager
type (the resulted var will benil
) which causes nil deference panic inStart
in the above issue. (sample: https://go.dev/play/p/ZThwvj1n3g8)containerd/cmd/containerd-shim-runc-v2/task/service.go
Lines 316 to 317 in 566f9f4
The fix is to return directly on error (to avoid
container.cgroup = cg
), so the switch inStart
will match neithercgroup1.Cgroup
(interface) nor*cgroupsv2.Manager
.