2012-06-22 04:09:42 +00:00
|
|
|
#!/usr/bin/env php
|
2008-01-23 09:19:36 +00:00
|
|
|
<?php
|
2021-02-22 14:38:46 +00:00
|
|
|
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
|
2012-12-09 09:41:22 +00:00
|
|
|
get_include_path());
|
2008-01-23 16:19:32 +00:00
|
|
|
|
2008-01-23 09:19:36 +00:00
|
|
|
declare(ticks = 1);
|
2021-02-22 14:38:46 +00:00
|
|
|
chdir(__DIR__);
|
2008-01-23 09:19:36 +00:00
|
|
|
|
2008-01-23 16:19:32 +00:00
|
|
|
define('DISABLE_SESSIONS', true);
|
2008-01-23 09:19:36 +00:00
|
|
|
|
2013-04-17 11:36:34 +00:00
|
|
|
require_once "autoload.php";
|
2012-08-12 07:18:03 +00:00
|
|
|
require_once "functions.php";
|
2021-03-01 07:20:21 +00:00
|
|
|
|
|
|
|
Config::sanity_check();
|
2008-01-23 16:19:32 +00:00
|
|
|
|
2010-03-22 08:17:58 +00:00
|
|
|
if (!function_exists('pcntl_fork')) {
|
|
|
|
die("error: This script requires PHP compiled with PCNTL module.\n");
|
|
|
|
}
|
|
|
|
|
2014-02-06 19:04:27 +00:00
|
|
|
$options = getopt("");
|
|
|
|
|
2014-02-06 19:03:05 +00:00
|
|
|
if (!is_array($options)) {
|
|
|
|
die("error: getopt() failed. ".
|
|
|
|
"Most probably you are using PHP CGI to run this script ".
|
|
|
|
"instead of required PHP CLI. Check tt-rss wiki page on updating feeds for ".
|
|
|
|
"additional information.\n");
|
|
|
|
}
|
|
|
|
|
2014-02-06 19:04:27 +00:00
|
|
|
|
2013-06-07 05:27:52 +00:00
|
|
|
$master_handlers_installed = false;
|
|
|
|
|
2008-01-24 08:43:22 +00:00
|
|
|
$children = array();
|
2010-08-25 14:16:07 +00:00
|
|
|
$ctimes = array();
|
2008-01-24 08:43:22 +00:00
|
|
|
|
2008-01-23 09:19:36 +00:00
|
|
|
$last_checkpoint = -1;
|
|
|
|
|
2017-04-26 12:44:56 +00:00
|
|
|
/**
|
|
|
|
* @SuppressWarnings(unused)
|
|
|
|
*/
|
2021-11-10 21:38:25 +00:00
|
|
|
function reap_children(): int {
|
2008-01-24 08:43:22 +00:00
|
|
|
global $children;
|
2010-08-26 05:57:17 +00:00
|
|
|
global $ctimes;
|
2008-01-24 08:43:22 +00:00
|
|
|
|
|
|
|
$tmp = array();
|
|
|
|
|
|
|
|
foreach ($children as $pid) {
|
|
|
|
if (pcntl_waitpid($pid, $status, WNOHANG) != $pid) {
|
2010-10-29 08:10:24 +00:00
|
|
|
|
|
|
|
if (file_is_locked("update_daemon-$pid.lock")) {
|
2010-10-29 07:58:40 +00:00
|
|
|
array_push($tmp, $pid);
|
|
|
|
} else {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Child process with PID $pid seems active but lockfile is unlocked.");
|
2012-01-11 11:14:44 +00:00
|
|
|
unset($ctimes[$pid]);
|
|
|
|
|
2010-10-29 07:58:40 +00:00
|
|
|
}
|
2008-01-24 08:43:22 +00:00
|
|
|
} else {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Child process with PID $pid reaped.");
|
2010-08-25 14:16:07 +00:00
|
|
|
unset($ctimes[$pid]);
|
2008-01-24 08:43:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$children = $tmp;
|
|
|
|
|
2008-01-24 08:46:09 +00:00
|
|
|
return count($tmp);
|
|
|
|
}
|
|
|
|
|
2021-11-10 21:38:25 +00:00
|
|
|
function check_ctimes(): void {
|
2010-08-25 14:16:07 +00:00
|
|
|
global $ctimes;
|
2011-04-12 15:33:12 +00:00
|
|
|
|
2010-08-25 14:16:07 +00:00
|
|
|
foreach (array_keys($ctimes) as $pid) {
|
|
|
|
$started = $ctimes[$pid];
|
|
|
|
|
2021-02-22 19:35:27 +00:00
|
|
|
if (time() - $started > Config::get(Config::DAEMON_MAX_CHILD_RUNTIME)) {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Child process with PID $pid seems to be stuck, aborting...");
|
2010-09-30 13:03:02 +00:00
|
|
|
posix_kill($pid, SIGKILL);
|
2010-08-25 14:16:07 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-24 08:46:09 +00:00
|
|
|
}
|
|
|
|
|
2017-04-26 12:44:56 +00:00
|
|
|
/**
|
|
|
|
* @SuppressWarnings(unused)
|
2021-11-10 21:53:28 +00:00
|
|
|
* @param mixed $siginfo
|
2017-04-26 12:44:56 +00:00
|
|
|
*/
|
2021-11-10 21:53:28 +00:00
|
|
|
function sigchld_handler(int $signo, $siginfo): void {
|
2008-01-24 08:46:09 +00:00
|
|
|
$running_jobs = reap_children();
|
2008-01-24 08:43:22 +00:00
|
|
|
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Received SIGCHLD, $running_jobs active tasks left.");
|
2008-01-24 08:46:09 +00:00
|
|
|
|
2008-01-23 09:19:36 +00:00
|
|
|
pcntl_waitpid(-1, $status, WNOHANG);
|
|
|
|
}
|
|
|
|
|
2021-11-10 21:38:25 +00:00
|
|
|
function shutdown(int $caller_pid): void {
|
2013-06-07 05:27:52 +00:00
|
|
|
if ($caller_pid == posix_getpid()) {
|
2021-02-22 18:47:48 +00:00
|
|
|
if (file_exists(Config::get(Config::LOCK_DIRECTORY) . "/update_daemon.lock")) {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Removing lockfile (master)...");
|
2021-02-22 18:47:48 +00:00
|
|
|
unlink(Config::get(Config::LOCK_DIRECTORY) . "/update_daemon.lock");
|
2013-06-07 05:27:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-10 21:38:25 +00:00
|
|
|
function task_shutdown(): void {
|
2013-06-07 05:27:52 +00:00
|
|
|
$pid = posix_getpid();
|
|
|
|
|
2021-02-22 18:47:48 +00:00
|
|
|
if (file_exists(Config::get(Config::LOCK_DIRECTORY) . "/update_daemon-$pid.lock")) {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Removing task lockfile for PID $pid...");
|
2021-02-22 18:47:48 +00:00
|
|
|
unlink(Config::get(Config::LOCK_DIRECTORY) . "/update_daemon-$pid.lock");
|
2013-06-07 05:27:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-10 21:38:25 +00:00
|
|
|
function sigint_handler(): void {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("[MASTER] SIG_INT received, shutting down master process.");
|
2013-06-07 05:27:52 +00:00
|
|
|
shutdown(posix_getpid());
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
2021-11-10 21:38:25 +00:00
|
|
|
function task_sigint_handler(): void {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("[TASK] SIG_INT received, shutting down task.");
|
2013-06-07 05:27:52 +00:00
|
|
|
task_shutdown();
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
2008-01-23 09:19:36 +00:00
|
|
|
pcntl_signal(SIGCHLD, 'sigchld_handler');
|
2008-01-23 09:30:55 +00:00
|
|
|
|
2013-03-21 11:05:57 +00:00
|
|
|
$longopts = array("log:",
|
2018-11-30 05:34:29 +00:00
|
|
|
"log-level:",
|
2013-03-21 11:05:57 +00:00
|
|
|
"tasks:",
|
2013-04-01 12:38:33 +00:00
|
|
|
"interval:",
|
2013-03-25 17:08:48 +00:00
|
|
|
"quiet",
|
2013-03-21 11:05:57 +00:00
|
|
|
"help");
|
|
|
|
|
|
|
|
$options = getopt("", $longopts);
|
|
|
|
|
2021-11-11 12:11:30 +00:00
|
|
|
if ($options === false || isset($options["help"]) ) {
|
2013-03-21 11:05:57 +00:00
|
|
|
print "Tiny Tiny RSS update daemon.\n\n";
|
|
|
|
print "Options:\n";
|
|
|
|
print " --log FILE - log messages to FILE\n";
|
2018-11-30 05:34:29 +00:00
|
|
|
print " --log-level N - log verbosity level\n";
|
2013-03-21 11:05:57 +00:00
|
|
|
print " --tasks N - amount of update tasks to spawn\n";
|
2021-02-22 19:35:27 +00:00
|
|
|
print " default: " . Config::get(Config::DAEMON_MAX_JOBS) . "\n";
|
2013-03-21 11:05:57 +00:00
|
|
|
print " --interval N - task spawn interval\n";
|
2021-02-22 19:35:27 +00:00
|
|
|
print " default: " . Config::get(Config::DAEMON_SLEEP_INTERVAL) . " seconds.\n";
|
2013-03-21 11:05:57 +00:00
|
|
|
print " --quiet - don't output messages to stdout\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-30 05:34:29 +00:00
|
|
|
Debug::set_enabled(true);
|
|
|
|
|
|
|
|
if (isset($options["log-level"])) {
|
2022-06-10 10:39:00 +00:00
|
|
|
Debug::set_loglevel(Debug::map_loglevel((int)$options["log-level"]));
|
2018-11-30 05:34:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($options["log"])) {
|
2019-02-12 18:14:23 +00:00
|
|
|
Debug::set_quiet(isset($options['quiet']));
|
2018-11-30 05:34:29 +00:00
|
|
|
Debug::set_logfile($options["log"]);
|
|
|
|
Debug::log("Logging to " . $options["log"]);
|
2018-12-01 07:05:26 +00:00
|
|
|
} else {
|
|
|
|
if (isset($options['quiet'])) {
|
2022-06-10 10:39:00 +00:00
|
|
|
Debug::set_loglevel(Debug::LOG_DISABLED);
|
2018-12-01 07:05:26 +00:00
|
|
|
}
|
2018-11-30 05:34:29 +00:00
|
|
|
}
|
2013-03-21 11:05:57 +00:00
|
|
|
|
|
|
|
if (isset($options["tasks"])) {
|
2018-11-30 05:34:29 +00:00
|
|
|
Debug::log("Set to spawn " . $options["tasks"] . " children.");
|
2021-11-11 12:11:30 +00:00
|
|
|
$max_jobs = (int) $options["tasks"];
|
2013-03-21 11:05:57 +00:00
|
|
|
} else {
|
2021-02-22 19:35:27 +00:00
|
|
|
$max_jobs = Config::get(Config::DAEMON_MAX_JOBS);
|
2013-03-21 11:05:57 +00:00
|
|
|
}
|
|
|
|
|
2021-11-11 12:11:30 +00:00
|
|
|
if ($max_jobs < 1) {
|
|
|
|
$max_jobs = 1;
|
|
|
|
Debug::log("Enforced minimum task count of $max_jobs.");
|
|
|
|
}
|
|
|
|
|
2013-03-21 11:05:57 +00:00
|
|
|
if (isset($options["interval"])) {
|
2018-11-30 05:34:29 +00:00
|
|
|
Debug::log("Spawn interval: " . $options["interval"] . " seconds.");
|
2021-11-11 12:11:30 +00:00
|
|
|
$spawn_interval = (int) $options["interval"];
|
2013-03-21 11:05:57 +00:00
|
|
|
} else {
|
2021-02-22 19:35:27 +00:00
|
|
|
$spawn_interval = Config::get(Config::DAEMON_SLEEP_INTERVAL);
|
2013-03-21 11:05:57 +00:00
|
|
|
}
|
|
|
|
|
2017-05-06 07:54:14 +00:00
|
|
|
// let's enforce a minimum spawn interval as to not forkbomb the host
|
2021-11-11 12:11:30 +00:00
|
|
|
if ($spawn_interval < 60) {
|
|
|
|
$spawn_interval = 60;
|
|
|
|
Debug::log("Enforced minimum task spawn interval of $spawn_interval seconds.");
|
|
|
|
}
|
2013-03-21 11:05:57 +00:00
|
|
|
|
2008-01-23 11:43:11 +00:00
|
|
|
if (file_is_locked("update_daemon.lock")) {
|
|
|
|
die("error: Can't create lockfile. ".
|
2008-01-23 09:30:55 +00:00
|
|
|
"Maybe another daemon is already running.\n");
|
|
|
|
}
|
2008-01-23 09:19:36 +00:00
|
|
|
|
2013-02-25 17:28:34 +00:00
|
|
|
// Try to lock a file in order to avoid concurrent update.
|
|
|
|
$lock_handle = make_lockfile("update_daemon.lock");
|
|
|
|
|
|
|
|
if (!$lock_handle) {
|
|
|
|
die("error: Can't create lockfile. ".
|
|
|
|
"Maybe another daemon is already running.\n");
|
|
|
|
}
|
|
|
|
|
2021-03-04 06:22:24 +00:00
|
|
|
if (Config::is_migration_needed()) {
|
2013-04-17 08:10:35 +00:00
|
|
|
die("Schema version is wrong, please upgrade the database.\n");
|
|
|
|
}
|
|
|
|
|
2013-04-24 10:54:59 +00:00
|
|
|
// Protip: children close shared database handle when terminating, it's a bad idea to
|
|
|
|
// do database stuff on main process from now on.
|
|
|
|
|
2008-01-23 09:19:36 +00:00
|
|
|
while (true) {
|
|
|
|
|
2008-01-26 05:33:59 +00:00
|
|
|
// Since sleep is interupted by SIGCHLD, we need another way to
|
2013-03-21 11:05:57 +00:00
|
|
|
// respect the spawn interval
|
|
|
|
$next_spawn = $last_checkpoint + $spawn_interval - time();
|
2008-01-23 09:19:36 +00:00
|
|
|
|
2013-03-29 09:04:05 +00:00
|
|
|
if ($next_spawn % 60 == 0) {
|
2008-01-24 08:43:22 +00:00
|
|
|
$running_jobs = count($children);
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("$running_jobs active tasks, next spawn at $next_spawn sec.");
|
2008-01-23 09:33:41 +00:00
|
|
|
}
|
2008-01-23 09:19:36 +00:00
|
|
|
|
2013-03-21 11:05:57 +00:00
|
|
|
if ($last_checkpoint + $spawn_interval < time()) {
|
2010-08-25 14:16:07 +00:00
|
|
|
check_ctimes();
|
2008-01-24 08:46:09 +00:00
|
|
|
reap_children();
|
|
|
|
|
2013-03-21 11:05:57 +00:00
|
|
|
for ($j = count($children); $j < $max_jobs; $j++) {
|
2008-01-23 09:19:36 +00:00
|
|
|
$pid = pcntl_fork();
|
|
|
|
if ($pid == -1) {
|
|
|
|
die("fork failed!\n");
|
|
|
|
} else if ($pid) {
|
2013-06-07 05:27:52 +00:00
|
|
|
|
|
|
|
if (!$master_handlers_installed) {
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Installing shutdown handlers");
|
2013-06-07 05:27:52 +00:00
|
|
|
pcntl_signal(SIGINT, 'sigint_handler');
|
|
|
|
pcntl_signal(SIGTERM, 'sigint_handler');
|
|
|
|
register_shutdown_function('shutdown', posix_getpid());
|
|
|
|
$master_handlers_installed = true;
|
|
|
|
}
|
|
|
|
|
2020-12-31 07:11:41 +00:00
|
|
|
Debug::log("Spawned child process with PID $pid for task $j.");
|
2008-01-24 08:43:22 +00:00
|
|
|
array_push($children, $pid);
|
2010-08-25 14:16:07 +00:00
|
|
|
$ctimes[$pid] = time();
|
2008-01-23 09:19:36 +00:00
|
|
|
} else {
|
|
|
|
pcntl_signal(SIGCHLD, SIG_IGN);
|
2013-06-07 05:27:52 +00:00
|
|
|
pcntl_signal(SIGINT, 'task_sigint_handler');
|
|
|
|
|
|
|
|
register_shutdown_function('task_shutdown');
|
2010-10-29 07:58:40 +00:00
|
|
|
|
2013-04-17 14:19:26 +00:00
|
|
|
$quiet = (isset($options["quiet"])) ? "--quiet" : "";
|
2013-09-02 08:33:59 +00:00
|
|
|
$log = function_exists("flock") && isset($options['log']) ? '--log '.$options['log'] : '';
|
2013-03-30 12:23:34 +00:00
|
|
|
|
2013-04-17 14:19:26 +00:00
|
|
|
$my_pid = posix_getpid();
|
2011-04-12 15:33:12 +00:00
|
|
|
|
2021-02-22 18:47:48 +00:00
|
|
|
passthru(Config::get(Config::PHP_EXECUTABLE) . " update.php --daemon-loop $quiet $log --task $j --pidlock $my_pid");
|
2013-04-05 14:42:59 +00:00
|
|
|
|
2008-01-23 16:19:32 +00:00
|
|
|
sleep(1);
|
2010-10-29 07:58:40 +00:00
|
|
|
|
2008-01-23 16:19:32 +00:00
|
|
|
// We exit in order to avoid fork bombing.
|
2008-01-23 09:19:36 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$last_checkpoint = time();
|
|
|
|
}
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|