2

我正在尝试在我的 Ejabberd 安装中启用外部身份验证。我不断收到以下错误消息。

extauth 脚本突然退出,原因为“正常”

我的 ejabberd 版本是 2.1.13。

尝试使用以下配置,

1.{auth_method,外部}。
{extauth_program,"php /tmp/test.php"}。

2.{auth_method,外部}。
{extauth_program,"/tmp/test.php"}。

3 {auth_method,外部}。
%%{extauth_program,"/tmp/test.php"}。

以上所有配置都返回相同的错误。

4

2 回答 2

0

花了 1 天时间试图获得工作 ejabberd 授权。
问题基本上出现在从标准输入读取时阻塞进程。它在请求字符串的末尾一直被阻止,直到客户端由于超时而断开连接。
这是从描述符读取非块符号的解决方案:

function non_block_read($fd, &$data) {
    $read = array($fd);
    $write = array();
    $except = array();
    $result = stream_select($read, $write, $except, 0);
    if($result === false) {
                throw new Exception('stream_select failed');
        }
    if($result === 0) return false;
    $data.= stream_get_line($fd, 1);
    return true;
}

这是守护程序代码也可以使终身阅读周期。

$fh  = fopen("php://stdin", 'r');
$fhout  = fopen("php://stdout", 'w');
$pdo = new PDO('mysql:host='.$host.';dbname='.$db, $user,$pass);
if(!$fh){
    die("Cannot open STDIN\n");
}
$aStr='';
$collect=false;
do {
        if (!non_block_read($fh,$aStr)) {
                if (strlen($aStr) > 0) {
                       $toAuth = substr(trim($aStr),1);
                       checkAuth($toAuth,$pdo,$fhout);
                       $aStr='';
                }
                else sleep (1);
        }
}
while (true);

一些解释: checkAuth - 任何实现 'auth' 和 'isuser' 处理程序的函数。
sleep(1) - 逃避 CPU 负载的简单方法。
第一个符号 - 预先设置消息的服务符号,它因客户端而异,所以我只是剪掉它。
这是回复代码。回复 - 真 | 错误的值。

$message =  @pack("nn", 2, $result);
fwrite($stdout, $message);
flush();

享受。

于 2014-08-15T12:56:16.287 回答
0

你的 test.php 脚本是什么?,你确定它在工作吗?正如错误所说,它可能只是正常终止。auth 脚本应该不会终止,只是继续从标准输入运行读取。您可以在这里使用一个示例作为指南 https://github.com/processone/ejabberd/blob/master/examples/extauth/check_pass_null.pl

于 2013-07-25T21:39:58.317 回答