317 lines
8.8 KiB
C
317 lines
8.8 KiB
C
/*
|
|
* This file is part of the Nice GLib ICE library.
|
|
*
|
|
* (C) 2008-2012 Collabora Ltd.
|
|
* Contact: Youness Alaoui
|
|
* (C) 2008-2009 Nokia Corporation. All rights reserved.
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is the Nice GLib ICE library.
|
|
*
|
|
* The Initial Developers of the Original Code are Collabora Ltd and Nokia
|
|
* Corporation. All Rights Reserved.
|
|
*
|
|
* Contributors:
|
|
* Youness Alaoui, Collabora Ltd.
|
|
* George Kiagiadakis, Collabora Ltd.
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of the
|
|
* the GNU Lesser General Public License Version 2.1 (the "LGPL"), in which
|
|
* case the provisions of LGPL are applicable instead of those above. If you
|
|
* wish to allow use of your version of this file only under the terms of the
|
|
* LGPL and not to allow others to use your version of this file under the
|
|
* MPL, indicate your decision by deleting the provisions above and replace
|
|
* them with the notice and other provisions required by the LGPL. If you do
|
|
* not delete the provisions above, a recipient may use your version of this
|
|
* file under either the MPL or the LGPL.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "socket.h"
|
|
#include "tcp-active.h"
|
|
#include "agent-priv.h"
|
|
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
|
|
#ifndef G_OS_WIN32
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
/* FIXME: This should be defined in gio/gnetworking.h, which we should include;
|
|
* but we cannot do that without refactoring.
|
|
* (See: https://phabricator.freedesktop.org/D230). */
|
|
#undef TCP_NODELAY
|
|
#define TCP_NODELAY 1
|
|
|
|
typedef struct {
|
|
GSocketAddress *local_addr;
|
|
GMainContext *context;
|
|
} TcpActivePriv;
|
|
|
|
|
|
static void socket_close (NiceSocket *sock);
|
|
static gint socket_recv_messages (NiceSocket *sock,
|
|
NiceInputMessage *recv_messages, guint n_recv_messages);
|
|
static gint socket_send_messages (NiceSocket *sock, const NiceAddress *to,
|
|
const NiceOutputMessage *messages, guint n_messages);
|
|
static gint socket_send_messages_reliable (NiceSocket *sock,
|
|
const NiceAddress *to, const NiceOutputMessage *messages, guint n_messages);
|
|
static gboolean socket_is_reliable (NiceSocket *sock);
|
|
static gboolean socket_can_send (NiceSocket *sock, NiceAddress *addr);
|
|
static void socket_set_writable_callback (NiceSocket *sock,
|
|
NiceSocketWritableCb callback, gpointer user_data);
|
|
|
|
|
|
NiceSocket *
|
|
nice_tcp_active_socket_new (GMainContext *ctx, NiceAddress *addr)
|
|
{
|
|
union {
|
|
struct sockaddr_storage storage;
|
|
struct sockaddr addr;
|
|
} name;
|
|
NiceSocket *sock;
|
|
TcpActivePriv *priv;
|
|
GSocketAddress *gaddr;
|
|
NiceAddress local_addr;
|
|
|
|
if (addr != NULL) {
|
|
|
|
local_addr = *addr;
|
|
/* Make sure we don't bind to any local port */
|
|
nice_address_set_port (&local_addr, 0);
|
|
nice_address_copy_to_sockaddr(&local_addr, &name.addr);
|
|
} else {
|
|
memset (&local_addr, 0, sizeof (local_addr));
|
|
memset (&name, 0, sizeof (name));
|
|
name.storage.ss_family = AF_UNSPEC;
|
|
}
|
|
|
|
gaddr = g_socket_address_new_from_native (&name, sizeof (name));
|
|
|
|
if (gaddr == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
if (ctx == NULL) {
|
|
ctx = g_main_context_default ();
|
|
}
|
|
|
|
sock = g_slice_new0 (NiceSocket);
|
|
|
|
sock->priv = priv = g_slice_new0 (TcpActivePriv);
|
|
|
|
priv->context = g_main_context_ref (ctx);
|
|
priv->local_addr = gaddr;
|
|
|
|
sock->type = NICE_SOCKET_TYPE_TCP_ACTIVE;
|
|
sock->fileno = NULL;
|
|
sock->addr = local_addr;
|
|
sock->send_messages = socket_send_messages;
|
|
sock->send_messages_reliable = socket_send_messages_reliable;
|
|
sock->recv_messages = socket_recv_messages;
|
|
sock->is_reliable = socket_is_reliable;
|
|
sock->can_send = socket_can_send;
|
|
sock->set_writable_callback = socket_set_writable_callback;
|
|
sock->close = socket_close;
|
|
|
|
return sock;
|
|
}
|
|
|
|
static void
|
|
socket_close (NiceSocket *sock)
|
|
{
|
|
TcpActivePriv *priv = sock->priv;
|
|
|
|
if (priv->context)
|
|
g_main_context_unref (priv->context);
|
|
if (priv->local_addr)
|
|
g_object_unref (priv->local_addr);
|
|
|
|
g_slice_free(TcpActivePriv, sock->priv);
|
|
}
|
|
|
|
static gint socket_recv_messages (NiceSocket *sock,
|
|
NiceInputMessage *recv_messages, guint n_recv_messages)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static gint socket_send_messages (NiceSocket *sock, const NiceAddress *to,
|
|
const NiceOutputMessage *messages, guint n_messages)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static gint socket_send_messages_reliable (NiceSocket *sock,
|
|
const NiceAddress *to, const NiceOutputMessage *messages, guint n_messages)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
static gboolean
|
|
socket_is_reliable (NiceSocket *sock)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
socket_can_send (NiceSocket *sock, NiceAddress *addr)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
socket_set_writable_callback (NiceSocket *sock,
|
|
NiceSocketWritableCb callback, gpointer user_data)
|
|
{
|
|
}
|
|
|
|
NiceSocket *
|
|
nice_tcp_active_socket_connect (NiceSocket *sock, NiceAddress *addr)
|
|
{
|
|
union {
|
|
struct sockaddr_storage storage;
|
|
struct sockaddr addr;
|
|
} name;
|
|
TcpActivePriv *priv = sock->priv;
|
|
GSocket *gsock = NULL;
|
|
GError *gerr = NULL;
|
|
gboolean gret = FALSE;
|
|
GSocketAddress *gaddr;
|
|
NiceAddress local_addr;
|
|
NiceAddress remote_addr;
|
|
NiceSocket *new_socket = NULL;
|
|
union {
|
|
struct sockaddr_storage ss;
|
|
struct sockaddr sa;
|
|
} sa;
|
|
char remote_addr_str[INET6_ADDRSTRLEN];
|
|
char local_addr_str[INET6_ADDRSTRLEN];
|
|
|
|
if (addr == NULL) {
|
|
/* We can't connect a tcp socket with no destination address */
|
|
return NULL;
|
|
}
|
|
|
|
nice_address_copy_to_sockaddr (addr, &name.addr);
|
|
|
|
if (name.storage.ss_family == AF_UNSPEC || name.storage.ss_family == AF_INET) {
|
|
gsock = g_socket_new (G_SOCKET_FAMILY_IPV4, G_SOCKET_TYPE_STREAM,
|
|
G_SOCKET_PROTOCOL_TCP, NULL);
|
|
|
|
name.storage.ss_family = AF_INET;
|
|
#ifdef HAVE_SA_LEN
|
|
name.storage.ss_len = sizeof (struct sockaddr_in);
|
|
#endif
|
|
} else if (name.storage.ss_family == AF_INET6) {
|
|
gsock = g_socket_new (G_SOCKET_FAMILY_IPV6, G_SOCKET_TYPE_STREAM,
|
|
G_SOCKET_PROTOCOL_TCP, NULL);
|
|
name.storage.ss_family = AF_INET6;
|
|
#ifdef HAVE_SA_LEN
|
|
name.storage.ss_len = sizeof (struct sockaddr_in6);
|
|
#endif
|
|
}
|
|
|
|
if (gsock == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
gaddr = g_socket_address_new_from_native (&name.addr, sizeof (name));
|
|
if (gaddr == NULL) {
|
|
g_object_unref (gsock);
|
|
return NULL;
|
|
}
|
|
|
|
/* GSocket: All socket file descriptors are set to be close-on-exec. */
|
|
g_socket_set_blocking (gsock, false);
|
|
|
|
/* setting TCP_NODELAY to TRUE in order to avoid packet batching */
|
|
g_socket_set_option (gsock, IPPROTO_TCP, TCP_NODELAY, TRUE, NULL);
|
|
|
|
gret = g_socket_bind (gsock, priv->local_addr, FALSE, &gerr);
|
|
|
|
if (gret == FALSE) {
|
|
if (g_error_matches (gerr, G_IO_ERROR, G_IO_ERROR_PENDING) == FALSE)
|
|
goto bind_error;
|
|
g_clear_error (&gerr);
|
|
}
|
|
|
|
gret = g_socket_connect (gsock, gaddr, NULL, &gerr);
|
|
|
|
if (gret == FALSE) {
|
|
if (g_error_matches (gerr, G_IO_ERROR, G_IO_ERROR_PENDING) == FALSE)
|
|
goto connect_error;
|
|
g_error_free (gerr);
|
|
}
|
|
g_object_unref (gaddr);
|
|
|
|
gaddr = g_socket_get_local_address (gsock, NULL);
|
|
if (gaddr == NULL ||
|
|
!g_socket_address_to_native (gaddr, &name.addr, sizeof (name), NULL)) {
|
|
nice_debug ("Can't extra local address from connected socket");
|
|
goto error;
|
|
}
|
|
g_object_unref (gaddr);
|
|
|
|
nice_address_set_from_sockaddr (&local_addr, &name.addr);
|
|
|
|
new_socket = nice_tcp_bsd_socket_new_from_gsock (priv->context, gsock,
|
|
&local_addr, addr, TRUE);
|
|
g_object_unref (gsock);
|
|
|
|
return new_socket;
|
|
|
|
error:
|
|
g_socket_close (gsock, NULL);
|
|
g_object_unref (gsock);
|
|
return NULL;
|
|
|
|
connect_error:
|
|
g_socket_address_to_native (gaddr, &sa, sizeof (sa), NULL);
|
|
g_object_unref (gaddr);
|
|
nice_address_set_from_sockaddr (&remote_addr, &sa.sa);
|
|
nice_address_to_string (&remote_addr, remote_addr_str);
|
|
|
|
g_socket_address_to_native (priv->local_addr, &sa, sizeof (sa), NULL);
|
|
nice_address_set_from_sockaddr (&local_addr, &sa.sa);
|
|
nice_address_to_string (&local_addr, local_addr_str);
|
|
|
|
nice_debug ("%s: tcp-active socket connect %p %s:%u -> %s:%u: error: %s",
|
|
G_STRFUNC, sock,
|
|
local_addr_str, nice_address_get_port (&local_addr),
|
|
remote_addr_str, nice_address_get_port (&remote_addr),
|
|
gerr->message);
|
|
|
|
g_error_free (gerr);
|
|
|
|
goto error;
|
|
|
|
bind_error:
|
|
g_socket_address_to_native (priv->local_addr, &sa, sizeof (sa), NULL);
|
|
nice_address_set_from_sockaddr (&local_addr, &sa.sa);
|
|
nice_address_to_string (&local_addr, local_addr_str);
|
|
|
|
nice_debug ("%s: tcp-active socket bind %p %s:%u error: %s",
|
|
G_STRFUNC, sock,
|
|
local_addr_str, nice_address_get_port (&local_addr),
|
|
gerr->message);
|
|
|
|
g_error_free (gerr);
|
|
|
|
goto error;
|
|
|
|
}
|