IPAddress.m
author Jens Alfke <jens@mooseyard.com>
Tue Jul 21 15:06:15 2009 -0700 (2009-07-21)
changeset 62 8713f2d6a4c5
parent 59 46c7844cb592
permissions -rw-r--r--
Added -[MYBonjourRegistration updateTXTRecord]
jens@0
     1
//
jens@0
     2
//  IPAddress.m
jens@0
     3
//  MYNetwork
jens@0
     4
//
jens@0
     5
//  Created by Jens Alfke on 1/4/08.
jens@0
     6
//  Copyright 2008 Jens Alfke. All rights reserved.
jens@0
     7
//
jens@0
     8
jens@0
     9
#import "IPAddress.h"
jens@1
    10
jens@1
    11
#import "Logging.h"
jens@1
    12
#import "Test.h"
jens@1
    13
jens@0
    14
#import <sys/types.h>
jens@0
    15
#import <sys/socket.h>
jens@0
    16
#import <net/if.h>
jens@0
    17
#import <netinet/in.h>
jens@0
    18
#import <ifaddrs.h>
jens@1
    19
#import <netdb.h>
jens@0
    20
jens@0
    21
jens@0
    22
@implementation IPAddress
jens@0
    23
jens@0
    24
jens@0
    25
+ (UInt32) IPv4FromDottedQuadString: (NSString*)str
jens@0
    26
{
jens@0
    27
    Assert(str);
jens@0
    28
    UInt32 ipv4 = 0;
jens@0
    29
    NSScanner *scanner = [NSScanner scannerWithString: str];
jens@0
    30
    for( int i=0; i<4; i++ ) {
jens@0
    31
        if( i>0 && ! [scanner scanString: @"." intoString: nil] )
jens@0
    32
            return 0;
jens@0
    33
        NSInteger octet;
jens@0
    34
        if( ! [scanner scanInteger: &octet] || octet<0 || octet>255 )
jens@0
    35
            return 0;
jens@0
    36
        ipv4 = (ipv4<<8) | octet;
jens@0
    37
    }
jens@0
    38
    if( ! [scanner isAtEnd] )
jens@0
    39
        return 0;
jens@0
    40
    return htonl(ipv4);
jens@0
    41
}
jens@0
    42
         
jens@0
    43
         
jens@0
    44
- (id) initWithHostname: (NSString*)hostname port: (UInt16)port
jens@0
    45
{
jens@0
    46
    Assert(hostname);
jens@0
    47
    self = [super init];
jens@0
    48
    if (self != nil) {
jens@0
    49
        _ipv4 = [[self class] IPv4FromDottedQuadString: hostname];
jens@0
    50
        if( ! _ipv4 ) {
jens@0
    51
            [self release];
jens@0
    52
            return [[HostAddress alloc] initWithHostname: hostname port: port];
jens@0
    53
        }
jens@0
    54
        _port = port;
jens@0
    55
    }
jens@0
    56
    return self;
jens@0
    57
}
jens@0
    58
jens@49
    59
+ (IPAddress*) addressWithHostname: (NSString*)hostname port: (UInt16)port
jens@49
    60
{
jens@49
    61
    return [[[self alloc] initWithHostname: hostname port: port] autorelease];
jens@49
    62
}
jens@49
    63
jens@0
    64
jens@0
    65
- (id) initWithIPv4: (UInt32)ipv4 port: (UInt16)port
jens@0
    66
{
jens@0
    67
    self = [super init];
jens@0
    68
    if (self != nil) {
jens@0
    69
        _ipv4 = ipv4;
jens@0
    70
        _port = port;
jens@0
    71
    }
jens@0
    72
    return self;
jens@0
    73
}
jens@0
    74
jens@0
    75
- (id) initWithIPv4: (UInt32)ipv4
jens@0
    76
{
jens@0
    77
    return [self initWithIPv4: ipv4 port: 0];
jens@0
    78
}
jens@0
    79
jens@0
    80
- (id) initWithSockAddr: (const struct sockaddr*)sockaddr
jens@0
    81
{
jens@0
    82
    if( sockaddr->sa_family == AF_INET ) {
jens@0
    83
        const struct sockaddr_in *addr_in = (const struct sockaddr_in*)sockaddr;
jens@0
    84
        return [self initWithIPv4: addr_in->sin_addr.s_addr port: ntohs(addr_in->sin_port)];
jens@0
    85
    } else {
jens@0
    86
        [self release];
jens@0
    87
        return nil;
jens@0
    88
    }
jens@0
    89
}
jens@0
    90
