4 * ejabberd extauth script for the integration with friendica
6 * Originally written for joomla by Dalibor Karlovic <dado@krizevci.info>
7 * modified for Friendica by Michael Vogel <icarus@dabo.de>
10 * Latest version of the original script for joomla is available at:
11 * http://87.230.15.86/~dado/ejabberd/joomla-login
15 * - Change it's owner to whichever user is running the server, ie. ejabberd
16 * $ chown ejabberd:ejabberd /path/to/friendica/bin/auth_ejabberd.php
18 * - Change the access mode so it is readable only to the user ejabberd and has exec
19 * $ chmod 700 /path/to/friendica/bin/auth_ejabberd.php
21 * - Edit your ejabberd.cfg file, comment out your auth_method and add:
22 * {auth_method, external}.
23 * {extauth_program, "/path/to/friendica/bin/auth_ejabberd.php"}.
25 * - Restart your ejabberd service, you should be able to login with your friendica auth info
28 * - if your users have a space or a @ in their nickname, they'll run into trouble
29 * registering with any client so they should be instructed to replace these chars
30 * " " (space) is replaced with "%20"
31 * "@" is replaced with "(a)"
35 namespace Friendica\Util;
37 use Friendica\Core\Config;
38 use Friendica\Core\PConfig;
39 use Friendica\Database\DBM;
40 use Friendica\Model\User;
41 use Friendica\Util\Network;
44 require_once 'include/dba.php';
52 * @brief Create the class
54 * @param boolean $bDebug Debug mode
56 public function __construct()
58 $this->bDebug = (int) Config::get('jabber', 'debug');
60 openlog('auth_ejabberd', LOG_PID, LOG_USER);
62 $this->writeLog(LOG_NOTICE, 'start');
66 * @brief Standard input reading function, executes the auth with the provided
71 public function readStdin()
73 while (!feof(STDIN)) {
74 // Quit if the database connection went down
75 if (!dba::connected()) {
76 $this->writeLog(LOG_ERR, 'the database connection went down');
80 $iHeader = fgets(STDIN, 3);
81 $aLength = unpack('n', $iHeader);
82 $iLength = $aLength['1'];
86 $this->writeLog(LOG_ERR, 'we got no data, quitting');
91 $sData = fgets(STDIN, $iLength + 1);
92 $this->writeLog(LOG_DEBUG, 'received data: ' . $sData);
93 $aCommand = explode(':', $sData);
94 if (is_array($aCommand)) {
95 switch ($aCommand[0]) {
97 // Check the existance of a given username
98 $this->isUser($aCommand);
101 // Check if the givven password is correct
102 $this->auth($aCommand);
105 // We don't accept the setting of passwords here
106 $this->writeLog(LOG_NOTICE, 'setpass command disabled');
107 fwrite(STDOUT, pack('nn', 2, 0));
110 // We don't know the given command
111 $this->writeLog(LOG_NOTICE, 'unknown command ' . $aCommand[0]);
112 fwrite(STDOUT, pack('nn', 2, 0));
116 $this->writeLog(LOG_NOTICE, 'invalid command string ' . $sData);
117 fwrite(STDOUT, pack('nn', 2, 0));
123 * @brief Check if the given username exists
125 * @param array $aCommand The command array
127 private function isUser(array $aCommand)
131 // Check if there is a username
132 if (!isset($aCommand[1])) {
133 $this->writeLog(LOG_NOTICE, 'invalid isuser command, no username given');
134 fwrite(STDOUT, pack('nn', 2, 0));
138 // We only allow one process per hostname. So we set a lock file
139 // Problem: We get the firstname after the first auth - not before
140 $this->setHost($aCommand[2]);
142 // Now we check if the given user is valid
143 $sUser = str_replace(['%20', '(a)'], [' ', '@'], $aCommand[1]);
145 // Does the hostname match? So we try directly
146 if ($a->get_hostname() == $aCommand[2]) {
147 $this->writeLog(LOG_INFO, 'internal user check for ' . $sUser . '@' . $aCommand[2]);
148 $found = dba::exists('user', ['nickname' => $sUser]);
153 // If the hostnames doesn't match or there is some failure, we try to check remotely
155 $found = $this->checkUser($aCommand[2], $aCommand[1], true);
160 $this->writeLog(LOG_NOTICE, 'valid user: ' . $sUser);
161 fwrite(STDOUT, pack('nn', 2, 1));
163 // The user isn't okay
164 $this->writeLog(LOG_WARNING, 'invalid user: ' . $sUser);
165 fwrite(STDOUT, pack('nn', 2, 0));
170 * @brief Check remote user existance via HTTP(S)
172 * @param string $host The hostname
173 * @param string $user Username
174 * @param boolean $ssl Should the check be done via SSL?
176 * @return boolean Was the user found?
178 private function checkUser($host, $user, $ssl)
180 $this->writeLog(LOG_INFO, 'external user check for ' . $user . '@' . $host);
182 $url = ($ssl ? 'https' : 'http') . '://' . $host . '/noscrape/' . $user;
184 $data = Network::curl($url);
186 if (!is_array($data)) {
190 if ($data['return_code'] != '200') {
194 $json = @json_decode($data['body']);
195 if (!is_object($json)) {
199 return $json->nick == $user;
203 * @brief Authenticate the given user and password
205 * @param array $aCommand The command array
207 private function auth(array $aCommand)
211 // check user authentication
212 if (sizeof($aCommand) != 4) {
213 $this->writeLog(LOG_NOTICE, 'invalid auth command, data missing');
214 fwrite(STDOUT, pack('nn', 2, 0));
218 // We only allow one process per hostname. So we set a lock file
219 // Problem: We get the firstname after the first auth - not before
220 $this->setHost($aCommand[2]);
222 // We now check if the password match
223 $sUser = str_replace(['%20', '(a)'], [' ', '@'], $aCommand[1]);
225 // Does the hostname match? So we try directly
226 if ($a->get_hostname() == $aCommand[2]) {
227 $this->writeLog(LOG_INFO, 'internal auth for ' . $sUser . '@' . $aCommand[2]);
229 $aUser = dba::selectFirst('user', ['uid', 'password', 'legacy_password'], ['nickname' => $sUser]);
230 if (DBM::is_result($aUser)) {
231 $uid = $aUser['uid'];
232 $success = User::authenticate($aUser, $aCommand[3]);
233 $Error = $success === false;
235 $this->writeLog(LOG_WARNING, 'user not found: ' . $sUser);
240 $this->writeLog(LOG_INFO, 'check against alternate password for ' . $sUser . '@' . $aCommand[2]);
241 $sPassword = PConfig::get($uid, 'xmpp', 'password', null, true);
242 $Error = ($aCommand[3] != $sPassword);
248 // If the hostnames doesn't match or there is some failure, we try to check remotely
250 $Error = !$this->checkCredentials($aCommand[2], $aCommand[1], $aCommand[3], true);
254 $this->writeLog(LOG_WARNING, 'authentification failed for user ' . $sUser . '@' . $aCommand[2]);
255 fwrite(STDOUT, pack('nn', 2, 0));
257 $this->writeLog(LOG_NOTICE, 'authentificated user ' . $sUser . '@' . $aCommand[2]);
258 fwrite(STDOUT, pack('nn', 2, 1));
263 * @brief Check remote credentials via HTTP(S)
265 * @param string $host The hostname
266 * @param string $user Username
267 * @param string $password Password
268 * @param boolean $ssl Should the check be done via SSL?
270 * @return boolean Are the credentials okay?
272 private function checkCredentials($host, $user, $password, $ssl)
274 $this->writeLog(LOG_INFO, 'external credential check for ' . $user . '@' . $host);
276 $url = ($ssl ? 'https' : 'http') . '://' . $host . '/api/account/verify_credentials.json?skip_status=true';
279 curl_setopt($ch, CURLOPT_URL, $url);
280 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
281 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
282 curl_setopt($ch, CURLOPT_HEADER, true);
283 curl_setopt($ch, CURLOPT_NOBODY, true);
284 curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
285 curl_setopt($ch, CURLOPT_USERPWD, $user . ':' . $password);
288 $curl_info = @curl_getinfo($ch);
289 $http_code = $curl_info['http_code'];
292 $this->writeLog(LOG_INFO, 'external auth for ' . $user . '@' . $host . ' returned ' . $http_code);
294 return $http_code == 200;
298 * @brief Set the hostname for this process
300 * @param string $host The hostname
302 private function setHost($host)
304 if (!empty($this->host)) {
308 $this->writeLog(LOG_INFO, 'Hostname for process ' . getmypid() . ' is ' . $host);
312 $lockpath = Config::get('jabber', 'lockpath');
313 if (is_null($lockpath)) {
314 $this->writeLog(LOG_INFO, 'No lockpath defined.');
318 $file = $lockpath . DIRECTORY_SEPARATOR . $host;
319 if (PidFile::isRunningProcess($file)) {
320 if (PidFile::killProcess($file)) {
321 $this->writeLog(LOG_INFO, 'Old process was successfully killed');
323 $this->writeLog(LOG_ERR, "The old Process wasn't killed in time. We now quit our process.");
328 // Now it is safe to create the pid file
329 PidFile::create($file);
330 if (!file_exists($file)) {
331 $this->writeLog(LOG_WARNING, 'Logfile ' . $file . " couldn't be created.");
336 * @brief write data to the syslog
338 * @param integer $loglevel The syslog loglevel
339 * @param string $sMessage The syslog message
341 private function writeLog($loglevel, $sMessage)
343 if (!$this->bDebug && ($loglevel >= LOG_DEBUG)) {
346 syslog($loglevel, $sMessage);
350 * @brief destroy the class, close the syslog connection.
352 public function __destruct()
354 $this->writeLog(LOG_NOTICE, 'stop');