jpipe.c 6.95 KB
/*
  eXosip - This is the eXtended osip library.
  Copyright (C) 2001-2020 Aymeric MOIZARD amoizard@antisip.com

  eXosip is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  eXosip is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

  In addition, as a special exception, the copyright holders give
  permission to link the code of portions of this program with the
  OpenSSL library under certain conditions as described in each
  individual source file, and distribute linked combinations
  including the two.
  You must obey the GNU General Public License in all respects
  for all of the code used other than OpenSSL.  If you modify
  file(s) with this exception, you may extend this exception to your
  version of the file(s), but you are not obligated to do so.  If you
  do not wish to do so, delete this exception statement from your
  version.  If you delete this exception statement from all source
  files in the program, then also delete it here.
*/

#include "eXosip2.h"

#ifndef OSIP_MONOTHREAD

#include "jpipe.h"

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#if !defined(WIN32) && !defined(__arc__)

#include <fcntl.h>

jpipe_t *jpipe() {
  jpipe_t *my_pipe = (jpipe_t *) osip_malloc(sizeof(jpipe_t));

  if (my_pipe == NULL)
    return NULL;

  if (0 != pipe(my_pipe->pipes)) {
    osip_free(my_pipe);
    return NULL;
  }

  if (fcntl(my_pipe->pipes[1], F_SETFL, O_NONBLOCK) == -1) {
    /* failed for some reason... */
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] cannot set O_NONBLOCK to the pipe[1]\n"));
  }

  return my_pipe;
}

int jpipe_close(jpipe_t *apipe) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  _eXosip_closesocket(apipe->pipes[0]);
  _eXosip_closesocket(apipe->pipes[1]);
  osip_free(apipe);
  return OSIP_SUCCESS;
}

/**
 * Write in a pipe.
 */
int jpipe_write(jpipe_t *apipe, const void *buf, int count) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  return (int) write(apipe->pipes[1], buf, count);
}

/**
 * Read in a pipe.
 */
int jpipe_read(jpipe_t *apipe, void *buf, int count) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  return (int) read(apipe->pipes[0], buf, count);
}

/**
 * Get descriptor of reading pipe.
 */
int jpipe_get_read_descr(jpipe_t *apipe) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  return apipe->pipes[0];
}

#else

int setNonBlocking(SOCKET_TYPE fd) {
  int flags;

  /* If they have O_NONBLOCK, use the Posix way to do it */
#if defined(O_NONBLOCK)

  /* Fixme: O_NONBLOCK is defined but broken on SunOS 4.1.x and AIX 3.2.5. */
  if (-1 == (flags = fcntl(fd, F_GETFL, 0)))
    flags = 0;

  return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
#else
  /* Otherwise, use the old way of doing it */
  flags = 1;
  return ioctlsocket(fd, FIONBIO, &flags);
#endif
}

jpipe_t *jpipe() {
  int s = 0;
  int timeout = 0;
  struct sockaddr_in raddr;
  int j;
  socklen_t len;

  jpipe_t *my_pipe = (jpipe_t *) osip_malloc(sizeof(jpipe_t));

  if (my_pipe == NULL)
    return NULL;

  s = (int) socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);

  if (s < 0) {
    osip_free(my_pipe);
    return NULL;
  }

  my_pipe->pipes[1] = (int) socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);

  if (my_pipe->pipes[1] < 0) {
    _eXosip_closesocket(s);
    osip_free(my_pipe);
    return NULL;
  }

  raddr.sin_addr.s_addr = inet_addr("127.0.0.1");
  raddr.sin_family = AF_INET;
  raddr.sin_port = 0;

  if (bind(s, (struct sockaddr *) &raddr, sizeof(raddr)) < 0) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] failed to bind a local socket (port=0), aborting\n"));
    _eXosip_closesocket(s);
    _eXosip_closesocket(my_pipe->pipes[1]);
    osip_free(my_pipe);
    return NULL;
  }

  /* get port */
  len = sizeof(raddr);
  j = getsockname(s, (struct sockaddr *) &raddr, &len);

  if (j != 0) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] failed to getsockname on a local socket, aborting\n"));
    _eXosip_closesocket(s);
    _eXosip_closesocket(my_pipe->pipes[1]);
    osip_free(my_pipe);
    return NULL;
  }

  j = listen(s, 1);

  if (j != 0) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] failed to listen on a local socket, aborting\n"));
    _eXosip_closesocket(s);
    _eXosip_closesocket(my_pipe->pipes[1]);
    osip_free(my_pipe);
    return NULL;
  }

  j = setsockopt(my_pipe->pipes[1], SOL_SOCKET, SO_RCVTIMEO, (const char *) &timeout, sizeof(timeout));
#if defined(__arc__)

  if (j != 0) {
    /* failed for some reason... */
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] cannot set O_NONBLOCK to the file desciptor\n"));
    _eXosip_closesocket(s);
    _eXosip_closesocket(my_pipe->pipes[1]);
    osip_free(my_pipe);
    return NULL;
  }

#elif !defined(_WIN32_WCE)

  if (j != NO_ERROR) {
    /* failed for some reason... */
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] cannot set O_NONBLOCK to the file desciptor\n"));
    _eXosip_closesocket(s);
    _eXosip_closesocket(my_pipe->pipes[1]);
    osip_free(my_pipe);
    return NULL;
  }

#endif

  connect(my_pipe->pipes[1], (struct sockaddr *) &raddr, sizeof(raddr));

  my_pipe->pipes[0] = (int) accept(s, NULL, NULL);

  if (my_pipe->pipes[0] < 0) {
    OSIP_TRACE(osip_trace(__FILE__, __LINE__, OSIP_ERROR, NULL, "[eXosip] failed to call accept\n"));
    _eXosip_closesocket(s);
    _eXosip_closesocket(my_pipe->pipes[1]);
    osip_free(my_pipe);
    return NULL;
  }

  /* set the socket to non-blocking to avoid a deadly embrace problem. */
  setNonBlocking(my_pipe->pipes[1]);

  _eXosip_closesocket(s);

  return my_pipe;
}

int jpipe_close(jpipe_t *apipe) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  _eXosip_closesocket(apipe->pipes[0]);
  _eXosip_closesocket(apipe->pipes[1]);
  osip_free(apipe);
  return OSIP_SUCCESS;
}

/**
 * Write in a pipe.
 */
int jpipe_write(jpipe_t *apipe, const void *buf, int count) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  return send(apipe->pipes[1], buf, count, 0);
}

/**
 * Read in a pipe.
 */
int jpipe_read(jpipe_t *apipe, void *buf, int count) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  return recv(apipe->pipes[0], buf, count, 0 /* MSG_DONTWAIT */); /* BUG?? */
}

/**
 * Get descriptor of reading pipe.
 */
int jpipe_get_read_descr(jpipe_t *apipe) {
  if (apipe == NULL)
    return OSIP_BADPARAMETER;

  return (int) apipe->pipes[0]; /* on windows, this is a conversion from SOCKET to int... doesn't seems to be an issue */
}

#endif

#endif