2015-06-13 10:34:31 +05:30
|
|
|
/*
|
|
|
|
* test_procps -- program to create a process to test procps
|
|
|
|
*
|
2021-01-21 12:07:48 +05:30
|
|
|
* Copyright 2015 Craig Small <csmall@dropbear.xyz>
|
2015-06-13 10:34:31 +05:30
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
2016-04-17 04:39:41 +05:30
|
|
|
#ifdef __linux__
|
2015-06-13 10:34:31 +05:30
|
|
|
#include <sys/prctl.h>
|
2016-03-11 04:34:27 +05:30
|
|
|
#endif
|
2015-06-13 10:34:31 +05:30
|
|
|
#include "c.h"
|
|
|
|
|
|
|
|
#define DEFAULT_SLEEPTIME 300
|
|
|
|
#define MY_NAME "spcorp"
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
|
|
|
fprintf(stderr, " %s [options]\n", program_invocation_short_name);
|
|
|
|
fprintf(stderr, " -s <seconds>\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2020-04-28 15:10:07 +05:30
|
|
|
signal_handler(int signum, siginfo_t *siginfo, void *ucontext)
|
2015-06-13 10:34:31 +05:30
|
|
|
{
|
2020-04-28 15:10:07 +05:30
|
|
|
char *signame = NULL;
|
|
|
|
|
2015-06-13 10:34:31 +05:30
|
|
|
switch(signum) {
|
|
|
|
case SIGUSR1:
|
2020-04-28 15:10:07 +05:30
|
|
|
signame = strdup("SIGUSR1");
|
2015-06-13 10:34:31 +05:30
|
|
|
break;
|
|
|
|
case SIGUSR2:
|
2020-04-28 15:10:07 +05:30
|
|
|
signame = strdup("SIGUSR2");
|
2015-06-13 10:34:31 +05:30
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("SIG unknown\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2020-04-28 15:10:07 +05:30
|
|
|
if (signame == NULL) {
|
|
|
|
printf("SIG malloc error\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
switch (siginfo->si_code) {
|
|
|
|
case SI_USER:
|
|
|
|
printf("SIG %s\n", signame);
|
|
|
|
break;
|
|
|
|
case SI_QUEUE:
|
2021-10-13 02:26:39 +05:30
|
|
|
# ifndef __GNU__
|
|
|
|
printf("SIG %s value=%d\n", signame, siginfo->si_int);
|
|
|
|
# else
|
|
|
|
printf("case SI_QUEUE: SIG %s siginfo->si_int undefined\n", signame);
|
|
|
|
#endif
|
2020-04-28 15:10:07 +05:30
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("Unknown si_code %d\n", siginfo->si_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
2021-05-06 20:00:54 +05:30
|
|
|
free(signame);
|
2015-06-13 10:34:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int sleep_time, opt;
|
|
|
|
struct sigaction signal_action;
|
|
|
|
|
|
|
|
sleep_time = DEFAULT_SLEEPTIME;
|
|
|
|
while ((opt = getopt(argc, argv, "s:")) != -1) {
|
|
|
|
switch(opt) {
|
|
|
|
case 's':
|
|
|
|
sleep_time = atoi(optarg);
|
|
|
|
if (sleep_time < 1) {
|
|
|
|
fprintf(stderr, "sleep time must be 1 second or more\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup signal handling */
|
2020-04-28 15:10:07 +05:30
|
|
|
signal_action.sa_sigaction = signal_handler;
|
2015-06-13 10:34:31 +05:30
|
|
|
sigemptyset (&signal_action.sa_mask);
|
2020-04-28 15:10:07 +05:30
|
|
|
signal_action.sa_flags = SA_SIGINFO;
|
2015-06-13 10:34:31 +05:30
|
|
|
sigaction(SIGUSR1, &signal_action, NULL);
|
|
|
|
sigaction(SIGUSR2, &signal_action, NULL);
|
|
|
|
|
2016-04-17 04:39:41 +05:30
|
|
|
#ifdef __linux__
|
2015-06-13 10:34:31 +05:30
|
|
|
/* set process name */
|
|
|
|
prctl(PR_SET_NAME, MY_NAME, NULL, NULL, NULL);
|
2016-03-11 04:34:27 +05:30
|
|
|
#endif
|
2015-06-13 10:34:31 +05:30
|
|
|
|
|
|
|
while (sleep_time > 0) {
|
|
|
|
sleep_time = sleep(sleep_time);
|
|
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|