1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
// $Id: INET_Addr_Test_IPV6.cpp 85237 2009-05-01 12:18:12Z johnnyw $
// ============================================================================
/**
* @file INET_Addr_Test_IPV6.cpp
*
* @brief Additional tests on the ACE_INET_Addr class above and beyond
* those found in INET_Addr_Test. These primarily focus on additional
* functionality and bug fixes to ACE_INET_Addr.
*
* @author John Aughey <jha@aughey.com>
* Brian Buesker <bbuesker@qualcomm.com>
*/
// ============================================================================
#include "test_config.h"
#include "ace/OS_NS_string.h"
#include "ace/INET_Addr.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_arpa_inet.h"
#define LINK_LOCAL_ADDR ACE_TEXT ("fe80::")
#define THE_INTERFACE ("eth0")
// Make sure that ACE_Addr::addr_type_ is the same
// as the family of the inet_addr_.
int check_type_consistency (const ACE_INET_Addr &addr)
{
int family = -1;
if (addr.get_type () == AF_INET)
{
struct sockaddr_in *sa4 = (struct sockaddr_in *)addr.get_addr();
family = sa4->sin_family;
}
#if defined (ACE_HAS_IPV6)
else if (addr.get_type () == AF_INET6)
{
struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)addr.get_addr();
family = sa6->sin6_family;
}
#endif
if (addr.get_type () != family)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Inconsistency between ACE_SOCK::addr_type_ (%d) ")
ACE_TEXT ("and the sockaddr family (%d)\n"),
addr.get_type (),
family));
return 1;
}
return 0;
}
int run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("INET_Addr_Test_IPV6"));
int status = 0; // Innocent until proven guilty
#if defined (ACE_HAS_IPV6)
if (ACE::ipv6_enabled ())
{
ACE_INET_Addr addr ("::");
// this should switch it back to an IPv4 address
addr.set (80);
if (AF_INET != addr.get_type())
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("set failed: Address type %d != AF_INET\n"),
addr.get_type()));
status = 1;
}
// this should get mapped to an IPv6 address
addr.set (80, ACE_UINT32 (INADDR_ANY), 1, 1);
if (AF_INET6 != addr.get_type())
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("set failed: Address type %d != AF_INET6\n"),
addr.get_type()));
status = 1;
}
// Test for ACE_INET_Addr::set_addr().
struct in_addr addrv4;
ACE_OS::inet_pton (AF_INET, "127.0.0.1", &addrv4);
struct sockaddr_in sa4;
sa4.sin_family = AF_INET;
sa4.sin_addr = addrv4;
sa4.sin_port = ACE_HTONS (8080);
addr.set (0, ACE_UINT32 (1), 1);
// test to make sure this doesn't get mapped to an IPv6 address
addr.set_addr (&sa4, sizeof(sa4), 0);
if (addr.get_type() != AF_INET)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT
("set_addr failed: Address type %d != AF_INET\n"),
addr.get_type()));
status = 1;
}
// now test to make sure it does get mapped to an IPv6 address
addr.set_addr (&sa4, sizeof(sa4), 1);
if (addr.get_type() != AF_INET6)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT
("set_addr failed: Address type %d != AF_INET6\n"),
addr.get_type()));
status = 1;
}
// test to make sure that the type gets set correctly when set is
// called with another ACE_INET_Addr
addr.set (0, ACE_UINT32 (1), 1);
ACE_INET_Addr addrIPv6 ((u_short) 0, ACE_IPV6_LOCALHOST);
addr.set (addrIPv6);
status |= check_type_consistency (addr);
#if defined (__linux__)
// test a link local address to make sure the set_interface method works
ACE_INET_Addr link_local_addr (80, LINK_LOCAL_ADDR);
if (0 != ACE_OS::strcmp (ACE_TEXT_CHAR_TO_TCHAR(link_local_addr.get_host_addr ()),
LINK_LOCAL_ADDR))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("IPv6 get_host_addr failed: %s != %s\n"),
link_local_addr.get_host_addr (),
LINK_LOCAL_ADDR));
status = 1;
}
if (-1 == link_local_addr.set_interface (THE_INTERFACE))
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("IPv6 set_interface failed\n")));
status = 1;
}
#endif /* __linux__ */
}
#endif /* ACE_HAS_IPV6 */
ACE_END_TEST;
return status;
}
|