X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=brisk.git;a=blobdiff_plain;f=web%2FObj%2Fbrisk.phh;h=6061aab3154d81b615e05ef06d6fdf02df4a0153;hp=a57beff0ea0332acac72e654bafb68e45621b277;hb=444d878e397b2c9e888317ac7987c9cc561f1944;hpb=8731028d57608423cec432688bffc32d7763b559 diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index a57beff..6061aab 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -89,6 +89,7 @@ define('BRISK_SINGLE_SESS', ""); define('DEBUGGING', "no-debugging"); require_once("$DOCUMENT_ROOT/Etc/".BRISK_CONF); +require_once("${G_base}Obj/ipclass.phh"); $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', 'en' => 'back standing' ), @@ -153,12 +154,12 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', $G_lng = langtolng($G_lang); $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "4.16.0"; +$G_brisk_version = "4.18.2"; /* MLANG: ALL THE INFO STRINGS IN brisk.phh */ -$root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': rifattorizzazione del motore di Brisk e messaggio di uscita.', +$root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': Puffin riattivato, accessi da cloud disattivati, corretto bug sulla gestione di puffin.', 'Se vuoi iscriverti alla Mailing List, cliccala!' ), - 'en' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NEWS: engine refactoring and logout message.', + 'en' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NEWS: Puffin re-enabled, cloud accesses disabled, fixed puffin mgmt bug.', 'If you want to subscribe our Mailing List, click it!' ) ); $G_room_help = array( 'it' => ' @@ -445,6 +446,7 @@ function versions_cmp($v1, $v2) return 0; } +// return string with IPV4 address function addrtoipv4($addr) { $ipv4addr_arr = explode(':' , $addr); @@ -583,33 +585,6 @@ function xcapemesg($s) } -class IPClass { - var $addr; - var $mask; - - function IPClass($ipset) - { - //split - $elem = split("/", $ipset, 2); - $addr = $elem[0]; - $mask = (int)$elem[1]; - - //convert mask - - $this->mask = ((1<<($mask))-1) << (32 - $mask); - $this->addr = ip2long($addr) & $this->mask; - - fprintf(STDERR, "New ipclass: %x (%x)\n", $this->addr, $this->mask); - } - - function match($ip) - { - fprintf(STDERR, "IP: %x, ADDR: %x, MASK: %x -> (%d)\n", - $ip, $this->addr, $this->mask, ((ip2long($ip) & $this->mask) == $this->addr)); - return (($ip & $this->mask) == $this->addr); - } -} - class Vect { function Vect($a) { @@ -1063,8 +1038,9 @@ class Brisk var $garbage_timeout; var $shm_sz; - var $ban_list; // ban list (authized allowed) - var $black_list; // black list (anti-dos, noone allowed) + var $ban_list; // ban list (authized allowed) + var $black_list; // black list (anti-dos, noone allowed) + var $cloud_smasher; // list of cloud ip ranges to be rejected var $ghost_sess; var $delay_mgr; @@ -1078,13 +1054,13 @@ class Brisk } // constructor - static function create($crystal_filename, $ban_list, $black_list) { + static function create($crystal_filename, $ban_list, $black_list, $cloud_smasher, $prov_proxy) { if (($brisk_ser = @file_get_contents($crystal_filename)) != FALSE) { if (($brisk = unserialize($brisk_ser)) != FALSE) { fprintf(STDERR, "ROOM FROM FILE\n"); rename($crystal_filename, $crystal_filename.".old"); - $brisk->reload(TRUE, $ban_list, $black_list); + $brisk->reload(TRUE, $ban_list, $black_list, $cloud_smasher); return($brisk); } @@ -1098,8 +1074,9 @@ class Brisk $thiz->table = array(); $thiz->match = array(); - $thiz->ban_list = NULL; - $thiz->black_list = NULL; + $thiz->ban_list = IpClass::create(); + $thiz->black_list = IpClass::create(); + $thiz->cloud_smasher = IpClass::create(); $thiz->ghost_sess = new GhostSess(); for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { @@ -1116,43 +1093,24 @@ class Brisk static::$sess_cur = FALSE; - $thiz->reload(TRUE, $ban_list, $black_list); + $thiz->reload(TRUE, $ban_list, $black_list, $cloud_smasher); return ($thiz); } - function ipclass_update($ip_out_s, $ip_in) - { - fprintf(STDERR, "N_IN: %d\n", count($ip_in)); - - $ip_out = &$this->$ip_out_s; - - // if already set clean the ban_list property - if ($ip_out) { - $ct = count($ip_out); - for ($i = 0 ; $i < $ct ; $i++) { - unset($ip_out[$i]); - } - unset($ip_out); - } - - $ip_out = array(); - for ($i = 0 ; $i < count($ip_in) ; $i++) { - $ip_out[$i] = new IPClass($ip_in[$i]); - } - } - - function reload($is_first, $ban_list, $black_list) + function reload($is_first, $ban_list, $black_list, $cloud_smasher) { - fprintf(STDERR, "RELOAD STUFF (%d)(%d)\n", count($ban_list), count($black_list)); + fprintf(STDERR, "RELOAD STUFF (%d)(%d)(%d)\n", + count($ban_list), count($black_list), count($cloud_smasher)); if (defined('CURL_DE_SAC_VERS')) { if (brisk_cds_reload($this) == FALSE) { exit(12); } } - $this->ipclass_update("ban_list", $ban_list); - $this->ipclass_update("black_list", $black_list); + $this->ban_list->update($ban_list); + $this->black_list->update($black_list); + $this->cloud_smasher->update($cloud_smasher); if (!$is_first) { $this->banned_kickoff(); @@ -1187,7 +1145,8 @@ class Brisk continue; // check if the IP is blacklisted - if ($this->black_check($user_cur->ip)) { + if ($this->black_check($user_cur->ip) || + $this->cloud_check($user_cur->ip)) { $user_cur->lacc = 0; $is_ban = TRUE; continue; @@ -1209,32 +1168,17 @@ class Brisk function ban_check($ip_str) { - $ip = ip2long($ip_str); - fprintf(STDERR, "Brisk::ban_check %d\n", count($this->ban_list)); - for ($i = 0 ; $i < count($this->ban_list) ; $i++) { - fprintf(STDERR, "ban_list[%d] = %x (%x)\n", $i, - $this->ban_list[$i]->addr, $this->ban_list[$i]->mask); - if ($this->ban_list[$i]->match($ip)) { - fprintf(STDERR, "\n\nMATCHA!\n\n"); - return(TRUE); - } - } - return (FALSE); + return ($this->ban_list->check($ip_str)); } function black_check($ip_str) { - $ip = ip2long($ip_str); - fprintf(STDERR, "Brisk::black_check %d\n", count($this->black_list)); - for ($i = 0 ; $i < count($this->black_list) ; $i++) { - fprintf(STDERR, "black_list[%d] = %x (%x)\n", $i, - $this->black_list[$i]->addr, $this->black_list[$i]->mask); - if ($this->black_list[$i]->match($ip)) { - fprintf(STDERR, "\n\nMATCHA!\n\n"); - return(TRUE); - } - } - return (FALSE); + return ($this->black_list->check($ip_str)); + } + + function cloud_check($ip_str) + { + return ($this->cloud_smasher->check($ip_str)); } function users_cleanup() @@ -1806,6 +1750,68 @@ class Brisk } } + function kickuser($user, $out_reas) + { + $curtime = time(); + + fprintf(STDERR, "MOP: GHOST_SESS: %d\n", $out_reas); + + $this->ghost_sess->push($curtime, $user->sess, $out_reas); + + fprintf(STDERR, "MOP: status out: %s %s %d\n", $user->stat, $user->subst, $user->idx); + if ($user->stat == 'table' && $user->subst != 'sitdown') { + $bin5 = &$this->match[$user->table]; + $user_bin5 = &$bin5->user[$user->table_pos]; + fprintf(STDERR, "MOP: status in: %s %s %d\n", $user_bin5->stat, $user_bin5->subst, $user_bin5->idx); + $bin5->table_wakeup($user_bin5); + $user->the_end = TRUE; + $this->room_wakeup($user); + return; + } + + if ($user->stat == 'table' || $user->stat == 'room') { + $user->the_end = TRUE; + if ($user->subst == 'sitdown' || $user->stat == 'table') { + $this->room_wakeup($user); + } + else if ($user->subst == 'standup') { + fprintf(STDERR, "MOP: KICK here [%s]\n", btrace_line(debug_backtrace())); + $this->room_outstandup($user); + } + else { + log_rd2("LOGOUT FROM WHAT ???"); + } + } + } + + function kickuser_by_name($name, $out_reas) + { + for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { + $user_out = $this->user[$i]; + if (strcmp($user_out->name, $name) == 0) { + return ($this->kickuser($user_out, $out_reas)); + } + } + return FALSE; + } + + function kickuser_by_sess($sess, $out_reas) + { + for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { + $user_out = $this->user[$i]; + if (strcmp($user_out->sess, $sess) == 0) { + return ($this->kickuser($user_out, $out_reas)); + } + } + return FALSE; + } + + function kickuser_by_idx($idx, $out_reas) + { + $user_out = $this->user[$idx]; + return ($this->kickuser($user_out, $out_reas)); + } + function chatt_send($user, $mesg) { GLOBAL $G_base, $G_alarm_passwd, $mlang_brisk, $G_lang; @@ -1871,35 +1877,9 @@ class Brisk // just for development use currently else if (FALSE && strncmp($msg, "/out ", 5) == 0) { fprintf(STDERR, "MOP OUT\n"); - $target = substr($msg, 5); - for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { - $user_out = $this->user[$i]; - if (!strcmp($user_out->name, $target)) { - - $user_out->the_end = TRUE; - fprintf(STDERR, "MOP: GHOST_SESS: %d\n", GHOST_SESS_REAS_LOUT); - $this->ghost_sess->push($curtime, $user_out->sess, GHOST_SESS_REAS_LOUT); - - if ($user_out->stat == 'table' || $user_out->stat == 'room') { - if ($user_out->subst == 'sitdown' || $user_out->stat == 'table') { - $this->room_wakeup($user_out); - } - else if ($user_out->subst == 'standup') { - $this->room_outstandup($user_out); - } - else { - log_rd2("LOGOUT FROM WHAT ???"); - } - } - - fprintf(STDERR, "MOP: OUT FIND [%s] step %d rd_step %d\n", $target, $user_out->step, $user_out->rd_step); - break; - } - } + $target = substr($msg, 5); + $this->kickuser_by_name($target, GHOST_SESS_REAS_ANON); } - - - else if (strncmp($msg, "/alarm ", 7) == 0) { if (strncmp($msg, "/alarm to ", 10) == 0) { $sp_pos = strpos($msg, " ", 10); @@ -1982,7 +1962,7 @@ class Brisk $to_user = nickserv_msg($dt, $mlang_brisk['mesgmust'][$G_lang]); } } - else if (strncmp($msg, "/nick ", 6) == 0) { + else if (FALSE && strncmp($msg, "/nick ", 6) == 0) { log_main("chatt_send BEGIN"); do { @@ -2143,17 +2123,19 @@ class Brisk if ( TRUE && (! $user->is_auth()) ) { $to_user = nickserv_msg($dt, xcape("Visto l'elevato numero di molestatori che ultimamente hanno preso dimora su Brisk abbiamo deciso")); $to_user .= nickserv_msg($dt, xcape("di disattivare temporaneamente la chat in room per i non registrati, non ce ne vogliate e buone feste.")); - $aug_head = array("Tanti", "Tantissimi", "Un enormità", "Un milione", "Un' esagerazione"); - $aug_body = array("a tutti gli utenti", "a tutti gli uomini", "a tutte le donne", "a tutti gli utenti"); - $aug_tail = array("di Brisk", "del sito", "della ciurma", "della comitiva", "del gruppo"); - - $auguri = sprintf("%s auguri %s %s.", - $aug_head[mt_rand(0, count($aug_head)-1)], - $aug_body[mt_rand(0, count($aug_body)-1)], - $aug_tail[mt_rand(0, count($aug_tail)-1)]); - - $to_room = sprintf('chatt_sub("%s",[%d,"%s"],"%s");', $dt, $user->flags, xcape($user->name), - xcape($auguri)); + if (FALSE) { + $aug_head = array("Tanti", "Tantissimi", "Un enormità", "Un milione", "Un' esagerazione"); + $aug_body = array("a tutti gli utenti", "a tutti gli uomini", "a tutte le donne", "a tutti gli utenti"); + $aug_tail = array("di Brisk", "del sito", "della ciurma", "della comitiva", "del gruppo"); + + $auguri = sprintf("%s auguri %s %s.", + $aug_head[mt_rand(0, count($aug_head)-1)], + $aug_body[mt_rand(0, count($aug_body)-1)], + $aug_tail[mt_rand(0, count($aug_tail)-1)]); + + $to_room = sprintf('chatt_sub("%s",[%d,"%s"],"%s");', $dt, $user->flags, xcape($user->name), + xcape($auguri)); + } } else { $to_user = sprintf('chatt_sub("%s",[%d,"%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape($msg)); @@ -2635,17 +2617,22 @@ class Brisk function request_mgr(&$s_a_p, $header, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie) { - GLOBAL $G_ban_list, $G_black_list; + GLOBAL $G_ban_list, $G_black_list, $G_cloud_smasher; printf("NEW_SOCKET (root): %d PATH [%s]\n", intval($new_socket), $path); - $remote_addr = addrtoipv4($addr); - fprintf(STDERR, "\n\n\n PRE_BLACK_CHECK \n\n\n"); - if ($this->black_check($remote_addr)) { + fprintf(STDERR, "\n\n\n PRE_BLACK [%s]\n\n\n", $addr); + if ($this->black_check($addr)) { // TODO: waiting async 5 sec before close - fprintf(STDERR, "\n\n\n BLACK_CHECK \n\n\n"); + fprintf(STDERR, "\n\n\n BLACK CHECK\n\n\n"); return (FALSE); } + if ($path != "" && $path != "index.php") { + if ($this->cloud_check($addr)) { + // TODO: waiting async 5 sec before close + return (FALSE); + } + } $enc = get_encoding($header); if (isset($header['User-Agent'])) {