X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fauth.phh;h=fdebea7009717251bd11e21cec6c52c41bee5094;hb=9fe7c6c2413b91e1b738603d4fbc039e59d895db;hp=6515f0047496449986264f976b7a5584ecc55417;hpb=09c75c33b6a297891cc3f4a0990a31003beab5b9;p=brisk.git diff --git a/web/Obj/auth.phh b/web/Obj/auth.phh index 6515f00..fdebea7 100644 --- a/web/Obj/auth.phh +++ b/web/Obj/auth.phh @@ -64,11 +64,13 @@ class Challenges { { $chal = null; + log_auth("xxx", sprintf("Challenges::add [%s]\n", $login)); // FIXME Checks here if ($login == '') { return ($G_false); } + log_auth("xxx", "LOOPI item: ".$i." tstamp: ".$this->item[$i]->tstamp." curtime: ".$curtime); if (($chal = new Challenge($login, $token, $ip, $tstamp)) == null) { return ($G_false); @@ -118,7 +120,7 @@ class Challenges { $ismod = FALSE; for ($i = 0 ; $i < $this->item_n ; $i++) { - log_auth("LOOPI item: ".$i." tstamp: ".$this->item[$i]->tstamp." curtime: ".$curtime); + log_auth("xxx", "LOOPI item: ".$i." tstamp: ".$this->item[$i]->tstamp." curtime: ".$curtime); if ($this->item[$i]->tstamp < $curtime) { for ($e = $i ; $e < ($this->item_n - 1) ; $e++) { $this->item[$e] = $this->item[$e + 1]; @@ -126,14 +128,14 @@ class Challenges { $i--; $this->item_n--; - log_auth("LOOPI unset: ".$this->item_n); + log_auth("xxx", "LOOPI unset: ".$this->item_n); unset($this->item[$this->item_n]); $ismod = TRUE; $this->mod = TRUE; } } - log_auth("LOOPI AFTER: ".count($this->item)." _n:" .$this->item_n ); + log_auth("xxx", "LOOPI AFTER: ".count($this->item)." _n:" .$this->item_n ); $this->garbage_timeout = $curtime + CHAL_GARBAGE_TIMEOUT; @@ -244,13 +246,11 @@ class Challenges { function lock_data() { if (($tok = @ftok(FTOK_PATH."/challenges", "B")) == -1) { - echo "FTOK FAILED"; - exit; + return (FALSE); } // echo "FTOK ".$tok."
"; if (($res = sem_get($tok)) == FALSE) { - echo "SEM_GET FAILED"; - exit; + return (FALSE); } if (sem_acquire($res)) { log_lock("LOCK challenges");