1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
28 #include "systemd/sd-daemon.h"
36 static bool arg_ready = false;
37 static pid_t arg_pid = 0;
38 static const char *arg_status = NULL;
39 static bool arg_booted = false;
41 static void help(void) {
42 printf("%s [OPTIONS...] [VARIABLE=VALUE...]\n\n"
43 "Notify the init system about service status updates.\n\n"
44 " -h --help Show this help\n"
45 " --version Show package version\n"
46 " --ready Inform the init system about service start-up completion\n"
47 " --pid[=PID] Set main pid of daemon\n"
48 " --status=TEXT Set status text\n"
49 " --booted Check if the system was booted up with systemd\n",
50 program_invocation_short_name);
53 static int parse_argv(int argc, char *argv[]) {
63 static const struct option options[] = {
64 { "help", no_argument, NULL, 'h' },
65 { "version", no_argument, NULL, ARG_VERSION },
66 { "ready", no_argument, NULL, ARG_READY },
67 { "pid", optional_argument, NULL, ARG_PID },
68 { "status", required_argument, NULL, ARG_STATUS },
69 { "booted", no_argument, NULL, ARG_BOOTED },
78 while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
88 puts(SYSTEMD_FEATURES);
98 if (parse_pid(optarg, &arg_pid) < 0) {
99 log_error("Failed to parse PID %s.", optarg);
119 assert_not_reached("Unhandled option");
123 if (optind >= argc &&
135 int main(int argc, char* argv[]) {
136 _cleanup_free_ char *status = NULL, *cpid = NULL, *n = NULL;
137 _cleanup_strv_free_ char **final_env = NULL;
142 log_parse_environment();
145 r = parse_argv(argc, argv);
150 return sd_booted() <= 0;
153 our_env[i++] = (char*) "READY=1";
156 status = strappend("STATUS=", arg_status);
162 our_env[i++] = status;
166 if (asprintf(&cpid, "MAINPID="PID_FMT, arg_pid) < 0) {
176 final_env = strv_env_merge(2, our_env, argv + optind);
182 if (strv_length(final_env) <= 0) {
187 n = strv_join(final_env, "\n");
193 r = sd_pid_notify(arg_pid, false, n);
195 log_error_errno(r, "Failed to notify init system: %m");
203 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;