
With this patch we ensure that local socket errors during connection establishment are properly transmitted to the connection check layer, so the related pair can be put in state failed when needed. The local socket errors we are interested in, are those occuring when the local source address cannot be bound anymore, because the underlying interface vanished for example. In particular, we don't ignore errors coming from g_socket_bind() with tcp active sockets, that perform a bind to *whatever* local address is available, in case it cannot bind to the specified address. This behaviour was demonstrated with the test-tcp example, that tried to bind to the IPv4 loopback address on a socket initially created for the IPv6 loopback.
162 lines
5.1 KiB
C
162 lines
5.1 KiB
C
/*
|
|
* This file is part of the Nice GLib ICE library.
|
|
*
|
|
* (C) 2012 Collabora Ltd.
|
|
* Contact: George Kiagiadakis
|
|
*
|
|
* 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:
|
|
* 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 <string.h>
|
|
#include <stdio.h>
|
|
#include <gio/gnetworking.h>
|
|
|
|
#include "socket.h"
|
|
|
|
GMainLoop *mainloop = NULL;
|
|
NiceSocket *active_sock, *client;
|
|
NiceSocket *passive_sock, *server;
|
|
NiceAddress tmp;
|
|
gchar buf[5];
|
|
|
|
static gboolean
|
|
on_server_connection_available (gpointer user_data)
|
|
{
|
|
server = nice_tcp_passive_socket_accept (passive_sock);
|
|
g_assert_true (server);
|
|
|
|
g_main_loop_quit (mainloop);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
on_server_input_available (gpointer user_data)
|
|
{
|
|
g_assert_cmpint (5, ==, nice_socket_recv (server, &tmp, 5, buf));
|
|
g_assert_true (nice_address_equal (&tmp, &client->addr));
|
|
|
|
g_main_loop_quit (mainloop);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
on_client_input_available (gpointer user_data)
|
|
{
|
|
g_assert_cmpint (5, ==, nice_socket_recv (client, &tmp, 5, buf));
|
|
g_assert_true (nice_address_equal (&tmp, &server->addr));
|
|
|
|
g_main_loop_quit (mainloop);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
NiceAddress active_bind_addr, passive_bind_addr;
|
|
GSource *srv_listen_source, *srv_input_source, *cli_input_source;
|
|
GError *error = NULL;
|
|
|
|
g_networking_init ();
|
|
|
|
mainloop = g_main_loop_new (NULL, FALSE);
|
|
|
|
nice_address_init (&active_bind_addr);
|
|
g_assert_true (nice_address_set_from_string (&active_bind_addr, "127.0.0.1"));
|
|
|
|
nice_address_init (&passive_bind_addr);
|
|
g_assert_true (nice_address_set_from_string (&passive_bind_addr, "127.0.0.1"));
|
|
nice_address_set_port (&passive_bind_addr, 0);
|
|
|
|
nice_address_init (&tmp);
|
|
|
|
passive_sock = nice_tcp_passive_socket_new (g_main_loop_get_context (mainloop),
|
|
&passive_bind_addr, &error);
|
|
g_assert_no_error (error);
|
|
g_assert_true (passive_sock);
|
|
|
|
srv_listen_source = g_socket_create_source (passive_sock->fileno,
|
|
G_IO_IN, NULL);
|
|
g_source_set_callback (srv_listen_source,
|
|
on_server_connection_available, NULL, NULL);
|
|
g_source_attach (srv_listen_source, g_main_loop_get_context (mainloop));
|
|
|
|
active_sock = nice_tcp_active_socket_new (g_main_loop_get_context (mainloop),
|
|
&active_bind_addr);
|
|
g_assert_true (active_sock);
|
|
|
|
client = nice_tcp_active_socket_connect (active_sock, &passive_sock->addr);
|
|
g_assert_true (client);
|
|
nice_socket_free (active_sock);
|
|
active_sock = NULL;
|
|
|
|
g_main_loop_run (mainloop); /* -> on_server_connection_available */
|
|
g_assert_true (server);
|
|
|
|
srv_input_source = g_socket_create_source (server->fileno, G_IO_IN, NULL);
|
|
g_source_set_callback (srv_input_source,
|
|
on_server_input_available, NULL, NULL);
|
|
g_source_attach (srv_input_source, g_main_loop_get_context (mainloop));
|
|
|
|
cli_input_source = g_socket_create_source (client->fileno, G_IO_IN, NULL);
|
|
g_source_set_callback (cli_input_source,
|
|
on_client_input_available, NULL, NULL);
|
|
g_source_attach (cli_input_source, g_main_loop_get_context (mainloop));
|
|
|
|
g_assert_true (nice_address_get_port (&client->addr) != 0);
|
|
|
|
g_assert_true (nice_address_set_from_string (&tmp, "127.0.0.1"));
|
|
nice_address_set_port (&tmp, nice_address_get_port (&server->addr));
|
|
g_assert_true (nice_address_get_port (&tmp) != 0);
|
|
|
|
|
|
g_assert_cmpint (5, ==, nice_socket_send (client, &tmp, 5, "hello"));
|
|
g_main_loop_run (mainloop); /* -> on_server_input_available */
|
|
g_assert_true (0 == strncmp (buf, "hello", 5));
|
|
|
|
g_assert_cmpint (5, ==, nice_socket_send (server, &tmp, 5, "uryyb"));
|
|
g_main_loop_run (mainloop); /* -> on_client_input_available */
|
|
g_assert_true (0 == strncmp (buf, "uryyb", 5));
|
|
|
|
nice_socket_free (client);
|
|
nice_socket_free (server);
|
|
nice_socket_free (passive_sock);
|
|
|
|
g_source_unref (srv_listen_source);
|
|
g_source_unref (srv_input_source);
|
|
g_source_unref (cli_input_source);
|
|
g_main_loop_unref (mainloop);
|
|
|
|
return 0;
|
|
}
|