web_path="/home/nastasi/web/brisk"
ftok_path="/home/nastasi/brisk-priv/ftok/brisk"
proxy_path="/home/nastasi/brisk-priv/proxy/brisk"
-usock_path="/home/nastasi/brisk-priv/brisk.sock"
+usock_path_pfx="/home/nastasi/brisk-priv/brisk"
sys_user="www-data"
legal_path="/home/nastasi/brisk-priv/brisk"
prefix_path="/brisk/"
echo "$1 -h"
echo "$1 chk - run lintian on all ph* files."
echo "$1 pkg - build brisk packages."
- echo "$1 [-W] [-n 3|5] [-c 2|8] [-t <(n>=4)>] [-T <auth_tab>] [-r <appr_tab>] [-G <cert_tab>] [-A <apache-conf>] [-a <auth_file_name>] [-f <conffile>] [-p <outconf>] [-U <usock_path>] [-u <sys_user>] [-d <TRUE|FALSE>] [-w <web_dir>] [-k <ftok_dir>] [-l <legal_path>] [-y <proxy_path>] [-P <prefix_path>] [-x]"
+ echo "$1 [-W] [-n 3|5] [-c 2|8] [-t <(n>=4)>] [-T <auth_tab>] [-r <appr_tab>] [-G <cert_tab>] [-A <apache-conf>] [-a <auth_file_name>] [-f <conffile>] [-p <outconf>] [-U <usock_path_pfx>] [-u <sys_user>] [-d <TRUE|FALSE>] [-w <web_dir>] [-k <ftok_dir>] [-l <legal_path>] [-y <proxy_path>] [-P <prefix_path>] [-x]"
echo " -h this help"
echo " -f use this config file"
echo " -p save preferences in the file"
echo " -y dir where place proxy files - def. \"$proxy_path\""
echo " -P prefix path - def. \"$prefix_path\""
echo " -C config filename - def. \"$brisk_conf\""
- echo " -U unix socket path - def. \"$usock_path\""
+ echo " -U unix socket path prefix - def. \"$usock_path_pfx\""
echo " -u system user to run brisk dae - def. \"$sys_user\""
echo " -x copy tests as normal php - def. \"$test_add\""
echo
-P*) prefix_path="$(get_param "-P" "$1" "$2")"; sh=$?;;
-C*) brisk_conf="$(get_param "-C" "$1" "$2")"; sh=$?;;
-l*) legal_path="$(get_param "-l" "$1" "$2")"; sh=$?;;
- -U*) usock_path="$(get_param "-U" "$1" "$2")"; sh=$?;;
+ -U*) usock_path_pfx="$(get_param "-U" "$1" "$2")"; sh=$?;;
-u*) sys_user="$(get_param "-u" "$1" "$2")"; sh=$?;;
system) action=system ; sh=1;;
-W) web_only="TRUE";;
echo " proxy_path: \"$proxy_path\""
echo " prefix_path:\"$prefix_path\""
echo " brisk_conf: \"$brisk_conf\""
-echo " usock_path: \"$usock_path\""
+echo " usock_path_pfx: \"$usock_path_pfx\""
echo " sys_user: \"$sys_user\""
echo " web_only: \"$web_only\""
echo " test_add: \"$test_add\""
echo "legal_path=\"$legal_path\""
echo "prefix_path=\"$prefix_path\""
echo "brisk_conf=\"$brisk_conf\""
- echo "usock_path=\"$usock_path\""
+ echo "usock_path_pfx=\"$usock_path_pfx\""
echo "sys_user=\"$sys_user\""
echo "web_only=\"$web_only\""
echo "test_add=\"$test_add\""
sed -i "s@define *( *'SITE_PREFIX',[^)]*)@define('SITE_PREFIX', \"$prefix_path\")@g;
s@define *( *'SITE_PREFIX_LEN',[^)]*)@define('SITE_PREFIX_LEN', $prefix_path_len)@g" ${web_path}__/Obj/sac-a-push.phh
-sed -i "s@define *( *'USOCK_PATH',[^)]*)@define('USOCK_PATH', \"$usock_path\")@g" ${web_path}__/spush/brisk-spush.phh
+sed -i "s@define *( *'USOCK_PATH_PFX',[^)]*)@define('USOCK_PATH_PFX', \"$usock_path_pfx\")@g" ${web_path}__/spush/brisk-spush.phh
sed -i "s@define *( *'TABLES_N',[^)]*)@define('TABLES_N', $tables_n)@g;
s@define *( *'TABLES_APPR_N',[^)]*)@define('TABLES_APPR_N', $tables_appr_n)@g;
var $provider_proxy; // list of provider/browser that offer proxy service
- var $file_socket;
- var $unix_socket;
+ var $file_socket_pfx;
+ var $unix_socket_pfx;
var $direct_socket; // socket where read direct commands
var $socks;
var $s2u; // user associated with input socket
}
}
- static function create(&$app, $sockname, $debug, $blocking_mode, $provider_proxy, $argv)
+ static function create(&$app, $sockname_pfx, $debug, $blocking_mode, $provider_proxy, $argv)
{
$thiz = new Sac_a_push();
$thiz->provider_proxy = ProviderProxy::create();
- $thiz->file_socket = $sockname;
- $thiz->unix_socket = "unix://$sockname";
- $thiz->direct_socket = "unix://${sockname}2";
+ $thiz->file_socket_pfx = $sockname_pfx;
+ $thiz->unix_socket_pfx = "unix://$sockname_pfx";
+ $thiz->direct_socket = "unix://${sockname}_admin.sock";
$thiz->debug = $debug;
+ $thiz->list_web = array();
$thiz->socks = array();
$thiz->s2u = array();
$thiz->s2p = array();
$thiz->rndstr .= chr(mt_rand(65, 90));
}
- if (file_exists($thiz->file_socket)) {
- unlink($thiz->file_socket);
+ for ($i = 0 ; $i < USOCK_POOL_N ; $i++) {
+ $file_socket = $thiz->file_socket_pfx . sprintf("%d.sock", $i);
+ if (file_exists($file_socket)) {
+ unlink($file_socket);
+ }
}
- if (file_exists($thiz->file_socket."2")) {
- unlink($thiz->file_socket."2");
+ $file_socket_admin = $thiz->file_socket_pfx . "_admin.sock";
+ if (file_exists($file_socket_admin)) {
+ unlink($file_socket_admin);
}
$old_umask = umask(0);
- if (($thiz->list_web = stream_socket_server($thiz->unix_socket, $err, $errs)) === FALSE) {
- return (FALSE);
+ for ($i = 0 ; $i < USOCK_POOL_N ; $i++) {
+ $unix_socket = sprintf("%s%d.sock", $thiz->unix_socket_pfx, $i);
+ if (($list_sock = stream_socket_server($unix_socket, $err, $errs)) === FALSE) {
+ return (FALSE);
+ }
+ array_push($thiz->list_web, $list_sock);
}
if (($thiz->list_cmd = stream_socket_server($thiz->direct_socket, $err, $errs)) === FALSE) {
return (FALSE);
}
umask($old_umask);
- stream_set_blocking($thiz->list_web, $thiz->blocking_mode); # Set the stream to non-blocking
+ for ($i = 0 ; $i < USOCK_POOL_N ; $i++) {
+ stream_set_blocking($thiz->list_web[$i], $thiz->blocking_mode); # Set the stream to non-blocking
+ }
stream_set_blocking($thiz->list_cmd, $thiz->blocking_mode); # Set the stream to non-blocking
if (($thiz->in = fopen("php://stdin", "r")) === FALSE) {
$this->main_loop = TRUE;
+ $list_web_arr = array();
+ for ($i = 0 ; $i < USOCK_POOL_N ; $i++) {
+ $list_web_arr[intval($this->list_web[$i])] = $this->list_web[$i];
+ }
+
$lastime = 0;
$dump_users = TRUE;
while ($this->main_loop) {
/* if ($shutdown) */
/* $read = array_merge(array("$in" => $in), $socks); */
/* else */
- $pre_read = array_merge(array(intval($this->list_web) => $this->list_web,
- intval($this->list_cmd) => $this->list_cmd,
- intval(static::$cnt_slave) => static::$cnt_slave),
- $this->socks);
+ $pre_read = array_merge($list_web_arr, array(
+ intval($this->list_cmd) => $this->list_cmd,
+ intval(static::$cnt_slave) => static::$cnt_slave),
+ $this->socks);
if ($this->is_daemon == FALSE) {
$read = array_merge($pre_read, array(intval($this->in) => $this->in));
}
if (!is_resource($sock)) {
continue;
}
- if ($sock === $this->list_web) {
+ $list_web_idx = array_search($sock, $this->list_web, TRUE);
+ if ($list_web_idx !== FALSE) {
+ $list_web_usock = $this->list_web[$list_web_idx];
// printf("NUOVA CONNEX\n");
- if (($new_unix = stream_socket_accept($this->list_web)) == FALSE) {
+ if (($new_unix = stream_socket_accept($list_web_usock)) == FALSE) {
printf("SOCKET_ACCEPT FAILED\n");
continue;
}
// printf("INFO: read return false\n");
;
}
- if ($sock === $this->list_web) {
+ if (array_search($sock, $this->list_web, TRUE) !== FALSE) {
// printf("Arrivati %d bytes da list\n", mb_strlen($buf, "ASCII"));
return(21);
}
if ($this->debug > 1) {
print_r($read);
}
- if ($sock === $this->list_web) {
+ if (array_search($sock, $this->list_web, TRUE) !== FALSE) {
// printf("Arrivati %d bytes da list\n", mb_strlen($buf, "ASCII"));
;
}
return TRUE;
}
}
- usleep(10000);
+ // probably not needed
+ // usleep(10000);
}
fclose($socket);