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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
# ip.tcl - Copyright (C) 2004 Pat Thoyts <patthoyts@users.sourceforge.net>
#
# Internet address manipulation.
#
# RFC 3513: IPv6 addressing.
#
# -------------------------------------------------------------------------
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# -------------------------------------------------------------------------
#
# $Id: ip.tcl,v 1.8 2005/09/30 18:03:58 andreas_kupries Exp $
package require Tcl 8.2; # tcl minimum version
namespace eval ip {
variable version 1.1.0
variable rcsid {$Id: ip.tcl,v 1.8 2005/09/30 18:03:58 andreas_kupries Exp $}
namespace export is version normalize equal type contract mask
#catch {namespace ensemble create}
variable IPv4Ranges
if {![info exists IPv4Ranges]} {
array set IPv4Ranges {
0/8 private
10/8 private
127/8 private
172.16/12 private
192.168/16 private
223/8 reserved
224/3 reserved
}
}
variable IPv6Ranges
if {![info exists IPv6Ranges]} {
# RFC 3513: 2.4
# RFC 3056: 2
array set IPv6Ranges {
2002::/16 "6to4 unicast"
fe80::/10 "link local"
fec0::/10 "site local"
ff00::/8 "multicast"
::/128 "unspecified"
::1/128 "localhost"
}
}
}
proc ::ip::is {class ip} {
foreach {ip mask} [split $ip /] break
switch -exact -- $class {
ipv4 - IPv4 - 4 {
return [IPv4? $ip]
}
ipv6 - IPv6 - 6 {
return [IPv6? $ip]
}
default {
return -code error "bad class \"$class\": must be ipv4 or ipv6"
}
}
}
proc ::ip::version {ip} {
set version -1
foreach {addr mask} [split $ip /] break
if {[string first $addr :] < 0 && [IPv4? $addr]} {
set version 4
} elseif {[IPv6? $addr]} {
set version 6
}
return $version
}
proc ::ip::equal {lhs rhs} {
foreach {LHS LM} [SplitIp $lhs] break
foreach {RHS RM} [SplitIp $rhs] break
if {[set version [version $LHS]] != [version $RHS]} {
return -code error "type mismatch:\
cannot compare different address types"
}
if {$version == 4} {set fmt I} else {set fmt I4}
set LHS [Mask$version [Normalize $LHS $version] $LM]
set RHS [Mask$version [Normalize $RHS $version] $RM]
binary scan $LHS $fmt LLL
binary scan $RHS $fmt RRR
foreach L $LLL R $RRR {
if {$L != $R} {return 0}
}
return 1
}
proc ::ip::normalize {ip {Ip4inIp6 0}} {
foreach {ip mask} [SplitIp $ip] break
set version [version $ip]
set s [ToString [Normalize $ip $version] $Ip4inIp6]
if {($version == 6 && $mask != 128) || ($version == 4 && $mask != 32)} {
append s /$mask
}
return $s
}
proc ::ip::contract {ip} {
foreach {ip mask} [SplitIp $ip] break
set version [version $ip]
set s [ToString [Normalize $ip $version]]
if {$version == 6} {
set r ""
foreach o [split $s :] {
append r [format %x: 0x$o]
}
set r [string trimright $r :]
regsub {(?:^|:)0(?::0)+(?::|$)} $r {::} r
} else {
set r [string trimright $s .0]
}
return $r
}
# Returns an IP address prefix.
# For instance:
# prefix 192.168.1.4/16 => 192.168.0.0
# prefix fec0::4/16 => fec0:0:0:0:0:0:0:0
# prefix fec0::4/ffff:: => fec0:0:0:0:0:0:0:0
#
proc ::ip::prefix {ip} {
foreach {addr mask} [SplitIp $ip] break
set version [version $addr]
set addr [Normalize $addr $version]
return [ToString [Mask$version $addr $mask]]
}
# Return the address type. For IPv4 this is one of private, reserved
# or normal
# For IPv6 it is one of site local, link local, multicast, unicast,
# unspecified or loopback.
proc ::ip::type {ip} {
set version [version $ip]
upvar [namespace current]::IPv${version}Ranges types
set ip [prefix $ip]
foreach prefix [array names types] {
set mask [mask $prefix]
if {[equal $ip/$mask $prefix]} {
return $types($prefix)
}
}
if {$version == 4} {
return "normal"
} else {
return "unicast"
}
}
proc ::ip::mask {ip} {
foreach {addr mask} [split $ip /] break
return $mask
}
# -------------------------------------------------------------------------
# Returns true is the argument can be converted into an IPv4 address.
#
proc ::ip::IPv4? {ip} {
if {[catch {Normalize4 $ip}]} {
return 0
}
return 1
}
proc ::ip::IPv6? {ip} {
set octets [split $ip :]
if {[llength $octets] < 3 || [llength $octets] > 8} {
return 0
}
set ndx 0
foreach octet $octets {
incr ndx
if {[string length $octet] < 1} continue
if {[regexp {^[a-fA-F\d]{1,4}$} $octet]} continue
if {$ndx >= [llength $octets] && [IPv4? $octet]} continue
if {$ndx == 2 && [lindex $octets 0] == 2002 && [IPv4? $octet]} continue
#"Invalid IPv6 address \"$ip\""
return 0
}
if {[regexp {^:[^:]} $ip]} {
#"Invalid ipv6 address \"$ip\" (starts with :)"
return 0
}
if {[regexp {[^:]:$} $ip]} {
# "Invalid IPv6 address \"$ip\" (ends with :)"
return 0
}
if {[regsub -all :: $ip "|" junk] > 1} {
# "Invalid IPv6 address \"$ip\" (more than one :: pattern)"
return 0
}
return 1
}
proc ::ip::Mask4 {ip {bits {}}} {
if {[string length $bits] < 1} { set bits 32 }
binary scan $ip I ipx
if {[string is integer $bits]} {
set mask [expr {(0xFFFFFFFF << (32 - $bits)) & 0xFFFFFFFF}]
} else {
binary scan [Normalize4 $bits] I mask
}
return [binary format I [expr {$ipx & $mask}]]
}
proc ::ip::Mask6 {ip {bits {}}} {
if {[string length $bits] < 1} { set bits 128 }
if {[string is integer $bits]} {
set mask [binary format B128 [string repeat 1 $bits]]
} else {
binary scan [Normalize6 $bits] I4 mask
}
binary scan $ip I4 Addr
binary scan $mask I4 Mask
foreach A $Addr M $Mask {
lappend r [expr {$A & $M}]
}
return [binary format I4 $r]
}
# A network address specification is an IPv4 address with an optional bitmask
# Split an address specification into a IPv4 address and a network bitmask.
# This doesn't validate the address portion.
# If a spec with no mask is provided then the mask will be 32
# (all bits significant).
# Masks may be either integer number of significant bits or dotted-quad
# notation.
#
proc ::ip::SplitIp {spec} {
set slash [string last / $spec]
if {$slash != -1} {
incr slash -1
set ip [string range $spec 0 $slash]
incr slash 2
set bits [string range $spec $slash end]
} else {
set ip $spec
if {[string length $ip] > 0 && [version $ip] == 6} {
set bits 128
} else {
set bits 32
}
}
return [list $ip $bits]
}
# Given an IP string from the user, convert to a normalized internal rep.
# For IPv4 this is currently a hex string (0xHHHHHHHH).
# For IPv6 this is a binary string or 16 chars.
proc ::ip::Normalize {ip {version 0}} {
if {$version < 0} {
set version [version $ip]
if {$version < 0} {
return -code error "invalid address \"$ip\":\
value must be a valid IPv4 or IPv6 address"
}
}
return [Normalize$version $ip]
}
proc ::ip::Normalize4 {ip} {
set octets [split $ip .]
if {[llength $octets] != 4} {
set octets [lrange [concat $octets 0 0 0] 0 3]
}
foreach oct $octets {
if {$oct < 0 || $oct > 255} {
return -code error "invalid ip address"
}
}
return [binary format c4 $octets]
}
proc ::ip::Normalize6 {ip} {
set octets [split $ip :]
set ip4embed [string first . $ip]
set len [llength $octets]
if {$len < 0 || $len > 8} {
return -code error "invalid address: this is not an IPv6 address"
}
set result ""
for {set n 0} {$n < $len} {incr n} {
set octet [lindex $octets $n]
if {$octet == {}} {
if {$n == 0 || $n == ($len - 1)} {
set octet \0\0
} else {
set missing [expr {9 - $len}]
if {$ip4embed != -1} {incr missing -1}
set octet [string repeat \0\0 $missing]
}
} elseif {[string first . $octet] != -1} {
set octet [Normalize4 $octet]
} else {
set m [expr {4 - [string length $octet]}]
if {$m != 0} {
set octet [string repeat 0 $m]$octet
}
set octet [binary format H4 $octet]
}
append result $octet
}
if {[string length $result] != 16} {
return -code error "invalid address: \"$ip\" is not an IPv6 address"
}
return $result
}
# This will convert a full ipv4/ipv6 in binary format into a normal
# expanded string rep.
proc ::ip::ToString {bin {Ip4inIp6 0}} {
set len [string length $bin]
set r ""
if {$len == 4} {
binary scan $bin c4 octets
foreach octet $octets {
lappend r [expr {$octet & 0xff}]
}
return [join $r .]
} elseif {$len == 16} {
if {$Ip4inIp6 == 0} {
binary scan $bin H32 hex
for {set n 0} {$n < 32} {incr n} {
append r [string range $hex $n [incr n 3]]:
}
return [string trimright $r :]
} else {
binary scan $bin H24c4 hex octets
for {set n 0} {$n < 24} {incr n} {
append r [string range $hex $n [incr n 3]]:
}
foreach octet $octets {
append r [expr {$octet & 0xff}].
}
return [string trimright $r .]
}
} else {
return -code error "invalid binary address:\
argument is neither an IPv4 nor an IPv6 address"
}
}
# -------------------------------------------------------------------------
# Load extended command set.
source [file join [file dirname [info script]] ipMore.tcl]
# -------------------------------------------------------------------------
package provide ip $::ip::version
# -------------------------------------------------------------------------
# Local Variables:
# indent-tabs-mode: nil
# End:
|