refactored exit management and add ghost_session class to manage welcome messages
[brisk.git] / web / Obj / sac-a-push.phh
1 <?php
2 /*
3  *  brisk - Obj/sac-a-push.phh
4  *
5  *  Copyright (C) 2012-2014 Matteo Nastasi
6  *                          mailto: nastasi@alternativeoutput.it 
7  *                                  matteo.nastasi@milug.org
8  *                          web: http://www.alternativeoutput.it
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * General Public License for more details. You should have received a
19  * copy of the GNU General Public License along with this program; if
20  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21  * Suite 330, Boston, MA 02111-1307, USA.
22  *
23  */
24
25 define('SITE_PREFIX', '/brisk/');
26 define('SITE_PREFIX_LEN', 7);
27
28 define('DIRECT_ST_READ',  1);
29 define('DIRECT_ST_WRITE', 2);
30
31 declare(ticks = 1);
32
33 function global_dump()
34 {
35     GLOBAL $G_alarm_passwd, $G_ban_list, $G_black_list, $G_btrace_pref_sub, $G_dbauth;
36     GLOBAL $G_dbpfx, $G_donors_all, $G_donors_cur, $G_is_local, $G_lang;
37     GLOBAL $G_poll_entries, $G_poll_name, $G_poll_title, $G_proxy_white_list;
38     GLOBAL $G_room_roadmap, $G_shutdown;
39     GLOBAL $G_splash_content, $G_splash_contents, $G_splash_cont_idx;
40     GLOBAL $G_splash_h, $G_splash_idx, $G_splash_interval, $G_splash_timeout;
41     GLOBAL $G_splash_w, $G_topbanner, $G_with_donors, $G_with_poll;
42     GLOBAL $G_with_splash, $G_sidebanner, $G_sidebanner_idx;
43     GLOBAL $G_with_topbanner;
44
45     fprintf(STDERR, "G_alarm_passwd = [%s]\n", print_r($G_alarm_passwd, TRUE));
46     fprintf(STDERR, "G_ban_list = [%s]\n", print_r($G_ban_list, TRUE));
47     fprintf(STDERR, "G_black_list = [%s]\n", print_r($G_black_list, TRUE));
48     fprintf(STDERR, "G_btrace_pref_sub = [%s]\n", print_r($G_btrace_pref_sub, TRUE));
49     fprintf(STDERR, "G_dbauth = [%s]\n", print_r($G_dbauth, TRUE));
50     fprintf(STDERR, "G_dbpfx = [%s]\n", print_r($G_dbpfx, TRUE));
51     fprintf(STDERR, "G_donors_all = [%s]\n", print_r($G_donors_all, TRUE));
52     fprintf(STDERR, "G_donors_cur = [%s]\n", print_r($G_donors_cur, TRUE));
53     fprintf(STDERR, "G_is_local = [%s]\n", print_r($G_is_local, TRUE));
54     fprintf(STDERR, "G_lang = [%s]\n", print_r($G_lang, TRUE));
55     fprintf(STDERR, "G_poll_entries = [%s]\n", print_r($G_poll_entries, TRUE));
56     fprintf(STDERR, "G_poll_name = [%s]\n", print_r($G_poll_name, TRUE));
57     fprintf(STDERR, "G_poll_title = [%s]\n", print_r($G_poll_title, TRUE));
58     fprintf(STDERR, "G_proxy_white_list = [%s]\n", print_r($G_proxy_white_list, TRUE));
59     fprintf(STDERR, "G_room_roadmap = [%s]\n", print_r($G_room_roadmap, TRUE));
60     fprintf(STDERR, "G_shutdown = [%s]\n", print_r($G_shutdown, TRUE));
61     fprintf(STDERR, "G_splash_content = [%s]\n", print_r($G_splash_content, TRUE));
62     fprintf(STDERR, "G_splash_contents = [%s]\n", print_r($G_splash_contents, TRUE));
63     fprintf(STDERR, "G_splash_cont_idx = [%s]\n", print_r($G_splash_cont_idx, TRUE));
64     fprintf(STDERR, "G_splash_h = [%s]\n", print_r($G_splash_h, TRUE));
65     fprintf(STDERR, "G_splash_idx = [%s]\n", print_r($G_splash_idx, TRUE));
66     fprintf(STDERR, "G_splash_interval = [%s]\n", print_r($G_splash_interval, TRUE));
67     fprintf(STDERR, "G_splash_timeout = [%s]\n", print_r($G_splash_timeout, TRUE));
68     fprintf(STDERR, "G_splash_w = [%s]\n", print_r($G_splash_w, TRUE));
69     fprintf(STDERR, "G_topbanner = [%s]\n", print_r($G_topbanner, TRUE));
70     fprintf(STDERR, "G_with_donors = [%s]\n", print_r($G_with_donors, TRUE));
71     fprintf(STDERR, "G_with_poll = [%s]\n", print_r($G_with_poll, TRUE));
72     fprintf(STDERR, "G_sidebanner = [%s]\n", print_r($G_sidebanner, TRUE));
73     fprintf(STDERR, "G_sidebanner_idx = [%s]\n", print_r($G_sidebanner_idx, TRUE));
74     fprintf(STDERR, "G_with_splash = [%s]\n", print_r($G_with_splash, TRUE));
75     fprintf(STDERR, "G_with_topbanner = [%s]\n", print_r($G_with_topbanner, TRUE));
76 }
77
78 function pid_save()
79 {
80     $pid = getmypid();
81     $fname = LEGAL_PATH."/brisk.pid";
82
83     if (file_exists($fname)) {
84         log_crit("WARN: brisk.pid already exists");
85     }
86     file_put_contents($fname, sprintf("%d\n", $pid));
87 }
88
89 function pid_remove()
90 {
91     $fname = LEGAL_PATH."/brisk.pid";
92
93     if (file_exists($fname)) {
94         unlink($fname);
95     }
96 }
97
98 function post_manage(&$post, $line)
99 {
100     $a = explode('&', $line);
101     for ($i = 0 ; $i < count($a) ; $i++) {
102         $b = explode('=', $a[$i]);
103         if (isset($b[0])) {
104             if (isset($b[1])) {
105                 $post[$b[0]] = urldecode($b[1]);
106             }
107             else {
108                 $post[$b[0]] = "";
109             }
110         }
111     }
112 }
113
114 function spu_process_info($stream_info, &$method, &$header, &$get, &$post, &$cookie, &$rest, &$cont)
115 {
116     $check_post = FALSE;
117     $header = array();
118     $get = array();
119     $post = array();
120     $rest = 0;
121     foreach(preg_split("/(\r?\n)/", $stream_info) as $line) {
122         printf("LINE: [%s]\n", $line);
123         if ($check_post) {
124             if (!isset($header['The-Request'])) {
125                 return FALSE;
126             }
127             $req = explode(" ", $header['The-Request']);
128             $method = $req[0];
129
130             if (isset($header['Cookie'])) {
131
132                 // LINE: [Cookie:sess=50e053a9511ef; CO_splashdate4=1356420646; CO_list=all; table_idx=7; table_token=510d494986925; lang=it; CO_bin5_pref_ring_endauct=false; CO_splashdate5=1358372822; CO_splashdate1=1363203374; CO_splashdate2=1363374826; __utma=43654517.209888411.1356605271.1356605271.1356605271.1; __utmz=43654517.1356605271.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)]
133
134                 $cookies = explode("; ", $header['Cookie']);
135                 for ($i = 0 ; $i < count($cookies) ; $i++) {
136                     $name = mb_strstr($cookies[$i], "=", TRUE, 'UTF-8');
137                     if ($name == FALSE) {
138                         if (mb_strlen($cookies[$i]) > 0) {
139                             $cookie[$cookies[$i]] = "";
140                         }
141                         else {
142                             printf("WARNING: malformat cookie element [%s]\n", $cookies[$i]);
143                         }
144                         continue;
145                     }
146
147                     $value = mb_substr($cookies[$i], mb_strlen($name)+1, 10140, 'UTF-8');
148                     $cookie[$name] = urldecode($value);
149                 }
150             }
151             // GET params management
152             $get_vars = explode('?', $req[1], 2);
153             $path = $get_vars[0];
154             if (count($get_vars) > 1) {
155                 $a = explode('&', $get_vars[1]);
156                 printf("A COUNT: [%s] %d\n", $a[0], count($a));
157                 for ($i = 0 ; $i < count($a) ; $i++) {
158                     $b = explode('=', $a[$i]);
159                     if ($b[0] == "")
160                         continue;
161                     $get[$b[0]] = urldecode($b[1]);
162                 }
163             }
164             // POST params management
165             if ($req[0] == 'POST') {
166                 $conttype_all = explode(";", $header['Content-Type']);
167                 $header['Content-Type'] = $conttype_all[0];
168                 // $path_all[1-] other things like charset and so on
169
170                 // if (content-type is wrong || content-length isn't set)
171                 //     return false
172
173                 if ($header['Content-Type'] != 'application/x-www-form-urlencoded' 
174                     || !isset($header['Content-Length'])) {
175                     return FALSE;
176                 }
177                 $post_len = mb_strlen($line, "ASCII");
178                 printf("INFO: postlen: %d\n", $post_len);
179                 $rest = (int)($header['Content-Length']) - $post_len;
180
181                 if ($rest == 0) {
182                     post_manage($post, $line);
183                 }
184                 else {
185                     $cont = $line;
186                 }
187             }
188             break;
189         }
190         if ($line == "") {
191             $check_post = TRUE;
192             continue;
193         }
194         $split = explode(":", $line, 2);
195         $hea_id = trim(mb_convert_case($split[0], MB_CASE_TITLE, 'UTF-8'));
196         $header[$hea_id] = $split[1];
197     }
198     return $path;
199 }
200
201 function gpcs_var($name, $get, $post, $cookie)
202 {
203     if (isset($GLOBALS[$name])) 
204         return FALSE;
205     else if (isset($cookie[$name])) 
206         return ($cookie[$name]);
207     else if (isset($post[$name])) 
208         return ($post[$name]);
209     else if (isset($get[$name])) 
210         return ($get[$name]);
211
212     return FALSE;
213 }
214
215 function headers_render($header, $len)
216 {
217     $cookies = "";
218
219     if (isset($header['cookies'])) {
220         $cookies = $header['cookies']->render();
221         unset($header['cookies']);
222     }
223     if (isset($header['Location'])) {
224         $s = sprintf("HTTP/1.1 302 OK\r\n%sLocation: %s\r\n", $cookies, $header['Location']);
225     }
226     else if (isset($header['HTTP-Response'])) {
227         $s = sprintf("HTTP/1.1 %s\r\n", $header['HTTP-Response']);
228         foreach($header as $key => $value) {
229             if (strtolower($key) == "http-response")
230                 continue;
231             $s .= sprintf("%s: %s\r\n", $key, $value);
232         }
233         if ($len >= 0) {
234             $s .= sprintf("Content-Length: %ld\r\n", $len);
235         }
236     }
237     else {
238         $s = "HTTP/1.1 200 OK\r\n";
239
240         if (!isset($header['Date']))
241             $s .= sprintf("Date: %s\r\n", date(DATE_RFC822));
242         if (!isset($header['Connection']))
243             $s .= "Connection: close\r\n";
244         if (!isset($header['Content-Type']))
245             $s .= "Content-Type: text/html\r\n";
246         foreach($header as $key => $value) {
247             $s .= sprintf("%s: %s\r\n", $key, $value);
248         }
249         if ($len >= 0) {
250             $s .= sprintf("Content-Length: %d\r\n", $len);
251         }
252         else {
253             $s .= "Cache-Control: no-cache, must-revalidate\r\n";
254             $s .= "Expires: Mon, 26 Jul 1997 05:00:00 GMT\r\n";
255             if (!isset($header['Content-Encoding'])) {
256                 $s .= "Content-Encoding: chunked\r\n";
257             }
258             $s .= "Transfer-Encoding: chunked\r\n";
259         }
260         $s .= $cookies;
261     }
262     $s .= "\r\n";
263
264     return ($s);
265 }
266
267 /*
268  *  Caching system using ob php system to cache old style pages
269  *  to a var and than send it with more calm
270  */
271
272 function shutta()
273 {
274   log_rd2("SHUTTA [".connection_status()."] !");
275 }
276
277 register_shutdown_function('shutta');
278
279 /*
280  *  MAIN
281  */
282
283 function get_encoding($header)
284 {
285     $enc = "plain";
286     if (isset($header['Accept-Encoding'])) {
287         $acc = explode(',', $header['Accept-Encoding']);
288
289         if (array_search('gzip', $acc) !== FALSE) {
290             $enc = 'gzip';
291         }
292         else if (array_search('deflate', $acc) !== FALSE) {
293             $enc = 'deflate';
294         }
295     }
296
297     return ($enc);
298 }
299
300 class Cookie {
301     var $attr;
302     // Set-Cookie: reg_fb_gate=deleted; Expires=Thu, 01-Jan-1970 00:00:01 GMT; Path=/; Domain=.foo.com; HttpOnly
303     // string $name  [, string $value  [, int $expire = 0  [, string $path  [, string $domain  [, bool $secure = false  [, bool $httponly = false  ]]]]]] )
304     function Cookie()
305     {
306         $this->attr = array();
307     }
308
309     static function create($name)
310     {
311         $thiz = new Cookie();
312
313         $thiz->attr[$name] = "";
314
315         $argc = func_num_args();
316         for ($i = 1 ; $i < $argc ; $i++) {
317             $arg = func_get_arg($i);
318             switch ($i) {
319             case 1:
320                 $thiz->attr[$name] = urlencode($arg);
321                 break;
322             case 2:
323                 $thiz->attr['Expires'] = gmdate('D, d M Y H:i:s \G\M\T', $arg); // RFC 1211 format
324                 break;
325             case 3:
326                 $thiz->attr['Path'] = $arg;
327                 break;
328             case 4:
329                 $thiz->attr['Domain'] = $arg;
330                 break;
331             case 5:
332                 if ($arg == TRUE) {
333                     $thiz->attr['Secure'] = NULL;
334                 }
335                 break;
336             case 6:
337                 if ($arg == TRUE) {
338                     $thiz->attr['HttpOnly'] = NULL;
339                 }
340                 break;
341             default:
342                 return FALSE;
343             }
344         }
345
346         return $thiz;
347     }
348
349     function render()
350     {
351         $r = "Set-Cookie: ";
352         $isfirst = TRUE;
353
354         foreach ($this->attr as $k => $v) {
355             if ($v == NULL) {
356                 $r .= sprintf("%s%s", ($isfirst ? "" : "; "), $k);
357             }
358             else {
359                 $r .= sprintf("%s%s=%s", ($isfirst ? "" : "; "), $k, $v);
360             }
361             $isfirst = FALSE;
362         }
363         $r .= "\r\n";
364
365         return $r;
366     }
367 }
368
369 class Cookies {
370     var $cookies;
371
372     function Cookies()
373     {
374         $this->cookies = array();
375     }
376
377     function add($name)
378     {
379         if (($cookie = call_user_func_array("Cookie::create", func_get_args())) == FALSE)
380             return (FALSE);
381
382         array_push($this->cookies, $cookie);
383
384         return (TRUE);
385     }
386
387     function render()
388     {
389         $r = "";
390         foreach ($this->cookies as $cookie) {
391             $r .= $cookie->render();
392         }
393
394         return ($r);
395     }
396 }
397
398
399 class Sac_a_push {
400     // maybe fixed_fd is unuseful
401     static $fixed_fd = 3;
402     static $cnt_master = NULL;
403     static $cnt_slave  = NULL;
404     
405     var $file_socket;
406     var $unix_socket;
407     var $direct_socket;   // socket where read direct commands
408     var $socks;
409     var $s2u;             // user associated with input socket
410     var $s2p;             // pending page associated with input socket
411     var $pending_pages;
412     var $is_daemon;
413
414     var $list_web;
415     var $list_cmd;
416     var $in;
417
418     var $debug;
419     var $blocking_mode;
420
421     var $app;
422
423     var $curtime;
424
425     var $rndstr;
426     var $main_loop;
427
428     function Sac_a_push()
429     {
430     }
431
432     function sig_handler($sig)
433     {
434         switch ($sig) {
435         case SIGINT:
436             exit(1);
437             break;
438         case SIGTERM:
439             if (static::$cnt_master != NULL) {
440                     fwrite(static::$cnt_master, "\nshutdown\n");
441                     fflush(static::$cnt_master);
442             }
443             else {
444                 exit(1);
445             }
446             break;
447         case SIGHUP: 
448             if (static::$cnt_master != NULL) {
449                 fwrite(static::$cnt_master, "\nreload\n");
450                 fflush(static::$cnt_master);
451             }
452             break;
453         }
454     }
455
456     static function create(&$app, $sockname, $debug, $blocking_mode, $argv)
457     {        
458         $thiz = new Sac_a_push();
459         
460         $thiz->app = $app;
461         $thiz->file_socket = $sockname;
462         $thiz->unix_socket = "unix://$sockname";
463         $thiz->direct_socket = "unix://${sockname}2";
464         $thiz->debug = $debug;
465         $thiz->socks = array();
466         $thiz->s2u  = array();
467         $thiz->s2p  = array();
468         $thiz->pending_pages = array();
469         $thiz->is_daemon = FALSE;
470
471         if (array_search("-d", $argv) !== FALSE || array_search("--daemon", $argv) !== FALSE) {
472             $thiz->is_daemon = TRUE;
473         }
474
475         // create a couple of sockets for control management
476         if (($sockpair = stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM,
477                                             STREAM_IPPROTO_IP)) == FALSE) {
478             return FALSE;
479         }
480         static::$cnt_master = $sockpair[0];
481         static::$cnt_slave  = $sockpair[1];
482
483         pcntl_signal(SIGTERM, array("Sac_a_push", "sig_handler"));
484         pcntl_signal(SIGINT, array("Sac_a_push", "sig_handler"));
485         pcntl_signal(SIGHUP, array("Sac_a_push", "sig_handler"));
486
487         $thiz->blocking_mode = 0; // 0 for non-blocking
488
489         $thiz->rndstr = "";
490         for ($i = 0 ; $i < 4096 ; $i++) {
491             if (($i % 128) == 0)
492                 $thiz->rndstr .= " ";
493             else
494                 $thiz->rndstr .= chr(mt_rand(65, 90));
495         }
496         
497         if (file_exists($thiz->file_socket)) {
498             unlink($thiz->file_socket);
499         }
500         if (file_exists($thiz->file_socket."2")) {
501             unlink($thiz->file_socket."2");
502         }
503     
504         $old_umask = umask(0);
505         if (($thiz->list_web = stream_socket_server($thiz->unix_socket, $err, $errs)) === FALSE) {
506             return (FALSE);
507         }
508         if (($thiz->list_cmd = stream_socket_server($thiz->direct_socket, $err, $errs)) === FALSE) {
509             return (FALSE);
510         }
511         umask($old_umask);
512         stream_set_blocking($thiz->list_web, $thiz->blocking_mode); # Set the stream to non-blocking
513         stream_set_blocking($thiz->list_cmd, $thiz->blocking_mode); # Set the stream to non-blocking
514
515         if (($thiz->in = fopen("php://stdin", "r")) === FALSE) {
516             return(FALSE);
517         }
518
519         $thiz->main_loop = FALSE;
520
521         return ($thiz);
522     }
523
524     function socks_set($sock, $user, $pendpage)
525     {
526         $id = intval($sock);
527
528         $this->socks[$id] = $sock;
529         if ($user != NULL)
530             $this->s2u[$id]   = $user;
531         if ($pendpage != NULL)
532             $this->s2p[$id]   = $pendpage;
533     }
534
535     function socks_unset($sock)
536     {
537         $id = intval($sock);
538
539         if (isset($this->s2u[$id]))
540             unset($this->s2u[$id]);
541         if (isset($this->s2p[$id]))
542             unset($this->s2p[$id]);
543         unset($this->socks[$id]);
544     }
545
546     function pendpage_try_addcont(&$new_socket, $tout, $method, $header, $get, $post, $cookie, $path, $addr, $rest, $cont)
547     {
548         $pendpage = PendingPage::pendingpage_continue(&$new_socket, $this->curtime, $tout, $method,
549                                                            $header,           $get, $post, $cookie,
550                                                              $path,          $addr, $rest, $cont);
551
552         $pendpage->try_flush($this->curtime);
553         // Add $pendpage to the pendpage array (in any case)
554         fprintf(STDERR, "IMPORTANT: Pendadd: %d\n", $pendpage->status);
555         $this->pendpage_add($pendpage);
556     }
557
558     function pendpage_try_addflush(&$new_socket, $tout, $enc, $header_out, $content)
559     {
560         $pendpage = PendingPage::pendingpage_flushing($new_socket, $this->curtime, $tout, $enc, $header_out, $content);
561
562         if ($pendpage->try_flush($this->curtime) == FALSE) {
563             // Add $pendpage to the pendpage array
564             $this->pendpage_add($pendpage);
565         }
566     }
567
568     function pendpage_add($pendpage)
569     {
570         array_push($this->pending_pages, $pendpage);
571         $this->socks_set($pendpage->socket_get(), NULL, $pendpage);
572     }
573
574     function pendpage_rem($pendpage)
575     {
576         $sock = $pendpage->socket_get();
577         if (($key = array_search($pendpage, $this->pending_pages)) !== FALSE) {
578             unset($this->pending_pages[$key]);
579         }
580         else {
581             fprintf(STDERR, "WARNING: pendpage not found\n");
582         }
583         $this->socks_unset($sock);
584         fprintf(STDERR, "PP_REM: %d\n", intval($sock));
585     }
586
587
588     function pendpage_try_addwait(&$new_socket, $tout, $method, $header, $get, $post, $cookie, $path, $addr, $rest, $cont)
589     {
590         $pendpage = PendingPage::pendingpage_waiting($new_socket, $this->curtime, $tout, $method, $header, $get, $post, $cookie, $path, $addr, $rest, $cont);
591         /*
592         if ($pendpage->try_flush($this->curtime) == FALSE) {
593             // Add $pendpage to the pendpage array
594             */
595         $this->pendpage_add($pendpage);
596         /*
597         }
598         */
599     }
600
601     function garbage_manager($force)
602     {
603         $this->app->garbage_manager($force);
604
605         foreach ($this->socks as $k => $sock) {
606             $id = intval($sock);
607             if (isset($this->s2u[$id])) {
608                 if ($this->s2u[$id]->the_end) {
609                     if ($this->s2u[$id]->rd_socket_get() != NULL) {
610                         $this->s2u[$id]->rd_socket_set(NULL);
611                     }
612                     unset($this->socks[$id]);
613                     unset($this->s2u[$id]);
614                     fclose($sock);
615                     printf("CLOSE ON GARBAGE MANAGER\n");
616                 }
617             }
618         }
619         $this->app->users_cleanup();
620     }
621
622     function run()
623     {
624         GLOBAL $DOCUMENT_ROOT, $HTTP_HOST;
625
626         GLOBAL $G_alarm_passwd, $G_ban_list, $G_black_list, $G_btrace_pref_sub, $G_dbauth;
627         GLOBAL $G_dbpfx, $G_donors_all, $G_donors_cur, $G_is_local, $G_lang;
628         GLOBAL $G_poll_entries, $G_poll_name, $G_poll_title, $G_proxy_white_list;
629         GLOBAL $G_room_roadmap, $G_shutdown;
630         GLOBAL $G_splash_content, $G_splash_contents, $G_splash_cont_idx;
631         GLOBAL $G_splash_h, $G_splash_idx, $G_splash_interval, $G_splash_timeout;
632         GLOBAL $G_splash_w, $G_topbanner, $G_with_donors, $G_with_poll;
633         GLOBAL $G_with_splash, $G_sidebanner, $G_sidebanner_idx;
634         GLOBAL $G_with_topbanner;
635         GLOBAL $G_tos_vers, $G_tos_fname, $G_tos_dtsoft, $G_tos_dthard, $G_tos_idx, $G_doc_path;
636
637         if ($this->main_loop) {
638             return (FALSE);
639         }
640         
641         $this->main_loop = TRUE;
642         
643         while ($this->main_loop) {
644             $this->app->sess_cur_set(FALSE);
645             $this->curtime = time();
646             fprintf(STDERR, "IN LOOP: Current opened: %d  pending_pages: %d\n", count($this->socks), count($this->pending_pages));
647             
648             /* Prepare the read array */
649             /* // when we manage it ... */
650             /* if ($shutdown)  */
651             /*     $read   = array_merge(array("$in" => $in), $socks); */
652             /* else */
653             $pre_read = array_merge(array(intval($this->list_web) => $this->list_web,
654                                           intval($this->list_cmd) => $this->list_cmd,
655                                           intval(static::$cnt_slave) => static::$cnt_slave),
656                                     $this->socks);
657             if ($this->is_daemon == FALSE) {
658                 $read = array_merge($pre_read, array(intval($this->in) => $this->in));
659             }
660             else {
661                 $read = $pre_read;
662             }
663             
664             if ($this->debug > 1) {
665                 printf("PRE_SELECT\n");
666                 print_r($read);
667             }
668             $write  = NULL;
669             $except = NULL;
670             $num_changed_sockets = @stream_select($read, $write, $except, 0, 500000);
671         
672             if ($num_changed_sockets == 0) {
673                 printf(" no data in 5 secs, splash [%d]\n", $G_with_splash);
674             } 
675             else if ($num_changed_sockets > 0) {
676                 printf("num sock %d num_of_socket: %d\n", $num_changed_sockets, count($read));
677                 if ($this->debug > 1) {
678                     print_r($read);
679                 }
680                 /* At least at one of the sockets something interesting happened */
681                 foreach ($read as $i => $sock) {
682                     $id = intval($sock);
683                     $manage_page = FALSE;
684                     /* is_resource check is required because there is the possibility that
685                        during new request an old connection is closed */
686                     if (!is_resource($sock)) {
687                         continue;
688                     }
689                     if ($sock === $this->list_web) {
690                         printf("NUOVA CONNEX\n");
691                         if (($new_unix = stream_socket_accept($this->list_web)) == FALSE) {
692                             printf("SOCKET_ACCEPT FAILED\n");
693                             continue;
694                         }
695                         $stream_info = "";
696                         $method      = "";
697                         $get         = array();
698                         $post        = array();
699                         $cookie      = array();
700                         $rest        = 0;
701                         $cont        = "";
702                         if (($new_socket = ancillary_getstream($new_unix, $stream_info)) !== FALSE) {
703                             printf("NEW_SOCKET: %d\n", intval($new_socket));
704                             stream_set_blocking($new_socket, $this->blocking_mode); // Set the stream to non-blocking
705                             printf("RECEIVED HEADER:\n%s", $stream_info);
706                             if (($path = spu_process_info($stream_info, $method, $header,
707                                                           $get, $post, $cookie, $rest, $cont))
708                                 == FALSE) {
709                                 fprintf(STDERR, "TODO: fix wrong header management\n");
710                             }
711                             $addr = stream_socket_get_name($new_socket, TRUE);
712                             printf("PATH: [%s]\n", $path);
713                             if ($method == "POST" && $rest > 0) {
714                                 if (isset($header['Expect']) && $header['Expect'] == '100-continue') {
715                                     fprintf(STDERR, "\nPOSTA DE CHE\n\n");
716                                     $this->pendpage_try_addcont($new_socket, 20,
717                                                                 $method, $header, $get, $post, $cookie,
718                                                                 $path, $addr, $rest, $cont);
719                                 }
720                                 else {
721                                     $this->pendpage_try_addwait($new_socket, 20,
722                                                                 $method, $header, $get, $post, $cookie,
723                                                                 $path, $addr, $rest, $cont);
724                                 }
725                             }
726                             else {
727                                 $manage_page = TRUE;
728                             }
729
730                             printf("number of sockets after %d\n", count($this->socks));
731                         }
732                         else {
733                             printf("WARNING: ancillary_getstream failed\n");
734                         }
735                     }
736                     else if ($sock === $this->list_cmd) {
737                         printf("NUOVA DIRECT CONNEX\n");
738                         if (($new_unix = stream_socket_accept($this->list_cmd)) == FALSE) {
739                             printf("SOCKET_ACCEPT FAILED\n");
740                             continue;
741                         }
742                         stream_set_blocking($new_unix, $this->blocking_mode);
743                         $this->direct_mgmt($new_unix);
744                     } // not socket_list nor socket_list_cmd
745                     else {  // already opened socket
746                         $buf = fread($sock, 4096);
747                         // if socket is closed
748                         if ($buf == FALSE || feof($sock)) {
749                             // close socket case
750                             if ($buf == FALSE) {
751                                 printf("INFO: read return false\n");
752                             }
753                             if ($sock === $this->list_web) {
754                                 printf("Arrivati %d bytes da list\n", mb_strlen($buf, "ASCII"));
755                                 return(21);
756                             }
757                             else if ($sock === $this->list_cmd) {
758                                 printf("Arrivati %d bytes da list_cmd\n", mb_strlen($buf, "ASCII"));
759                                 return(23);
760                             }
761                             else if ($sock === $this->in || $sock === static::$cnt_slave) {
762                                 printf("Arrivati %d bytes da stdin\n", mb_strlen($buf, "ASCII"));
763                                 return(22);
764                             }
765                             else {
766                                 unset($this->socks[$id]);
767                                 if (isset($this->s2u[$id])) {
768                                     // $user_a[$s2u[$id]]->disable();
769                                     if ($this->s2u[$id]->rd_socket_get() != NULL) {
770                                         // try to send close frame (for websocket)
771                                         $clo = $this->s2u[$id]->stream_close();
772                                         $clo_l = mb_strlen($clo, "ASCII");
773                                         @fwrite($sock, $clo, $clo_l);
774                                         $this->s2u[$id]->rd_socket_set(NULL);
775                                     }
776                                     unset($this->s2u[$id]);
777                                 }
778                             }
779                             fclose($sock);
780                             printf("CLOSE ON READ\n");
781
782                             if ($this->debug > 1) {
783                                 printf("post unset\n");
784                                 print_r($this->socks);
785                             }
786                         }  // if ($buf == FALSE || mb_strlen($buf, "ASCII") == 0) {
787                         else { // data on the socket
788                             if ($this->debug > 1) {
789                                 print_r($read);
790                             }
791                             if ($sock === $this->list_web) {
792                                 printf("Arrivati %d bytes da list\n", mb_strlen($buf, "ASCII"));
793                             }
794                             else if ($sock === $this->list_cmd) {
795                                 printf("Arrivati %d bytes da list_cmd\n", mb_strlen($buf, "ASCII"));
796                             }
797                             else if ($sock === $this->in || $sock === static::$cnt_slave) {
798                                 printf("Arrivati %d bytes da stdin\n", mb_strlen($buf, "ASCII"));
799                                 $line = trim($buf);
800                                 if ($line == "reload") {
801                                     require("$DOCUMENT_ROOT/Etc/".BRISK_CONF);
802                                     $this->app->reload(FALSE, $G_ban_list, $G_black_list);
803                                     global_dump();
804                                 }
805                                 else if ($line == "shutdown" || $line == "sd") {
806                                     if ($this->app->dump_data()) {
807                                         return(0);
808                                     }
809                                     else {
810                                         return(1);
811                                     }
812                                 }
813                             }
814                             else {  // data arrived from not special socket
815                                 $key = array_search("$sock", $this->socks);
816                                 fprintf(STDERR, "Arrivati %d bytes dalla socket n. %d\n", mb_strlen($buf, "ASCII"), $key);
817                                 if (isset($this->s2p[$id])) {
818                                     $this->s2p[$id]->rest -= mb_strlen($buf, "ASCII");
819                                     $this->s2p[$id]->cont .= $buf;
820                                     if ($this->s2p[$id]->rest <= 0) {
821                                         $header = $new_socket = $path = $addr = $get = $cookie = 0;
822                                         $post = array();
823
824                                         $this->s2p[$id]->context_get($header, $new_socket, $path, $addr, $get, $post, $cookie);
825                                         $this->pendpage_rem($this->s2p[$id]);
826                                         fprintf(STDERR, "SOCKET RUN: %s\n", $new_socket);
827
828                                         $manage_page = TRUE;
829                                     }
830                                 }
831                             }
832                         }
833                     }
834
835                     if ($manage_page == TRUE) {
836                         printf("M: %s\nHEADER:\n", $method);
837                         print_r($header);
838                         printf("GET:\n");
839                         print_r($get);
840                         printf("POST:\n");
841                         print_r($post);
842                         printf("COOKIE:\n");
843                         print_r($cookie);
844
845                         $header_out = array();
846                         // TODO: MOVE DOWN request_mgr to factorize new_sockets and POST closed
847                         $rret = FALSE;
848                         if (!strncmp($path, SITE_PREFIX, SITE_PREFIX_LEN)) {
849                             $rret = $this->app->request_mgr($this, $header, $header_out, $new_socket, substr($path, SITE_PREFIX_LEN), $addr, $get, $post, $cookie);
850                         }
851                         if ($rret == FALSE) {
852                             // FIXME: manage 404 !!!
853                             printf("TODO: fix unknown page\n");
854                         }
855                     }
856                 }
857             }
858
859             $this->garbage_manager(FALSE);
860
861             /* manage unfinished pages */
862             foreach ($this->pending_pages as $k => $pendpage) {
863                 // TODO: try_flush if exists in the class
864                 if ($pendpage->try_flush($this->curtime) == TRUE) {
865                     unset($this->pending_pages[$k]);
866                 }
867             }
868             
869             /*
870                $response:                        raw stream data not sent
871                $content:                         html consistent data (<script bla bla>)
872                $user->stream_keepalive($w_ping)  ping srv->cli OR srv->cli + cli->srv if $w_ping == TRUE
873             */
874
875             /* manage open streaming */
876             foreach ($this->socks as $k => $sock) {
877                 $id = intval($sock);
878                 if (isset($this->s2u[$id])) {
879                     $user = $this->s2u[$id];
880
881                     if ($user->rd_toflush) {
882                         if (fflush($sock) == FALSE)
883                             continue;
884                         else
885                             $user->rd_toflush = FALSE;
886                     }
887                     $response = $user->rd_cache_get();
888                     $do_ping = FALSE;
889                     if (($this->curtime - $user->lacc) > (EXPIRE_TIME_RD / 3)) {
890                         $do_ping = TRUE;
891                     }
892                     else {
893                         $user->ping_req = FALSE;
894                     }
895
896                     if ($response == "") {
897                         $content = "";
898                         $user->stream_main($content, $get, $post, $cookie);
899                         printf("[%s] [%d] [%d]\n", $user->name, $user->lacc, $this->curtime);
900                         if ($do_ping && $user->ping_req == FALSE) {
901                             $content .= $user->stream_keepalive(TRUE);
902                             $user->ping_req = TRUE;
903                         }
904                         else if ($content == "" && $user->rd_kalive_is_expired($this->curtime)) {
905                             $content = $user->stream_keepalive(FALSE);
906                         }
907                         if ($content != "") {
908                             $response = $user->chunked_content($content);
909                         }
910                     }
911                     
912                     if ($response != "") {
913                         // echo "SPIA: [".substr($response, 0, 60)."...]\n";
914                         // echo "SPIA: [".$response."]\n";
915                         $response_l = mb_strlen($response, "ASCII");
916                         $wret = @fwrite($sock, $response, $response_l);
917                         if ($wret < $response_l) {
918                             printf("TROUBLE WITH FWRITE: %d\n", $wret);
919                             $user->rd_cache_set(mb_substr($response, $wret, $response_l - $wret, "ASCII"));
920                         }
921                         else {
922                             $user->rd_cache_set("");
923                         }
924                         if (fflush($sock) == FALSE) {
925                             $user->rd_toflush = TRUE;
926                             continue;
927                         }
928                         $user->rd_kalive_reset($this->curtime);
929                     }
930                     
931                     // close socket after a while to prevent client memory consumption
932                     if ($user->rd_endtime_is_expired($this->curtime)) {
933                         if ($this->s2u[$id]->rd_socket_get() != NULL) {
934                             $this->s2u[$id]->rd_socket_set(NULL);
935                         }
936                         unset($this->socks[$id]);
937                         unset($this->s2u[$id]);
938                         $clo = $user->stream_close();
939                         $clo_l = mb_strlen($clo, "ASCII");
940                         @fwrite($sock, $clo, $clo_l);
941                         fclose($sock);
942                         printf("CLOSE ON LOOP\n");
943                     }
944                 }  // if (isset($this->s2u[$id]...
945             }  // foreach ($this->socks...
946             printf("\n");
947             if (defined('CURL_DE_SAC_VERS')) {
948                 $this->app->cds->process();
949             }
950         }  // while (...
951     }  // function run(...
952
953     function direct_command($cmdstr)
954     {
955         GLOBAL $G_alarm_passwd;
956
957         $cmd = cmd_deserialize($cmdstr);
958
959         if (!isset($cmd['cmd'])) {
960             return cmd_return(500, 'no cmd found');
961         }
962         // "cmd" => "userauth", "sess" => 'xxxxxxxxxxx', 'private' => 'it_must_be_correct',
963         //           'the_end' => 'true' );
964         // cmd=userauth&sess=52d796ac08c47&private=yourpasswd192.168.122.152d796ac08c47&the_end=true
965         if ($cmd['cmd'] == 'userauth') {
966             if (!isset($cmd['sess']) || !isset($cmd['private'])) {
967                 return cmd_return(401, 'malformed cmd');
968             }
969             $idx = -1;
970             if (($user = $this->app->get_user($cmd['sess'], &$idx)) == FALSE)
971                 return cmd_return(402, 'user not found');
972
973             if (($user->flags & USER_FLAG_TY_ADMIN) == 0x00)
974                 return cmd_return(403, 'permission denied');
975
976             if (md5($G_alarm_passwd.$user->ip.$user->sess) != $cmd['private'])
977                 return cmd_return(404, 'authentication failed ['.$cmd['private'].']['.$G_alarm_passwd.$user->ip.$user->sess.']');
978
979             return cmd_return(200, 'success');
980         }
981
982         return cmd_return(501, 'no cmd found');
983     }
984
985     function direct_mgmt($socket)
986     {
987         printf("DIRECT: begin\n");
988         $st = DIRECT_ST_READ;
989         $cmd_all = "";
990         $endtime = $this->curtime + 3;
991
992         while(time() <= $endtime) {
993             printf("DIRECT: init loop %d\n", $st);
994             if ($st == DIRECT_ST_READ) {
995                 $buf = fread($socket, 4096);
996                 if ($buf == FALSE && feof($socket)) {
997                     break;
998                 }
999                 else if ($buf != FALSE && strlen($buf) > 0) {
1000                     $cmd_all .= $buf;
1001
1002                     if (substr(trim($cmd_all), -13) == "&the_end=true") {
1003                         $output_arr = $this->direct_command($cmd_all);
1004                         $output = cmd_serialize($output_arr);
1005                         $output_cur = 0;
1006                         $output_len = mb_strlen($output, "ASCII");
1007                         $st = DIRECT_ST_WRITE;
1008                         continue;
1009                     }
1010                 }
1011             }
1012             else if ($st == DIRECT_ST_WRITE)  {
1013                 $ret = fwrite($socket, $output, $output_len);
1014                 if ($ret === FALSE) {
1015                     if (feof($socket)) {
1016                         break;
1017                     }
1018                 }
1019                 else if ($ret > 0 && $ret < $output_len) {
1020                     $output = substr($output, -($output_len - $ret));
1021                     $output_len -= $ret;
1022                     continue;
1023                 }
1024                 else if ($ret == $output_len) {
1025                     fclose($socket);
1026                     return TRUE;
1027                 }
1028             }
1029             usleep(10000);
1030         }
1031
1032         fclose($socket);
1033         return FALSE;
1034     }
1035 } // class Sac_a_push
1036 ?>