blob: 987d3cfc988f1ad3ddddfb4dabe22e0169640382 [file] [log] [blame] [edit]
/****************************************************************************\
* opts.c - strigger command line option processing functions
*****************************************************************************
* Copyright (C) 2006-2007 The Regents of the University of California.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Morris Jette <jette1@llnl.gov>
* UCRL-CODE-226842.
*
* This file is part of SLURM, a resource management program.
* For details, see <http://www.llnl.gov/linux/slurm/>.
*
* SLURM is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* In addition, as a special exception, the copyright holders give permission
* to link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two. You must obey the GNU
* General Public License in all respects for all of the code used other than
* OpenSSL. If you modify file(s) with this exception, you may extend this
* exception to your version of the file(s), but you are not obligated to do
* so. If you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files in
* the program, then also delete it here.
*
* SLURM 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 General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with SLURM; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#if HAVE_GETOPT_H
# include <getopt.h>
#else
# include "src/common/getopt.h"
#endif
#include <limits.h>
#include <pwd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "src/common/xmalloc.h"
#include "src/common/xstring.h"
#include "src/strigger/strigger.h"
#define OPT_LONG_HELP 0x100
#define OPT_LONG_USAGE 0x101
#define OPT_LONG_SET 0x102
#define OPT_LONG_GET 0x103
#define OPT_LONG_CLEAR 0x104
#define OPT_LONG_USER 0x105
#define OPT_LONG_BLOCK_ERR 0x106
/* getopt_long options, integers but not characters */
/* FUNCTIONS */
static void _help( void );
static void _init_options( void );
static void _print_options( void );
static void _print_version( void );
static void _usage( void );
static void _validate_options( void );
struct strigger_parameters params;
/*
* parse_command_line, fill in params data structure with data
*/
extern void parse_command_line(int argc, char *argv[])
{
int first = 1;
int opt_char;
int option_index;
long tmp_l;
static struct option long_options[] = {
{"block_err", no_argument, 0, OPT_LONG_BLOCK_ERR},
{"down", no_argument, 0, 'd'},
{"fini", no_argument, 0, 'f'},
{"id", required_argument, 0, 'i'},
{"idle", no_argument, 0, 'I'},
{"jobid", required_argument, 0, 'j'},
{"node", optional_argument, 0, 'n'},
{"offset", required_argument, 0, 'o'},
{"program", required_argument, 0, 'p'},
{"quiet", no_argument, 0, 'q'},
{"reconfig", no_argument, 0, 'r'},
{"time", no_argument, 0, 't'},
{"up", no_argument, 0, 'u'},
{"verbose", no_argument, 0, 'v'},
{"version", no_argument, 0, 'V'},
{"help", no_argument, 0, OPT_LONG_HELP},
{"usage", no_argument, 0, OPT_LONG_USAGE},
{"user", required_argument, 0, OPT_LONG_USER},
{"set", no_argument, 0, OPT_LONG_SET},
{"get", no_argument, 0, OPT_LONG_GET},
{"clear", no_argument, 0, OPT_LONG_CLEAR},
{NULL, 0, 0, 0}
};
_init_options();
optind = 0;
while((opt_char = getopt_long(argc, argv, "dfi:Ij:no:p:qrtuvV",
long_options, &option_index)) != -1) {
switch (opt_char) {
case (int)'?':
if (first) {
first = 0;
fprintf(stderr, "Try \"strigger --help\" for "
"more information\n");
}
exit(1);
break;
case (int)'d':
params.node_down = true;
break;
case (int)'f':
params.job_fini = true;
break;
case (int)'i':
params.trigger_id = atoi(optarg);
break;
case (int)'I':
params.node_idle = true;
break;
case (int)'j':
tmp_l = atol(optarg);
if (tmp_l <= 0) {
error("Invalid jobid %s", optarg);
exit(1);
}
params.job_id = tmp_l;
break;
case (int)'n':
xfree(params.node_id);
if (optarg)
params.node_id = xstrdup(optarg);
else
params.node_id = xstrdup("*");
break;
case (int)'o':
params.offset = atoi(optarg);
break;
case (int)'p':
xfree(params.program);
params.program = xstrdup(optarg);
break;
case (int)'q':
params.quiet = true;
case (int)'r':
params.reconfig = true;
break;
case (int)'t':
params.time_limit = true;
break;
case (int)'u':
params.node_up = true;
break;
case (int) OPT_LONG_USER:
if ((optarg[0] >= '0') && (optarg[0] <= '9'))
params.user_id = (uint32_t) atol(optarg);
else {
struct passwd *pw;
pw = getpwnam(optarg);
if (pw == NULL) {
error("Invalid user %s", optarg);
exit(1);
}
params.user_id = pw->pw_uid;
}
break;
case (int) 'v':
params.verbose++;
break;
case (int) 'V':
_print_version();
exit(0);
case (int) OPT_LONG_HELP:
_help();
exit(0);
case (int) OPT_LONG_USAGE:
_usage();
exit(0);
case (int) OPT_LONG_SET:
params.mode_set = true;
break;
case (int) OPT_LONG_GET:
params.mode_get = true;
break;
case (int) OPT_LONG_CLEAR:
params.mode_clear = true;
break;
case (int) OPT_LONG_BLOCK_ERR:
params.block_err = true;
break;
}
}
if (params.verbose)
_print_options();
_validate_options();
}
/* initialize the parameters */
static void _init_options( void )
{
params.mode_set = false;
params.mode_get = false;
params.mode_clear = false;
params.block_err = false;
params.node_down = false;
params.node_idle = false;
params.trigger_id = 0;
params.job_fini = false;
params.job_id = 0;
params.node_id = NULL;
params.offset = 0;
params.program = NULL;
params.quiet = false;
params.reconfig = false;
params.time_limit = false;
params.node_up = false;
params.user_id = 0;
params.verbose = 0;
}
/* print the parameters specified */
static void _print_options( void )
{
verbose("-----------------------------");
verbose("set = %s", params.mode_set ? "true" : "false");
verbose("get = %s", params.mode_get ? "true" : "false");
verbose("clear = %s", params.mode_clear ? "true" : "false");
verbose("block_err = %s", params.block_err ? "true" : "false");
verbose("job_id = %u", params.job_id);
verbose("job_fini = %s", params.job_fini ? "true" : "false");
verbose("node_down = %s", params.node_down ? "true" : "false");
verbose("node_idle = %s", params.node_idle ? "true" : "false");
verbose("node_up = %s", params.node_up ? "true" : "false");
verbose("node = %s", params.node_id);
verbose("offset = %d secs", params.offset);
verbose("program = %s", params.program);
verbose("quiet = %s", params.quiet ? "true" : "false");
verbose("reconfig = %s", params.reconfig ? "true" : "false");
verbose("time_limit = %s", params.time_limit ? "true" : "false");
verbose("trigger_id = %u", params.trigger_id);
verbose("user_id = %u", params.user_id);
verbose("verbose = %d", params.verbose);
verbose("-----------------------------");
}
static void _validate_options( void )
{
if ((params.mode_set + params.mode_get + params.mode_clear) != 1) {
error("You must use exactly one of the following options: "
"--set, --get or --clear");
exit(1);
}
if (params.mode_clear
&& ((params.trigger_id + params.job_id + params.user_id) == 0)) {
error("You must specify a --id, --jobid, or --user to clear");
exit(1);
}
if (params.mode_set
&& ((params.node_down + params.node_idle + params.node_up + params.reconfig +
params.job_fini + params.time_limit + params.block_err) == 0)) {
error("You must specify a trigger (--block_err, --down, --up, "
"--reconfig, --time or --fini)");
exit(1);
}
if (params.mode_set && (params.program == NULL)) {
error("You must specify a --program value");
exit(1);
}
if (((params.job_fini + params.time_limit) != 0)
&& (params.job_id == 0)) {
error("You must specify a --jobid value");
exit(1);
}
if (params.program && (params.program[0] != '/')) {
error("The --program value must start with \"/\"");
exit(1);
}
if (params.program) {
struct stat buf;
if (stat(params.program, &buf)) {
error("Invalid --program value, file not found");
exit(1);
}
if (!S_ISREG(buf.st_mode)) {
error("Invalid --program value, not regular file");
exit(1);
}
}
if ((params.offset < -32000) || (params.offset > 32000)) {
error("The --offset parameter must be between +/-32000");
exit(1);
}
}
static void _print_version(void)
{
printf("%s %s\n", PACKAGE, SLURM_VERSION);
}
static void _usage( void )
{
printf("Usage: strigger [--set | --get | --clear | --version] [-dfiIjnoptuv]\n");
}
static void _help( void )
{
printf ("\
Usage: strigger [--set | --get | --clear] [OPTIONS]\n\
--set create a trigger\n\
--get get trigger information\n\
--clear delete a trigger\n\n\
--block_err trigger event on BlueGene block error\n\
-d, --down trigger event when node goes DOWN\n\
-f, --fini trigger event when job finishes\n\
-i, --id=# a trigger's ID number\n\
-I, --idle trigger event when node remains IDLE\n\
-j, --jobid=# trigger related to specific jobid\n\
-n, --node[=host] trigger related to specific node, all nodes by default\n\
-o, --offset=# trigger's offset time from event, negative to preceed\n\
-p, --program=path pathname of program to execute when triggered\n\
-r, --reconfig trigger event on configuration changes\n\
-t, --time trigger event on job's time limit\n\
-u, --up trigger event when node returned to service from DOWN state\n\
--user a user name or ID to filter triggers by\n\
-v, --verbose print detailed event logging\n\
-V, --version print version information and exit\n\
\nHelp options:\n\
--help show this help message\n\
--usage display brief usage message\n");
}