]> Cypherpunks repositories - gostls13.git/commitdiff
internal/poll, net, syscall: use accept4 on illumos
authorTobias Klauser <tklauser@distanz.ch>
Fri, 16 Oct 2020 17:35:09 +0000 (19:35 +0200)
committerTobias Klauser <tobias.klauser@gmail.com>
Fri, 16 Oct 2020 19:53:34 +0000 (19:53 +0000)
Illumos supports the accept4 syscall, use it in internal/poll.accept
like on other platforms.

Add Accept4 to package syscall despite the package being frozen. The
other option would have been to add this to internal/syscall/unix, but
adding it to syscall avoids duplicating a lot of code in internal/poll
and net/internal/socktest. Also, all other platforms supporting the
accept4 syscall already export Accept4.

Follow CL 97196, CL 40895 and CL 94295

Change-Id: I13b32f0163a683840c02b16722730d9dfdb98f56
Reviewed-on: https://go-review.googlesource.com/c/go/+/256101
Trust: Tobias Klauser <tobias.klauser@gmail.com>
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/internal/poll/hook_cloexec.go
src/internal/poll/sock_cloexec.go
src/internal/poll/sys_cloexec.go
src/net/internal/socktest/sys_cloexec.go
src/net/main_cloexec_test.go
src/net/sock_cloexec.go
src/net/sys_cloexec.go
src/runtime/cgo/cgo.go
src/syscall/syscall_illumos.go

index 5c93bdaf6c96eaaeb5c14e036d2e0eb5b18f6a11..5fd5449bb0cea31d7753905032d137a42d955b5e 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.
 
-// +build dragonfly freebsd linux netbsd openbsd
+// +build dragonfly freebsd illumos linux netbsd openbsd
 
 package poll
 
index 691cb8e36fe6f84672aa5d0073ad59fa14d7a270..ff7982ca9e68a4667aca1f30ae1f26d8ab1b25f8 100644 (file)
@@ -5,7 +5,7 @@
 // This file implements sysSocket and accept for platforms that
 // provide a fast path for setting SetNonblock and CloseOnExec.
 
-// +build dragonfly freebsd linux netbsd openbsd
+// +build dragonfly freebsd illumos linux netbsd openbsd
 
 package poll
 
index 7b87f136dfe5378f037cd47b320fd6815f9521a1..4b3c642173177ca446566a891d9a54b42461a381 100644 (file)
@@ -5,7 +5,7 @@
 // This file implements sysSocket and accept for platforms that do not
 // provide a fast path for setting SetNonblock and CloseOnExec.
 
-// +build aix darwin js,wasm solaris
+// +build aix darwin js,wasm solaris,!illumos
 
 package poll
 
index 986d89471b07c55599f5831131bb834410b5206d..421352c7b47624953c61164795c876c12839d326 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.
 
-// +build dragonfly freebsd linux netbsd openbsd
+// +build dragonfly freebsd illumos linux netbsd openbsd
 
 package socktest
 
index 5398f9eae10fe8c25895ed4c1de0bdeeec34a1a7..46b9ba5008a77132f573cc522bb6cf4fae40b8ce 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.
 
-// +build dragonfly freebsd linux netbsd openbsd
+// +build dragonfly freebsd illumos linux netbsd openbsd
 
 package net
 
index 0c883dc338fb0bdcab49a2e72e995432999150c8..5f345f0f4a5597326eaeba702fed073419f9334e 100644 (file)
@@ -5,7 +5,7 @@
 // This file implements sysSocket and accept for platforms that
 // provide a fast path for setting SetNonblock and CloseOnExec.
 
-// +build dragonfly freebsd linux netbsd openbsd
+// +build dragonfly freebsd illumos linux netbsd openbsd
 
 package net
 
index 89aad7066af980a0e4e46950ee6518edcda32f3e..967b8bea9dd805f95250de4d84ed0ba4da16c8f9 100644 (file)
@@ -5,7 +5,7 @@
 // This file implements sysSocket and accept for platforms that do not
 // provide a fast path for setting SetNonblock and CloseOnExec.
 
-// +build aix darwin solaris
+// +build aix darwin solaris,!illumos
 
 package net
 
index c02b837978a7038aa5a8c6070b25f6c111f575aa..4d2caf6c4f326c8b618e6aed3eead6dae221cafc 100644 (file)
@@ -21,6 +21,7 @@ package cgo
 #cgo openbsd LDFLAGS: -lpthread
 #cgo aix LDFLAGS: -Wl,-berok
 #cgo solaris LDFLAGS: -lxnet
+#cgo illumos LDFLAGS: -lsocket
 
 // Issue 35247.
 #cgo darwin CFLAGS: -Wno-nullability-completeness
index 1484337e1b767bc575ee373dfda3d1a20bfbf77d..d70a436d13e93653f915e393f823c47f253c9ae9 100644 (file)
@@ -10,11 +10,34 @@ package syscall
 
 import "unsafe"
 
+//go:cgo_import_dynamic libc_accept4 accept4 "libsocket.so"
 //go:cgo_import_dynamic libc_flock flock "libc.so"
 
+//go:linkname procAccept4 libc_accept4
 //go:linkname procFlock libc_flock
 
-var procFlock libcFunc
+var (
+       procAccept4,
+       procFlock libcFunc
+)
+
+func Accept4(fd int, flags int) (int, Sockaddr, error) {
+       var rsa RawSockaddrAny
+       var addrlen _Socklen = SizeofSockaddrAny
+       nfd, _, errno := sysvicall6(uintptr(unsafe.Pointer(&procAccept4)), 4, uintptr(fd), uintptr(unsafe.Pointer(&rsa)), uintptr(unsafe.Pointer(&addrlen)), uintptr(flags), 0, 0)
+       if errno != 0 {
+               return 0, nil, errno
+       }
+       if addrlen > SizeofSockaddrAny {
+               panic("RawSockaddrAny too small")
+       }
+       sa, err := anyToSockaddr(&rsa)
+       if err != nil {
+               Close(int(nfd))
+               return 0, nil, err
+       }
+       return int(nfd), sa, nil
+}
 
 func Flock(fd int, how int) error {
        _, _, errno := sysvicall6(uintptr(unsafe.Pointer(&procFlock)), 2, uintptr(fd), uintptr(how), 0, 0, 0, 0)