X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fginetaddress.c;h=9ff0c441761592a543808ca466dd0f605831dd00;hb=d9ad40b4eaf1a9197ab363de4346a8d84f45f5c1;hp=592f76cbcf00f6aeef03be1daf8de4788d79b9db;hpb=d80e12104f139def9bea28a510bf1d7c103e20f9;p=platform%2Fupstream%2Fglib.git diff --git a/gio/ginetaddress.c b/gio/ginetaddress.c index 592f76c..9ff0c44 100644 --- a/gio/ginetaddress.c +++ b/gio/ginetaddress.c @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Authors: Christian Kellner * Samuel Cormier-Iijima @@ -33,11 +31,19 @@ #include "glibintl.h" #include "gnetworkingprivate.h" -#include "gioalias.h" +struct _GInetAddressPrivate +{ + GSocketFamily family; + union { + struct in_addr ipv4; + struct in6_addr ipv6; + } addr; +}; /** * SECTION:ginetaddress * @short_description: An IPv4/IPv6 address + * @include: gio/gio.h * * #GInetAddress represents an IPv4 or IPv6 internet address. Use * g_resolver_lookup_by_name() or g_resolver_lookup_by_name_async() to @@ -49,38 +55,17 @@ * To actually connect to a remote host, you will need a * #GInetSocketAddress (which includes a #GInetAddress as well as a * port number). - **/ + */ /** * GInetAddress: * * An IPv4 or IPv6 internet address. - **/ - -/* Networking initialization function, called from inside the g_once of - * g_inet_address_get_type() */ -static void -_g_networking_init (void) -{ -#ifdef G_OS_WIN32 - WSADATA wsadata; - if (WSAStartup (MAKEWORD (2, 0), &wsadata) != 0) - g_error ("Windows Sockets could not be initialized"); -#endif -} G_DEFINE_TYPE_WITH_CODE (GInetAddress, g_inet_address, G_TYPE_OBJECT, - _g_networking_init ();) - -struct _GInetAddressPrivate -{ - GSocketFamily family; - union { - struct in_addr ipv4; - struct in6_addr ipv6; - } addr; -}; + G_ADD_PRIVATE (GInetAddress) + g_networking_init ();) enum { @@ -107,7 +92,7 @@ g_inet_address_set_property (GObject *object, { GInetAddress *address = G_INET_ADDRESS (object); - switch (prop_id) + switch (prop_id) { case PROP_FAMILY: address->priv->family = g_value_get_enum (value); @@ -195,8 +180,6 @@ g_inet_address_class_init (GInetAddressClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); - g_type_class_add_private (klass, sizeof (GInetAddressPrivate)); - gobject_class->set_property = g_inet_address_set_property; gobject_class->get_property = g_inet_address_get_property; @@ -206,91 +189,184 @@ g_inet_address_class_init (GInetAddressClass *klass) P_("The address family (IPv4 or IPv6)"), G_TYPE_SOCKET_FAMILY, G_SOCKET_FAMILY_INVALID, - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS)); g_object_class_install_property (gobject_class, PROP_BYTES, g_param_spec_pointer ("bytes", P_("Bytes"), P_("The raw address data"), - G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READWRITE | + G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-any: + * + * Whether this is the "any" address for its family. + * See g_inet_address_get_is_any(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_ANY, g_param_spec_boolean ("is-any", P_("Is any"), - P_("See g_inet_address_get_is_any()"), + P_("Whether this is the \"any\" address for its family"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-link-local: + * + * Whether this is a link-local address. + * See g_inet_address_get_is_link_local(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_LINK_LOCAL, g_param_spec_boolean ("is-link-local", P_("Is link-local"), - P_("See g_inet_address_get_is_link_local()"), + P_("Whether this is a link-local address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-loopback: + * + * Whether this is the loopback address for its family. + * See g_inet_address_get_is_loopback(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_LOOPBACK, g_param_spec_boolean ("is-loopback", P_("Is loopback"), - P_("See g_inet_address_get_is_loopback()"), + P_("Whether this is the loopback address for its family"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-site-local: + * + * Whether this is a site-local address. + * See g_inet_address_get_is_loopback(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_SITE_LOCAL, g_param_spec_boolean ("is-site-local", P_("Is site-local"), - P_("See g_inet_address_get_is_site_local()"), + P_("Whether this is a site-local address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-multicast: + * + * Whether this is a multicast address. + * See g_inet_address_get_is_multicast(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_MULTICAST, g_param_spec_boolean ("is-multicast", P_("Is multicast"), - P_("See g_inet_address_get_is_multicast()"), + P_("Whether this is a multicast address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-mc-global: + * + * Whether this is a global multicast address. + * See g_inet_address_get_is_mc_global(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_MC_GLOBAL, g_param_spec_boolean ("is-mc-global", P_("Is multicast global"), - P_("See g_inet_address_get_is_mc_global()"), + P_("Whether this is a global multicast address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + + /** + * GInetAddress:is-mc-link-local: + * + * Whether this is a link-local multicast address. + * See g_inet_address_get_is_mc_link_local(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_MC_LINK_LOCAL, g_param_spec_boolean ("is-mc-link-local", P_("Is multicast link-local"), - P_("See g_inet_address_get_is_mc_link_local()"), + P_("Whether this is a link-local multicast address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-mc-node-local: + * + * Whether this is a node-local multicast address. + * See g_inet_address_get_is_mc_node_local(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_MC_NODE_LOCAL, g_param_spec_boolean ("is-mc-node-local", P_("Is multicast node-local"), - P_("See g_inet_address_get_is_mc_node_local()"), + P_("Whether this is a node-local multicast address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-mc-org-local: + * + * Whether this is an organization-local multicast address. + * See g_inet_address_get_is_mc_org_local(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_MC_ORG_LOCAL, g_param_spec_boolean ("is-mc-org-local", P_("Is multicast org-local"), - P_("See g_inet_address_get_is_mc_org_local()"), + P_("Whether this is an organization-local multicast address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); - + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); + + /** + * GInetAddress:is-mc-site-local: + * + * Whether this is a site-local multicast address. + * See g_inet_address_get_is_mc_site_local(). + * + * Since: 2.22 + */ g_object_class_install_property (gobject_class, PROP_IS_MC_SITE_LOCAL, g_param_spec_boolean ("is-mc-site-local", P_("Is multicast site-local"), - P_("See g_inet_address_get_is_mc_site_local()"), + P_("Whether this is a site-local multicast address"), FALSE, - G_PARAM_READABLE | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NAME)); + G_PARAM_READABLE | + G_PARAM_STATIC_STRINGS)); } static void g_inet_address_init (GInetAddress *address) { - address->priv = G_TYPE_INSTANCE_GET_PRIVATE (address, - G_TYPE_INET_ADDRESS, - GInetAddressPrivate); + address->priv = g_inet_address_get_instance_private (address); } /** @@ -311,23 +387,41 @@ g_inet_address_new_from_string (const gchar *string) struct sockaddr_storage sa; struct sockaddr_in *sin = (struct sockaddr_in *)&sa; struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa; - volatile GType type; gint len; #else /* !G_OS_WIN32 */ struct in_addr in_addr; struct in6_addr in6_addr; #endif - /* Make sure _g_networking_init() has been called */ - type = g_inet_address_get_type (); + g_return_val_if_fail (string != NULL, NULL); + + /* If this GInetAddress is the first networking-related object to be + * created, then we won't have called g_networking_init() yet at + * this point. + */ + g_networking_init (); #ifdef G_OS_WIN32 - memset (&sa, 0, sizeof (sa)); - len = sizeof (sa); - if (WSAStringToAddress ((LPTSTR) string, AF_INET, NULL, (LPSOCKADDR) &sa, &len) == 0) - return g_inet_address_new_from_bytes ((guint8 *)&sin->sin_addr, AF_INET); - else if (WSAStringToAddress ((LPTSTR) string, AF_INET6, NULL, (LPSOCKADDR) &sa, &len) == 0) - return g_inet_address_new_from_bytes ((guint8 *)&sin6->sin6_addr, AF_INET6); + /* We need to make sure to not pass a string of the form + * "IPv4addr:port" or "[IPv6addr]:port" to WSAStringToAddress(), + * since it would accept them (returning both the address and the + * port), but we only want to accept standalone IP addresses. (In + * the IPv6 case, WINE actually only checks for the ']', not the + * '[', which is why we do the same here.) + */ + if (!strchr (string, ':')) + { + len = sizeof (sa); + if (WSAStringToAddress ((LPTSTR) string, AF_INET, NULL, (LPSOCKADDR) &sa, &len) == 0) + return g_inet_address_new_from_bytes ((guint8 *)&sin->sin_addr, AF_INET); + } + + if (!strchr (string, ']')) + { + len = sizeof (sa); + if (WSAStringToAddress ((LPTSTR) string, AF_INET6, NULL, (LPSOCKADDR) &sa, &len) == 0) + return g_inet_address_new_from_bytes ((guint8 *)&sin6->sin6_addr, AF_INET6); + } #else /* !G_OS_WIN32 */ @@ -344,12 +438,12 @@ g_inet_address_new_from_string (const gchar *string) /** * g_inet_address_new_from_bytes: - * @bytes: raw address data + * @bytes: (array) (element-type guint8): raw address data * @family: the address family of @bytes * * Creates a new #GInetAddress from the given @family and @bytes. - * @bytes should be 4 bytes for %G_INET_ADDRESS_IPV4 and 16 bytes for - * %G_INET_ADDRESS_IPV6. + * @bytes should be 4 bytes for %G_SOCKET_FAMILY_IPV4 and 16 bytes for + * %G_SOCKET_FAMILY_IPV6. * * Returns: a new #GInetAddress corresponding to @family and @bytes. * @@ -446,20 +540,19 @@ g_inet_address_to_string (GInetAddress *address) g_return_val_if_fail (G_IS_INET_ADDRESS (address), NULL); #ifdef G_OS_WIN32 + memset (&sa, 0, sizeof (sa)); sa.ss_family = address->priv->family; if (address->priv->family == AF_INET) { addrlen = sizeof (*sin); memcpy (&sin->sin_addr, &address->priv->addr.ipv4, sizeof (sin->sin_addr)); - sin->sin_port = 0; } else { addrlen = sizeof (*sin6); memcpy (&sin6->sin6_addr, &address->priv->addr.ipv6, sizeof (sin6->sin6_addr)); - sin6->sin6_port = 0; } if (WSAAddressToString ((LPSOCKADDR) &sa, addrlen, NULL, buffer, &buflen) != 0) return NULL; @@ -476,13 +569,14 @@ g_inet_address_to_string (GInetAddress *address) } /** - * g_inet_address_to_bytes: + * g_inet_address_to_bytes: (skip) * @address: a #GInetAddress * * Gets the raw binary address data from @address. * * Returns: a pointer to an internal array of the bytes in @address, - * which should not be modified, stored, or freed. + * which should not be modified, stored, or freed. The size of this + * array can be gotten with g_inet_address_get_native_size(). * * Since: 2.22 */ @@ -495,6 +589,25 @@ g_inet_address_to_bytes (GInetAddress *address) } /** + * g_inet_address_get_native_size: + * @address: a #GInetAddress + * + * Gets the size of the native raw binary address for @address. This + * is the size of the data that you get from g_inet_address_to_bytes(). + * + * Returns: the number of bytes used for the native version of @address. + * + * Since: 2.22 + */ +gsize +g_inet_address_get_native_size (GInetAddress *address) +{ + if (address->priv->family == AF_INET) + return sizeof (address->priv->addr.ipv4); + return sizeof (address->priv->addr.ipv6); +} + +/** * g_inet_address_get_family: * @address: a #GInetAddress * @@ -752,5 +865,31 @@ g_inet_address_get_is_mc_site_local (GInetAddress *address) return IN6_IS_ADDR_MC_SITELOCAL (&address->priv->addr.ipv6); } -#define __G_INET_ADDRESS_C__ -#include "gioaliasdef.c" +/** + * g_inet_address_equal: + * @address: A #GInetAddress. + * @other_address: Another #GInetAddress. + * + * Checks if two #GInetAddress instances are equal, e.g. the same address. + * + * Returns: %TRUE if @address and @other_address are equal, %FALSE otherwise. + * + * Since: 2.30 + */ +gboolean +g_inet_address_equal (GInetAddress *address, + GInetAddress *other_address) +{ + g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE); + g_return_val_if_fail (G_IS_INET_ADDRESS (other_address), FALSE); + + if (g_inet_address_get_family (address) != g_inet_address_get_family (other_address)) + return FALSE; + + if (memcmp (g_inet_address_to_bytes (address), + g_inet_address_to_bytes (other_address), + g_inet_address_get_native_size (address)) != 0) + return FALSE; + + return TRUE; +}