File: container_cgroup_writable_linux_test.go

package info (click to toggle)
containerd 2.1.4~ds2-5
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 21,772 kB
  • sloc: sh: 1,885; makefile: 591
file content (139 lines) | stat: -rw-r--r-- 3,905 bytes parent folder | download
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
/*
   Copyright The containerd 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 integration

import (
	"fmt"
	"os"
	"path/filepath"
	"syscall"
	"testing"
	"time"

	"github.com/containerd/cgroups/v3"
	"github.com/containerd/containerd/v2/integration/images"
	"github.com/containerd/containerd/v2/integration/remote"
	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
	runtime "k8s.io/cri-api/pkg/apis/runtime/v1"
)

func newContainerdProcess(t *testing.T, cgroupWritable bool) *ctrdProc {
	configDir := t.TempDir()
	configPath := filepath.Join(configDir, "config.toml")
	config := fmt.Sprintf(`
version = 3

[plugins.'io.containerd.cri.v1.runtime'.containerd.runtimes.runc]
  cgroup_writable = %t
`,
		cgroupWritable)

	err := os.WriteFile(configPath, []byte(config), 0600)
	require.NoError(t, err)

	currentProc := newCtrdProc(t, "containerd", configDir, nil)
	require.NoError(t, currentProc.isReady())

	return currentProc
}

func TestContainerCgroupWritable(t *testing.T) {
	if cgroups.Mode() != cgroups.Unified {
		t.Skip("requires cgroup v2")
	}

	testCases := []struct {
		name           string
		cgroupWritable bool
	}{
		{
			name:           "writable cgroup",
			cgroupWritable: true,
		},
		{
			name:           "readonly cgroup",
			cgroupWritable: false,
		},
	}

	for _, testCase := range testCases {
		t.Run(testCase.name, func(t *testing.T) {
			currentProc := newContainerdProcess(t, testCase.cgroupWritable)

			// Get the runtime service
			runtimeService, err := remote.NewRuntimeService(currentProc.grpcAddress(), 1*time.Minute)
			require.NoError(t, err)

			t.Cleanup(func() {
				cleanupPods(t, runtimeService)
				t.Log("Stopping containerd process")
				require.NoError(t, currentProc.kill(syscall.SIGTERM))
				require.NoError(t, currentProc.wait(5*time.Minute))
			})

			imageName := images.Get(images.BusyBox)
			pullImagesByCRI(t, currentProc.criImageService(t), imageName)

			// Create a test sandbox
			sbConfig := &runtime.PodSandboxConfig{
				Metadata: &runtime.PodSandboxMetadata{
					Name:      "sandbox",
					Namespace: "cgroup-writable",
				},
			}
			sb, err := runtimeService.RunPodSandbox(sbConfig, "")
			require.NoError(t, err)

			containerName := "cgroup-writable-test"
			cnConfig := &runtime.ContainerConfig{
				Metadata: &runtime.ContainerMetadata{
					Name: containerName,
				},
				Image: &runtime.ImageSpec{
					Image: imageName,
				},
				Command: []string{"sh", "-c", "sleep 1d"},
			}

			cn, err := runtimeService.CreateContainer(sb, cnConfig, sbConfig)
			require.NoError(t, err)
			defer func() {
				assert.NoError(t, runtimeService.RemoveContainer(cn))
			}()

			require.NoError(t, runtimeService.StartContainer(cn))
			defer func() {
				assert.NoError(t, runtimeService.StopContainer(cn, 30))
			}()

			status, err := runtimeService.ContainerStatus(cn)
			require.NoError(t, err)
			assert.Equal(t, status.GetState(), runtime.ContainerState_CONTAINER_RUNNING)

			// Execute a command to verify if cgroup is writable
			_, stderr, err := runtimeService.ExecSync(cn, []string{"mkdir", "sys/fs/cgroup/dummy-group"}, 2)
			if testCase.cgroupWritable {
				require.NoError(t, err)
				require.Empty(t, stderr)
			} else {
				require.Error(t, err)
				require.Contains(t, string(stderr), "mkdir: can't create directory 'sys/fs/cgroup/dummy-group': Read-only file system")
			}
		})
	}
}