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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*****************************************************************
|
| Neptune - Network
|
| Copyright (c) 2002-2008, Axiomatic Systems, LLC.
| All rights reserved.
|
| Redistribution and use in source and binary forms, with or without
| modification, are permitted provided that the following conditions are met:
| * Redistributions of source code must retain the above copyright
| notice, this list of conditions and the following disclaimer.
| * Redistributions in binary form must reproduce the above copyright
| notice, this list of conditions and the following disclaimer in the
| documentation and/or other materials provided with the distribution.
| * Neither the name of Axiomatic Systems nor the
| names of its contributors may be used to endorse or promote products
| derived from this software without specific prior written permission.
|
| THIS SOFTWARE IS PROVIDED BY AXIOMATIC SYSTEMS ''AS IS'' AND ANY
| EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
| WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
| DISCLAIMED. IN NO EVENT SHALL AXIOMATIC SYSTEMS BE LIABLE FOR ANY
| DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
| (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
| LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
| ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
| SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
****************************************************************/
#ifndef _NPT_NETWORK_H_
#define _NPT_NETWORK_H_
/*----------------------------------------------------------------------
| includes
+---------------------------------------------------------------------*/
#include "NptTypes.h"
#include "NptConstants.h"
#include "NptStrings.h"
#include "NptList.h"
/*----------------------------------------------------------------------
| constants
+---------------------------------------------------------------------*/
const unsigned int NPT_NETWORK_MAX_MAC_ADDRESS_LENGTH = 8;
/*----------------------------------------------------------------------
| flags
+---------------------------------------------------------------------*/
#define NPT_NETWORK_INTERFACE_FLAG_LOOPBACK 0x01
#define NPT_NETWORK_INTERFACE_FLAG_PROMISCUOUS 0x02
#define NPT_NETWORK_INTERFACE_FLAG_BROADCAST 0x04
#define NPT_NETWORK_INTERFACE_FLAG_MULTICAST 0x08
#define NPT_NETWORK_INTERFACE_FLAG_POINT_TO_POINT 0x10
/*----------------------------------------------------------------------
| workarounds
+---------------------------------------------------------------------*/
#if defined(_WIN32)
#if defined(SetPort)
#undef SetPort
#endif
#endif
/*----------------------------------------------------------------------
| types
+---------------------------------------------------------------------*/
typedef unsigned int NPT_IpPort;
/*----------------------------------------------------------------------
| NPT_IpAddress
+---------------------------------------------------------------------*/
class NPT_IpAddress
{
public:
// class members
static const NPT_IpAddress Any;
// constructors and destructor
NPT_IpAddress();
NPT_IpAddress(unsigned long address);
NPT_IpAddress(unsigned char a, unsigned char b, unsigned char c, unsigned char d);
// methods
NPT_Result ResolveName(const char* name,
NPT_Timeout timeout = NPT_TIMEOUT_INFINITE);
NPT_Result Parse(const char* name);
NPT_Result Set(unsigned long address);
NPT_Result Set(const unsigned char bytes[4]);
const unsigned char* AsBytes() const;
unsigned long AsLong() const;
NPT_String ToString() const;
// operators
bool operator==(const NPT_IpAddress& other) const;
// FIXME: temporary
NPT_String m_HostName;
private:
// members
unsigned char m_Address[4];
};
/*----------------------------------------------------------------------
| NPT_MacAddress
+---------------------------------------------------------------------*/
class NPT_MacAddress
{
public:
// typedef enum
typedef enum {
TYPE_UNKNOWN,
TYPE_LOOPBACK,
TYPE_ETHERNET,
TYPE_PPP,
TYPE_IEEE_802_11
} Type;
// constructors and destructor
NPT_MacAddress() : m_Type(TYPE_UNKNOWN), m_Length(0) {}
NPT_MacAddress(Type type,
const unsigned char* addr,
unsigned int length);
// methods
void SetAddress(Type type, const unsigned char* addr,
unsigned int length);
Type GetType() const { return m_Type; }
const unsigned char* GetAddress() const { return m_Address; }
unsigned int GetLength() const { return m_Length; }
NPT_String ToString() const;
private:
// members
Type m_Type;
unsigned char m_Address[NPT_NETWORK_MAX_MAC_ADDRESS_LENGTH];
unsigned int m_Length;
};
/*----------------------------------------------------------------------
| NPT_NetworkInterfaceAddress
+---------------------------------------------------------------------*/
class NPT_NetworkInterfaceAddress
{
public:
// constructors and destructor
NPT_NetworkInterfaceAddress(const NPT_IpAddress& primary,
const NPT_IpAddress& broadcast,
const NPT_IpAddress& destination,
const NPT_IpAddress& netmask) :
m_PrimaryAddress(primary),
m_BroadcastAddress(broadcast),
m_DestinationAddress(destination),
m_NetMask(netmask) {}
// methods
const NPT_IpAddress& GetPrimaryAddress() const {
return m_PrimaryAddress;
}
const NPT_IpAddress& GetBroadcastAddress() const {
return m_BroadcastAddress;
}
const NPT_IpAddress& GetDestinationAddress() const {
return m_DestinationAddress;
}
const NPT_IpAddress& GetNetMask() const {
return m_NetMask;
}
bool IsAddressInNetwork(const NPT_IpAddress& address) {
if (m_PrimaryAddress.AsLong() == address.AsLong()) return true;
if (m_NetMask.AsLong() == 0) return false;
return (m_PrimaryAddress.AsLong() & m_NetMask.AsLong()) == (address.AsLong() & m_NetMask.AsLong());
}
private:
// members
NPT_IpAddress m_PrimaryAddress;
NPT_IpAddress m_BroadcastAddress;
NPT_IpAddress m_DestinationAddress;
NPT_IpAddress m_NetMask;
};
/*----------------------------------------------------------------------
| NPT_NetworkInterface
+---------------------------------------------------------------------*/
class NPT_NetworkInterface
{
public:
// class methods
static NPT_Result GetNetworkInterfaces(NPT_List<NPT_NetworkInterface*>& interfaces);
// constructors and destructor
NPT_NetworkInterface(const char* name,
const NPT_MacAddress& mac,
NPT_Flags flags);
NPT_NetworkInterface(const char* name,
NPT_Flags flags);
~NPT_NetworkInterface() {}
// methods
NPT_Result AddAddress(const NPT_NetworkInterfaceAddress& address);
const NPT_String& GetName() const {
return m_Name;
}
const NPT_MacAddress& GetMacAddress() const {
return m_MacAddress;
}
void SetMacAddress(NPT_MacAddress::Type type,
const unsigned char* addr,
unsigned int length) {
m_MacAddress.SetAddress(type, addr, length);
}
NPT_Flags GetFlags() const { return m_Flags; }
const NPT_List<NPT_NetworkInterfaceAddress>& GetAddresses() const {
return m_Addresses;
}
bool IsAddressInNetwork(const NPT_IpAddress& address) {
NPT_List<NPT_NetworkInterfaceAddress>::Iterator iter = m_Addresses.GetFirstItem();
while (iter) {
if ((*iter).IsAddressInNetwork(address)) return true;
++iter;
}
return false;
}
private:
// members
NPT_String m_Name;
NPT_MacAddress m_MacAddress;
NPT_Flags m_Flags;
NPT_List<NPT_NetworkInterfaceAddress> m_Addresses;
};
/*----------------------------------------------------------------------
| NPT_NetworkNameResolver
+---------------------------------------------------------------------*/
class NPT_NetworkNameResolver
{
public:
// class methods
static NPT_Result Resolve(const char* name,
NPT_List<NPT_IpAddress>& addresses,
NPT_Timeout timeout = NPT_TIMEOUT_INFINITE);
};
#endif // _NPT_NETWORK_H_
|