-
Eric Vidal authoredEric Vidal authored
ssexec_reload.c 4.40 KiB
/*
* ssexec_reload.c
*
* Copyright (c) 2018-2023 Eric Vidal <eric@obarun.org>
*
* All rights reserved.
*
* This file is part of Obarun. It is subject to the license terms in
* the LICENSE file found in the top-level directory of this
* distribution.
* This file may not be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE file./
*/
#include <stdint.h>
#include <oblibs/log.h>
#include <oblibs/types.h>
#include <oblibs/graph.h>
#include <skalibs/sgetopt.h>
#include <66/ssexec.h>
#include <66/config.h>
#include <66/graph.h>
#include <66/state.h>
#include <66/svc.h>
#include <66/sanitize.h>
#include <66/service.h>
#include <66/enum.h>
int ssexec_reload(int argc, char const *const *argv, ssexec_t *info)
{
log_flow() ;
int r, nargc = 0, n = 0 ;
uint32_t flag = 0 ;
uint8_t siglen = 2 ;
graph_t graph = GRAPH_ZERO ;
unsigned int areslen = 0, m = 0 ;
resolve_service_t ares[SS_MAX_SERVICE + 1] ;
FLAGS_SET(flag, STATE_FLAGS_TOPROPAGATE|STATE_FLAGS_WANTUP) ;
{
subgetopt l = SUBGETOPT_ZERO ;
for (;;) {
int opt = subgetopt_r(argc, argv, OPTS_SUBSTART, &l) ;
if (opt == -1) break ;
switch (opt) {
case 'h' :
info_help(info->help, info->usage) ;
return 0 ;
case 'P' :
FLAGS_CLEAR(flag, STATE_FLAGS_TOPROPAGATE) ;
siglen++ ;
break ;
default :
log_usage(info->usage, "\n", info->help) ;
}
}
argc -= l.ind ; argv += l.ind ;
}
if (argc < 1)
log_usage(info->usage, "\n", info->help) ;
if ((svc_scandir_ok(info->scandir.s)) != 1 )
log_diesys(LOG_EXIT_SYS,"scandir: ", info->scandir.s, " is not running") ;
char const *nargv[argc] ;
for (; n < argc ; n++) {
r = service_is_g(argv[n], STATE_FLAGS_ISPARSED) ;
if (r < 0)
log_dieusys(LOG_EXIT_SYS, "get information of service: ", argv[n], " -- please make a bug report") ;
if (!r || r == STATE_FLAGS_FALSE) {
/** nothing to do */
log_warn(argv[n], " is not parsed -- try to start it first using '66 start ", argv[n], "'") ;
return 0 ;
}
r = service_is_g(argv[n], STATE_FLAGS_ISSUPERVISED) ;
if (r < 0)
log_dieusys(LOG_EXIT_SYS, "get information of service: ", argv[n], " -- please make a bug report") ;
if (!r || r == STATE_FLAGS_FALSE) {
/** nothing to do */
log_warn(argv[n], " is not running -- try to start it first using '66 start ", argv[n], "'") ;
return 0 ;
}
}
/** build the graph of the entire system */
graph_build_service(&graph, ares, &areslen, info, flag) ;
if (!graph.mlen)
log_die(LOG_EXIT_USER, "services selection is not available -- please make a bug report") ;
for (n = 0 ; n < argc ; n++) {
int aresid = service_resolve_array_search(ares, areslen, argv[n]) ;
if (aresid < 0)
log_die(LOG_EXIT_USER, "service: ", *argv, " not available -- did you pars it?") ;
if (ares[aresid].type == TYPE_ONESHOT) {
nargc++ ;
nargv[m++] = ares[aresid].sa.s + ares[aresid].name ;
}
}
if (nargc)
nargv[m] = 0 ;
char *sig[siglen] ;
if (siglen > 2) {
sig[0] = "-P" ;
sig[1] = "-H" ;
sig[2] = 0 ;
} else {
sig[0] = "-H" ;
sig[1] = 0 ;
}
r = svc_send_wait(argv, argc, sig, siglen, info) ;
if (r)
goto err ;
/** s6-supervise do not deal with oneshot service:
* The previous send command will bring it down but
* s6-supervise will not bring it up automatically.
* Well, do it manually */
if (nargc) {
int verbo = VERBOSITY ;
VERBOSITY = 0 ;
char *nsig[siglen + 1] ;
if (siglen > 2) {
nsig[0] = "-P" ;
nsig[1] = "-wU" ;
nsig[2] = "-u" ;
nsig[3] = 0 ;
} else {
nsig[0] = "-wU" ;
nsig[1] = "-u" ;
nsig[2] = 0 ;
}
siglen++ ;
r = svc_send_wait(nargv, nargc, nsig, siglen, info) ;
VERBOSITY = verbo ;
}
err:
service_resolve_array_free(ares, areslen) ;
graph_free_all(&graph) ;
return r ;
}