1
0
mirror of https://github.com/restic/restic.git synced 2024-07-12 10:14:16 +02:00
restic/vendor/github.com/pkg/xattr/xattr_linux.go

65 lines
1.5 KiB
Go
Raw Normal View History

2017-07-23 14:24:45 +02:00
// +build linux
package xattr
import (
"syscall"
2017-07-23 14:24:45 +02:00
"golang.org/x/sys/unix"
)
const (
XATTR_CREATE = unix.XATTR_CREATE
XATTR_REPLACE = unix.XATTR_REPLACE
// ENOATTR is not exported by the syscall package on Linux, because it is
// an alias for ENODATA. We export it here so it is available on all
// our supported platforms.
ENOATTR = syscall.ENODATA
)
func getxattr(path string, name string, data []byte) (int, error) {
return unix.Getxattr(path, name, data)
2017-07-23 14:24:45 +02:00
}
func lgetxattr(path string, name string, data []byte) (int, error) {
return unix.Lgetxattr(path, name, data)
2017-07-23 14:24:45 +02:00
}
func setxattr(path string, name string, data []byte, flags int) error {
return unix.Setxattr(path, name, data, flags)
2017-07-23 14:24:45 +02:00
}
func lsetxattr(path string, name string, data []byte, flags int) error {
return unix.Lsetxattr(path, name, data, flags)
}
func removexattr(path string, name string) error {
return unix.Removexattr(path, name)
}
func lremovexattr(path string, name string) error {
return unix.Lremovexattr(path, name)
2017-07-23 14:24:45 +02:00
}
func listxattr(path string, data []byte) (int, error) {
return unix.Listxattr(path, data)
}
func llistxattr(path string, data []byte) (int, error) {
return unix.Llistxattr(path, data)
}
// stringsFromByteSlice converts a sequence of attributes to a []string.
// On Darwin and Linux, each entry is a NULL-terminated string.
func stringsFromByteSlice(buf []byte) (result []string) {
offset := 0
for index, b := range buf {
if b == 0 {
result = append(result, string(buf[offset:index]))
offset = index + 1
}
}
return
}