mirror of https://github.com/docker/cli.git
54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
package sysx
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Initial stub version for FreeBSD. FreeBSD has a different
|
|
// syscall API from Darwin and Linux for extended attributes;
|
|
// it is also not widely used. It is not exposed at all by the
|
|
// Go syscall package, so we need to implement directly eventually.
|
|
|
|
var unsupported error = errors.New("extended attributes unsupported on FreeBSD")
|
|
|
|
// Listxattr calls syscall listxattr and reads all content
|
|
// and returns a string array
|
|
func Listxattr(path string) ([]string, error) {
|
|
return []string{}, nil
|
|
}
|
|
|
|
// Removexattr calls syscall removexattr
|
|
func Removexattr(path string, attr string) (err error) {
|
|
return unsupported
|
|
}
|
|
|
|
// Setxattr calls syscall setxattr
|
|
func Setxattr(path string, attr string, data []byte, flags int) (err error) {
|
|
return unsupported
|
|
}
|
|
|
|
// Getxattr calls syscall getxattr
|
|
func Getxattr(path, attr string) ([]byte, error) {
|
|
return []byte{}, nil
|
|
}
|
|
|
|
// LListxattr lists xattrs, not following symlinks
|
|
func LListxattr(path string) ([]string, error) {
|
|
return []string{}, nil
|
|
}
|
|
|
|
// LRemovexattr removes an xattr, not following symlinks
|
|
func LRemovexattr(path string, attr string) (err error) {
|
|
return unsupported
|
|
}
|
|
|
|
// LSetxattr sets an xattr, not following symlinks
|
|
func LSetxattr(path string, attr string, data []byte, flags int) (err error) {
|
|
return unsupported
|
|
}
|
|
|
|
// LGetxattr gets an xattr, not following symlinks
|
|
func LGetxattr(path, attr string) ([]byte, error) {
|
|
return []byte{}, nil
|
|
}
|