2013-01-28 09:54:15 -07:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
|
|
|
// This file implements sysSocket and accept for platforms that do not
|
|
|
|
// provide a fast path for setting SetNonblock and CloseOnExec.
|
|
|
|
|
2014-03-03 17:28:09 -07:00
|
|
|
// +build darwin dragonfly nacl netbsd openbsd solaris
|
2013-01-28 09:54:15 -07:00
|
|
|
|
|
|
|
package net
|
|
|
|
|
|
|
|
import "syscall"
|
|
|
|
|
|
|
|
// Wrapper around the socket system call that marks the returned file
|
|
|
|
// descriptor as nonblocking and close-on-exec.
|
2014-03-03 17:28:09 -07:00
|
|
|
func sysSocket(family, sotype, proto int) (int, error) {
|
2013-01-28 09:54:15 -07:00
|
|
|
// See ../syscall/exec_unix.go for description of ForkLock.
|
|
|
|
syscall.ForkLock.RLock()
|
2014-03-03 17:28:09 -07:00
|
|
|
s, err := syscall.Socket(family, sotype, proto)
|
2013-01-28 09:54:15 -07:00
|
|
|
if err == nil {
|
|
|
|
syscall.CloseOnExec(s)
|
|
|
|
}
|
|
|
|
syscall.ForkLock.RUnlock()
|
|
|
|
if err != nil {
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
if err = syscall.SetNonblock(s, true); err != nil {
|
|
|
|
syscall.Close(s)
|
|
|
|
return -1, err
|
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper around the accept system call that marks the returned file
|
|
|
|
// descriptor as nonblocking and close-on-exec.
|
2014-03-03 17:28:09 -07:00
|
|
|
func accept(s int) (int, syscall.Sockaddr, error) {
|
2013-01-28 09:54:15 -07:00
|
|
|
// See ../syscall/exec_unix.go for description of ForkLock.
|
2013-02-07 20:45:12 -07:00
|
|
|
// It is probably okay to hold the lock across syscall.Accept
|
2013-01-28 09:54:15 -07:00
|
|
|
// because we have put fd.sysfd into non-blocking mode.
|
2013-02-07 20:45:12 -07:00
|
|
|
// However, a call to the File method will put it back into
|
|
|
|
// blocking mode. We can't take that risk, so no use of ForkLock here.
|
2014-03-03 17:28:09 -07:00
|
|
|
ns, sa, err := syscall.Accept(s)
|
2013-01-28 09:54:15 -07:00
|
|
|
if err == nil {
|
2014-03-03 17:28:09 -07:00
|
|
|
syscall.CloseOnExec(ns)
|
2013-01-28 09:54:15 -07:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return -1, nil, err
|
|
|
|
}
|
2014-03-03 17:28:09 -07:00
|
|
|
if err = syscall.SetNonblock(ns, true); err != nil {
|
|
|
|
syscall.Close(ns)
|
2013-01-28 09:54:15 -07:00
|
|
|
return -1, nil, err
|
|
|
|
}
|
2014-03-03 17:28:09 -07:00
|
|
|
return ns, sa, nil
|
2013-01-28 09:54:15 -07:00
|
|
|
}
|