udevadm-control.c revision ff2c503df091e6e4e9ab48cdb6df6ec8b7b525d0
/*
* Copyright (C) 2005-2008 Kay Sievers <kay.sievers@vrfy.org>
*
* 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.
*
* This program 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.
*/
#include <time.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <unistd.h>
#include <getopt.h>
#include "udev.h"
static void print_help(void)
{
printf("Usage: udevadm control COMMAND\n"
" --exit instruct the daemon to cleanup and exit\n"
" --log-priority=<level> set the udev log level for the daemon\n"
" --stop-exec-queue keep udevd from executing events, queue only\n"
" --start-exec-queue execute events, flush queue\n"
" --reload-rules reloads the rules files\n"
" --property=<KEY>=<value> set a global property for all events\n"
" --children-max=<N> maximum number of children\n"
" --timeout=<seconds> maximum time to block for a reply\n"
" --help print this help text\n\n");
}
{
int timeout = 60;
int rc = 1;
{}
};
if (getuid() != 0) {
return 1;
}
return 2;
for (;;) {
int option;
if (option == -1)
break;
switch (option) {
case 'e':
rc = 2;
else
rc = 0;
break;
case 'l': {
int i;
i = util_log_priority(optarg);
if (i < 0) {
goto out;
}
rc = 2;
else
rc = 0;
break;
}
case 's':
rc = 2;
else
rc = 0;
break;
case 'S':
rc = 2;
else
rc = 0;
break;
case 'R':
rc = 2;
else
rc = 0;
break;
case 'p':
goto out;
}
rc = 2;
else
rc = 0;
break;
case 'm': {
char *endp;
int i;
goto out;
}
rc = 2;
else
rc = 0;
break;
}
case 't': {
int seconds;
if (seconds >= 0)
else
break;
}
case 'h':
print_help();
rc = 0;
break;
}
}
out:
return rc;
}