]> git.wh0rd.org - tt-rss.git/blame - update_daemon2.php
daemon: die if unable to create a stampfile
[tt-rss.git] / update_daemon2.php
CommitLineData
bf0bedcb 1#!/usr/bin/env php
02008cb1 2<?php
88e8fb3a
AD
3 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
4 get_include_path());
ffa7cbae 5
02008cb1 6 declare(ticks = 1);
9b27cec8 7 chdir(dirname(__FILE__));
02008cb1 8
ffa7cbae 9 define('DISABLE_SESSIONS', true);
02008cb1 10
ffa7cbae
AD
11 require_once "version.php";
12
010c16f1 13 if (strpos(VERSION, ".99") !== false || getenv('DAEMON_XDEBUG')) {
ffa7cbae
AD
14 define('DAEMON_EXTENDED_DEBUG', true);
15 }
16
17 define('PURGE_INTERVAL', 3600); // seconds
c90a028c 18 define('MAX_CHILD_RUNTIME', 600); // seconds
ffa7cbae 19
9765e8b9
AD
20 require_once "functions.php";
21 require_once "rssfuncs.php";
ffa7cbae
AD
22 require_once "sanity_check.php";
23 require_once "config.php";
5893edd5
AD
24 require_once "db.php";
25 require_once "db-prefs.php";
ffa7cbae 26
98f70418 27 define('MAX_JOBS', 2);
02008cb1 28 define('SPAWN_INTERVAL', DAEMON_SLEEP_INTERVAL);
ffa7cbae 29
16956646
AD
30 if (!function_exists('pcntl_fork')) {
31 die("error: This script requires PHP compiled with PCNTL module.\n");
32 }
33
724b7942
AD
34 $master_handlers_installed = false;
35
e9338405 36 $children = array();
c90a028c 37 $ctimes = array();
e9338405 38
02008cb1
AD
39 $last_checkpoint = -1;
40
5a613536 41 function reap_children() {
e9338405 42 global $children;
51ddf0f8 43 global $ctimes;
e9338405
AD
44
45 $tmp = array();
46
47 foreach ($children as $pid) {
48 if (pcntl_waitpid($pid, $status, WNOHANG) != $pid) {
7aabaa09
AD
49
50 if (file_is_locked("update_daemon-$pid.lock")) {
8ccaff02
AD
51 array_push($tmp, $pid);
52 } else {
53 _debug("[reap_children] child $pid seems active but lockfile is unlocked.");
125ab8db
AD
54 unset($ctimes[$pid]);
55
8ccaff02 56 }
e9338405 57 } else {
8ccaff02 58 _debug("[reap_children] child $pid reaped.");
c90a028c 59 unset($ctimes[$pid]);
e9338405
AD
60 }
61 }
62
63 $children = $tmp;
64
5a613536
AD
65 return count($tmp);
66 }
67
c90a028c
AD
68 function check_ctimes() {
69 global $ctimes;
dbaa4e4a 70
c90a028c
AD
71 foreach (array_keys($ctimes) as $pid) {
72 $started = $ctimes[$pid];
73
74 if (time() - $started > MAX_CHILD_RUNTIME) {
75 _debug("[MASTER] child process $pid seems to be stuck, aborting...");
0618b81c 76 posix_kill($pid, SIGKILL);
c90a028c
AD
77 }
78 }
5a613536
AD
79 }
80
81 function sigchld_handler($signal) {
82 $running_jobs = reap_children();
e9338405
AD
83
84 _debug("[SIGCHLD] jobs left: $running_jobs");
5a613536 85
02008cb1
AD
86 pcntl_waitpid(-1, $status, WNOHANG);
87 }
88
8ccaff02 89 function shutdown() {
2cd099f0
AD
90 if (file_exists(LOCK_DIRECTORY . "/update_daemon.lock")) {
91 _debug("removing lockfile (master)...");
8ccaff02 92 unlink(LOCK_DIRECTORY . "/update_daemon.lock");
2cd099f0 93 }
8ccaff02
AD
94 }
95
96 function task_shutdown() {
97 $pid = posix_getpid();
98
2cd099f0
AD
99 if (file_exists(LOCK_DIRECTORY . "/update_daemon-$pid.lock")) {
100 _debug("removing lockfile ($pid)...");
8ccaff02 101 unlink(LOCK_DIRECTORY . "/update_daemon-$pid.lock");
2cd099f0 102 }
8ccaff02
AD
103 }
104
6a69e61f 105 function sigint_handler() {
2cd099f0 106 _debug("[MASTER] SIG_INT received.\n");
8ccaff02 107 shutdown();
2cd099f0 108 die;
dbaa4e4a 109 }
8ccaff02
AD
110
111 function task_sigint_handler() {
2cd099f0 112 _debug("[TASK] SIG_INT received.\n");
8ccaff02 113 task_shutdown();
2cd099f0 114 die;
dbaa4e4a 115 }
6a69e61f 116
02008cb1 117 pcntl_signal(SIGCHLD, 'sigchld_handler');
6a69e61f 118
884c0a36
AD
119 if (file_is_locked("update_daemon.lock")) {
120 die("error: Can't create lockfile. ".
6a69e61f
AD
121 "Maybe another daemon is already running.\n");
122 }
02008cb1 123
1a43a68c
AD
124 // Try to lock a file in order to avoid concurrent update.
125 $lock_handle = make_lockfile("update_daemon.lock");
126
127 if (!$lock_handle) {
128 die("error: Can't create lockfile. ".
129 "Maybe another daemon is already running.\n");
130 }
131
ffa7cbae
AD
132 // Testing database connection.
133 // It is unnecessary to start the fork loop if database is not ok.
dbaa4e4a 134 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
ffa7cbae 135
5f0a3741 136 if (!init_connection($link)) return;
ffa7cbae
AD
137
138 db_close($link);
139
02008cb1
AD
140 while (true) {
141
45004d43
AD
142 // Since sleep is interupted by SIGCHLD, we need another way to
143 // respect the SPAWN_INTERVAL
02008cb1
AD
144 $next_spawn = $last_checkpoint + SPAWN_INTERVAL - time();
145
ce1aa9b7 146 if ($next_spawn % 10 == 0) {
e9338405
AD
147 $running_jobs = count($children);
148 _debug("[MASTER] active jobs: $running_jobs, next spawn at $next_spawn sec.");
ce1aa9b7 149 }
02008cb1
AD
150
151 if ($last_checkpoint + SPAWN_INTERVAL < time()) {
152
c90a028c 153 check_ctimes();
5a613536
AD
154 reap_children();
155
e9338405 156 for ($j = count($children); $j < MAX_JOBS; $j++) {
02008cb1
AD
157 $pid = pcntl_fork();
158 if ($pid == -1) {
159 die("fork failed!\n");
160 } else if ($pid) {
724b7942
AD
161
162 if (!$master_handlers_installed) {
163 _debug("[MASTER] installing shutdown handlers");
164 pcntl_signal(SIGINT, 'sigint_handler');
165 register_shutdown_function('shutdown');
166 $master_handlers_installed = true;
167 }
168
e9338405
AD
169 _debug("[MASTER] spawned client $j [PID:$pid]...");
170 array_push($children, $pid);
c90a028c 171 $ctimes[$pid] = time();
02008cb1
AD
172 } else {
173 pcntl_signal(SIGCHLD, SIG_IGN);
8ccaff02
AD
174 pcntl_signal(SIGINT, 'task_sigint_handler');
175
176 register_shutdown_function('task_shutdown');
177
178 $my_pid = posix_getpid();
179 $lock_filename = "update_daemon-$my_pid.lock";
180
181 $lock_handle = make_lockfile($lock_filename);
182
183 if (!$lock_handle) {
184 die("error: Can't create lockfile ($lock_filename). ".
185 "Maybe another daemon is already running.\n");
186 }
ffa7cbae
AD
187
188 // ****** Updating RSS code *******
189 // Only run in fork process.
190
191 $start_timestamp = time();
192
dbaa4e4a 193 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
ffa7cbae 194
5f0a3741 195 if (!init_connection($link)) return;
ffa7cbae
AD
196
197 // We disable stamp file, since it is of no use in a multiprocess update.
198 // not really, tho for the time being -fox
199 if (!make_stampfile('update_daemon.stamp')) {
f421fcd7 200 die("error: unable to create stampfile\n");
dbaa4e4a 201 }
ffa7cbae 202
dbaa4e4a 203 // Call to the feed batch update function
e3b54693
AD
204 // or regenerate feedbrowser cache
205
8ccaff02 206 if (rand(0,100) > 30) {
e3b54693
AD
207 update_daemon_common($link);
208 } else {
209 $count = update_feedbrowser_cache($link);
e3b42c5a
AD
210 _debug("Feedbrowser updated, $count feeds processed.");
211
212 purge_orphans($link, true);
213
214 $rc = cleanup_tags($link, 14, 50000);
215
216 _debug("Cleaned $rc cached tags.");
217
41b82aa4
AD
218 global $pluginhost;
219 $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op);
e3b54693 220 }
ffa7cbae 221
0d6a7147 222 _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)");
dbaa4e4a 223
ffa7cbae
AD
224 db_close($link);
225
226 // We are in a fork.
227 // We wait a little before exiting to avoid to be faster than our parent process.
228 sleep(1);
8ccaff02
AD
229
230 unlink(LOCK_DIRECTORY . "/$lock_filename");
231
ffa7cbae 232 // We exit in order to avoid fork bombing.
02008cb1
AD
233 exit(0);
234 }
0d6a7147
AD
235
236 // We wait a little time before the next fork, in order to let the first fork
237 // mark the feeds it update :
238 sleep(1);
02008cb1
AD
239 }
240 $last_checkpoint = time();
241 }
242 sleep(1);
243 }
244
245?>