3 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
7 chdir(dirname(__FILE__));
9 define('DISABLE_SESSIONS', true);
11 require_once "version.php";
12 require_once "autoload.php";
13 require_once "functions.php";
14 require_once "config.php";
17 define_default('PURGE_INTERVAL', 3600); // seconds
18 define_default('MAX_CHILD_RUNTIME', 1800); // seconds
19 define_default('MAX_JOBS', 2);
20 define_default('SPAWN_INTERVAL', DAEMON_SLEEP_INTERVAL); // seconds
22 require_once "sanity_check.php";
23 require_once "db.php";
24 require_once "db-prefs.php";
26 if (!function_exists('pcntl_fork')) {
27 die("error: This script requires PHP compiled with PCNTL module.\n");
30 $options = getopt("");
32 if (!is_array($options)) {
33 die("error: getopt() failed. ".
34 "Most probably you are using PHP CGI to run this script ".
35 "instead of required PHP CLI. Check tt-rss wiki page on updating feeds for ".
36 "additional information.\n");
40 $master_handlers_installed = false;
45 $last_checkpoint = -1;
48 * @SuppressWarnings(unused)
50 function reap_children() {
56 foreach ($children as $pid) {
57 if (pcntl_waitpid($pid, $status, WNOHANG) != $pid) {
59 if (file_is_locked("update_daemon-$pid.lock")) {
60 array_push($tmp, $pid);
62 _debug("[reap_children] child $pid seems active but lockfile is unlocked.");
67 _debug("[reap_children] child $pid reaped.");
77 function check_ctimes() {
80 foreach (array_keys($ctimes) as $pid) {
81 $started = $ctimes[$pid];
83 if (time() - $started > MAX_CHILD_RUNTIME) {
84 _debug("[MASTER] child process $pid seems to be stuck, aborting...");
85 posix_kill($pid, SIGKILL);
91 * @SuppressWarnings(unused)
93 function sigchld_handler($signal) {
94 $running_jobs = reap_children();
96 _debug("[SIGCHLD] jobs left: $running_jobs");
98 pcntl_waitpid(-1, $status, WNOHANG);
101 function shutdown($caller_pid) {
102 if ($caller_pid == posix_getpid()) {
103 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
104 _debug("removing lockfile (master)...");
105 unlink(LOCK_DIRECTORY . "/update_daemon.lock");
110 function task_shutdown() {
111 $pid = posix_getpid();
113 if (file_exists(LOCK_DIRECTORY . "/update_daemon-$pid.lock")) {
114 _debug("removing lockfile ($pid)...");
115 unlink(LOCK_DIRECTORY . "/update_daemon-$pid.lock");
119 function sigint_handler() {
120 _debug("[MASTER] SIG_INT received.\n");
121 shutdown(posix_getpid());
125 function task_sigint_handler() {
126 _debug("[TASK] SIG_INT received.\n");
131 pcntl_signal(SIGCHLD, 'sigchld_handler');
133 $longopts = array("log:",
139 $options = getopt("", $longopts);
141 if (isset($options["help"]) ) {
142 print "Tiny Tiny RSS update daemon.\n\n";
144 print " --log FILE - log messages to FILE\n";
145 print " --tasks N - amount of update tasks to spawn\n";
146 print " default: " . MAX_JOBS . "\n";
147 print " --interval N - task spawn interval\n";
148 print " default: " . SPAWN_INTERVAL . " seconds.\n";
149 print " --quiet - don't output messages to stdout\n";
153 define('QUIET', isset($options['quiet']));
155 if (isset($options["tasks"])) {
156 _debug("Set to spawn " . $options["tasks"] . " children.");
157 $max_jobs = $options["tasks"];
159 $max_jobs = MAX_JOBS;
162 if (isset($options["interval"])) {
163 _debug("Spawn interval: " . $options["interval"] . " seconds.");
164 $spawn_interval = $options["interval"];
166 $spawn_interval = SPAWN_INTERVAL;
169 // let's enforce a minimum spawn interval as to not forkbomb the host
170 $spawn_interval = max(60, $spawn_interval);
171 _debug("Spawn interval: $spawn_interval sec");
173 if (isset($options["log"])) {
174 _debug("Logging to " . $options["log"]);
175 define('LOGFILE', $options["log"]);
178 if (file_is_locked("update_daemon.lock")) {
179 die("error: Can't create lockfile. ".
180 "Maybe another daemon is already running.\n");
183 // Try to lock a file in order to avoid concurrent update.
184 $lock_handle = make_lockfile("update_daemon.lock");
187 die("error: Can't create lockfile. ".
188 "Maybe another daemon is already running.\n");
191 $schema_version = get_schema_version();
193 if ($schema_version != SCHEMA_VERSION) {
194 die("Schema version is wrong, please upgrade the database.\n");
197 // Protip: children close shared database handle when terminating, it's a bad idea to
198 // do database stuff on main process from now on.
202 // Since sleep is interupted by SIGCHLD, we need another way to
203 // respect the spawn interval
204 $next_spawn = $last_checkpoint + $spawn_interval - time();
206 if ($next_spawn % 60 == 0) {
207 $running_jobs = count($children);
208 _debug("[MASTER] active jobs: $running_jobs, next spawn at $next_spawn sec.");
211 if ($last_checkpoint + $spawn_interval < time()) {
215 for ($j = count($children); $j < $max_jobs; $j++) {
218 die("fork failed!\n");
221 if (!$master_handlers_installed) {
222 _debug("[MASTER] installing shutdown handlers");
223 pcntl_signal(SIGINT, 'sigint_handler');
224 pcntl_signal(SIGTERM, 'sigint_handler');
225 register_shutdown_function('shutdown', posix_getpid());
226 $master_handlers_installed = true;
229 _debug("[MASTER] spawned client $j [PID:$pid]...");
230 array_push($children, $pid);
231 $ctimes[$pid] = time();
233 pcntl_signal(SIGCHLD, SIG_IGN);
234 pcntl_signal(SIGINT, 'task_sigint_handler');
236 register_shutdown_function('task_shutdown');
238 $quiet = (isset($options["quiet"])) ? "--quiet" : "";
239 $log = function_exists("flock") && isset($options['log']) ? '--log '.$options['log'] : '';
241 $my_pid = posix_getpid();
243 passthru(PHP_EXECUTABLE . " update.php --daemon-loop $quiet $log --task $j --pidlock $my_pid");
247 // We exit in order to avoid fork bombing.
251 $last_checkpoint = time();