Skip to content

Commit 0d91d8e

Browse files
authored
Merge pull request #11213 from pgimalac/pgimalac/containerd-no-plugin-v2.0
[release/2.0] Add a build tag to disable std `plugin` import
2 parents fb61c90 + dca7694 commit 0d91d8e

File tree

4 files changed

+51
-2
lines changed

4 files changed

+51
-2
lines changed

BUILDING.md

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ make generate
122122
> * `no_zfs`: A build tag disables building the ZFS snapshot driver.
123123
> * platform
124124
> * `no_systemd`: disables any systemd specific code
125+
> * `no_dynamic_plugins`: A build tag disables dynamic plugins.
125126
>
126127
> For example, adding `BUILDTAGS=no_btrfs` to your environment before calling the **binaries**
127128
> Makefile target will disable the btrfs driver within the containerd Go build.

cmd/containerd/server/server.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ import (
5151
ssapi "github.com/containerd/containerd/api/services/snapshots/v1"
5252
"github.com/containerd/platforms"
5353
"github.com/containerd/plugin"
54-
"github.com/containerd/plugin/dynamic"
5554
"github.com/containerd/plugin/registry"
5655

5756
srvconfig "github.com/containerd/containerd/v2/cmd/containerd/server/config"
@@ -476,7 +475,7 @@ func LoadPlugins(ctx context.Context, config *srvconfig.Config) ([]plugin.Regist
476475
if path == "" {
477476
path = filepath.Join(config.Root, "plugins")
478477
}
479-
if count, err := dynamic.Load(path); err != nil {
478+
if count, err := loadDynamic(path); err != nil {
480479
return nil, err
481480
} else if count > 0 || config.PluginDir != "" { //nolint:staticcheck
482481
config.PluginDir = path //nolint:staticcheck
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//go:build no_dynamic_plugins
2+
3+
/*
4+
Copyright The containerd Authors.
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
*/
18+
19+
package server
20+
21+
func loadDynamic(string) (loaded int, _ error) {
22+
// dynamic plugins disabled through no_dynamic_plugins build-tag
23+
return 0, nil
24+
}
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//go:build !no_dynamic_plugins
2+
3+
/*
4+
Copyright The containerd Authors.
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
*/
18+
19+
package server
20+
21+
import "github.com/containerd/plugin/dynamic"
22+
23+
func loadDynamic(path string) (loaded int, _ error) {
24+
return dynamic.Load(path)
25+
}

0 commit comments

Comments
 (0)