jens@32
    91
- (id) initWithSockAddr: (const struct sockaddr*)sockaddr
jens@32
    92
                   port: (UInt16)port
jens@32
    93
{
jens@32
    94
    self = [self initWithSockAddr: sockaddr];
jens@32
    95
    if (self)
jens@32
    96
        _port = port;
jens@32
    97
    return self;
jens@32
    98
}
jens@32
    99
jens@59
   100
- (id) initWithData: (NSData*)data
jens@59
   101
{
jens@60
   102
    if (!data) {
jens@60
   103
        [self release];
jens@60
   104
        return nil;
jens@60
   105
    }
jens@59
   106
    const struct sockaddr* addr = data.bytes;
jens@59
   107
    if (data.length < sizeof(struct sockaddr_in))
jens@59
   108
        addr = nil;
jens@59
   109
    return [self initWithSockAddr: addr];
jens@59
   110
}
jens@59
   111
jens@59
   112
jens@0
   113
+ (IPAddress*) addressOfSocket: (CFSocketNativeHandle)socket
jens@0
   114
{
jens@0
   115
    uint8_t name[SOCK_MAXADDRLEN];
jens@0
   116
    socklen_t namelen = sizeof(name);
jens@0
   117
    struct sockaddr *addr = (struct sockaddr*)name;
jens@0
   118
    if (0 == getpeername(socket, addr, &namelen))
jens@0
   119
        return [[[self alloc] initWithSockAddr: addr] autorelease];
jens@0
   120
    else
jens@0
   121
        return nil;
jens@0
   122
}    
jens@0
   123
jens@0
   124
- (id) copyWithZone: (NSZone*)zone
jens@0
   125
{
jens@0
   126
    return [self retain];
jens@0
   127
}
jens@0
   128
jens@0
   129
- (void)encodeWithCoder:(NSCoder *)coder
jens@0
   130
{
jens@0
   131
    if( _ipv4 )
jens@0
   132
        [coder encodeInt32: _ipv4 forKey: @"ipv4"];
jens@0
   133
    if( _port )
jens@0
   134
        [coder encodeInt: _port forKey: @"port"];
jens@0
   135
}
jens@0
   136
jens@0
   137
- (id)initWithCoder:(NSCoder *)decoder
jens@0
   138
{
jens@0
   139
    self = [super init];
jens@0
   140
    if( self ) {
jens@0
   141
        _ipv4 = [decoder decodeInt32ForKey: @"ipv4"];
jens@0
   142
        _port = [decoder decodeIntForKey: @"port"];
jens@0
   143
    }
jens@0
   144
    return self;
jens@0
   145
}
jens@0
   146
jens@0
   147
jens@0
   148
@synthesize ipv4=_ipv4, port=_port;
jens@0
   149
jens@0
   150
- (BOOL) isEqual: (IPAddress*)addr
jens@0
   151
{
jens@0
   152
    return [addr isKindOfClass: [IPAddress class]] && [self isSameHost: addr] && addr->_port==_port;
jens@0
   153
}
jens@0
   154
jens@0
   155
- (BOOL) isSameHost: (IPAddress*)addr
jens@0
   156
{
jens@0
   157
    return addr && _ipv4==addr->_ipv4;
jens@0
   158
}
jens@0
   159
jens@0
   160
- (NSUInteger) hash
jens@0
   161
{
jens@0
   162
    return _ipv4 ^ _port;
jens@0
   163
}
jens@0
   164
jens@0
   165
- (NSString*) ipv4name
jens@0
   166
{
jens@0
   167
    UInt32 ipv4 = self.ipv4;
jens@0
   168
    if( ipv4 != 0 ) {
jens@0
   169
        const UInt8* b = (const UInt8*)&ipv4;
jens@0
   170
        return [NSString stringWithFormat: @"%u.%u.%u.%u",
jens@0
   171
                (unsigned)b[0],(unsigned)b[1],(unsigned)b[2],(unsigned)b[3]];
jens@0
   172
    } else
jens@0
   173
        return nil;
jens@0
   174
}
jens@0
   175
jens@0
   176
- (NSString*) hostname
jens@0
   177
{
jens@0
   178
    return [self ipv4name];
jens@0
   179
}
jens@0
   180
jens@59
   181
