Files
containerd/internal/fsview/overlay_linux.go
Derek McGowan 21d666cfbc Update fsview to allow type registration
Move erofs implementation to plugin and register with fsview.

Signed-off-by: Derek McGowan <derek@mcg.dev>
2026-04-04 22:37:38 -07:00

70 lines
1.6 KiB
Go

/*
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 fsview
import (
"io/fs"
"os"
"syscall"
"golang.org/x/sys/unix"
)
func getxattr(f fs.File, name string) (string, bool) {
if osf, ok := f.(*os.File); ok {
var dest [256]byte
sz, err := unix.Fgetxattr(int(osf.Fd()), name, dest[:])
if err != nil || sz <= 0 {
return "", false
}
return string(dest[:sz]), true //nolint:gosec // G602: sz is bounded by dest size
}
for _, h := range registered {
if h.Getxattr != nil {
if val, ok := h.Getxattr(f, name); ok {
return val, true
}
}
}
return "", false
}
func isOpaque(f fs.File) bool {
for _, xattr := range OverlayOpaqueXattrs {
if val, ok := getxattr(f, xattr); ok && val == "y" {
return true
}
}
return false
}
func isWhiteout(fi fs.FileInfo) bool {
if (fi.Mode() & fs.ModeCharDevice) == 0 {
return false
}
if sys, ok := fi.Sys().(*syscall.Stat_t); ok {
return sys.Rdev == 0
}
for _, h := range registered {
if h.IsWhiteout != nil && h.IsWhiteout(fi) {
return true
}
}
return false
}