forked from msazurestackworkloads/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker_legacy.go
284 lines (260 loc) · 10.2 KB
/
docker_legacy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package dockershim
import (
"fmt"
"strings"
"sync/atomic"
"time"
dockertypes "github.com/docker/engine-api/types"
dockerfilters "github.com/docker/engine-api/types/filters"
"github.com/golang/glog"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/wait"
runtimeapi "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
"k8s.io/kubernetes/pkg/kubelet/dockertools"
"k8s.io/kubernetes/pkg/kubelet/leaky"
)
// These are labels used by kuberuntime. Ideally, we should not rely on kuberuntime implementation
// detail in dockershim. However, we need these labels for legacy container (containers created by
// kubernetes 1.4 and 1.5) support.
// TODO(random-liu): Remove this file and related code in kubernetes 1.8.
const (
podDeletionGracePeriodLabel = "io.kubernetes.pod.deletionGracePeriod"
podTerminationGracePeriodLabel = "io.kubernetes.pod.terminationGracePeriod"
containerHashLabel = "io.kubernetes.container.hash"
containerRestartCountLabel = "io.kubernetes.container.restartCount"
containerTerminationMessagePathLabel = "io.kubernetes.container.terminationMessagePath"
containerTerminationMessagePolicyLabel = "io.kubernetes.container.terminationMessagePolicy"
containerPreStopHandlerLabel = "io.kubernetes.container.preStopHandler"
containerPortsLabel = "io.kubernetes.container.ports"
)
// NOTE that we can't handle the following dockershim internal labels, so they will be empty:
// * containerLogPathLabelKey ("io.kubernetes.container.logpath"): RemoveContainer will ignore
// the label if it's empty.
// * sandboxIDLabelKey ("io.kubernetes.sandbox.id"): This is used in 2 places:
// * filter.PodSandboxId: The filter is not used in kuberuntime now.
// * runtimeapi.Container.PodSandboxId: toRuntimeAPIContainer retrieves PodSandboxId from the
// label. The field is used in kuberuntime sandbox garbage collection. Missing this may cause
// pod sandbox to be removed before its containers are removed.
// convertLegacyNameAndLabels converts legacy name and labels into dockershim name and labels.
// The function can be used to either legacy infra container or regular container.
// NOTE that legacy infra container doesn't have restart count label, so the returned attempt for
// sandbox will always be 0. The sandbox attempt is only used to generate new sandbox name, and
// there is no naming conflict between legacy and new containers/sandboxes, so it should be fine.
func convertLegacyNameAndLabels(names []string, labels map[string]string) ([]string, map[string]string, error) {
if len(names) == 0 {
return nil, nil, fmt.Errorf("unexpected empty name")
}
// Generate new dockershim name.
m, _, err := dockertools.ParseDockerName(names[0])
if err != nil {
return nil, nil, err
}
sandboxName, sandboxNamespace, err := kubecontainer.ParsePodFullName(m.PodFullName)
if err != nil {
return nil, nil, err
}
newNames := []string{strings.Join([]string{
kubePrefix, // 0
m.ContainerName, // 1: container name
sandboxName, // 2: sandbox name
sandboxNamespace, // 3: sandbox namesapce
string(m.PodUID), // 4: sandbox uid
labels[containerRestartCountLabel], // 5
}, nameDelimiter)}
// Generate new labels.
legacyAnnotations := sets.NewString(
containerHashLabel,
containerRestartCountLabel,
containerTerminationMessagePathLabel,
containerTerminationMessagePolicyLabel,
containerPreStopHandlerLabel,
containerPortsLabel,
)
newLabels := map[string]string{}
for k, v := range labels {
if legacyAnnotations.Has(k) {
// Add annotation prefix for all legacy labels which should be annotations in dockershim.
newLabels[fmt.Sprintf("%s%s", annotationPrefix, k)] = v
} else {
newLabels[k] = v
}
}
// Add containerTypeLabelKey indicating the container is sandbox or application container.
if m.ContainerName == leaky.PodInfraContainerName {
newLabels[containerTypeLabelKey] = containerTypeLabelSandbox
} else {
newLabels[containerTypeLabelKey] = containerTypeLabelContainer
}
return newNames, newLabels, nil
}
// legacyCleanupCheckInterval is the interval legacyCleanupCheck is performed.
const legacyCleanupCheckInterval = 10 * time.Second
// LegacyCleanupInit initializes the legacy cleanup flag. If necessary, it will starts a goroutine
// which periodically checks legacy cleanup until it finishes.
func (ds *dockerService) LegacyCleanupInit() {
// If there is no legacy container/sandbox, just return.
if clean, _ := ds.checkLegacyCleanup(); clean {
return
}
// Or else start the cleanup routine.
go wait.PollInfinite(legacyCleanupCheckInterval, ds.checkLegacyCleanup)
}
// checkLegacyCleanup lists legacy containers/sandboxes, if no legacy containers/sandboxes are found,
// mark the legacy cleanup flag as done.
func (ds *dockerService) checkLegacyCleanup() (bool, error) {
// Always do legacy cleanup when list fails.
sandboxes, err := ds.ListLegacyPodSandbox(nil)
if err != nil {
glog.Errorf("Failed to list legacy pod sandboxes: %v", err)
return false, nil
}
containers, err := ds.ListLegacyContainers(nil)
if err != nil {
glog.Errorf("Failed to list legacy containers: %v", err)
return false, nil
}
if len(sandboxes) != 0 || len(containers) != 0 {
glog.V(4).Infof("Found legacy sandboxes %+v, legacy containers %+v, continue legacy cleanup",
sandboxes, containers)
return false, nil
}
ds.legacyCleanup.MarkDone()
glog.V(2).Infof("No legacy containers found, stop performing legacy cleanup.")
return true, nil
}
// ListLegacyPodSandbox only lists all legacy pod sandboxes.
func (ds *dockerService) ListLegacyPodSandbox(filter *runtimeapi.PodSandboxFilter) ([]*runtimeapi.PodSandbox, error) {
// By default, list all containers whether they are running or not.
opts := dockertypes.ContainerListOptions{All: true, Filter: dockerfilters.NewArgs()}
filterOutReadySandboxes := false
f := newDockerFilter(&opts.Filter)
if filter != nil {
if filter.Id != "" {
f.Add("id", filter.Id)
}
if filter.State != nil {
if filter.GetState().State == runtimeapi.PodSandboxState_SANDBOX_READY {
// Only list running containers.
opts.All = false
} else {
// runtimeapi.PodSandboxState_SANDBOX_NOTREADY can mean the
// container is in any of the non-running state (e.g., created,
// exited). We can't tell docker to filter out running
// containers directly, so we'll need to filter them out
// ourselves after getting the results.
filterOutReadySandboxes = true
}
}
if filter.LabelSelector != nil {
for k, v := range filter.LabelSelector {
f.AddLabel(k, v)
}
}
}
containers, err := ds.client.ListContainers(opts)
if err != nil {
return nil, err
}
// Convert docker containers to runtime api sandboxes.
result := []*runtimeapi.PodSandbox{}
for i := range containers {
c := containers[i]
// Skip new containers with containerTypeLabelKey label.
if _, ok := c.Labels[containerTypeLabelKey]; ok {
continue
}
// If the container has no containerTypeLabelKey label, treat it as a legacy container.
c.Names, c.Labels, err = convertLegacyNameAndLabels(c.Names, c.Labels)
if err != nil {
glog.V(4).Infof("Unable to convert legacy container %+v: %v", c, err)
continue
}
if c.Labels[containerTypeLabelKey] != containerTypeLabelSandbox {
continue
}
converted, err := containerToRuntimeAPISandbox(&c)
if err != nil {
glog.V(4).Infof("Unable to convert docker to runtime API sandbox %+v: %v", c, err)
continue
}
if filterOutReadySandboxes && converted.State == runtimeapi.PodSandboxState_SANDBOX_READY {
continue
}
result = append(result, converted)
}
return result, nil
}
// ListLegacyPodSandbox only lists all legacy containers.
func (ds *dockerService) ListLegacyContainers(filter *runtimeapi.ContainerFilter) ([]*runtimeapi.Container, error) {
opts := dockertypes.ContainerListOptions{All: true, Filter: dockerfilters.NewArgs()}
f := newDockerFilter(&opts.Filter)
if filter != nil {
if filter.Id != "" {
f.Add("id", filter.Id)
}
if filter.State != nil {
f.Add("status", toDockerContainerStatus(filter.GetState().State))
}
// NOTE: Legacy container doesn't have sandboxIDLabelKey label, so we can't filter with
// it. Fortunately, PodSandboxId is not used in kuberuntime now.
if filter.LabelSelector != nil {
for k, v := range filter.LabelSelector {
f.AddLabel(k, v)
}
}
}
containers, err := ds.client.ListContainers(opts)
if err != nil {
return nil, err
}
// Convert docker to runtime api containers.
result := []*runtimeapi.Container{}
for i := range containers {
c := containers[i]
// Skip new containers with containerTypeLabelKey label.
if _, ok := c.Labels[containerTypeLabelKey]; ok {
continue
}
// If the container has no containerTypeLabelKey label, treat it as a legacy container.
c.Names, c.Labels, err = convertLegacyNameAndLabels(c.Names, c.Labels)
if err != nil {
glog.V(4).Infof("Unable to convert legacy container %+v: %v", c, err)
continue
}
if c.Labels[containerTypeLabelKey] != containerTypeLabelContainer {
continue
}
converted, err := toRuntimeAPIContainer(&c)
if err != nil {
glog.V(4).Infof("Unable to convert docker container to runtime API container %+v: %v", c, err)
continue
}
result = append(result, converted)
}
return result, nil
}
// legacyCleanupFlag is the flag indicating whether legacy cleanup is done.
type legacyCleanupFlag struct {
done int32
}
// Done checks whether legacy cleanup is done.
func (f *legacyCleanupFlag) Done() bool {
return atomic.LoadInt32(&f.done) == 1
}
// MarkDone sets legacy cleanup as done.
func (f *legacyCleanupFlag) MarkDone() {
atomic.StoreInt32(&f.done, 1)
}