- (NSData*) asData
jens@59
   182
{
jens@59
   183
    struct sockaddr_in addr = {
jens@59
   184
        .sin_len    = sizeof(struct sockaddr_in),
jens@59
   185
        .sin_family = AF_INET,
jens@59
   186
        .sin_port   = htons(_port),
jens@59
   187
        .sin_addr   = {htonl(_ipv4)} };
jens@59
   188
    return [NSData dataWithBytes: &addr length: sizeof(addr)];
jens@59
   189
}
jens@59
   190
jens@0
   191
- (NSString*) description
jens@0
   192
{
jens@0
   193
    NSString *name = self.hostname ?: @"0.0.0.0";
jens@0
   194
    if( _port )
jens@0
   195
        name = [name stringByAppendingFormat: @":%hu",_port];
jens@0
   196
    return name;
jens@0
   197
}
jens@0
   198
jens@0
   199
jens@26
   200
+ (IPAddress*) localAddressWithPort: (UInt16)port
jens@0
   201
{
jens@0
   202
    // getifaddrs returns a linked list of interface entries;
jens@0
   203
    // find the first active non-loopback interface with IPv4:
jens@0
   204
    UInt32 address = 0;
jens@0
   205
    struct ifaddrs *interfaces;
jens@0
   206
    if( getifaddrs(&interfaces) == 0 ) {
jens@0
   207
        struct ifaddrs *interface;
jens@0
   208
        for( interface=interfaces; interface; interface=interface->ifa_next ) {
jens@0
   209
            if( (interface->ifa_flags & IFF_UP) && ! (interface->ifa_flags & IFF_LOOPBACK) ) {
jens@0
   210
                const struct sockaddr_in *addr = (const struct sockaddr_in*) interface->ifa_addr;
jens@0
   211
                if( addr && addr->sin_family==AF_INET ) {
jens@0
   212
                    address = addr->sin_addr.s_addr;
jens@0
   213
                    break;
jens@0
   214
                }
jens@0
   215
            }
jens@0
   216
        }
jens@0
   217
        freeifaddrs(interfaces);
jens@0
   218
    }
jens@26
   219
    return [[[self alloc] initWithIPv4: address port: port] autorelease];
jens@26
   220
}
jens@26
   221
jens@26
   222
+ (IPAddress*) localAddress
jens@26
   223
{
jens@26
   224
    return [self localAddressWithPort: 0];
jens@0
   225
}
jens@0
   226
jens@0
   227
jens@0
   228
// Private IP address ranges. See RFC 3330.
jens@0
   229
static const struct {UInt32 mask, value;} const kPrivateRanges[] = {
jens@0
   230
    {0xFF000000, 0x00000000},       //   0.x.x.x (hosts on "this" network)
jens@0
   231
    {0xFF000000, 0x0A000000},       //  10.x.x.x (private address range)
jens@0
   232
    {0xFF000000, 0x7F000000},       // 127.x.x.x (loopback)
jens@0
   233
    {0xFFFF0000, 0xA9FE0000},       // 169.254.x.x (link-local self-configured addresses)
jens@0
   234
    {0xFFF00000, 0xAC100000},       // 172.(16-31).x.x (private address range)
jens@0
   235
    {0xFFFF0000, 0xC0A80000},       // 192.168.x.x (private address range)
jens@0
   236
    {0,0}
jens@0
   237
};
jens@0
   238
jens@0
   239
jens@0
   240
- (BOOL) isPrivate
jens@0
   241
{
jens@0
   242
    UInt32 address = ntohl(self.ipv4);
jens@0
   243
    int i;
jens@0
   244
    for( i=0; kPrivateRanges[i].mask; i++ )
jens@0
   245
        if( (address & kPrivateRanges[i].mask) == kPrivateRanges[i].value )
jens@0
   246
            return YES;
jens@0
   247
    return NO;
jens@0
   248
}
jens@0
   249
jens@0
   250
jens@0
   251
@end
jens@0
   252
jens@0
   253
jens@0
   254
jens@0
   255
jens@0
   256
jens@0
   257
@implementation HostAddress
jens@0
   258
jens@0
   259
jens@0
   260
- (id) initWithHostname: (NSString*)hostname port: (UInt16)port
jens@0
   261
{
jens@0
   262
    self = [super initWithIPv4: 0 port: port];
jens@0
   263
    if( self ) {
jens@0
   264
        if( [hostname length]==0 ) {
jens@0
   265
            [self release];
jens@0
   266
            return nil;
jens@0
   267
        }
jens@0
   268
        _hostname = [hostname copy];
jens@0
   269
    }
jens@0
   270
    return self;
jens@0
   271
}
jens@0
   272
