1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2008 Christian Kellner, Samuel Cormier-Iijima
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Authors: Christian Kellner <gicmo@gnome.org>
21 * Samuel Cormier-Iijima <sciyoshi@gmail.com>
30 #include "ginetaddress.h"
32 #include "gioenumtypes.h"
34 #include "gnetworkingprivate.h"
36 struct _GInetAddressPrivate
46 * SECTION:ginetaddress
47 * @short_description: An IPv4/IPv6 address
50 * #GInetAddress represents an IPv4 or IPv6 internet address. Use
51 * g_resolver_lookup_by_name() or g_resolver_lookup_by_name_async() to
52 * look up the #GInetAddress for a hostname. Use
53 * g_resolver_lookup_by_address() or
54 * g_resolver_lookup_by_address_async() to look up the hostname for a
57 * To actually connect to a remote host, you will need a
58 * #GInetSocketAddress (which includes a #GInetAddress as well as a
65 * An IPv4 or IPv6 internet address.
68 G_DEFINE_TYPE_WITH_CODE (GInetAddress, g_inet_address, G_TYPE_OBJECT,
69 G_ADD_PRIVATE (GInetAddress)
70 g_networking_init ();)
83 PROP_IS_MC_LINK_LOCAL,
84 PROP_IS_MC_NODE_LOCAL,
86 PROP_IS_MC_SITE_LOCAL,
90 g_inet_address_set_property (GObject *object,
95 GInetAddress *address = G_INET_ADDRESS (object);
100 address->priv->family = g_value_get_enum (value);
104 memcpy (&address->priv->addr, g_value_get_pointer (value),
105 address->priv->family == AF_INET ?
106 sizeof (address->priv->addr.ipv4) :
107 sizeof (address->priv->addr.ipv6));
111 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
118 g_inet_address_get_property (GObject *object,
123 GInetAddress *address = G_INET_ADDRESS (object);
128 g_value_set_enum (value, address->priv->family);
132 g_value_set_pointer (value, &address->priv->addr);
136 g_value_set_boolean (value, g_inet_address_get_is_any (address));
139 case PROP_IS_LOOPBACK:
140 g_value_set_boolean (value, g_inet_address_get_is_loopback (address));
143 case PROP_IS_LINK_LOCAL:
144 g_value_set_boolean (value, g_inet_address_get_is_link_local (address));
147 case PROP_IS_SITE_LOCAL:
148 g_value_set_boolean (value, g_inet_address_get_is_site_local (address));
151 case PROP_IS_MULTICAST:
152 g_value_set_boolean (value, g_inet_address_get_is_multicast (address));
155 case PROP_IS_MC_GLOBAL:
156 g_value_set_boolean (value, g_inet_address_get_is_mc_global (address));
159 case PROP_IS_MC_LINK_LOCAL:
160 g_value_set_boolean (value, g_inet_address_get_is_mc_link_local (address));
163 case PROP_IS_MC_NODE_LOCAL:
164 g_value_set_boolean (value, g_inet_address_get_is_mc_node_local (address));
167 case PROP_IS_MC_ORG_LOCAL:
168 g_value_set_boolean (value, g_inet_address_get_is_mc_org_local (address));
171 case PROP_IS_MC_SITE_LOCAL:
172 g_value_set_boolean (value, g_inet_address_get_is_mc_site_local (address));
176 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
181 g_inet_address_class_init (GInetAddressClass *klass)
183 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
185 gobject_class->set_property = g_inet_address_set_property;
186 gobject_class->get_property = g_inet_address_get_property;
188 g_object_class_install_property (gobject_class, PROP_FAMILY,
189 g_param_spec_enum ("family",
190 P_("Address family"),
191 P_("The address family (IPv4 or IPv6)"),
192 G_TYPE_SOCKET_FAMILY,
193 G_SOCKET_FAMILY_INVALID,
195 G_PARAM_CONSTRUCT_ONLY |
196 G_PARAM_STATIC_STRINGS));
198 g_object_class_install_property (gobject_class, PROP_BYTES,
199 g_param_spec_pointer ("bytes",
201 P_("The raw address data"),
203 G_PARAM_CONSTRUCT_ONLY |
204 G_PARAM_STATIC_STRINGS));
207 * GInetAddress:is-any:
209 * Whether this is the "any" address for its family.
210 * See g_inet_address_get_is_any().
214 g_object_class_install_property (gobject_class, PROP_IS_ANY,
215 g_param_spec_boolean ("is-any",
217 P_("Whether this is the \"any\" address for its family"),
220 G_PARAM_STATIC_STRINGS));
223 * GInetAddress:is-link-local:
225 * Whether this is a link-local address.
226 * See g_inet_address_get_is_link_local().
230 g_object_class_install_property (gobject_class, PROP_IS_LINK_LOCAL,
231 g_param_spec_boolean ("is-link-local",
233 P_("Whether this is a link-local address"),
236 G_PARAM_STATIC_STRINGS));
239 * GInetAddress:is-loopback:
241 * Whether this is the loopback address for its family.
242 * See g_inet_address_get_is_loopback().
246 g_object_class_install_property (gobject_class, PROP_IS_LOOPBACK,
247 g_param_spec_boolean ("is-loopback",
249 P_("Whether this is the loopback address for its family"),
252 G_PARAM_STATIC_STRINGS));
255 * GInetAddress:is-site-local:
257 * Whether this is a site-local address.
258 * See g_inet_address_get_is_loopback().
262 g_object_class_install_property (gobject_class, PROP_IS_SITE_LOCAL,
263 g_param_spec_boolean ("is-site-local",
265 P_("Whether this is a site-local address"),
268 G_PARAM_STATIC_STRINGS));
271 * GInetAddress:is-multicast:
273 * Whether this is a multicast address.
274 * See g_inet_address_get_is_multicast().
278 g_object_class_install_property (gobject_class, PROP_IS_MULTICAST,
279 g_param_spec_boolean ("is-multicast",
281 P_("Whether this is a multicast address"),
284 G_PARAM_STATIC_STRINGS));
287 * GInetAddress:is-mc-global:
289 * Whether this is a global multicast address.
290 * See g_inet_address_get_is_mc_global().
294 g_object_class_install_property (gobject_class, PROP_IS_MC_GLOBAL,
295 g_param_spec_boolean ("is-mc-global",
296 P_("Is multicast global"),
297 P_("Whether this is a global multicast address"),
300 G_PARAM_STATIC_STRINGS));
304 * GInetAddress:is-mc-link-local:
306 * Whether this is a link-local multicast address.
307 * See g_inet_address_get_is_mc_link_local().
311 g_object_class_install_property (gobject_class, PROP_IS_MC_LINK_LOCAL,
312 g_param_spec_boolean ("is-mc-link-local",
313 P_("Is multicast link-local"),
314 P_("Whether this is a link-local multicast address"),
317 G_PARAM_STATIC_STRINGS));
320 * GInetAddress:is-mc-node-local:
322 * Whether this is a node-local multicast address.
323 * See g_inet_address_get_is_mc_node_local().
327 g_object_class_install_property (gobject_class, PROP_IS_MC_NODE_LOCAL,
328 g_param_spec_boolean ("is-mc-node-local",
329 P_("Is multicast node-local"),
330 P_("Whether this is a node-local multicast address"),
333 G_PARAM_STATIC_STRINGS));
336 * GInetAddress:is-mc-org-local:
338 * Whether this is an organization-local multicast address.
339 * See g_inet_address_get_is_mc_org_local().
343 g_object_class_install_property (gobject_class, PROP_IS_MC_ORG_LOCAL,
344 g_param_spec_boolean ("is-mc-org-local",
345 P_("Is multicast org-local"),
346 P_("Whether this is an organization-local multicast address"),
349 G_PARAM_STATIC_STRINGS));
352 * GInetAddress:is-mc-site-local:
354 * Whether this is a site-local multicast address.
355 * See g_inet_address_get_is_mc_site_local().
359 g_object_class_install_property (gobject_class, PROP_IS_MC_SITE_LOCAL,
360 g_param_spec_boolean ("is-mc-site-local",
361 P_("Is multicast site-local"),
362 P_("Whether this is a site-local multicast address"),
365 G_PARAM_STATIC_STRINGS));
369 g_inet_address_init (GInetAddress *address)
371 address->priv = g_inet_address_get_instance_private (address);
375 * g_inet_address_new_from_string:
376 * @string: a string representation of an IP address
378 * Parses @string as an IP address and creates a new #GInetAddress.
380 * Returns: a new #GInetAddress corresponding to @string, or %NULL if
381 * @string could not be parsed.
386 g_inet_address_new_from_string (const gchar *string)
389 struct sockaddr_storage sa;
390 struct sockaddr_in *sin = (struct sockaddr_in *)&sa;
391 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa;
393 #else /* !G_OS_WIN32 */
394 struct in_addr in_addr;
395 struct in6_addr in6_addr;
398 /* If this GInetAddress is the first networking-related object to be
399 * created, then we won't have called g_networking_init() yet at
402 g_networking_init ();
405 /* We need to make sure to not pass a string of the form
406 * "IPv4addr:port" or "[IPv6addr]:port" to WSAStringToAddress(),
407 * since it would accept them (returning both the address and the
408 * port), but we only want to accept standalone IP addresses. (In
409 * the IPv6 case, WINE actually only checks for the ']', not the
410 * '[', which is why we do the same here.)
412 if (!strchr (string, ':'))
415 if (WSAStringToAddress ((LPTSTR) string, AF_INET, NULL, (LPSOCKADDR) &sa, &len) == 0)
416 return g_inet_address_new_from_bytes ((guint8 *)&sin->sin_addr, AF_INET);
419 if (!strchr (string, ']'))
422 if (WSAStringToAddress ((LPTSTR) string, AF_INET6, NULL, (LPSOCKADDR) &sa, &len) == 0)
423 return g_inet_address_new_from_bytes ((guint8 *)&sin6->sin6_addr, AF_INET6);
426 #else /* !G_OS_WIN32 */
428 if (inet_pton (AF_INET, string, &in_addr) > 0)
429 return g_inet_address_new_from_bytes ((guint8 *)&in_addr, AF_INET);
430 else if (inet_pton (AF_INET6, string, &in6_addr) > 0)
431 return g_inet_address_new_from_bytes ((guint8 *)&in6_addr, AF_INET6);
437 #define G_INET_ADDRESS_FAMILY_IS_VALID(family) ((family) == AF_INET || (family) == AF_INET6)
440 * g_inet_address_new_from_bytes:
441 * @bytes: (array) (element-type guint8): raw address data
442 * @family: the address family of @bytes
444 * Creates a new #GInetAddress from the given @family and @bytes.
445 * @bytes should be 4 bytes for %G_SOCKET_FAMILY_IPV4 and 16 bytes for
446 * %G_SOCKET_FAMILY_IPV6.
448 * Returns: a new #GInetAddress corresponding to @family and @bytes.
453 g_inet_address_new_from_bytes (const guint8 *bytes,
454 GSocketFamily family)
456 g_return_val_if_fail (G_INET_ADDRESS_FAMILY_IS_VALID (family), NULL);
458 return g_object_new (G_TYPE_INET_ADDRESS,
465 * g_inet_address_new_loopback:
466 * @family: the address family
468 * Creates a #GInetAddress for the loopback address for @family.
470 * Returns: a new #GInetAddress corresponding to the loopback address
476 g_inet_address_new_loopback (GSocketFamily family)
478 g_return_val_if_fail (G_INET_ADDRESS_FAMILY_IS_VALID (family), NULL);
480 if (family == AF_INET)
482 guint8 addr[4] = {127, 0, 0, 1};
484 return g_inet_address_new_from_bytes (addr, family);
487 return g_inet_address_new_from_bytes (in6addr_loopback.s6_addr, family);
491 * g_inet_address_new_any:
492 * @family: the address family
494 * Creates a #GInetAddress for the "any" address (unassigned/"don't
495 * care") for @family.
497 * Returns: a new #GInetAddress corresponding to the "any" address
503 g_inet_address_new_any (GSocketFamily family)
505 g_return_val_if_fail (G_INET_ADDRESS_FAMILY_IS_VALID (family), NULL);
507 if (family == AF_INET)
509 guint8 addr[4] = {0, 0, 0, 0};
511 return g_inet_address_new_from_bytes (addr, family);
514 return g_inet_address_new_from_bytes (in6addr_any.s6_addr, family);
519 * g_inet_address_to_string:
520 * @address: a #GInetAddress
522 * Converts @address to string form.
524 * Returns: a representation of @address as a string, which should be
530 g_inet_address_to_string (GInetAddress *address)
532 gchar buffer[INET6_ADDRSTRLEN];
534 DWORD buflen = sizeof (buffer), addrlen;
535 struct sockaddr_storage sa;
536 struct sockaddr_in *sin = (struct sockaddr_in *)&sa;
537 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&sa;
540 g_return_val_if_fail (G_IS_INET_ADDRESS (address), NULL);
543 memset (&sa, 0, sizeof (sa));
544 sa.ss_family = address->priv->family;
545 if (address->priv->family == AF_INET)
547 addrlen = sizeof (*sin);
548 memcpy (&sin->sin_addr, &address->priv->addr.ipv4,
549 sizeof (sin->sin_addr));
553 addrlen = sizeof (*sin6);
554 memcpy (&sin6->sin6_addr, &address->priv->addr.ipv6,
555 sizeof (sin6->sin6_addr));
557 if (WSAAddressToString ((LPSOCKADDR) &sa, addrlen, NULL, buffer, &buflen) != 0)
560 #else /* !G_OS_WIN32 */
562 if (address->priv->family == AF_INET)
563 inet_ntop (AF_INET, &address->priv->addr.ipv4, buffer, sizeof (buffer));
565 inet_ntop (AF_INET6, &address->priv->addr.ipv6, buffer, sizeof (buffer));
568 return g_strdup (buffer);
572 * g_inet_address_to_bytes: (skip)
573 * @address: a #GInetAddress
575 * Gets the raw binary address data from @address.
577 * Returns: a pointer to an internal array of the bytes in @address,
578 * which should not be modified, stored, or freed. The size of this
579 * array can be gotten with g_inet_address_get_native_size().
584 g_inet_address_to_bytes (GInetAddress *address)
586 g_return_val_if_fail (G_IS_INET_ADDRESS (address), NULL);
588 return (guint8 *)&address->priv->addr;
592 * g_inet_address_get_native_size:
593 * @address: a #GInetAddress
595 * Gets the size of the native raw binary address for @address. This
596 * is the size of the data that you get from g_inet_address_to_bytes().
598 * Returns: the number of bytes used for the native version of @address.
603 g_inet_address_get_native_size (GInetAddress *address)
605 if (address->priv->family == AF_INET)
606 return sizeof (address->priv->addr.ipv4);
607 return sizeof (address->priv->addr.ipv6);
611 * g_inet_address_get_family:
612 * @address: a #GInetAddress
614 * Gets @address's family
616 * Returns: @address's family
621 g_inet_address_get_family (GInetAddress *address)
623 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
625 return address->priv->family;
629 * g_inet_address_get_is_any:
630 * @address: a #GInetAddress
632 * Tests whether @address is the "any" address for its family.
634 * Returns: %TRUE if @address is the "any" address for its family.
639 g_inet_address_get_is_any (GInetAddress *address)
641 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
643 if (address->priv->family == AF_INET)
645 guint32 addr4 = g_ntohl (address->priv->addr.ipv4.s_addr);
647 return addr4 == INADDR_ANY;
650 return IN6_IS_ADDR_UNSPECIFIED (&address->priv->addr.ipv6);
654 * g_inet_address_get_is_loopback:
655 * @address: a #GInetAddress
657 * Tests whether @address is the loopback address for its family.
659 * Returns: %TRUE if @address is the loopback address for its family.
664 g_inet_address_get_is_loopback (GInetAddress *address)
666 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
668 if (address->priv->family == AF_INET)
670 guint32 addr4 = g_ntohl (address->priv->addr.ipv4.s_addr);
673 return ((addr4 & 0xff000000) == 0x7f000000);
676 return IN6_IS_ADDR_LOOPBACK (&address->priv->addr.ipv6);
680 * g_inet_address_get_is_link_local:
681 * @address: a #GInetAddress
683 * Tests whether @address is a link-local address (that is, if it
684 * identifies a host on a local network that is not connected to the
687 * Returns: %TRUE if @address is a link-local address.
692 g_inet_address_get_is_link_local (GInetAddress *address)
694 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
696 if (address->priv->family == AF_INET)
698 guint32 addr4 = g_ntohl (address->priv->addr.ipv4.s_addr);
701 return ((addr4 & 0xffff0000) == 0xa9fe0000);
704 return IN6_IS_ADDR_LINKLOCAL (&address->priv->addr.ipv6);
708 * g_inet_address_get_is_site_local:
709 * @address: a #GInetAddress
711 * Tests whether @address is a site-local address such as 10.0.0.1
712 * (that is, the address identifies a host on a local network that can
713 * not be reached directly from the Internet, but which may have
714 * outgoing Internet connectivity via a NAT or firewall).
716 * Returns: %TRUE if @address is a site-local address.
721 g_inet_address_get_is_site_local (GInetAddress *address)
723 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
725 if (address->priv->family == AF_INET)
727 guint32 addr4 = g_ntohl (address->priv->addr.ipv4.s_addr);
729 /* 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16 */
730 return ((addr4 & 0xff000000) == 0x0a000000 ||
731 (addr4 & 0xfff00000) == 0xac100000 ||
732 (addr4 & 0xffff0000) == 0xc0a80000);
735 return IN6_IS_ADDR_SITELOCAL (&address->priv->addr.ipv6);
739 * g_inet_address_get_is_multicast:
740 * @address: a #GInetAddress
742 * Tests whether @address is a multicast address.
744 * Returns: %TRUE if @address is a multicast address.
749 g_inet_address_get_is_multicast (GInetAddress *address)
751 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
753 if (address->priv->family == AF_INET)
755 guint32 addr4 = g_ntohl (address->priv->addr.ipv4.s_addr);
757 return IN_MULTICAST (addr4);
760 return IN6_IS_ADDR_MULTICAST (&address->priv->addr.ipv6);
764 * g_inet_address_get_is_mc_global:
765 * @address: a #GInetAddress
767 * Tests whether @address is a global multicast address.
769 * Returns: %TRUE if @address is a global multicast address.
774 g_inet_address_get_is_mc_global (GInetAddress *address)
776 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
778 if (address->priv->family == AF_INET)
781 return IN6_IS_ADDR_MC_GLOBAL (&address->priv->addr.ipv6);
785 * g_inet_address_get_is_mc_link_local:
786 * @address: a #GInetAddress
788 * Tests whether @address is a link-local multicast address.
790 * Returns: %TRUE if @address is a link-local multicast address.
795 g_inet_address_get_is_mc_link_local (GInetAddress *address)
797 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
799 if (address->priv->family == AF_INET)
802 return IN6_IS_ADDR_MC_LINKLOCAL (&address->priv->addr.ipv6);
806 * g_inet_address_get_is_mc_node_local:
807 * @address: a #GInetAddress
809 * Tests whether @address is a node-local multicast address.
811 * Returns: %TRUE if @address is a node-local multicast address.
816 g_inet_address_get_is_mc_node_local (GInetAddress *address)
818 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
820 if (address->priv->family == AF_INET)
823 return IN6_IS_ADDR_MC_NODELOCAL (&address->priv->addr.ipv6);
827 * g_inet_address_get_is_mc_org_local:
828 * @address: a #GInetAddress
830 * Tests whether @address is an organization-local multicast address.
832 * Returns: %TRUE if @address is an organization-local multicast address.
837 g_inet_address_get_is_mc_org_local (GInetAddress *address)
839 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
841 if (address->priv->family == AF_INET)
844 return IN6_IS_ADDR_MC_ORGLOCAL (&address->priv->addr.ipv6);
848 * g_inet_address_get_is_mc_site_local:
849 * @address: a #GInetAddress
851 * Tests whether @address is a site-local multicast address.
853 * Returns: %TRUE if @address is a site-local multicast address.
858 g_inet_address_get_is_mc_site_local (GInetAddress *address)
860 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
862 if (address->priv->family == AF_INET)
865 return IN6_IS_ADDR_MC_SITELOCAL (&address->priv->addr.ipv6);
869 * g_inet_address_equal:
870 * @address: A #GInetAddress.
871 * @other_address: Another #GInetAddress.
873 * Checks if two #GInetAddress instances are equal, e.g. the same address.
875 * Returns: %TRUE if @address and @other_address are equal, %FALSE otherwise.
880 g_inet_address_equal (GInetAddress *address,
881 GInetAddress *other_address)
883 g_return_val_if_fail (G_IS_INET_ADDRESS (address), FALSE);
884 g_return_val_if_fail (G_IS_INET_ADDRESS (other_address), FALSE);
886 if (g_inet_address_get_family (address) != g_inet_address_get_family (other_address))
889 if (memcmp (g_inet_address_to_bytes (address),
890 g_inet_address_to_bytes (other_address),
891 g_inet_address_get_native_size (address)) != 0)