2015-12-23 14:06:31 -06:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
* See the Authors file at the top-level directory of this distribution and
|
2021-12-20 20:07:00 -05:00
|
|
|
* https://github.com/OpenRC/openrc/blob/HEAD/AUTHORS
|
2015-12-23 14:06:31 -06:00
|
|
|
*
|
|
|
|
* This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
* the LICENSE file found in the top-level directory of this
|
2021-12-20 20:07:00 -05:00
|
|
|
* distribution and at https://github.com/OpenRC/openrc/blob/HEAD/LICENSE
|
2015-12-23 14:06:31 -06:00
|
|
|
* This file may not be copied, modified, propagated, or distributed
|
|
|
|
* except according to the terms contained in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "einfo.h"
|
|
|
|
#include "rc.h"
|
2022-04-06 10:51:55 -05:00
|
|
|
#include "misc.h"
|
2023-01-29 04:19:35 +00:00
|
|
|
#include "helpers.h"
|
2015-12-23 14:06:31 -06:00
|
|
|
|
|
|
|
const char *applet = NULL;
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
char *service;
|
|
|
|
char *exec;
|
2016-10-04 11:30:02 +02:00
|
|
|
int idx = 0;
|
2015-12-23 14:06:31 -06:00
|
|
|
RC_SERVICE state, bit;
|
|
|
|
|
|
|
|
applet = basename_c(argv[0]);
|
|
|
|
if (argc > 1)
|
|
|
|
service = argv[1];
|
|
|
|
else
|
|
|
|
service = getenv("RC_SVCNAME");
|
|
|
|
|
|
|
|
if (service == NULL || *service == '\0')
|
|
|
|
eerrorx("%s: no service specified", applet);
|
|
|
|
|
|
|
|
state = rc_service_state(service);
|
|
|
|
bit = lookup_service_state(applet);
|
|
|
|
if (bit) {
|
|
|
|
ok = (state & bit);
|
|
|
|
} else if (strcmp(applet, "service_started_daemon") == 0) {
|
|
|
|
service = getenv("RC_SVCNAME");
|
|
|
|
exec = argv[1];
|
|
|
|
if (argc > 3) {
|
|
|
|
service = argv[1];
|
|
|
|
exec = argv[2];
|
|
|
|
sscanf(argv[3], "%d", &idx);
|
|
|
|
} else if (argc == 3) {
|
|
|
|
if (sscanf(argv[2], "%d", &idx) != 1) {
|
|
|
|
service = argv[1];
|
|
|
|
exec = argv[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ok = rc_service_started_daemon(service, exec, NULL, idx);
|
|
|
|
|
|
|
|
} else if (strcmp(applet, "service_crashed") == 0) {
|
2018-05-18 16:48:21 -05:00
|
|
|
ok = ( rc_service_daemons_crashed(service) && errno != EACCES);
|
2015-12-23 14:06:31 -06:00
|
|
|
} else
|
|
|
|
eerrorx("%s: unknown applet", applet);
|
|
|
|
|
|
|
|
return ok ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
|
|
}
|