2017-12-14 17:38:51 +01:00
|
|
|
#!/usr/bin/env php
|
2016-11-27 21:57:18 +01:00
|
|
|
<?php
|
2016-11-27 23:52:21 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-01-19 21:44:01 +01:00
|
|
|
* Run the worker from a daemon.
|
2016-11-27 23:52:21 +01:00
|
|
|
*
|
|
|
|
* This script was taken from http://php.net/manual/en/function.pcntl-fork.php
|
|
|
|
*/
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2020-09-07 11:51:26 +02:00
|
|
|
if (php_sapi_name() !== 'cli') {
|
|
|
|
header($_SERVER["SERVER_PROTOCOL"] . ' 403 Forbidden');
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
use Dice\Dice;
|
2021-01-01 20:35:29 +01:00
|
|
|
use Friendica\App\Mode;
|
2019-02-12 20:12:25 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-06-02 00:09:27 +02:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:52:15 +01:00
|
|
|
use Friendica\DI;
|
2020-11-18 14:29:10 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2019-09-17 16:47:00 +02:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2018-07-23 13:40:52 +02:00
|
|
|
// Get options
|
2018-07-24 05:42:44 +02:00
|
|
|
$shortopts = 'f';
|
|
|
|
$longopts = ['foreground'];
|
2018-07-23 13:40:52 +02:00
|
|
|
$options = getopt($shortopts, $longopts);
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
// Ensure that daemon.php is executed from the base path of the installation
|
|
|
|
if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
|
|
|
|
$directory = dirname($_SERVER["argv"][0]);
|
|
|
|
|
|
|
|
if (substr($directory, 0, 1) != "/") {
|
2018-07-22 18:28:39 +02:00
|
|
|
$directory = $_SERVER["PWD"] . "/" . $directory;
|
2018-06-02 00:09:27 +02:00
|
|
|
}
|
2018-07-22 18:28:39 +02:00
|
|
|
$directory = realpath($directory . "/..");
|
2018-06-02 00:09:27 +02:00
|
|
|
|
|
|
|
chdir($directory);
|
|
|
|
}
|
|
|
|
|
2018-12-24 15:56:48 +01:00
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/../static/dependencies.config.php');
|
2019-09-17 16:47:00 +02:00
|
|
|
$dice = $dice->addRule(LoggerInterface::class,['constructParams' => ['daemon']]);
|
2019-07-21 01:22:10 +02:00
|
|
|
|
2019-12-15 23:52:15 +01:00
|
|
|
DI::init($dice);
|
|
|
|
$a = DI::app();
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2019-12-15 23:52:15 +01:00
|
|
|
if (DI::mode()->isInstall()) {
|
2018-06-26 02:56:07 +02:00
|
|
|
die("Friendica isn't properly installed yet.\n");
|
|
|
|
}
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2021-01-01 20:35:29 +01:00
|
|
|
DI::mode()->setExecutor(Mode::DAEMON);
|
|
|
|
|
2020-01-19 21:20:10 +01:00
|
|
|
DI::config()->load();
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (empty(DI::config()->get('system', 'pidfile'))) {
|
2018-11-25 07:44:51 +01:00
|
|
|
die(<<<TXT
|
|
|
|
Please set system.pidfile in config/local.config.php. For example:
|
|
|
|
|
|
|
|
'system' => [
|
|
|
|
'pidfile' => '/path/to/daemon.pid',
|
|
|
|
],
|
|
|
|
TXT
|
|
|
|
);
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$pidfile = DI::config()->get('system', 'pidfile');
|
2018-06-26 02:56:35 +02:00
|
|
|
|
2016-11-27 21:57:18 +01:00
|
|
|
if (in_array("start", $_SERVER["argv"])) {
|
|
|
|
$mode = "start";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array("stop", $_SERVER["argv"])) {
|
|
|
|
$mode = "stop";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array("status", $_SERVER["argv"])) {
|
|
|
|
$mode = "status";
|
|
|
|
}
|
|
|
|
|
2018-07-23 13:40:52 +02:00
|
|
|
$foreground = array_key_exists('f', $options) || array_key_exists('foreground', $options);
|
2018-06-15 20:18:20 +02:00
|
|
|
|
2016-11-27 21:57:18 +01:00
|
|
|
if (!isset($mode)) {
|
|
|
|
die("Please use either 'start', 'stop' or 'status'.\n");
|
|
|
|
}
|
|
|
|
|
2017-12-14 17:38:51 +01:00
|
|
|
if (empty($_SERVER["argv"][0])) {
|
|
|
|
die("Unexpected script behaviour. This message should never occur.\n");
|
|
|
|
}
|
|
|
|
|
2018-07-22 18:28:39 +02:00
|
|
|
$pid = null;
|
|
|
|
|
|
|
|
if (is_readable($pidfile)) {
|
|
|
|
$pid = intval(file_get_contents($pidfile));
|
|
|
|
}
|
2017-12-14 17:38:51 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
if (empty($pid) && in_array($mode, ["stop", "status"])) {
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'worker_daemon_mode', false);
|
2018-06-02 00:09:27 +02:00
|
|
|
die("Pidfile wasn't found. Is the daemon running?\n");
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($mode == "status") {
|
|
|
|
if (posix_kill($pid, 0)) {
|
|
|
|
die("Daemon process $pid is running.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
unlink($pidfile);
|
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'worker_daemon_mode', false);
|
2016-11-27 21:57:18 +01:00
|
|
|
die("Daemon process $pid isn't running.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($mode == "stop") {
|
|
|
|
posix_kill($pid, SIGTERM);
|
|
|
|
|
|
|
|
unlink($pidfile);
|
|
|
|
|
2019-02-12 20:12:25 +01:00
|
|
|
Logger::notice("Worker daemon process was killed", ["pid" => $pid]);
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'worker_daemon_mode', false);
|
2016-11-27 21:57:18 +01:00
|
|
|
die("Worker daemon process $pid was killed.\n");
|
|
|
|
}
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
if (!empty($pid) && posix_kill($pid, 0)) {
|
|
|
|
die("Daemon process $pid is already running.\n");
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|
|
|
|
|
2019-02-12 20:12:25 +01:00
|
|
|
Logger::notice('Starting worker daemon.', ["pid" => $pid]);
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
if (!$foreground) {
|
|
|
|
echo "Starting worker daemon.\n";
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::disconnect();
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2021-01-01 20:35:29 +01:00
|
|
|
// Fork a daemon process
|
|
|
|
$pid = pcntl_fork();
|
|
|
|
if ($pid == -1) {
|
|
|
|
echo "Daemon couldn't be forked.\n";
|
|
|
|
Logger::warning('Could not fork daemon');
|
|
|
|
exit(1);
|
|
|
|
} elseif ($pid) {
|
|
|
|
// The parent process continues here
|
|
|
|
echo 'Child process started with pid ' . $pid . ".\n";
|
|
|
|
Logger::notice('Child process started', ['pid' => $pid]);
|
|
|
|
file_put_contents($pidfile, $pid);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We now are in the child process
|
2018-06-15 20:18:20 +02:00
|
|
|
register_shutdown_function('shutdown');
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2021-01-01 20:35:29 +01:00
|
|
|
// Make the child the main process, detach it from the terminal
|
2018-06-15 20:18:20 +02:00
|
|
|
if (posix_setsid() < 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-01 20:35:29 +01:00
|
|
|
// Closing all existing connections with the outside
|
|
|
|
fclose(STDIN);
|
2018-06-15 20:18:20 +02:00
|
|
|
|
2021-01-01 20:35:29 +01:00
|
|
|
// And now connect the database again
|
|
|
|
DBA::connect();
|
2018-06-11 00:04:09 +02:00
|
|
|
}
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'worker_daemon_mode', true);
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
// Just to be sure that this script really runs endlessly
|
|
|
|
set_time_limit(0);
|
2017-12-14 17:38:51 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$wait_interval = intval(DI::config()->get('system', 'cron_interval', 5)) * 60;
|
2017-12-14 17:38:51 +01:00
|
|
|
|
2018-06-06 05:48:04 +02:00
|
|
|
$do_cron = true;
|
2018-06-06 07:26:22 +02:00
|
|
|
$last_cron = 0;
|
2018-06-06 05:48:04 +02:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
// Now running as a daemon.
|
|
|
|
while (true) {
|
2018-06-06 07:26:22 +02:00
|
|
|
if (!$do_cron && ($last_cron + $wait_interval) < time()) {
|
2019-02-12 20:12:25 +01:00
|
|
|
Logger::info('Forcing cron worker call.', ["pid" => $pid]);
|
2018-06-06 07:26:22 +02:00
|
|
|
$do_cron = true;
|
|
|
|
}
|
|
|
|
|
2020-08-19 20:21:40 +02:00
|
|
|
if ($do_cron || (!DI::process()->isMaxLoadReached() && Worker::entriesExists() && Worker::isReady())) {
|
|
|
|
Worker::spawnWorker($do_cron);
|
|
|
|
} else {
|
2020-11-18 14:29:10 +01:00
|
|
|
Logger::info('Cool down for 5 seconds', ['pid' => $pid]);
|
|
|
|
sleep(5);
|
2020-08-19 20:21:40 +02:00
|
|
|
}
|
2018-06-02 00:09:27 +02:00
|
|
|
|
2018-06-06 07:26:22 +02:00
|
|
|
if ($do_cron) {
|
2018-06-11 05:45:45 +02:00
|
|
|
// We force a reconnect of the database connection.
|
2018-06-11 00:04:09 +02:00
|
|
|
// This is done to ensure that the connection don't get lost over time.
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::reconnect();
|
2018-06-11 00:04:09 +02:00
|
|
|
|
2018-06-06 07:26:22 +02:00
|
|
|
$last_cron = time();
|
|
|
|
}
|
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
$start = time();
|
2020-11-18 14:29:10 +01:00
|
|
|
Logger::info("Sleeping", ["pid" => $pid, 'until' => gmdate(DateTimeFormat::MYSQL, $start + $wait_interval)]);
|
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
do {
|
2018-06-15 20:18:20 +02:00
|
|
|
$seconds = (time() - $start);
|
|
|
|
|
|
|
|
// logarithmic wait time calculation.
|
|
|
|
// Background: After jobs had been started, they often fork many workers.
|
|
|
|
// To not waste too much time, the sleep period increases.
|
|
|
|
$arg = (($seconds + 1) / ($wait_interval / 9)) + 1;
|
2020-11-18 14:29:10 +01:00
|
|
|
$sleep = min(1000000, round(log10($arg) * 1000000, 0));
|
2018-06-15 20:18:20 +02:00
|
|
|
usleep($sleep);
|
|
|
|
|
2021-01-03 23:57:25 +01:00
|
|
|
$pid = pcntl_waitpid(-1, $status, WNOHANG);
|
2021-01-04 10:20:44 +01:00
|
|
|
if ($pid > 0) {
|
|
|
|
Logger::info('Children quit via pcntl_waitpid', ['pid' => $pid, 'status' => $status]);
|
|
|
|
}
|
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
$timeout = ($seconds >= $wait_interval);
|
|
|
|
} while (!$timeout && !Worker::IPCJobsExists());
|
2018-06-06 05:48:04 +02:00
|
|
|
|
2018-06-15 20:18:20 +02:00
|
|
|
if ($timeout) {
|
2018-06-06 05:48:04 +02:00
|
|
|
$do_cron = true;
|
2019-02-12 20:12:25 +01:00
|
|
|
Logger::info("Woke up after $wait_interval seconds.", ["pid" => $pid, 'sleep' => $wait_interval]);
|
2018-06-06 05:48:04 +02:00
|
|
|
} else {
|
|
|
|
$do_cron = false;
|
2019-02-12 20:12:25 +01:00
|
|
|
Logger::info("Worker jobs are calling to be forked.", ["pid" => $pid]);
|
2018-06-06 05:48:04 +02:00
|
|
|
}
|
2018-06-02 00:09:27 +02:00
|
|
|
}
|
2016-11-27 21:57:18 +01:00
|
|
|
|
2018-06-02 00:09:27 +02:00
|
|
|
function shutdown() {
|
|
|
|
posix_kill(posix_getpid(), SIGHUP);
|
2016-11-27 21:57:18 +01:00
|
|
|
}
|