1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2008, 2009 codethink
4 * Copyright © 2009 Red Hat, Inc
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Authors: Ryan Lortie <desrt@desrt.ca>
22 * Alexander Larsson <alexl@redhat.com>
26 #include "gsocketclient.h"
31 #include <gio/gioenumtypes.h>
32 #include <gio/gsocketaddressenumerator.h>
33 #include <gio/gsocketconnectable.h>
34 #include <gio/gsocketconnection.h>
35 #include <gio/gproxyaddressenumerator.h>
36 #include <gio/gproxyaddress.h>
37 #include <gio/gsimpleasyncresult.h>
38 #include <gio/gcancellable.h>
39 #include <gio/gioerror.h>
40 #include <gio/gsocket.h>
41 #include <gio/gnetworkaddress.h>
42 #include <gio/gnetworkservice.h>
43 #include <gio/gproxy.h>
44 #include <gio/gsocketaddress.h>
45 #include <gio/gtcpconnection.h>
46 #include <gio/gtcpwrapperconnection.h>
47 #include <gio/gtlscertificate.h>
48 #include <gio/gtlsclientconnection.h>
49 #include <gio/ginetaddress.h>
54 * SECTION:gsocketclient
55 * @short_description: Helper for connecting to a network service
57 * @see_also: #GSocketConnection, #GSocketListener
59 * #GSocketClient is a high-level utility class for connecting to a
60 * network host using a connection oriented socket type.
62 * You create a #GSocketClient object, set any options you want, and then
63 * call a sync or async connect operation, which returns a #GSocketConnection
64 * subclass on success.
66 * The type of the #GSocketConnection object returned depends on the type of
67 * the underlying socket that is in use. For instance, for a TCP/IP connection
68 * it will be a #GTcpConnection.
74 G_DEFINE_TYPE (GSocketClient, g_socket_client, G_TYPE_OBJECT);
86 PROP_TLS_VALIDATION_FLAGS
89 struct _GSocketClientPrivate
93 GSocketProtocol protocol;
94 GSocketAddress *local_address;
96 gboolean enable_proxy;
97 GHashTable *app_proxies;
99 GTlsCertificateFlags tls_validation_flags;
103 create_socket (GSocketClient *client,
104 GSocketAddress *dest_address,
107 GSocketFamily family;
110 family = client->priv->family;
111 if (family == G_SOCKET_FAMILY_INVALID &&
112 client->priv->local_address != NULL)
113 family = g_socket_address_get_family (client->priv->local_address);
114 if (family == G_SOCKET_FAMILY_INVALID)
115 family = g_socket_address_get_family (dest_address);
117 socket = g_socket_new (family,
119 client->priv->protocol,
124 if (client->priv->local_address)
126 if (!g_socket_bind (socket,
127 client->priv->local_address,
131 g_object_unref (socket);
136 if (client->priv->timeout)
137 g_socket_set_timeout (socket, client->priv->timeout);
143 can_use_proxy (GSocketClient *client)
145 GSocketClientPrivate *priv = client->priv;
147 return priv->enable_proxy
148 && priv->type == G_SOCKET_TYPE_STREAM;
152 clarify_connect_error (GError *error,
153 GSocketConnectable *connectable,
154 GSocketAddress *address)
157 char *tmp_name = NULL;
159 if (G_IS_PROXY_ADDRESS (address))
161 name = tmp_name = g_inet_address_to_string (g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (address)));
163 g_prefix_error (&error, _("Could not connect to proxy server %s: "), name);
167 if (G_IS_NETWORK_ADDRESS (connectable))
168 name = g_network_address_get_hostname (G_NETWORK_ADDRESS (connectable));
169 else if (G_IS_NETWORK_SERVICE (connectable))
170 name = g_network_service_get_domain (G_NETWORK_SERVICE (connectable));
171 else if (G_IS_INET_SOCKET_ADDRESS (connectable))
172 name = tmp_name = g_inet_address_to_string (g_inet_socket_address_get_address (G_INET_SOCKET_ADDRESS (connectable)));
177 g_prefix_error (&error, _("Could not connect to %s: "), name);
179 g_prefix_error (&error, _("Could not connect: "));
186 g_socket_client_init (GSocketClient *client)
188 client->priv = G_TYPE_INSTANCE_GET_PRIVATE (client,
189 G_TYPE_SOCKET_CLIENT,
190 GSocketClientPrivate);
191 client->priv->type = G_SOCKET_TYPE_STREAM;
192 client->priv->app_proxies = g_hash_table_new_full (g_str_hash,
199 * g_socket_client_new:
201 * Creates a new #GSocketClient with the default options.
203 * Returns: a #GSocketClient.
204 * Free the returned object with g_object_unref().
209 g_socket_client_new (void)
211 return g_object_new (G_TYPE_SOCKET_CLIENT, NULL);
215 g_socket_client_finalize (GObject *object)
217 GSocketClient *client = G_SOCKET_CLIENT (object);
219 if (client->priv->local_address)
220 g_object_unref (client->priv->local_address);
222 if (G_OBJECT_CLASS (g_socket_client_parent_class)->finalize)
223 (*G_OBJECT_CLASS (g_socket_client_parent_class)->finalize) (object);
225 g_hash_table_unref (client->priv->app_proxies);
229 g_socket_client_get_property (GObject *object,
234 GSocketClient *client = G_SOCKET_CLIENT (object);
239 g_value_set_enum (value, client->priv->family);
243 g_value_set_enum (value, client->priv->type);
247 g_value_set_enum (value, client->priv->protocol);
250 case PROP_LOCAL_ADDRESS:
251 g_value_set_object (value, client->priv->local_address);
255 g_value_set_uint (value, client->priv->timeout);
258 case PROP_ENABLE_PROXY:
259 g_value_set_boolean (value, client->priv->enable_proxy);
263 g_value_set_boolean (value, g_socket_client_get_tls (client));
266 case PROP_TLS_VALIDATION_FLAGS:
267 g_value_set_flags (value, g_socket_client_get_tls_validation_flags (client));
271 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
276 g_socket_client_set_property (GObject *object,
281 GSocketClient *client = G_SOCKET_CLIENT (object);
286 g_socket_client_set_family (client, g_value_get_enum (value));
290 g_socket_client_set_socket_type (client, g_value_get_enum (value));
294 g_socket_client_set_protocol (client, g_value_get_enum (value));
297 case PROP_LOCAL_ADDRESS:
298 g_socket_client_set_local_address (client, g_value_get_object (value));
302 g_socket_client_set_timeout (client, g_value_get_uint (value));
305 case PROP_ENABLE_PROXY:
306 g_socket_client_set_enable_proxy (client, g_value_get_boolean (value));
310 g_socket_client_set_tls (client, g_value_get_boolean (value));
313 case PROP_TLS_VALIDATION_FLAGS:
314 g_socket_client_set_tls_validation_flags (client, g_value_get_flags (value));
318 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
323 * g_socket_client_get_family:
324 * @client: a #GSocketClient.
326 * Gets the socket family of the socket client.
328 * See g_socket_client_set_family() for details.
330 * Returns: a #GSocketFamily
335 g_socket_client_get_family (GSocketClient *client)
337 return client->priv->family;
341 * g_socket_client_set_family:
342 * @client: a #GSocketClient.
343 * @family: a #GSocketFamily
345 * Sets the socket family of the socket client.
346 * If this is set to something other than %G_SOCKET_FAMILY_INVALID
347 * then the sockets created by this object will be of the specified
350 * This might be useful for instance if you want to force the local
351 * connection to be an ipv4 socket, even though the address might
352 * be an ipv6 mapped to ipv4 address.
357 g_socket_client_set_family (GSocketClient *client,
358 GSocketFamily family)
360 if (client->priv->family == family)
363 client->priv->family = family;
364 g_object_notify (G_OBJECT (client), "family");
368 * g_socket_client_get_socket_type:
369 * @client: a #GSocketClient.
371 * Gets the socket type of the socket client.
373 * See g_socket_client_set_socket_type() for details.
375 * Returns: a #GSocketFamily
380 g_socket_client_get_socket_type (GSocketClient *client)
382 return client->priv->type;
386 * g_socket_client_set_socket_type:
387 * @client: a #GSocketClient.
388 * @type: a #GSocketType
390 * Sets the socket type of the socket client.
391 * The sockets created by this object will be of the specified
394 * It doesn't make sense to specify a type of %G_SOCKET_TYPE_DATAGRAM,
395 * as GSocketClient is used for connection oriented services.
400 g_socket_client_set_socket_type (GSocketClient *client,
403 if (client->priv->type == type)
406 client->priv->type = type;
407 g_object_notify (G_OBJECT (client), "type");
411 * g_socket_client_get_protocol:
412 * @client: a #GSocketClient
414 * Gets the protocol name type of the socket client.
416 * See g_socket_client_set_protocol() for details.
418 * Returns: a #GSocketProtocol
423 g_socket_client_get_protocol (GSocketClient *client)
425 return client->priv->protocol;
429 * g_socket_client_set_protocol:
430 * @client: a #GSocketClient.
431 * @protocol: a #GSocketProtocol
433 * Sets the protocol of the socket client.
434 * The sockets created by this object will use of the specified
437 * If @protocol is %0 that means to use the default
438 * protocol for the socket family and type.
443 g_socket_client_set_protocol (GSocketClient *client,
444 GSocketProtocol protocol)
446 if (client->priv->protocol == protocol)
449 client->priv->protocol = protocol;
450 g_object_notify (G_OBJECT (client), "protocol");
454 * g_socket_client_get_local_address:
455 * @client: a #GSocketClient.
457 * Gets the local address of the socket client.
459 * See g_socket_client_set_local_address() for details.
461 * Returns: (transfer none): a #GSocketAddress or %NULL. Do not free.
466 g_socket_client_get_local_address (GSocketClient *client)
468 return client->priv->local_address;
472 * g_socket_client_set_local_address:
473 * @client: a #GSocketClient.
474 * @address: a #GSocketAddress, or %NULL
476 * Sets the local address of the socket client.
477 * The sockets created by this object will bound to the
478 * specified address (if not %NULL) before connecting.
480 * This is useful if you want to ensure that the local
481 * side of the connection is on a specific port, or on
482 * a specific interface.
487 g_socket_client_set_local_address (GSocketClient *client,
488 GSocketAddress *address)
491 g_object_ref (address);
493 if (client->priv->local_address)
495 g_object_unref (client->priv->local_address);
497 client->priv->local_address = address;
498 g_object_notify (G_OBJECT (client), "local-address");
502 * g_socket_client_get_timeout:
503 * @client: a #GSocketClient
505 * Gets the I/O timeout time for sockets created by @client.
507 * See g_socket_client_set_timeout() for details.
509 * Returns: the timeout in seconds
514 g_socket_client_get_timeout (GSocketClient *client)
516 return client->priv->timeout;
521 * g_socket_client_set_timeout:
522 * @client: a #GSocketClient.
523 * @timeout: the timeout
525 * Sets the I/O timeout for sockets created by @client. @timeout is a
526 * time in seconds, or 0 for no timeout (the default).
528 * The timeout value affects the initial connection attempt as well,
529 * so setting this may cause calls to g_socket_client_connect(), etc,
530 * to fail with %G_IO_ERROR_TIMED_OUT.
535 g_socket_client_set_timeout (GSocketClient *client,
538 if (client->priv->timeout == timeout)
541 client->priv->timeout = timeout;
542 g_object_notify (G_OBJECT (client), "timeout");
546 * g_socket_client_get_enable_proxy:
547 * @client: a #GSocketClient.
549 * Gets the proxy enable state; see g_socket_client_set_enable_proxy()
551 * Returns: whether proxying is enabled
556 g_socket_client_get_enable_proxy (GSocketClient *client)
558 return client->priv->enable_proxy;
562 * g_socket_client_set_enable_proxy:
563 * @client: a #GSocketClient.
564 * @enable: whether to enable proxies
566 * Sets whether or not @client attempts to make connections via a
567 * proxy server. When enabled (the default), #GSocketClient will use a
568 * #GProxyResolver to determine if a proxy protocol such as SOCKS is
569 * needed, and automatically do the necessary proxy negotiation.
574 g_socket_client_set_enable_proxy (GSocketClient *client,
578 if (client->priv->enable_proxy == enable)
581 client->priv->enable_proxy = enable;
582 g_object_notify (G_OBJECT (client), "enable-proxy");
586 * g_socket_client_get_tls:
587 * @client: a #GSocketClient.
589 * Gets whether @client creates TLS connections. See
590 * g_socket_client_set_tls() for details.
592 * Returns: whether @client uses TLS
597 g_socket_client_get_tls (GSocketClient *client)
599 return client->priv->tls;
603 * g_socket_client_set_tls:
604 * @client: a #GSocketClient.
605 * @tls: whether to use TLS
607 * Sets whether @client creates TLS (aka SSL) connections. If @tls is
608 * %TRUE, @client will wrap its connections in a #GTlsClientConnection
609 * and perform a TLS handshake when connecting.
611 * Note that since #GSocketClient must return a #GSocketConnection,
612 * but #GTlsClientConnection is not a #GSocketConnection, this
613 * actually wraps the resulting #GTlsClientConnection in a
614 * #GTcpWrapperConnection when returning it. You can use
615 * g_tcp_wrapper_connection_get_base_io_stream() on the return value
616 * to extract the #GTlsClientConnection.
621 g_socket_client_set_tls (GSocketClient *client,
625 if (tls == client->priv->tls)
628 client->priv->tls = tls;
629 g_object_notify (G_OBJECT (client), "tls");
633 * g_socket_client_get_tls_validation_flags:
634 * @client: a #GSocketClient.
636 * Gets the TLS validation flags used creating TLS connections via
639 * Returns: the TLS validation flags
644 g_socket_client_get_tls_validation_flags (GSocketClient *client)
646 return client->priv->tls_validation_flags;
650 * g_socket_client_set_tls_validation_flags:
651 * @client: a #GSocketClient.
652 * @flags: the validation flags
654 * Sets the TLS validation flags used when creating TLS connections
655 * via @client. The default value is %G_TLS_CERTIFICATE_VALIDATE_ALL.
660 g_socket_client_set_tls_validation_flags (GSocketClient *client,
661 GTlsCertificateFlags flags)
663 if (client->priv->tls_validation_flags != flags)
665 client->priv->tls_validation_flags = flags;
666 g_object_notify (G_OBJECT (client), "tls-validation-flags");
671 g_socket_client_class_init (GSocketClientClass *class)
673 GObjectClass *gobject_class = G_OBJECT_CLASS (class);
675 g_type_class_add_private (class, sizeof (GSocketClientPrivate));
677 gobject_class->finalize = g_socket_client_finalize;
678 gobject_class->set_property = g_socket_client_set_property;
679 gobject_class->get_property = g_socket_client_get_property;
681 g_object_class_install_property (gobject_class, PROP_FAMILY,
682 g_param_spec_enum ("family",
684 P_("The sockets address family to use for socket construction"),
685 G_TYPE_SOCKET_FAMILY,
686 G_SOCKET_FAMILY_INVALID,
689 G_PARAM_STATIC_STRINGS));
691 g_object_class_install_property (gobject_class, PROP_TYPE,
692 g_param_spec_enum ("type",
694 P_("The sockets type to use for socket construction"),
696 G_SOCKET_TYPE_STREAM,
699 G_PARAM_STATIC_STRINGS));
701 g_object_class_install_property (gobject_class, PROP_PROTOCOL,
702 g_param_spec_enum ("protocol",
703 P_("Socket protocol"),
704 P_("The protocol to use for socket construction, or 0 for default"),
705 G_TYPE_SOCKET_PROTOCOL,
706 G_SOCKET_PROTOCOL_DEFAULT,
709 G_PARAM_STATIC_STRINGS));
711 g_object_class_install_property (gobject_class, PROP_LOCAL_ADDRESS,
712 g_param_spec_object ("local-address",
714 P_("The local address constructed sockets will be bound to"),
715 G_TYPE_SOCKET_ADDRESS,
718 G_PARAM_STATIC_STRINGS));
720 g_object_class_install_property (gobject_class, PROP_TIMEOUT,
721 g_param_spec_uint ("timeout",
722 P_("Socket timeout"),
723 P_("The I/O timeout for sockets, or 0 for none"),
727 G_PARAM_STATIC_STRINGS));
729 g_object_class_install_property (gobject_class, PROP_ENABLE_PROXY,
730 g_param_spec_boolean ("enable-proxy",
732 P_("Enable proxy support"),
736 G_PARAM_STATIC_STRINGS));
738 g_object_class_install_property (gobject_class, PROP_TLS,
739 g_param_spec_boolean ("tls",
741 P_("Whether to create TLS connections"),
745 G_PARAM_STATIC_STRINGS));
746 g_object_class_install_property (gobject_class, PROP_TLS_VALIDATION_FLAGS,
747 g_param_spec_flags ("tls-validation-flags",
748 P_("TLS validation flags"),
749 P_("TLS validation flags to use"),
750 G_TYPE_TLS_CERTIFICATE_FLAGS,
751 G_TLS_CERTIFICATE_VALIDATE_ALL,
754 G_PARAM_STATIC_STRINGS));
758 * g_socket_client_connect:
759 * @client: a #GSocketClient.
760 * @connectable: a #GSocketConnectable specifying the remote address.
761 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
762 * @error: #GError for error reporting, or %NULL to ignore.
764 * Tries to resolve the @connectable and make a network connection to it.
766 * Upon a successful connection, a new #GSocketConnection is constructed
767 * and returned. The caller owns this new object and must drop their
768 * reference to it when finished with it.
770 * The type of the #GSocketConnection object returned depends on the type of
771 * the underlying socket that is used. For instance, for a TCP/IP connection
772 * it will be a #GTcpConnection.
774 * The socket created will be the same family as the address that the
775 * @connectable resolves to, unless family is set with g_socket_client_set_family()
776 * or indirectly via g_socket_client_set_local_address(). The socket type
777 * defaults to %G_SOCKET_TYPE_STREAM but can be set with
778 * g_socket_client_set_socket_type().
780 * If a local address is specified with g_socket_client_set_local_address() the
781 * socket will be bound to this address before connecting.
783 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
788 g_socket_client_connect (GSocketClient *client,
789 GSocketConnectable *connectable,
790 GCancellable *cancellable,
793 GIOStream *connection = NULL;
794 GSocketAddressEnumerator *enumerator = NULL;
795 GError *last_error, *tmp_error;
799 if (can_use_proxy (client))
800 enumerator = g_socket_connectable_proxy_enumerate (connectable);
802 enumerator = g_socket_connectable_enumerate (connectable);
804 while (connection == NULL)
806 GSocketAddress *address = NULL;
809 if (g_cancellable_is_cancelled (cancellable))
811 g_clear_error (error);
812 g_cancellable_set_error_if_cancelled (cancellable, error);
817 address = g_socket_address_enumerator_next (enumerator, cancellable,
824 g_clear_error (&last_error);
825 g_propagate_error (error, tmp_error);
829 g_propagate_error (error, last_error);
832 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
833 _("Unknown error on connect"));
837 /* clear error from previous attempt */
838 g_clear_error (&last_error);
840 socket = create_socket (client, address, &last_error);
843 g_object_unref (address);
847 if (g_socket_connect (socket, address, cancellable, &last_error))
848 connection = (GIOStream *)g_socket_connection_factory_create_connection (socket);
850 clarify_connect_error (last_error, connectable, address);
853 G_IS_PROXY_ADDRESS (address) &&
854 client->priv->enable_proxy)
856 GProxyAddress *proxy_addr = G_PROXY_ADDRESS (address);
857 const gchar *protocol;
860 protocol = g_proxy_address_get_protocol (proxy_addr);
861 proxy = g_proxy_get_default_for_protocol (protocol);
863 /* The connection should not be anything else then TCP Connection,
864 * but let's put a safety guard in case
866 if (!G_IS_TCP_CONNECTION (connection))
868 g_critical ("Trying to proxy over non-TCP connection, this is "
869 "most likely a bug in GLib IO library.");
871 g_set_error_literal (&last_error,
872 G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
873 _("Trying to proxy over non-TCP connection is not supported."));
875 g_object_unref (connection);
880 GIOStream *proxy_connection;
882 proxy_connection = g_proxy_connect (proxy,
887 g_object_unref (connection);
888 connection = proxy_connection;
889 g_object_unref (proxy);
891 else if (!g_hash_table_lookup_extended (client->priv->app_proxies,
892 protocol, NULL, NULL))
894 g_set_error (&last_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
895 _("Proxy protocol '%s' is not supported."),
897 g_object_unref (connection);
902 if (connection && client->priv->tls)
906 tlsconn = g_tls_client_connection_new (connection, connectable, &last_error);
907 g_object_unref (connection);
908 connection = tlsconn;
912 g_tls_client_connection_set_validation_flags (G_TLS_CLIENT_CONNECTION (tlsconn),
913 client->priv->tls_validation_flags);
914 if (!g_tls_connection_handshake (G_TLS_CONNECTION (tlsconn),
915 cancellable, &last_error))
917 g_object_unref (tlsconn);
923 if (connection && !G_IS_SOCKET_CONNECTION (connection))
925 GSocketConnection *wrapper_connection;
927 wrapper_connection = g_tcp_wrapper_connection_new (connection, socket);
928 g_object_unref (connection);
929 connection = (GIOStream *)wrapper_connection;
932 g_object_unref (socket);
933 g_object_unref (address);
935 g_object_unref (enumerator);
937 return G_SOCKET_CONNECTION (connection);
941 * g_socket_client_connect_to_host:
942 * @client: a #GSocketClient
943 * @host_and_port: the name and optionally port of the host to connect to
944 * @default_port: the default port to connect to
945 * @cancellable: (allow-none): a #GCancellable, or %NULL
946 * @error: a pointer to a #GError, or %NULL
948 * This is a helper function for g_socket_client_connect().
950 * Attempts to create a TCP connection to the named host.
952 * @host_and_port may be in any of a number of recognized formats; an IPv6
953 * address, an IPv4 address, or a domain name (in which case a DNS
954 * lookup is performed). Quoting with [] is supported for all address
955 * types. A port override may be specified in the usual way with a
956 * colon. Ports may be given as decimal numbers or symbolic names (in
957 * which case an /etc/services lookup is performed).
959 * If no port override is given in @host_and_port then @default_port will be
960 * used as the port number to connect to.
962 * In general, @host_and_port is expected to be provided by the user (allowing
963 * them to give the hostname, and a port override if necessary) and
964 * @default_port is expected to be provided by the application.
966 * In the case that an IP address is given, a single connection
967 * attempt is made. In the case that a name is given, multiple
968 * connection attempts may be made, in turn and according to the
969 * number of address records in DNS, until a connection succeeds.
971 * Upon a successful connection, a new #GSocketConnection is constructed
972 * and returned. The caller owns this new object and must drop their
973 * reference to it when finished with it.
975 * In the event of any failure (DNS error, service not found, no hosts
976 * connectable) %NULL is returned and @error (if non-%NULL) is set
979 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
984 g_socket_client_connect_to_host (GSocketClient *client,
985 const gchar *host_and_port,
986 guint16 default_port,
987 GCancellable *cancellable,
990 GSocketConnectable *connectable;
991 GSocketConnection *connection;
993 connectable = g_network_address_parse (host_and_port, default_port, error);
994 if (connectable == NULL)
997 connection = g_socket_client_connect (client, connectable,
999 g_object_unref (connectable);
1005 * g_socket_client_connect_to_service:
1006 * @client: a #GSocketConnection
1007 * @domain: a domain name
1008 * @service: the name of the service to connect to
1009 * @cancellable: (allow-none): a #GCancellable, or %NULL
1010 * @error: a pointer to a #GError, or %NULL
1011 * @returns: (transfer full): a #GSocketConnection if successful, or %NULL on error
1013 * Attempts to create a TCP connection to a service.
1015 * This call looks up the SRV record for @service at @domain for the
1016 * "tcp" protocol. It then attempts to connect, in turn, to each of
1017 * the hosts providing the service until either a connection succeeds
1018 * or there are no hosts remaining.
1020 * Upon a successful connection, a new #GSocketConnection is constructed
1021 * and returned. The caller owns this new object and must drop their
1022 * reference to it when finished with it.
1024 * In the event of any failure (DNS error, service not found, no hosts
1025 * connectable) %NULL is returned and @error (if non-%NULL) is set
1029 g_socket_client_connect_to_service (GSocketClient *client,
1030 const gchar *domain,
1031 const gchar *service,
1032 GCancellable *cancellable,
1035 GSocketConnectable *connectable;
1036 GSocketConnection *connection;
1038 connectable = g_network_service_new (service, "tcp", domain);
1039 connection = g_socket_client_connect (client, connectable,
1040 cancellable, error);
1041 g_object_unref (connectable);
1047 * g_socket_client_connect_to_uri:
1048 * @client: a #GSocketClient
1049 * @uri: A network URI
1050 * @default_port: the default port to connect to
1051 * @cancellable: (allow-none): a #GCancellable, or %NULL
1052 * @error: a pointer to a #GError, or %NULL
1054 * This is a helper function for g_socket_client_connect().
1056 * Attempts to create a TCP connection with a network URI.
1058 * @uri may be any valid URI containing an "authority" (hostname/port)
1059 * component. If a port is not specified in the URI, @default_port
1060 * will be used. TLS will be negotiated if #GSocketClient:tls is %TRUE.
1061 * (#GSocketClient does not know to automatically assume TLS for
1062 * certain URI schemes.)
1064 * Using this rather than g_socket_client_connect() or
1065 * g_socket_client_connect_to_host() allows #GSocketClient to
1066 * determine when to use application-specific proxy protocols.
1068 * Upon a successful connection, a new #GSocketConnection is constructed
1069 * and returned. The caller owns this new object and must drop their
1070 * reference to it when finished with it.
1072 * In the event of any failure (DNS error, service not found, no hosts
1073 * connectable) %NULL is returned and @error (if non-%NULL) is set
1076 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
1081 g_socket_client_connect_to_uri (GSocketClient *client,
1083 guint16 default_port,
1084 GCancellable *cancellable,
1087 GSocketConnectable *connectable;
1088 GSocketConnection *connection;
1090 connectable = g_network_address_parse_uri (uri, default_port, error);
1091 if (connectable == NULL)
1094 connection = g_socket_client_connect (client, connectable,
1095 cancellable, error);
1096 g_object_unref (connectable);
1103 GSimpleAsyncResult *result;
1104 GCancellable *cancellable;
1105 GSocketClient *client;
1107 GSocketConnectable *connectable;
1108 GSocketAddressEnumerator *enumerator;
1109 GProxyAddress *proxy_addr;
1110 GSocketAddress *current_addr;
1111 GSocket *current_socket;
1112 GIOStream *connection;
1115 } GSocketClientAsyncConnectData;
1118 g_socket_client_async_connect_complete (GSocketClientAsyncConnectData *data)
1120 if (data->last_error)
1122 g_simple_async_result_take_error (data->result, data->last_error);
1126 g_assert (data->connection);
1128 if (!G_IS_SOCKET_CONNECTION (data->connection))
1130 GSocketConnection *wrapper_connection;
1132 wrapper_connection = g_tcp_wrapper_connection_new (data->connection,
1133 data->current_socket);
1134 g_object_unref (data->connection);
1135 data->connection = (GIOStream *)wrapper_connection;
1138 g_simple_async_result_set_op_res_gpointer (data->result,
1143 g_simple_async_result_complete (data->result);
1144 g_object_unref (data->result);
1145 g_object_unref (data->connectable);
1146 g_object_unref (data->enumerator);
1147 if (data->cancellable)
1148 g_object_unref (data->cancellable);
1149 if (data->current_addr)
1150 g_object_unref (data->current_addr);
1151 if (data->current_socket)
1152 g_object_unref (data->current_socket);
1153 if (data->proxy_addr)
1154 g_object_unref (data->proxy_addr);
1155 g_slice_free (GSocketClientAsyncConnectData, data);
1160 g_socket_client_enumerator_callback (GObject *object,
1161 GAsyncResult *result,
1162 gpointer user_data);
1165 set_last_error (GSocketClientAsyncConnectData *data,
1168 g_clear_error (&data->last_error);
1169 data->last_error = error;
1173 enumerator_next_async (GSocketClientAsyncConnectData *data)
1175 g_socket_address_enumerator_next_async (data->enumerator,
1177 g_socket_client_enumerator_callback,
1182 g_socket_client_tls_handshake_callback (GObject *object,
1183 GAsyncResult *result,
1186 GSocketClientAsyncConnectData *data = user_data;
1188 if (g_tls_connection_handshake_finish (G_TLS_CONNECTION (object),
1192 g_object_unref (data->connection);
1193 data->connection = G_IO_STREAM (object);
1195 g_socket_client_async_connect_complete (data);
1199 g_object_unref (object);
1200 g_object_unref (data->current_socket);
1201 data->current_socket = NULL;
1202 g_object_unref (data->connection);
1203 data->connection = NULL;
1205 enumerator_next_async (data);
1210 g_socket_client_tls_handshake (GSocketClientAsyncConnectData *data)
1214 if (!data->client->priv->tls)
1216 g_socket_client_async_connect_complete (data);
1220 tlsconn = g_tls_client_connection_new (data->connection,
1225 g_tls_client_connection_set_validation_flags (G_TLS_CLIENT_CONNECTION (tlsconn),
1226 data->client->priv->tls_validation_flags);
1227 g_tls_connection_handshake_async (G_TLS_CONNECTION (tlsconn),
1230 g_socket_client_tls_handshake_callback,
1235 g_object_unref (data->current_socket);
1236 data->current_socket = NULL;
1237 g_object_unref (data->connection);
1238 data->connection = NULL;
1240 enumerator_next_async (data);
1245 g_socket_client_proxy_connect_callback (GObject *object,
1246 GAsyncResult *result,
1249 GSocketClientAsyncConnectData *data = user_data;
1251 g_object_unref (data->connection);
1252 data->connection = g_proxy_connect_finish (G_PROXY (object),
1255 if (!data->connection)
1257 g_object_unref (data->current_socket);
1258 data->current_socket = NULL;
1260 enumerator_next_async (data);
1264 g_socket_client_tls_handshake (data);
1268 g_socket_client_proxy_connect (GSocketClientAsyncConnectData *data)
1271 const gchar *protocol;
1273 if (!data->proxy_addr)
1275 g_socket_client_tls_handshake (data);
1279 protocol = g_proxy_address_get_protocol (data->proxy_addr);
1280 proxy = g_proxy_get_default_for_protocol (protocol);
1282 /* The connection should not be anything else then TCP Connection,
1283 * but let's put a safety guard in case
1285 if (!G_IS_TCP_CONNECTION (data->connection))
1287 g_critical ("Trying to proxy over non-TCP connection, this is "
1288 "most likely a bug in GLib IO library.");
1290 g_set_error_literal (&data->last_error,
1291 G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
1292 _("Trying to proxy over non-TCP connection is not supported."));
1294 g_object_unref (data->connection);
1295 data->connection = NULL;
1296 g_object_unref (data->current_socket);
1297 data->current_socket = NULL;
1299 enumerator_next_async (data);
1303 g_proxy_connect_async (proxy,
1307 g_socket_client_proxy_connect_callback,
1309 g_object_unref (proxy);
1311 else if (!g_hash_table_lookup_extended (data->client->priv->app_proxies,
1312 protocol, NULL, NULL))
1314 g_clear_error (&data->last_error);
1316 g_set_error (&data->last_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
1317 _("Proxy protocol '%s' is not supported."),
1320 g_object_unref (data->current_socket);
1321 data->current_socket = NULL;
1322 g_object_unref (data->connection);
1323 data->connection = NULL;
1324 g_object_unref (data->current_socket);
1325 data->current_socket = NULL;
1327 enumerator_next_async (data);
1332 g_socket_client_socket_connected (GSocketClientAsyncConnectData *data)
1334 g_socket_set_blocking (data->current_socket, TRUE);
1336 data->connection = (GIOStream *)
1337 g_socket_connection_factory_create_connection (data->current_socket);
1339 g_socket_client_proxy_connect (data);
1343 g_socket_client_socket_callback (GSocket *socket,
1344 GIOCondition condition,
1345 GSocketClientAsyncConnectData *data)
1347 GError *error = NULL;
1349 if (g_cancellable_is_cancelled (data->cancellable))
1351 /* Cancelled, return done with last error being cancelled */
1352 g_clear_error (&data->last_error);
1353 g_clear_object (&data->current_socket);
1354 g_clear_object (&data->current_addr);
1355 g_cancellable_set_error_if_cancelled (data->cancellable,
1358 g_socket_client_async_connect_complete (data);
1363 /* socket is ready for writing means connect done, did it succeed? */
1364 if (!g_socket_check_connect_result (data->current_socket, &error))
1366 clarify_connect_error (error, data->connectable,
1367 data->current_addr);
1369 set_last_error (data, error);
1370 g_clear_object (&data->current_socket);
1371 g_clear_object (&data->current_addr);
1374 enumerator_next_async (data);
1380 g_socket_client_socket_connected (data);
1385 g_socket_client_enumerator_callback (GObject *object,
1386 GAsyncResult *result,
1389 GSocketClientAsyncConnectData *data = user_data;
1390 GSocketAddress *address = NULL;
1392 GError *tmp_error = NULL;
1394 if (g_cancellable_is_cancelled (data->cancellable))
1396 g_clear_error (&data->last_error);
1397 g_cancellable_set_error_if_cancelled (data->cancellable, &data->last_error);
1398 g_socket_client_async_connect_complete (data);
1402 address = g_socket_address_enumerator_next_finish (data->enumerator,
1403 result, &tmp_error);
1405 if (address == NULL)
1408 set_last_error (data, tmp_error);
1409 else if (data->last_error == NULL)
1410 g_set_error_literal (&data->last_error, G_IO_ERROR, G_IO_ERROR_FAILED,
1411 _("Unknown error on connect"));
1413 g_socket_client_async_connect_complete (data);
1417 if (G_IS_PROXY_ADDRESS (address) &&
1418 data->client->priv->enable_proxy)
1419 data->proxy_addr = g_object_ref (G_PROXY_ADDRESS (address));
1421 g_clear_error (&data->last_error);
1423 socket = create_socket (data->client, address, &data->last_error);
1426 g_socket_set_blocking (socket, FALSE);
1427 if (g_socket_connect (socket, address, data->cancellable, &tmp_error))
1429 data->current_socket = socket;
1430 g_socket_client_socket_connected (data);
1432 g_object_unref (address);
1435 else if (g_error_matches (tmp_error, G_IO_ERROR, G_IO_ERROR_PENDING))
1439 data->current_socket = socket;
1440 data->current_addr = address;
1441 g_error_free (tmp_error);
1443 source = g_socket_create_source (socket, G_IO_OUT,
1445 g_source_set_callback (source,
1446 (GSourceFunc) g_socket_client_socket_callback,
1448 g_source_attach (source, g_main_context_get_thread_default ());
1449 g_source_unref (source);
1454 clarify_connect_error (tmp_error, data->connectable, address);
1455 data->last_error = tmp_error;
1456 g_object_unref (socket);
1460 g_object_unref (address);
1461 enumerator_next_async (data);
1465 * g_socket_client_connect_async:
1466 * @client: a #GSocketClient
1467 * @connectable: a #GSocketConnectable specifying the remote address.
1468 * @cancellable: (allow-none): a #GCancellable, or %NULL
1469 * @callback: (scope async): a #GAsyncReadyCallback
1470 * @user_data: (closure): user data for the callback
1472 * This is the asynchronous version of g_socket_client_connect().
1474 * When the operation is finished @callback will be
1475 * called. You can then call g_socket_client_connect_finish() to get
1476 * the result of the operation.
1481 g_socket_client_connect_async (GSocketClient *client,
1482 GSocketConnectable *connectable,
1483 GCancellable *cancellable,
1484 GAsyncReadyCallback callback,
1487 GSocketClientAsyncConnectData *data;
1489 g_return_if_fail (G_IS_SOCKET_CLIENT (client));
1491 data = g_slice_new0 (GSocketClientAsyncConnectData);
1493 data->result = g_simple_async_result_new (G_OBJECT (client),
1494 callback, user_data,
1495 g_socket_client_connect_async);
1496 data->client = client;
1498 data->cancellable = g_object_ref (cancellable);
1500 data->cancellable = NULL;
1501 data->last_error = NULL;
1502 data->connectable = g_object_ref (connectable);
1504 if (can_use_proxy (client))
1505 data->enumerator = g_socket_connectable_proxy_enumerate (connectable);
1507 data->enumerator = g_socket_connectable_enumerate (connectable);
1509 enumerator_next_async (data);
1513 * g_socket_client_connect_to_host_async:
1514 * @client: a #GSocketClient
1515 * @host_and_port: the name and optionally the port of the host to connect to
1516 * @default_port: the default port to connect to
1517 * @cancellable: (allow-none): a #GCancellable, or %NULL
1518 * @callback: (scope async): a #GAsyncReadyCallback
1519 * @user_data: (closure): user data for the callback
1521 * This is the asynchronous version of g_socket_client_connect_to_host().
1523 * When the operation is finished @callback will be
1524 * called. You can then call g_socket_client_connect_to_host_finish() to get
1525 * the result of the operation.
1530 g_socket_client_connect_to_host_async (GSocketClient *client,
1531 const gchar *host_and_port,
1532 guint16 default_port,
1533 GCancellable *cancellable,
1534 GAsyncReadyCallback callback,
1537 GSocketConnectable *connectable;
1541 connectable = g_network_address_parse (host_and_port, default_port,
1543 if (connectable == NULL)
1545 g_simple_async_report_take_gerror_in_idle (G_OBJECT (client),
1546 callback, user_data, error);
1550 g_socket_client_connect_async (client,
1551 connectable, cancellable,
1552 callback, user_data);
1553 g_object_unref (connectable);
1558 * g_socket_client_connect_to_service_async:
1559 * @client: a #GSocketClient
1560 * @domain: a domain name
1561 * @service: the name of the service to connect to
1562 * @cancellable: (allow-none): a #GCancellable, or %NULL
1563 * @callback: (scope async): a #GAsyncReadyCallback
1564 * @user_data: (closure): user data for the callback
1566 * This is the asynchronous version of
1567 * g_socket_client_connect_to_service().
1572 g_socket_client_connect_to_service_async (GSocketClient *client,
1573 const gchar *domain,
1574 const gchar *service,
1575 GCancellable *cancellable,
1576 GAsyncReadyCallback callback,
1579 GSocketConnectable *connectable;
1581 connectable = g_network_service_new (service, "tcp", domain);
1582 g_socket_client_connect_async (client,
1583 connectable, cancellable,
1584 callback, user_data);
1585 g_object_unref (connectable);
1589 * g_socket_client_connect_to_uri_async:
1590 * @client: a #GSocketClient
1591 * @uri: a network uri
1592 * @default_port: the default port to connect to
1593 * @cancellable: (allow-none): a #GCancellable, or %NULL
1594 * @callback: (scope async): a #GAsyncReadyCallback
1595 * @user_data: (closure): user data for the callback
1597 * This is the asynchronous version of g_socket_client_connect_to_uri().
1599 * When the operation is finished @callback will be
1600 * called. You can then call g_socket_client_connect_to_uri_finish() to get
1601 * the result of the operation.
1606 g_socket_client_connect_to_uri_async (GSocketClient *client,
1608 guint16 default_port,
1609 GCancellable *cancellable,
1610 GAsyncReadyCallback callback,
1613 GSocketConnectable *connectable;
1617 connectable = g_network_address_parse_uri (uri, default_port, &error);
1618 if (connectable == NULL)
1620 g_simple_async_report_take_gerror_in_idle (G_OBJECT (client),
1621 callback, user_data, error);
1625 g_socket_client_connect_async (client,
1626 connectable, cancellable,
1627 callback, user_data);
1628 g_object_unref (connectable);
1634 * g_socket_client_connect_finish:
1635 * @client: a #GSocketClient.
1636 * @result: a #GAsyncResult.
1637 * @error: a #GError location to store the error occurring, or %NULL to
1640 * Finishes an async connect operation. See g_socket_client_connect_async()
1642 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
1647 g_socket_client_connect_finish (GSocketClient *client,
1648 GAsyncResult *result,
1651 GSimpleAsyncResult *simple = G_SIMPLE_ASYNC_RESULT (result);
1653 if (g_simple_async_result_propagate_error (simple, error))
1656 return g_object_ref (g_simple_async_result_get_op_res_gpointer (simple));
1660 * g_socket_client_connect_to_host_finish:
1661 * @client: a #GSocketClient.
1662 * @result: a #GAsyncResult.
1663 * @error: a #GError location to store the error occurring, or %NULL to
1666 * Finishes an async connect operation. See g_socket_client_connect_to_host_async()
1668 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
1673 g_socket_client_connect_to_host_finish (GSocketClient *client,
1674 GAsyncResult *result,
1677 return g_socket_client_connect_finish (client, result, error);
1681 * g_socket_client_connect_to_service_finish:
1682 * @client: a #GSocketClient.
1683 * @result: a #GAsyncResult.
1684 * @error: a #GError location to store the error occurring, or %NULL to
1687 * Finishes an async connect operation. See g_socket_client_connect_to_service_async()
1689 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
1694 g_socket_client_connect_to_service_finish (GSocketClient *client,
1695 GAsyncResult *result,
1698 return g_socket_client_connect_finish (client, result, error);
1702 * g_socket_client_connect_to_uri_finish:
1703 * @client: a #GSocketClient.
1704 * @result: a #GAsyncResult.
1705 * @error: a #GError location to store the error occurring, or %NULL to
1708 * Finishes an async connect operation. See g_socket_client_connect_to_uri_async()
1710 * Returns: (transfer full): a #GSocketConnection on success, %NULL on error.
1715 g_socket_client_connect_to_uri_finish (GSocketClient *client,
1716 GAsyncResult *result,
1719 return g_socket_client_connect_finish (client, result, error);
1723 * g_socket_client_add_application_proxy:
1724 * @client: a #GSocketClient
1725 * @protocol: The proxy protocol
1727 * Enable proxy protocols to be handled by the application. When the
1728 * indicated proxy protocol is returned by the #GProxyResolver,
1729 * #GSocketClient will consider this protocol as supported but will
1730 * not try to find a #GProxy instance to handle handshaking. The
1731 * application must check for this case by calling
1732 * g_socket_connection_get_remote_address() on the returned
1733 * #GSocketConnection, and seeing if it's a #GProxyAddress of the
1734 * appropriate type, to determine whether or not it needs to handle
1735 * the proxy handshaking itself.
1737 * This should be used for proxy protocols that are dialects of
1738 * another protocol such as HTTP proxy. It also allows cohabitation of
1739 * proxy protocols that are reused between protocols. A good example
1740 * is HTTP. It can be used to proxy HTTP, FTP and Gopher and can also
1741 * be use as generic socket proxy through the HTTP CONNECT method.
1744 g_socket_client_add_application_proxy (GSocketClient *client,
1745 const gchar *protocol)
1747 g_hash_table_insert (client->priv->app_proxies, g_strdup (protocol), NULL);