From: paulr Date: Sun, 21 Nov 2010 16:19:20 +0000 (+1100) Subject: a bit more error checking, moved the skew's and hunt values into global variables... X-Git-Url: http://git.pjr.cc/?p=ga4php.git;a=commitdiff_plain;h=33f663b5e670ff27f17bff7a7cfb0f6dc2baa3d8 a bit more error checking, moved the skew's and hunt values into global variables that are set at __construct time. --- diff --git a/doco/TODO.txt b/doco/TODO.txt index 1324c27..1bf0ce6 100644 --- a/doco/TODO.txt +++ b/doco/TODO.txt @@ -4,6 +4,7 @@ The Almighty TODO list: 1.1) put code comments in all the examples 3) implement googles key integrity algorithm thing 4) make better examples +5) turn the radius website into something more generic - i.e. "heres your provisioning site and how to support radius, but you could support anything" Maybe: Move to exceptions diff --git a/lib/ga4php.php b/lib/ga4php.php index d79b99a..0645657 100644 --- a/lib/ga4php.php +++ b/lib/ga4php.php @@ -2,7 +2,21 @@ abstract class GoogleAuthenticator { - function __construct() { + function __construct($totpskew=1, $hotpskew=10, $hotphuntvalue=200000) { + // the hotpskew is how many tokens forward we look to find the input + // code the user used + $this->hotpSkew = $hotpskew; + + // the totpskew value is how many tokens either side of the current + // token we should check, based on a time skew. + $this->totpSkew = $totpskew; + + // the hotphuntvalue is what we use to resync tokens. + // when a user resyncs, we search from 0 to $hutphutvalue to find + // the two token codes the user has entered - 200000 seems like overkill + // really as i cant imagine any token out there would ever make it + // past 200000 token code requests. + $this->hotpHuntValue = $hotphuntvalue; } abstract function getData($username); @@ -53,9 +67,8 @@ abstract class GoogleAuthenticator { $data = $this->internalGetData($username); $data["tokentype"] = $tokentype; - $this->internalPutData($username, $data); + return $this->internalPutData($username, $data); - return true; } @@ -69,7 +82,9 @@ abstract class GoogleAuthenticator { $token["tokenkey"] = $hkey; $token["tokentype"] = $ttype; - $this->internalPutData($username, $token); + if(!$this->internalPutData($username, $token)) { + return false; + } return $key; } @@ -128,7 +143,7 @@ abstract class GoogleAuthenticator { case "HOTP": error_log("in hotp"); $st = $tlid; - $en = $tlid+20; + $en = $tlid+$this->hotpSkew; for($i=$st; $i<$en; $i++) { $stest = $this->oath_hotp($tkey, $i); error_log("testing code: $code, $stest, $tkey, $tid"); @@ -143,10 +158,10 @@ abstract class GoogleAuthenticator { case "TOTP": error_log("in totp"); $t_now = time(); - $t_ear = $t_now - 45; - $t_lat = $t_now + 60; - $t_st = ((int)($t_ear/30)); - $t_en = ((int)($t_lat/30)); + $t_ear = $t_now - ($this->totpSkew*$tokendata["tokentimer"]); + $t_lat = $t_now + ($this->totpSkew*$tokendata["tokentimer"]); + $t_st = ((int)($t_ear/$tokendata["tokentimer"])); + $t_en = ((int)($t_lat/$tokendata["tokentimer"])); //error_log("kmac: $t_now, $t_ear, $t_lat, $t_st, $t_en"); for($i=$t_st; $i<=$t_en; $i++) { $stest = $this->oath_hotp($tkey, $i); @@ -157,7 +172,7 @@ abstract class GoogleAuthenticator { } break; default: - echo "how the frig did i end up here?"; + return false; } return false; @@ -191,7 +206,7 @@ abstract class GoogleAuthenticator { switch($ttype) { case "HOTP": $st = 0; - $en = 200000; + $en = $this->hotpHuntValue; for($i=$st; $i<$en; $i++) { $stest = $this->oath_hotp($tkey, $i); //echo "code: $code, $stest, $tkey\n"; @@ -268,6 +283,7 @@ abstract class GoogleAuthenticator { } + // TODO: lots of error checking goes in here function helperb322hex($b32) { $alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; @@ -298,6 +314,7 @@ abstract class GoogleAuthenticator { return $out2; } + // TODO: lots of error checking goes in here function helperhex2b32($hex) { $alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"; @@ -321,6 +338,10 @@ abstract class GoogleAuthenticator { return $out2; } + // i've put alot of faith in the code from the + // php site's examples for the hash_hmac algorithm + // i assume its mostly correct but i should do + // some testing to verify this is actually the case function oath_hotp($key, $counter) { $key = pack("H*", $key); @@ -342,6 +363,7 @@ abstract class GoogleAuthenticator { return str_pad($this->oath_truncate($hash), 6, "0", STR_PAD_LEFT); } + function oath_truncate($hash, $length = 6) { // Convert to dec @@ -370,6 +392,12 @@ abstract class GoogleAuthenticator { private $errorText; private $errorCode; + private $hotpSkew; + private $totpSkew; + + private $hotpHuntValue; + + /* * error codes * 1: Auth Failed diff --git a/radius/www/index.php b/radius/www/index.php index 9a0896f..a893e2c 100644 --- a/radius/www/index.php +++ b/radius/www/index.php @@ -10,4 +10,6 @@ * I wonder if we can store data in the backend database itself? that would be interesting * then user admin would be less disconnected. I.e. if a user was deleted from AD, their token * data should disappear with them. - */ \ No newline at end of file + */ + +?> \ No newline at end of file