X-Git-Url: http://www.lcore.org/git/lcore.git/blobdiff_plain/4782a5c5afee47721cc617daa40dd29828342c2b..d0705a212a4b27b3cf9a3aaf007db8b6db443092:/binipstuff.pas diff --git a/binipstuff.pas b/binipstuff.pas old mode 100755 new mode 100644 index ebb9f9c..675b03e --- a/binipstuff.pas +++ b/binipstuff.pas @@ -6,6 +6,8 @@ unit binipstuff; interface +{$include lcoreconfig.inc} + {$ifndef win32} {$ifdef ipv6} uses sockets; @@ -82,10 +84,60 @@ type {$endif} {$endif} + + + {$ifdef ipv6} + {$ifdef ver1_0} + cuint16=word; + cuint32=dword; + sa_family_t=word; + + TInetSockAddr6 = packed record + sin6_family: word; + sin6_port: word; + sin6_flowinfo: uint32; + sin6_addr: tin6_addr; + sin6_scope_id: uint32; + end; + {$endif} + {$endif} + TinetSockAddrv = packed record + case integer of + 0: (InAddr:TInetSockAddr); + {$ifdef ipv6} + 1: (InAddr6:TInetSockAddr6); + {$endif} + end; + Pinetsockaddrv = ^Tinetsockaddrv; + + type + tsockaddrin=TInetSockAddr; + + + +{ +bin IP list code, by beware +while this is really just a string, on the interface side it must be treated +as an opaque var which is passed as "var" when it needs to be modified} + + tbiniplist=string; + +function biniplist_new:tbiniplist; +procedure biniplist_add(var l:tbiniplist;ip:tbinip); +function biniplist_getcount(const l:tbiniplist):integer; +function biniplist_get(const l:tbiniplist;index:integer):tbinip; +procedure biniplist_set(var l:tbiniplist;index:integer;ip:tbinip); +procedure biniplist_setcount(var l:tbiniplist;newlen:integer); +procedure biniplist_free(var l:tbiniplist); +procedure biniplist_addlist(var l:tbiniplist;const l2:tbiniplist); +function biniplist_tostr(const l:tbiniplist):string; +function isbiniplist(const l:tbiniplist):boolean; + function htons(w:word):word; function htonl(i:uint32):uint32; function ipstrtobin(const s:string;var binip:tbinip):boolean; +function ipstrtobinf(const s:string):tbinip; function ipbintostr(const binip:tbinip):string; {$ifdef ipv6} function ip6bintostr(const bin:tin6_addr):string; @@ -93,12 +145,21 @@ function ip6strtobin(const s:string;var bin:tin6_addr):boolean; {$endif} function comparebinip(const ip1,ip2:tbinip):boolean; +procedure maskbits(var binip:tbinip;bits:integer); +function comparebinipmask(ip1,ip2:tbinip;bits:integer):boolean; + +procedure addipsoffamily(var l:tbiniplist;const l2:tbiniplist;family:integer); {deprecated} function longip(s:string):longint; +function needconverttov4(const ip:tbinip):boolean; procedure converttov4(var ip:tbinip); +function inaddrvtobinip(inaddrv:tinetsockaddrv):tbinip; +function makeinaddrv(addr:tbinip;port:string;var inaddr:tinetsockaddrv):integer; +function inaddrsize(inaddr:tinetsockaddrv):integer; + implementation uses sysutils; @@ -121,6 +182,46 @@ begin {$endif} end; + +function inaddrvtobinip(inaddrv:tinetsockaddrv):tbinip; +begin + result.family := inaddrv.inaddr.family; + if result.family = AF_INET then result.ip := inaddrv.inaddr.addr; + {$ifdef ipv6} + if result.family = AF_INET6 then result.ip6 := inaddrv.inaddr6.sin6_addr; + {$endif} +end; + +function makeinaddrv(addr:tbinip;port:string;var inaddr:tinetsockaddrv):integer; +begin + result := 0; +{ biniptemp := forwardlookup(addr,10);} + fillchar(inaddr,sizeof(inaddr),0); + //writeln('converted address '+addr+' to binip '+ipbintostr(biniptemp)); + if addr.family = AF_INET then begin + inAddr.InAddr.family:=AF_INET; + inAddr.InAddr.port:=htons(strtointdef(port,0)); + inAddr.InAddr.addr:=addr.ip; + result := sizeof(tinetsockaddr); + end else + {$ifdef ipv6} + if addr.family = AF_INET6 then begin + inAddr.InAddr6.sin6_family:=AF_INET6; + inAddr.InAddr6.sin6_port:=htons(strtointdef(port,0)); + inAddr.InAddr6.sin6_addr:=addr.ip6; + result := sizeof(tinetsockaddr6); + end; + {$endif} +end; + +function inaddrsize(inaddr:tinetsockaddrv):integer; +begin + {$ifdef ipv6} + if inaddr.inaddr.family = AF_INET6 then result := sizeof(tinetsockaddr6) else + {$endif} + result := sizeof(tinetsockaddr); +end; + {internal} {converts dotted v4 IP to longint. returns host endian order} function longip(s:string):longint; @@ -173,6 +274,11 @@ begin end; +function ipstrtobinf; +begin + ipstrtobin(s,result); +end; + function ipstrtobin(const s:string;var binip:tbinip):boolean; begin binip.family := 0; @@ -218,7 +324,7 @@ end; { IPv6 address binary to/from string conversion routines -written by beware (steendijk at xs4all dot nl) +written by beware - implementation does not depend on other ipv6 code such as the tin6_addr type, the parameter can also be untyped. @@ -378,18 +484,151 @@ begin result := (ip1.family = ip2.family); end; -{converts a binary IP to v4 if it is a v6 IP in the v4 range} -procedure converttov4(var ip:tbinip); +procedure maskbits(var binip:tbinip;bits:integer); +const + ipmax={$ifdef ipv6}15{$else}3{$endif}; +type tarr=array[0..ipmax] of byte; +var + arr:^tarr; + a,b:integer; +begin + arr := @binip.ip; + if bits = 0 then b := 0 else b := ((bits-1) div 8)+1; + for a := b to ipmax do begin + arr[a] := 0; + end; + if (bits and 7 <> 0) then begin + arr[bits shr 3] := arr[bits div 8] and not ($ff shr (bits and 7)) + end; +end; + +function comparebinipmask; +begin + maskbits(ip1,bits); + maskbits(ip2,bits); + result := comparebinip(ip1,ip2); +end; + +function needconverttov4(const ip:tbinip):boolean; begin {$ifdef ipv6} if ip.family = AF_INET6 then begin if (ip.ip6.u6_addr32[0] = 0) and (ip.ip6.u6_addr32[1] = 0) and (ip.ip6.u6_addr16[4] = 0) and (ip.ip6.u6_addr16[5] = $ffff) then begin - ip.family := AF_INET; - ip.ip := ip.ip6.s6_addr32[3]; + result := true; + exit; end; end; {$endif} + + result := false; +end; + +{converts a binary IP to v4 if it is a v6 IP in the v4 range} +procedure converttov4(var ip:tbinip); +begin + {$ifdef ipv6} + if needconverttov4(ip) then begin + ip.family := AF_INET; + ip.ip := ip.ip6.s6_addr32[3]; + end; + {$endif} +end; + +{-----------biniplist stuff--------------------------------------------------} + +const + biniplist_prefix='bipl'#0; + //fpc 1.0.x doesn't seem to like use of length function in a constant + //definition + //biniplist_prefixlen=length(biniplist_prefix); + + biniplist_prefixlen=5; + +function biniplist_new:tbiniplist; +begin + result := biniplist_prefix; end; +procedure biniplist_add(var l:tbiniplist;ip:tbinip); +var + a:integer; +begin + a := biniplist_getcount(l); + biniplist_setcount(l,a+1); + biniplist_set(l,a,ip); +end; + +function biniplist_getcount(const l:tbiniplist):integer; +begin + result := (length(l)-biniplist_prefixlen) div sizeof(tbinip); +end; + +function biniplist_get(const l:tbiniplist;index:integer):tbinip; +begin + if (index >= biniplist_getcount(l)) then begin + fillchar(result,sizeof(result),0); + exit; + end; + move(l[index*sizeof(tbinip)+1+biniplist_prefixlen],result,sizeof(result)); +end; + +procedure biniplist_set(var l:tbiniplist;index:integer;ip:tbinip); +begin + uniquestring(l); + move(ip,l[index*sizeof(tbinip)+1+biniplist_prefixlen],sizeof(ip)); +end; + +procedure biniplist_setcount(var l:tbiniplist;newlen:integer); +begin + setlength(l,(sizeof(tbinip)*newlen)+biniplist_prefixlen); +end; + +procedure biniplist_free(var l:tbiniplist); +begin + l := ''; +end; + +procedure biniplist_addlist; +begin + l := l + copy(l2,biniplist_prefixlen+1,maxlongint); +end; + +function biniplist_tostr(const l:tbiniplist):string; +var + a:integer; +begin + result := '('; + for a := 0 to biniplist_getcount(l)-1 do begin + if result <> '(' then result := result + ', '; + result := result + ipbintostr(biniplist_get(l,a)); + end; + result := result + ')'; +end; + +function isbiniplist(const l:tbiniplist):boolean; +var + i : integer; +begin + for i := 1 to biniplist_prefixlen do begin + if biniplist_prefix[i] <> l[i] then begin + result := false; + exit; + end; + end; + result := true; +end; + +procedure addipsoffamily(var l:tbiniplist;const l2:tbiniplist;family:integer); +var + a:integer; + biniptemp:tbinip; +begin + for a := biniplist_getcount(l2)-1 downto 0 do begin + biniptemp := biniplist_get(l2,a); + if (biniptemp.family = family) then biniplist_add(l,biniptemp); + end; +end; + + end.