2008-09-04 19:40:31 +01:00
|
|
|
<?php
|
2008-12-21 00:46:07 +00:00
|
|
|
/**
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-09-04 19:40:31 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2008-12-21 00:46:07 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
class Daemon
|
|
|
|
{
|
2009-06-28 21:12:23 +01:00
|
|
|
var $daemonize = true;
|
2009-07-18 02:07:53 +01:00
|
|
|
var $_id = 'generic';
|
2009-06-28 21:12:23 +01:00
|
|
|
|
|
|
|
function __construct($daemonize = true)
|
|
|
|
{
|
|
|
|
$this->daemonize = $daemonize;
|
|
|
|
}
|
|
|
|
|
2008-12-21 00:46:07 +00:00
|
|
|
function name()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2009-07-18 02:07:53 +01:00
|
|
|
function get_id()
|
|
|
|
{
|
|
|
|
return $this->_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_id($id)
|
|
|
|
{
|
|
|
|
$this->_id = $id;
|
|
|
|
}
|
|
|
|
|
2008-12-21 00:46:07 +00:00
|
|
|
function background()
|
|
|
|
{
|
|
|
|
$pid = pcntl_fork();
|
|
|
|
if ($pid < 0) { // error
|
|
|
|
common_log(LOG_ERR, "Could not fork.");
|
|
|
|
return false;
|
|
|
|
} else if ($pid > 0) { // parent
|
|
|
|
common_log(LOG_INFO, "Successfully forked.");
|
|
|
|
exit(0);
|
|
|
|
} else { // child
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function alreadyRunning()
|
|
|
|
{
|
|
|
|
$pidfilename = $this->pidFilename();
|
|
|
|
|
|
|
|
if (!$pidfilename) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file_exists($pidfilename)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$contents = file_get_contents($pidfilename);
|
|
|
|
if (posix_kill(trim($contents), 0)) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function writePidFile()
|
|
|
|
{
|
|
|
|
$pidfilename = $this->pidFilename();
|
|
|
|
|
|
|
|
if (!$pidfilename) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return file_put_contents($pidfilename, posix_getpid() . "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
function clearPidFile()
|
|
|
|
{
|
|
|
|
$pidfilename = $this->pidFilename();
|
|
|
|
if (!$pidfilename) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return unlink($pidfilename);
|
|
|
|
}
|
|
|
|
|
|
|
|
function pidFilename()
|
|
|
|
{
|
|
|
|
$piddir = common_config('daemon', 'piddir');
|
|
|
|
if (!$piddir) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$name = $this->name();
|
|
|
|
if (!$name) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $piddir . '/' . $name . '.pid';
|
|
|
|
}
|
|
|
|
|
|
|
|
function changeUser()
|
|
|
|
{
|
|
|
|
$username = common_config('daemon', 'user');
|
|
|
|
|
|
|
|
if ($username) {
|
|
|
|
$user_info = posix_getpwnam($username);
|
|
|
|
if (!$user_info) {
|
|
|
|
common_log(LOG_WARNING,
|
|
|
|
'Ignoring unknown user for daemon: ' . $username);
|
|
|
|
} else {
|
|
|
|
common_log(LOG_INFO, "Setting user to " . $username);
|
|
|
|
posix_setuid($user_info['uid']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$groupname = common_config('daemon', 'group');
|
|
|
|
|
|
|
|
if ($groupname) {
|
|
|
|
$group_info = posix_getgrnam($groupname);
|
|
|
|
if (!$group_info) {
|
|
|
|
common_log(LOG_WARNING,
|
|
|
|
'Ignoring unknown group for daemon: ' . $groupname);
|
|
|
|
} else {
|
|
|
|
common_log(LOG_INFO, "Setting group to " . $groupname);
|
|
|
|
posix_setgid($group_info['gid']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function runOnce()
|
|
|
|
{
|
|
|
|
if ($this->alreadyRunning()) {
|
|
|
|
common_log(LOG_INFO, $this->name() . ' already running. Exiting.');
|
|
|
|
exit(0);
|
|
|
|
}
|
2009-06-28 21:12:23 +01:00
|
|
|
|
|
|
|
if ($this->daemonize) {
|
2009-06-28 22:41:16 +01:00
|
|
|
common_log(LOG_INFO, 'Backgrounding daemon "'.$this->name().'"');
|
2009-06-28 21:12:23 +01:00
|
|
|
$this->background();
|
2008-12-21 00:46:07 +00:00
|
|
|
}
|
2009-06-28 21:12:23 +01:00
|
|
|
|
|
|
|
$this->writePidFile();
|
|
|
|
$this->changeUser();
|
|
|
|
$this->run();
|
|
|
|
$this->clearPidFile();
|
2008-12-21 00:46:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function run()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-09-04 19:40:31 +01:00
|
|
|
}
|