2018-06-20 08:09:08 +08:00
|
|
|
#include "cetus-channel.h"
|
|
|
|
#include "cetus-process.h"
|
|
|
|
#include "cetus-process-cycle.h"
|
|
|
|
#include "network-socket.h"
|
|
|
|
#include "chassis-event.h"
|
|
|
|
#include "chassis-plugin.h"
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
|
|
static void cetus_start_worker_processes(cetus_cycle_t *cycle, int n, int type);
|
|
|
|
static void cetus_pass_open_channel(cetus_cycle_t *cycle, cetus_channel_t *ch);
|
|
|
|
static void cetus_signal_worker_processes(cetus_cycle_t *cycle, int signo);
|
|
|
|
static unsigned int cetus_reap_children(cetus_cycle_t *cycle);
|
|
|
|
static void cetus_master_process_exit(cetus_cycle_t *cycle);
|
|
|
|
static void cetus_worker_process_cycle(cetus_cycle_t *cycle, void *data);
|
|
|
|
static void cetus_worker_process_init(cetus_cycle_t *cycle, int worker);
|
|
|
|
static void cetus_worker_process_exit(cetus_cycle_t *cycle);
|
|
|
|
static void cetus_channel_handler(int fd, short events, void *user_data);
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int cetus_process;
|
|
|
|
unsigned int cetus_worker;
|
|
|
|
cetus_pid_t cetus_pid;
|
|
|
|
cetus_pid_t cetus_parent;
|
|
|
|
|
|
|
|
sig_atomic_t cetus_reap;
|
|
|
|
sig_atomic_t cetus_sigio;
|
|
|
|
sig_atomic_t cetus_sigalrm;
|
|
|
|
sig_atomic_t cetus_terminate;
|
|
|
|
sig_atomic_t cetus_quit;
|
|
|
|
sig_atomic_t cetus_debug_quit;
|
|
|
|
unsigned int cetus_exiting;
|
|
|
|
sig_atomic_t cetus_reconfigure;
|
|
|
|
sig_atomic_t cetus_reopen;
|
|
|
|
|
|
|
|
unsigned int cetus_inherited;
|
|
|
|
unsigned int cetus_daemonized;
|
|
|
|
|
|
|
|
sig_atomic_t cetus_noaccept;
|
|
|
|
unsigned int cetus_noaccepting;
|
|
|
|
unsigned int cetus_restart;
|
|
|
|
|
|
|
|
|
|
|
|
static u_char master_process[] = "master process";
|
|
|
|
|
|
|
|
static cetus_cycle_t cetus_exit_cycle;
|
|
|
|
|
|
|
|
void
|
|
|
|
cetus_master_process_cycle(cetus_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
u_char *p;
|
|
|
|
size_t size;
|
|
|
|
int i;
|
|
|
|
unsigned int n, sigio;
|
|
|
|
sigset_t set;
|
|
|
|
struct itimerval itv;
|
|
|
|
unsigned int live;
|
|
|
|
unsigned int delay;
|
|
|
|
|
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGCHLD);
|
|
|
|
sigaddset(&set, SIGALRM);
|
|
|
|
sigaddset(&set, SIGIO);
|
|
|
|
sigaddset(&set, SIGINT);
|
|
|
|
sigaddset(&set, cetus_signal_value(CETUS_RECONFIGURE_SIGNAL));
|
|
|
|
sigaddset(&set, cetus_signal_value(CETUS_REOPEN_SIGNAL));
|
|
|
|
sigaddset(&set, cetus_signal_value(CETUS_NOACCEPT_SIGNAL));
|
|
|
|
sigaddset(&set, cetus_signal_value(CETUS_TERMINATE_SIGNAL));
|
|
|
|
sigaddset(&set, cetus_signal_value(CETUS_SHUTDOWN_SIGNAL));
|
|
|
|
sigaddset(&set, cetus_signal_value(CETUS_CHANGEBIN_SIGNAL));
|
|
|
|
|
|
|
|
if (sigprocmask(SIG_BLOCK, &set, NULL) == -1) {
|
|
|
|
g_critical("%s: sigprocmask() failed, errno:%d", G_STRLOC, errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
sigemptyset(&set);
|
|
|
|
|
|
|
|
|
|
|
|
size = sizeof(master_process);
|
|
|
|
|
|
|
|
for (i = 0; i < cetus_argc; i++) {
|
|
|
|
size += strlen(cetus_argv[i]) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cetus_start_worker_processes(cycle, cycle->worker_processes,
|
|
|
|
CETUS_PROCESS_RESPAWN);
|
|
|
|
|
|
|
|
delay = 0;
|
|
|
|
sigio = 0;
|
|
|
|
live = 1;
|
|
|
|
|
|
|
|
for ( ;; ) {
|
|
|
|
if (delay) {
|
|
|
|
if (cetus_sigalrm) {
|
|
|
|
sigio = 0;
|
|
|
|
delay *= 2;
|
|
|
|
cetus_sigalrm = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_message("%s: termination cycle: %d", G_STRLOC, delay);
|
|
|
|
|
|
|
|
itv.it_interval.tv_sec = 0;
|
|
|
|
itv.it_interval.tv_usec = 0;
|
|
|
|
itv.it_value.tv_sec = delay / 1000;
|
|
|
|
itv.it_value.tv_usec = (delay % 1000 ) * 1000;
|
|
|
|
|
|
|
|
if (setitimer(ITIMER_REAL, &itv, NULL) == -1) {
|
|
|
|
g_critical("%s: setitimer() failed, errno:%d", G_STRLOC, errno);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sigsuspend(&set);
|
|
|
|
|
|
|
|
if (cetus_reap) {
|
|
|
|
cetus_reap = 0;
|
|
|
|
live = cetus_reap_children(cycle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!live && (cetus_terminate || cetus_quit)) {
|
|
|
|
cetus_master_process_exit(cycle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_terminate) {
|
|
|
|
if (delay == 0) {
|
|
|
|
delay = 50;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sigio) {
|
|
|
|
sigio--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
sigio = cycle->worker_processes + 2 /* cache processes */;
|
|
|
|
|
|
|
|
if (delay > 1000) {
|
|
|
|
cetus_signal_worker_processes(cycle, SIGKILL);
|
|
|
|
} else {
|
|
|
|
cetus_signal_worker_processes(cycle,
|
|
|
|
cetus_signal_value(CETUS_TERMINATE_SIGNAL));
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_quit) {
|
|
|
|
cetus_signal_worker_processes(cycle,
|
|
|
|
cetus_signal_value(CETUS_SHUTDOWN_SIGNAL));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_reconfigure) {
|
|
|
|
cetus_reconfigure = 0;
|
|
|
|
|
|
|
|
g_message("%s: reconfiguring", G_STRLOC);
|
|
|
|
|
|
|
|
/* init cycle */
|
|
|
|
cetus_start_worker_processes(cycle, cycle->worker_processes,
|
|
|
|
CETUS_PROCESS_JUST_RESPAWN);
|
|
|
|
|
|
|
|
/* allow new processes to start */
|
|
|
|
usleep(100 * 1000);
|
|
|
|
|
|
|
|
live = 1;
|
|
|
|
cetus_signal_worker_processes(cycle,
|
|
|
|
cetus_signal_value(CETUS_SHUTDOWN_SIGNAL));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_restart) {
|
|
|
|
cetus_restart = 0;
|
|
|
|
cetus_start_worker_processes(cycle, cycle->worker_processes,
|
|
|
|
CETUS_PROCESS_RESPAWN);
|
|
|
|
live = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_reopen) {
|
|
|
|
cetus_reopen = 0;
|
|
|
|
g_message("%s: reopening logs", G_STRLOC);
|
|
|
|
cetus_signal_worker_processes(cycle,
|
|
|
|
cetus_signal_value(CETUS_REOPEN_SIGNAL));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_noaccept) {
|
|
|
|
cetus_noaccept = 0;
|
|
|
|
cetus_noaccepting = 1;
|
|
|
|
cetus_signal_worker_processes(cycle,
|
|
|
|
cetus_signal_value(CETUS_SHUTDOWN_SIGNAL));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_start_worker_processes(cetus_cycle_t *cycle, int n, int type)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
cetus_channel_t ch;
|
|
|
|
|
|
|
|
memset(&ch, 0, sizeof(cetus_channel_t));
|
|
|
|
|
|
|
|
ch.command = CETUS_CMD_OPEN_CHANNEL;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
cetus_spawn_process(cycle, cetus_worker_process_cycle,
|
|
|
|
(void *) (intptr_t) i, "worker process", type);
|
|
|
|
|
|
|
|
ch.pid = cetus_processes[cetus_process_slot].pid;
|
|
|
|
ch.slot = cetus_process_slot;
|
|
|
|
ch.fd = cetus_processes[cetus_process_slot].channel[0];
|
|
|
|
|
|
|
|
cetus_pass_open_channel(cycle, &ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_pass_open_channel(cetus_cycle_t *cycle, cetus_channel_t *ch)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < cetus_last_process; i++) {
|
|
|
|
|
|
|
|
if (i == cetus_process_slot
|
|
|
|
|| cetus_processes[i].pid == -1
|
|
|
|
|| cetus_processes[i].channel[0] == -1)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-06-20 15:06:26 +08:00
|
|
|
g_debug("%s: pass channel s:%i pid:%d fd:%d to s:%i pid:%d fd:%d, ev base:%p, ev:%p", G_STRLOC,
|
2018-06-20 08:09:08 +08:00
|
|
|
ch->slot, ch->pid, ch->fd,
|
|
|
|
i, cetus_processes[i].pid,
|
2018-06-20 15:06:26 +08:00
|
|
|
cetus_processes[i].channel[0], cycle->event_base, &cetus_channel_event);
|
2018-06-20 08:09:08 +08:00
|
|
|
|
|
|
|
/* TODO: AGAIN */
|
|
|
|
cetus_write_channel(cetus_processes[i].channel[0],
|
|
|
|
ch, sizeof(cetus_channel_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_signal_worker_processes(cetus_cycle_t *cycle, int signo)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int err;
|
|
|
|
cetus_channel_t ch;
|
|
|
|
|
|
|
|
memset(&ch, 0, sizeof(cetus_channel_t));
|
|
|
|
|
|
|
|
switch (signo) {
|
|
|
|
|
|
|
|
case cetus_signal_value(CETUS_SHUTDOWN_SIGNAL):
|
|
|
|
ch.command = CETUS_CMD_QUIT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cetus_signal_value(CETUS_TERMINATE_SIGNAL):
|
|
|
|
ch.command = CETUS_CMD_TERMINATE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cetus_signal_value(CETUS_REOPEN_SIGNAL):
|
|
|
|
ch.command = CETUS_CMD_REOPEN;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ch.command = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ch.fd = -1;
|
|
|
|
|
|
|
|
for (i = 0; i < cetus_last_process; i++) {
|
|
|
|
|
|
|
|
g_debug("%s: child: %i %d e:%d t:%d d:%d r:%d j:%d", G_STRLOC,
|
|
|
|
i,
|
|
|
|
cetus_processes[i].pid,
|
|
|
|
cetus_processes[i].exiting,
|
|
|
|
cetus_processes[i].exited,
|
|
|
|
cetus_processes[i].detached,
|
|
|
|
cetus_processes[i].respawn,
|
|
|
|
cetus_processes[i].just_spawn);
|
|
|
|
|
|
|
|
if (cetus_processes[i].detached || cetus_processes[i].pid == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_processes[i].just_spawn) {
|
|
|
|
cetus_processes[i].just_spawn = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_processes[i].exiting
|
|
|
|
&& signo == cetus_signal_value(CETUS_SHUTDOWN_SIGNAL))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ch.command) {
|
|
|
|
if (cetus_write_channel(cetus_processes[i].channel[0],
|
|
|
|
&ch, sizeof(cetus_channel_t))
|
|
|
|
== NETWORK_SOCKET_SUCCESS)
|
|
|
|
{
|
|
|
|
if (signo != cetus_signal_value(CETUS_REOPEN_SIGNAL)) {
|
|
|
|
cetus_processes[i].exiting = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_debug("%s: kill (%d, %d)", G_STRLOC, cetus_processes[i].pid, signo);
|
|
|
|
|
|
|
|
if (kill(cetus_processes[i].pid, signo) == -1) {
|
|
|
|
err = errno;
|
|
|
|
g_critical("%s: kill (%d, %d) failed", G_STRLOC, cetus_processes[i].pid, signo);
|
|
|
|
|
|
|
|
if (err == ESRCH) {
|
|
|
|
cetus_processes[i].exited = 1;
|
|
|
|
cetus_processes[i].exiting = 0;
|
|
|
|
cetus_reap = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (signo != cetus_signal_value(CETUS_REOPEN_SIGNAL)) {
|
|
|
|
cetus_processes[i].exiting = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
cetus_reap_children(cetus_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
int i, n;
|
|
|
|
unsigned int live;
|
|
|
|
cetus_channel_t ch;
|
|
|
|
|
|
|
|
memset(&ch, 0, sizeof(cetus_channel_t));
|
|
|
|
|
|
|
|
ch.command = CETUS_CMD_CLOSE_CHANNEL;
|
|
|
|
ch.fd = -1;
|
|
|
|
|
|
|
|
live = 0;
|
|
|
|
for (i = 0; i < cetus_last_process; i++) {
|
|
|
|
|
|
|
|
g_debug("%s: child: %i %d e:%d t:%d d:%d r:%d j:%d", G_STRLOC,
|
|
|
|
i,
|
|
|
|
cetus_processes[i].pid,
|
|
|
|
cetus_processes[i].exiting,
|
|
|
|
cetus_processes[i].exited,
|
|
|
|
cetus_processes[i].detached,
|
|
|
|
cetus_processes[i].respawn,
|
|
|
|
cetus_processes[i].just_spawn);
|
|
|
|
|
|
|
|
if (cetus_processes[i].pid == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_processes[i].exited) {
|
|
|
|
|
|
|
|
if (!cetus_processes[i].detached) {
|
|
|
|
cetus_close_channel(cetus_processes[i].channel);
|
|
|
|
|
|
|
|
cetus_processes[i].channel[0] = -1;
|
|
|
|
cetus_processes[i].channel[1] = -1;
|
|
|
|
|
|
|
|
ch.pid = cetus_processes[i].pid;
|
|
|
|
ch.slot = i;
|
|
|
|
|
|
|
|
for (n = 0; n < cetus_last_process; n++) {
|
|
|
|
if (cetus_processes[n].exited
|
|
|
|
|| cetus_processes[n].pid == -1
|
|
|
|
|| cetus_processes[n].channel[0] == -1)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_debug("%s: pass close channel s:%i pid:%d to:%d", G_STRLOC,
|
|
|
|
ch.slot, ch.pid, cetus_processes[n].pid);
|
|
|
|
|
2018-06-20 15:06:26 +08:00
|
|
|
/* TODO: AGAIN */
|
2018-06-20 08:09:08 +08:00
|
|
|
cetus_write_channel(cetus_processes[n].channel[0],
|
|
|
|
&ch, sizeof(cetus_channel_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_processes[i].respawn
|
|
|
|
&& !cetus_processes[i].exiting
|
|
|
|
&& !cetus_terminate
|
|
|
|
&& !cetus_quit)
|
|
|
|
{
|
|
|
|
if (cetus_spawn_process(cycle, cetus_processes[i].proc,
|
|
|
|
cetus_processes[i].data,
|
|
|
|
cetus_processes[i].name, i)
|
|
|
|
== CETUS_INVALID_PID)
|
|
|
|
{
|
|
|
|
g_critical("%s: could not respawn %s", G_STRLOC, cetus_processes[i].name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ch.command = CETUS_CMD_OPEN_CHANNEL;
|
|
|
|
ch.pid = cetus_processes[cetus_process_slot].pid;
|
|
|
|
ch.slot = cetus_process_slot;
|
|
|
|
ch.fd = cetus_processes[cetus_process_slot].channel[0];
|
|
|
|
|
|
|
|
cetus_pass_open_channel(cycle, &ch);
|
|
|
|
|
|
|
|
live = 1;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == cetus_last_process - 1) {
|
|
|
|
cetus_last_process--;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
cetus_processes[i].pid = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (cetus_processes[i].exiting || !cetus_processes[i].detached) {
|
|
|
|
live = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return live;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_master_process_exit(cetus_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
g_message("%s: exit", G_STRLOC);
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_worker_process_cycle(cetus_cycle_t *cycle, void *data)
|
|
|
|
{
|
2018-06-20 15:06:26 +08:00
|
|
|
g_message("%s: call cetus_worker_process_cycle", G_STRLOC);
|
2018-06-20 08:09:08 +08:00
|
|
|
int worker = (intptr_t) data;
|
|
|
|
|
|
|
|
cetus_process = CETUS_PROCESS_WORKER;
|
|
|
|
cetus_worker = worker;
|
|
|
|
|
|
|
|
cetus_worker_process_init(cycle, worker);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < cycle->modules->len; i++) {
|
|
|
|
chassis_plugin *p = cycle->modules->pdata[i];
|
|
|
|
g_assert(p->apply_config);
|
|
|
|
if (0 != p->apply_config(cycle, p->config)) {
|
|
|
|
g_critical("%s: applying config of plugin %s failed", G_STRLOC, p->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( ;; ) {
|
|
|
|
|
|
|
|
if (cetus_exiting) {
|
|
|
|
cetus_worker_process_exit(cycle);
|
|
|
|
}
|
|
|
|
|
2018-06-20 15:06:26 +08:00
|
|
|
g_debug("%s: worker cycle", G_STRLOC);
|
2018-06-20 08:09:08 +08:00
|
|
|
|
|
|
|
/* call main procedures for worker */
|
|
|
|
chassis_event_loop_t *loop = cycle->event_base;
|
|
|
|
chassis_event_loop(loop);
|
2018-06-20 15:06:26 +08:00
|
|
|
g_debug("%s: after chassis_event_loop", G_STRLOC);
|
2018-06-20 08:09:08 +08:00
|
|
|
|
|
|
|
if (cetus_terminate) {
|
|
|
|
g_message("%s: exiting", G_STRLOC);
|
|
|
|
cetus_worker_process_exit(cycle);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_quit) {
|
|
|
|
cetus_quit = 0;
|
|
|
|
g_message("%s: gracefully shutting down", G_STRLOC);
|
|
|
|
|
|
|
|
if (!cetus_exiting) {
|
|
|
|
cetus_exiting = 1;
|
|
|
|
/* Call cetus shut down */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_reopen) {
|
|
|
|
cetus_reopen = 0;
|
|
|
|
g_message("%s: reopening logs", G_STRLOC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_worker_process_init(cetus_cycle_t *cycle, int worker)
|
|
|
|
{
|
|
|
|
sigset_t set;
|
|
|
|
int n;
|
|
|
|
unsigned int i;
|
|
|
|
cetus_cpuset_t *cpu_affinity;
|
|
|
|
struct rlimit rlmt;
|
|
|
|
network_socket *ls;
|
|
|
|
|
|
|
|
if (worker >= 0) {
|
|
|
|
if (cpu_affinity) {
|
|
|
|
cetus_setaffinity(cpu_affinity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sigemptyset(&set);
|
|
|
|
|
|
|
|
if (sigprocmask(SIG_SETMASK, &set, NULL) == -1) {
|
|
|
|
g_critical("%s: sigprocmask() failed, errno:%d", G_STRLOC, errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (n = 0; n < cetus_last_process; n++) {
|
|
|
|
|
|
|
|
if (cetus_processes[n].pid == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n == cetus_process_slot) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cetus_processes[n].channel[1] == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-06-20 15:06:26 +08:00
|
|
|
g_debug("%s: close() channel one fd:%d, n:%d",
|
|
|
|
G_STRLOC, cetus_processes[n].channel[1], n);
|
|
|
|
|
2018-06-20 08:09:08 +08:00
|
|
|
if (close(cetus_processes[n].channel[1]) == -1) {
|
|
|
|
g_critical("%s: close() channel failed, errno:%d", G_STRLOC, errno);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-20 15:06:26 +08:00
|
|
|
g_debug("%s: close() channel zero fd:%d, n:%d",
|
|
|
|
G_STRLOC, cetus_processes[cetus_process_slot].channel[0], cetus_process_slot);
|
|
|
|
|
|
|
|
|
2018-06-20 08:09:08 +08:00
|
|
|
if (close(cetus_processes[cetus_process_slot].channel[0]) == -1) {
|
|
|
|
g_critical("%s: close() channel failed, errno:%d", G_STRLOC, errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
chassis_event_loop_t *mainloop = chassis_event_loop_new();
|
|
|
|
cycle->event_base = mainloop;
|
|
|
|
g_assert(cycle->event_base);
|
|
|
|
|
2018-06-20 15:06:26 +08:00
|
|
|
event_set(&cetus_channel_event, cetus_channel, EV_READ | EV_PERSIST, cetus_channel_handler, NULL);
|
|
|
|
chassis_event_add(cycle, &cetus_channel_event);
|
|
|
|
g_message("%s: cetus_channel:%d is waiting for read, event base:%p, ev:%p",
|
|
|
|
G_STRLOC, cetus_channel, cycle->event_base, &cetus_channel_event);
|
2018-06-20 08:09:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_worker_process_exit(cetus_cycle_t *cycle)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
g_message("%s: exit", G_STRLOC);
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
cetus_channel_handler(int fd, short events, void *user_data)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
cetus_channel_t ch;
|
|
|
|
|
|
|
|
g_debug("%s: channel handler", G_STRLOC);
|
|
|
|
|
|
|
|
for ( ;; ) {
|
|
|
|
|
|
|
|
int ret = cetus_read_channel(fd, &ch, sizeof(cetus_channel_t));
|
|
|
|
|
|
|
|
g_debug("%s: channel:%i", G_STRLOC, n);
|
|
|
|
|
|
|
|
if (ret == NETWORK_SOCKET_ERROR) {
|
|
|
|
/* cetus_close_connection(c); */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == NETWORK_SOCKET_WAIT_FOR_EVENT) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_debug("%s: channel command: %ui", G_STRLOC, ch.command);
|
|
|
|
|
|
|
|
switch (ch.command) {
|
|
|
|
|
|
|
|
case CETUS_CMD_QUIT:
|
|
|
|
cetus_quit = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CETUS_CMD_TERMINATE:
|
|
|
|
cetus_terminate = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CETUS_CMD_REOPEN:
|
|
|
|
cetus_reopen = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CETUS_CMD_OPEN_CHANNEL:
|
|
|
|
|
|
|
|
g_debug("%s: get channel s:%i pid:%d fd:%d", G_STRLOC,
|
|
|
|
ch.slot, ch.pid, ch.fd);
|
|
|
|
|
|
|
|
cetus_processes[ch.slot].pid = ch.pid;
|
|
|
|
cetus_processes[ch.slot].channel[0] = ch.fd;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CETUS_CMD_CLOSE_CHANNEL:
|
|
|
|
|
|
|
|
g_debug("%s: close channel s:%i pid:%d our:%d fd:%d", G_STRLOC,
|
|
|
|
ch.slot, ch.pid, cetus_processes[ch.slot].pid,
|
|
|
|
cetus_processes[ch.slot].channel[0]);
|
|
|
|
|
|
|
|
if (close(cetus_processes[ch.slot].channel[0]) == -1) {
|
|
|
|
g_critical("%s: close() channel failed:%d", G_STRLOC, errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
cetus_processes[ch.slot].channel[0] = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|