jens@28
   273
- (id) initWithHostname: (NSString*)hostname
jens@28
   274
               sockaddr: (const struct sockaddr*)sockaddr
jens@28
   275
                   port: (UInt16)port;
jens@28
   276
{
jens@28
   277
    if( [hostname length]==0 ) {
jens@28
   278
        [self release];
jens@28
   279
        return nil;
jens@28
   280
    }
jens@32
   281
    self = [super initWithSockAddr: sockaddr port: port];
jens@28
   282
    if( self ) {
jens@28
   283
        _hostname = [hostname copy];
jens@28
   284
    }
jens@28
   285
    return self;
jens@28
   286
}    
jens@28
   287
jens@0
   288
jens@0
   289
- (void)encodeWithCoder:(NSCoder *)coder
jens@0
   290
{
jens@0
   291
    [super encodeWithCoder: coder];
jens@0
   292
    [coder encodeObject: _hostname forKey: @"host"];
jens@0
   293
}
jens@0
   294
jens@0
   295
- (id)initWithCoder:(NSCoder *)decoder
jens@0
   296
{
jens@0
   297
    self = [super initWithCoder: decoder];
jens@0
   298
    if( self ) {
jens@0
   299
        _hostname = [[decoder decodeObjectForKey: @"host"] copy];
jens@0
   300
    }
jens@0
   301
    return self;
jens@0
   302
}
jens@0
   303
jens@24
   304
- (void)dealloc 
jens@24
   305
{
jens@24
   306
    [_hostname release];
jens@24
   307
    [super dealloc];
jens@24
   308
}
jens@24
   309
jens@24
   310
jens@28
   311
- (NSString*) description
jens@28
   312
{
danpreston@35
   313
    NSMutableString *desc = [[_hostname mutableCopy] autorelease];
jens@28
   314
    NSString *addr = self.ipv4name;
jens@28
   315
    if (addr)
jens@28
   316
        [desc appendFormat: @"(%@)", addr];
jens@32
   317
    if( self.port )
jens@32
   318
        [desc appendFormat: @":%hu",self.port];
jens@28
   319
    return desc;
jens@28
   320
}
jens@28
   321
jens@28
   322
jens@0
   323
- (NSUInteger) hash
jens@0
   324
{
jens@32
   325
    return [_hostname hash] ^ self.port;
jens@0
   326
}
jens@0
   327
jens@0
   328
jens@0
   329
- (NSString*) hostname  {return _hostname;}
jens@0
   330
jens@0
   331
jens@0
   332
- (UInt32) ipv4
jens@0
   333
{
jens@0
   334
    struct hostent *ent = gethostbyname(_hostname.UTF8String);
jens@0
   335
    if( ! ent ) {
jens@0
   336
        Log(@"HostAddress: DNS lookup failed for <%@>: %s", _hostname, hstrerror(h_errno));
jens@0
   337
        return 0;
jens@0
   338
    }
jens@0
   339
    return * (const in_addr_t*) ent->h_addr_list[0];
jens@0
   340
}
jens@0
   341
jens@0
   342
jens@0
   343
- (BOOL) isSameHost: (IPAddress*)addr
jens@0
   344
{
jens@0
   345
    return [addr isKindOfClass: [HostAddress class]] && [_hostname caseInsensitiveCompare: addr.hostname]==0;
jens@0
   346
}
jens@0
   347
jens@0
   348
jens@0
   349
@end
jens@0
   350
jens@0
   351
jens@0
   352
jens@0
   353
jens@0
   354
@implementation RecentAddress
jens@0
   355
jens@0
   356
jens@0
   357
- (id) initWithIPAddress: (IPAddress*)addr
jens@0
   358
{
jens@0
   359
    return [super initWithIPv4: addr.ipv4 port: addr.port];
jens@0
   360
}
jens@0
   361
jens@0
   362
jens@0
   363
@synthesize lastSuccess=_lastSuccess, successes=_successes;
jens@0
   364
jens@0
   365
- (BOOL) noteSuccess
jens@0
   366
{
jens@0
   367
    if( _successes < 0xFFFF )
jens@0
   368
        _successes++;
jens@0
   369
    _lastSuccess = CFAbsoluteTimeGetCurrent();
jens@0
   370
    return YES;
jens@0
   371
}
jens@0
   372
jens@0
   373
