mirror of
https://github.com/containerd/containerd.git
synced 2026-06-24 08:48:48 +00:00
Move erofs implementation to plugin and register with fsview. Signed-off-by: Derek McGowan <derek@mcg.dev>
70 lines
1.6 KiB
Go
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
|
|
}
|