]> Cypherpunks repositories - gostls13.git/commitdiff
internal/syscall/unix: reuse existing {Fstat,Open,Unlink}at on freebsd
authorTobias Klauser <tklauser@distanz.ch>
Thu, 15 Sep 2022 21:28:49 +0000 (23:28 +0200)
committerGopher Robot <gobot@golang.org>
Mon, 19 Sep 2022 15:51:18 +0000 (15:51 +0000)
Change-Id: I517e75faca18bf0fdcd4e6c837f50f824aa6348c
Reviewed-on: https://go-review.googlesource.com/c/go/+/431236
Reviewed-by: Cherry Mui <cherryyz@google.com>
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
src/internal/syscall/unix/at.go
src/internal/syscall/unix/at_freebsd.go [deleted file]
src/internal/syscall/unix/at_fstatat2.go [moved from src/internal/syscall/unix/at_statx.go with 84% similarity]
src/internal/syscall/unix/at_sysnum_freebsd.go [new file with mode: 0644]

index 90fcda0c75c40f1601f10ef4da9117719cac599a..cfb6e410b122a81a481a7831abc024d6dfc8f98b 100644 (file)
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-//go:build dragonfly || linux || netbsd || (openbsd && mips64)
+//go:build dragonfly || freebsd || linux || netbsd || (openbsd && mips64)
 
 package unix
 
diff --git a/src/internal/syscall/unix/at_freebsd.go b/src/internal/syscall/unix/at_freebsd.go
deleted file mode 100644 (file)
index e171f4d..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package unix
-
-import (
-       "syscall"
-       "unsafe"
-)
-
-const (
-       AT_REMOVEDIR        = 0x800
-       AT_SYMLINK_NOFOLLOW = 0x200
-)
-
-func Unlinkat(dirfd int, path string, flags int) error {
-       p, err := syscall.BytePtrFromString(path)
-       if err != nil {
-               return err
-       }
-
-       _, _, errno := syscall.Syscall(syscall.SYS_UNLINKAT, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags))
-       if errno != 0 {
-               return errno
-       }
-
-       return nil
-}
-
-func Openat(dirfd int, path string, flags int, perm uint32) (int, error) {
-       p, err := syscall.BytePtrFromString(path)
-       if err != nil {
-               return 0, err
-       }
-
-       fd, _, errno := syscall.Syscall6(syscall.SYS_OPENAT, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), uintptr(perm), 0, 0)
-       if errno != 0 {
-               return 0, errno
-       }
-
-       return int(fd), nil
-}
-
-func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) error {
-       return syscall.Fstatat(dirfd, path, stat, flags)
-}
similarity index 84%
rename from src/internal/syscall/unix/at_statx.go
rename to src/internal/syscall/unix/at_fstatat2.go
index 230d697b8c4cdf91ce02f7e717c64874a50b2fe4..8d20e1a885bd132d541b17c3f01528b006801d4c 100644 (file)
@@ -2,13 +2,11 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-//go:build linux && loong64
+//go:build freebsd || (linux && loong64)
 
 package unix
 
-import (
-       "syscall"
-)
+import "syscall"
 
 func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) error {
        return syscall.Fstatat(dirfd, path, stat, flags)
diff --git a/src/internal/syscall/unix/at_sysnum_freebsd.go b/src/internal/syscall/unix/at_sysnum_freebsd.go
new file mode 100644 (file)
index 0000000..adfbbcb
--- /dev/null
@@ -0,0 +1,15 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package unix
+
+import "syscall"
+
+const (
+       AT_REMOVEDIR        = 0x800
+       AT_SYMLINK_NOFOLLOW = 0x200
+
+       unlinkatTrap uintptr = syscall.SYS_UNLINKAT
+       openatTrap   uintptr = syscall.SYS_OPENAT
+)