- (BOOL) noteSeen
jens@0
   374
{
jens@0
   375
    CFAbsoluteTime now = CFAbsoluteTimeGetCurrent();
jens@0
   376
    BOOL significant = ( now-_lastSuccess >= 18*60*60 );
jens@0
   377
    _lastSuccess = now;
jens@0
   378
    return significant;
jens@0
   379
}
jens@0
   380
jens@0
   381
jens@0
   382
- (void)encodeWithCoder:(NSCoder *)coder
jens@0
   383
{
jens@0
   384
    [super encodeWithCoder: coder];
jens@0
   385
    [coder encodeDouble: _lastSuccess forKey: @"last"];
jens@0
   386
    [coder encodeInt: _successes forKey: @"succ"];
jens@0
   387
}
jens@0
   388
jens@0
   389
- (id)initWithCoder:(NSCoder *)decoder
jens@0
   390
{
jens@0
   391
    self = [super initWithCoder: decoder];
jens@0
   392
    if( self ) {
jens@0
   393
        _lastSuccess = [decoder decodeDoubleForKey: @"last"];
jens@0
   394
        _successes = [decoder decodeIntForKey: @"succ"];
jens@0
   395
    }
jens@0
   396
    return self;
jens@0
   397
}
jens@0
   398
jens@0
   399
jens@0
   400
@end
jens@0
   401
jens@0
   402
jens@0
   403
jens@0
   404
jens@0
   405
jens@0
   406
#import "Test.h"
jens@0
   407
jens@0
   408
TestCase(IPAddress) {
jens@0
   409
    RequireTestCase(CollectionUtils);
jens@0
   410
    IPAddress *addr = [[IPAddress alloc] initWithIPv4: htonl(0x0A0001FE) port: 8080];
jens@26
   411
    CAssertEq(addr.ipv4,(UInt32)htonl(0x0A0001FE));
jens@0
   412
    CAssertEq(addr.port,8080);
jens@0
   413
    CAssertEqual(addr.hostname,@"10.0.1.254");
jens@0
   414
    CAssertEqual(addr.description,@"10.0.1.254:8080");
jens@0
   415
    CAssert(addr.isPrivate);
danpreston@35
   416
	[addr release];
jens@0
   417
    
jens@0
   418
    addr = [[IPAddress alloc] initWithHostname: @"66.66.0.255" port: 123];
jens@0
   419
    CAssertEq(addr.class,[IPAddress class]);
jens@26
   420
    CAssertEq(addr.ipv4,(UInt32)htonl(0x424200FF));
jens@0
   421
    CAssertEq(addr.port,123);
jens@0
   422
    CAssertEqual(addr.hostname,@"66.66.0.255");
jens@0
   423
    CAssertEqual(addr.description,@"66.66.0.255:123");
jens@0
   424
    CAssert(!addr.isPrivate);
danpreston@35
   425
 	[addr release];
danpreston@35
   426
   
jens@0
   427
    addr = [[IPAddress alloc] initWithHostname: @"www.apple.com" port: 80];
jens@0
   428
    CAssertEq(addr.class,[HostAddress class]);
jens@26
   429
    Log(@"www.apple.com = %@ [0x%08X]", addr.ipv4name, ntohl(addr.ipv4));
jens@26
   430
    CAssertEq(addr.ipv4,(UInt32)htonl(0x11FBC820));
jens@0
   431
    CAssertEq(addr.port,80);
jens@0
   432
    CAssertEqual(addr.hostname,@"www.apple.com");
jens@0
   433
    CAssertEqual(addr.description,@"www.apple.com:80");
jens@0
   434
    CAssert(!addr.isPrivate);
danpreston@35
   435
	[addr release];
jens@0
   436
}
jens@0
   437
jens@0
   438
jens@0
   439
/*
jens@0
   440
 Copyright (c) 2008, Jens Alfke <jens@mooseyard.com>. All rights reserved.
jens@0
   441
 
jens@0
   442
 Redistribution and use in source and binary forms, with or without modification, are permitted
jens@0
   443
 provided that the following conditions are met:
jens@0
   444
 
jens@0
   445
 * Redistributions of source code must retain the above copyright notice, this list of conditions
jens@0
   446
 and the following disclaimer.
jens@0
   447
 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
jens@0
   448
 and the following disclaimer in the documentation and/or other materials provided with the
jens@0
   449
 distribution.
jens@0
   450
 
jens@0
   451
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
jens@0
   452
 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
jens@0
   453
 FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
jens@0
   454
 BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
jens@0
   455
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
jens@0
   456
  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
jens@0
   457
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
jens@0
   458
 THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
jens@0
   459
 */