Blame sysdeps/mach/hurd/accept4.c

Packit 6c4009
/* Copyright (C) 1992-2018 Free Software Foundation, Inc.
Packit 6c4009
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; see the file COPYING.LIB.  If
Packit 6c4009
   not, see <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <errno.h>
Packit 6c4009
#include <fcntl.h>
Packit 6c4009
#include <fcntl-internal.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
#include <sys/socket.h>
Packit 6c4009
#include <hurd.h>
Packit 6c4009
#include <hurd/fd.h>
Packit 6c4009
#include <hurd/socket.h>
Packit 6c4009
Packit 6c4009
/* Await a connection on socket FD.
Packit 6c4009
   When a connection arrives, open a new socket to communicate with it,
Packit 6c4009
   set *ADDRARG (which is *ADDR_LEN bytes long) to the address of the connecting
Packit 6c4009
   peer and *ADDR_LEN to the address's actual length, and return the
Packit 6c4009
   new socket's descriptor, or -1 for errors.  The operation can be influenced
Packit 6c4009
   by the FLAGS parameter.  */
Packit 6c4009
int
Packit 6c4009
__libc_accept4 (int fd, __SOCKADDR_ARG addrarg, socklen_t *addr_len, int flags)
Packit 6c4009
{
Packit 6c4009
  error_t err;
Packit 6c4009
  socket_t new;
Packit 6c4009
  addr_port_t aport;
Packit 6c4009
  struct sockaddr *addr = addrarg.__sockaddr__;
Packit 6c4009
  char *buf = (char *) addr;
Packit 6c4009
  mach_msg_type_number_t buflen;
Packit 6c4009
  int type;
Packit 6c4009
Packit 6c4009
  flags = sock_to_o_flags (flags);
Packit 6c4009
Packit 6c4009
  if (flags & ~(O_CLOEXEC | O_NONBLOCK))
Packit 6c4009
    return __hurd_fail (EINVAL);
Packit 6c4009
Packit 6c4009
  if (err = HURD_DPORT_USE (fd, __socket_accept (port, &new, &aport)))
Packit 6c4009
    return __hurd_dfail (fd, err);
Packit 6c4009
Packit 6c4009
  if (addr != NULL)
Packit 6c4009
    {
Packit 6c4009
      buflen = *addr_len;
Packit 6c4009
      err = __socket_whatis_address (aport, &type, &buf, &buflen);
Packit 6c4009
      if (err == EOPNOTSUPP)
Packit 6c4009
	/* If the protocol server can't tell us the address, just return a
Packit 6c4009
	   zero-length one.  */
Packit 6c4009
	{
Packit 6c4009
	  buf = (char *)addr;
Packit 6c4009
	  buflen = 0;
Packit 6c4009
	  err = 0;
Packit 6c4009
	}
Packit 6c4009
    }
Packit 6c4009
  __mach_port_deallocate (__mach_task_self (), aport);
Packit 6c4009
Packit 6c4009
  if (! err)
Packit 6c4009
    {
Packit 6c4009
      if (flags & O_NONBLOCK)
Packit 6c4009
	err = __io_set_some_openmodes (new, O_NONBLOCK);
Packit 6c4009
      /* TODO: do we need special ERR massaging after the previous call?  */
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (err)
Packit 6c4009
    {
Packit 6c4009
      __mach_port_deallocate (__mach_task_self (), new);
Packit 6c4009
      return __hurd_dfail (fd, err);
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  if (addr != NULL)
Packit 6c4009
    {
Packit 6c4009
      if (*addr_len > buflen)
Packit 6c4009
	*addr_len = buflen;
Packit 6c4009
Packit 6c4009
      if (buf != (char *) addr)
Packit 6c4009
	{
Packit 6c4009
	  memcpy (addr, buf, *addr_len);
Packit 6c4009
	  __vm_deallocate (__mach_task_self (), (vm_address_t) buf, buflen);
Packit 6c4009
	}
Packit 6c4009
Packit 6c4009
      if (buflen > 0)
Packit 6c4009
	addr->sa_family = type;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  return _hurd_intern_fd (new, O_IGNORE_CTTY | flags, 1);
Packit 6c4009
}
Packit 6c4009
weak_alias (__libc_accept4, accept4)