notify.c revision 5430f7f2bc7330f3088b894166bf3524a067e3d8
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdio.h>
#include <getopt.h>
#include <error.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <systemd/sd-daemon.h>
#include "strv.h"
#include "util.h"
#include "log.h"
#include "sd-readahead.h"
#include "build.h"
static bool arg_ready = false;
static const char *arg_status = NULL;
static bool arg_booted = false;
static const char *arg_readahead = NULL;
static int help(void) {
printf("%s [OPTIONS...] [VARIABLE=VALUE...]\n\n"
"Notify the init system about service status updates.\n\n"
" -h --help Show this help\n"
" --version Show package version\n"
" --ready Inform the init system about service start-up completion\n"
" --pid[=PID] Set main pid of daemon\n"
" --status=TEXT Set status text\n"
" --booted Returns 0 if the system was booted up with systemd, non-zero otherwise\n"
" --readahead=ACTION Controls read-ahead operations\n",
return 0;
}
enum {
ARG_READY = 0x100,
};
};
int c;
switch (c) {
case 'h':
help();
return 0;
case ARG_VERSION:
return 0;
case ARG_READY:
arg_ready = true;
break;
case ARG_PID:
if (optarg) {
return -EINVAL;
}
} else
break;
case ARG_STATUS:
arg_status = optarg;
break;
case ARG_BOOTED:
arg_booted = true;
break;
case ARG_READAHEAD:
break;
case '?':
return -EINVAL;
default:
log_error("Unknown option code %c", c);
return -EINVAL;
}
}
!arg_ready &&
!arg_status &&
!arg_pid &&
!arg_booted &&
!arg_readahead) {
help();
return -EINVAL;
}
return 1;
}
unsigned i = 0;
int r, retval = EXIT_FAILURE;
log_open();
goto finish;
}
if (arg_booted)
return sd_booted() <= 0;
if (arg_readahead) {
if ((r = sd_readahead(arg_readahead)) < 0) {
goto finish;
}
}
if (arg_ready)
our_env[i++] = (char*) "READY=1";
if (arg_status) {
log_error("Failed to allocate STATUS string.");
goto finish;
}
}
if (arg_pid > 0) {
log_error("Failed to allocate MAINPID string.");
goto finish;
}
}
log_error("Failed to merge string sets.");
goto finish;
}
if (strv_length(final_env) <= 0) {
goto finish;
}
log_error("Failed to concatenate strings.");
goto finish;
}
if ((r = sd_notify(false, n)) < 0) {
goto finish;
}
free(n);
return retval;
}