Skip to content

Commit 9ab0ec6

Browse files
committed
Lchmod(): simplify and optimize
A quote from fchmodat(2) man page (this one is for Linux, others should be similar): > If pathname is relative and dirfd is the special value > AT_FDCWD, then pathname is interpreted relative to the current working > directory of the calling process (like chmod()). > > If pathname is absolute, then dirfd is ignored. So, instead of calling filepath.Abs() let's use AT_FDCWD and let the kernel figure things out for us. While at it, fix the comment. Signed-off-by: Kir Kolyshkin <[email protected]>
1 parent 2b69c16 commit 9ab0ec6

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

driver/driver_unix.go

+3-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
"errors"
77
"fmt"
88
"os"
9-
"path/filepath"
109
"sort"
1110

1211
"github.com/containerd/continuity/devices"
@@ -27,16 +26,9 @@ func (d *driver) Mkfifo(path string, mode os.FileMode) error {
2726
return devices.Mknod(path, mode, 0, 0)
2827
}
2928

30-
// Lchmod changes the mode of an file not following symlinks.
31-
func (d *driver) Lchmod(path string, mode os.FileMode) (err error) {
32-
if !filepath.IsAbs(path) {
33-
path, err = filepath.Abs(path)
34-
if err != nil {
35-
return
36-
}
37-
}
38-
39-
return unix.Fchmodat(0, path, uint32(mode), unix.AT_SYMLINK_NOFOLLOW)
29+
// Lchmod changes the mode of a file not following symlinks.
30+
func (d *driver) Lchmod(path string, mode os.FileMode) error {
31+
return unix.Fchmodat(unix.AT_FDCWD, path, uint32(mode), unix.AT_SYMLINK_NOFOLLOW)
4032
}
4133

4234
// Getxattr returns all of the extended attributes for the file at path p.

0 commit comments

Comments
 (0)