13be6ef06SEitan Adler /*
23be6ef06SEitan Adler * Top users/processes display for Unix
351c834c4SEitan Adler * Version 3
43be6ef06SEitan Adler *
53be6ef06SEitan Adler * This program may be freely redistributed,
63be6ef06SEitan Adler * but this entire comment MUST remain intact.
73be6ef06SEitan Adler *
83be6ef06SEitan Adler * Copyright (c) 1984, 1989, William LeFebvre, Rice University
93be6ef06SEitan Adler * Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
103be6ef06SEitan Adler */
113be6ef06SEitan Adler
123be6ef06SEitan Adler /*
133be6ef06SEitan Adler * This file contains the routines that implement some of the interactive
143be6ef06SEitan Adler * mode commands. Note that some of the commands are implemented in-line
153be6ef06SEitan Adler * in "main". This is necessary because they change the global state of
163be6ef06SEitan Adler * "top" (i.e.: changing the number of processes to display).
173be6ef06SEitan Adler */
183be6ef06SEitan Adler
193be6ef06SEitan Adler #include <sys/resource.h>
208d0d2676SEitan Adler #include <sys/signal.h>
213be6ef06SEitan Adler
223be6ef06SEitan Adler #include <ctype.h>
233be6ef06SEitan Adler #include <errno.h>
243be6ef06SEitan Adler #include <signal.h>
250b2f6ed1SEitan Adler #include <stdbool.h>
26caee4883SEitan Adler #include <stdlib.h>
27caee4883SEitan Adler #include <stdio.h>
28caee4883SEitan Adler #include <string.h>
293be6ef06SEitan Adler #include <unistd.h>
303be6ef06SEitan Adler
313be6ef06SEitan Adler #include "commands.h"
323be6ef06SEitan Adler #include "top.h"
333be6ef06SEitan Adler #include "machine.h"
343be6ef06SEitan Adler
35b3c88c28SEitan Adler static int err_compar(const void *p1, const void *p2);
36b3c88c28SEitan Adler
37b3c88c28SEitan Adler struct errs /* structure for a system-call error */
38b3c88c28SEitan Adler {
39b3c88c28SEitan Adler int errnum; /* value of errno (that is, the actual error) */
40b3c88c28SEitan Adler char *arg; /* argument that caused the error */
41b3c88c28SEitan Adler };
42b3c88c28SEitan Adler
43419fab3bSEitan Adler static char *err_string(void);
443be6ef06SEitan Adler static int str_adderr(char *str, int len, int err);
45d0bb69dcSEitan Adler static int str_addarg(char *str, int len, char *arg, bool first);
463be6ef06SEitan Adler
473be6ef06SEitan Adler /*
483be6ef06SEitan Adler * show_help() - display the help screen; invoked in response to
493be6ef06SEitan Adler * either 'h' or '?'.
503be6ef06SEitan Adler */
513be6ef06SEitan Adler
52c8aa5e52SEitan Adler const struct command all_commands[] =
53b26cf3d0SEitan Adler {
54*0a85254dSAlexander Ziaee {' ', "update the display", false, CMD_update},
55*0a85254dSAlexander Ziaee {'/', "filter on command name (+ selects all commands)", false, CMD_grep},
56*0a85254dSAlexander Ziaee {'a', "toggle the display of process titles", false, CMD_showargs},
57*0a85254dSAlexander Ziaee {'C', "toggle the display of raw or weighted CPU percentage", false, CMD_wcputog},
58c8aa5e52SEitan Adler {'d', "change number of displays to show", false, CMD_displays},
59c8aa5e52SEitan Adler {'e', "list errors generated by last \"kill\" or \"renice\" command", false, CMD_errors},
60*0a85254dSAlexander Ziaee {'H', "toggle the display of threads", false, CMD_thrtog},
61c8aa5e52SEitan Adler {'h', "show this help text", true, CMD_help},
62e7cb1c07SEitan Adler {'?', NULL, true, CMD_help},
63*0a85254dSAlexander Ziaee {'i', "toggle the display of idle processes", false, CMD_idletog},
64e7cb1c07SEitan Adler {'I', NULL, false, CMD_idletog},
65c8aa5e52SEitan Adler {'J', "display processes for only one jail (+ selects all jails)", false, CMD_jail},
66*0a85254dSAlexander Ziaee {'j', "toggle the display of jail ID", false, CMD_jidtog},
67c8aa5e52SEitan Adler {'k', "kill processes; send a signal to a list of processes", false, CMD_kill},
68c8aa5e52SEitan Adler {'m', "toggle the display between 'cpu' and 'io' modes", false, CMD_viewtog},
69c8aa5e52SEitan Adler {'n', "change number of processes to display", false, CMD_number},
70e7cb1c07SEitan Adler {'#', NULL, false, CMD_number},
71c8aa5e52SEitan Adler {'o', "specify the sort order", false, CMD_order},
72*0a85254dSAlexander Ziaee {'P', "toggle the display of per-CPU statistics", false, CMD_pcputog},
73c8aa5e52SEitan Adler {'p', "display one process (+ selects all processes)", false, CMD_pid},
74*0a85254dSAlexander Ziaee {'q', "quit" , true, CMD_quit},
75c8aa5e52SEitan Adler {'r', "renice a process", false, CMD_renice},
76*0a85254dSAlexander Ziaee {'S', "toggle the display of system processes", false, CMD_viewsys},
77c8aa5e52SEitan Adler {'s', "change number of seconds to delay between updates", false, CMD_delay},
78*0a85254dSAlexander Ziaee {'T', "toggle the display of thread IDs", false, CMD_toggletid},
79c8aa5e52SEitan Adler {'t', "toggle the display of this process", false, CMD_selftog},
80c8aa5e52SEitan Adler {'u', "display processes for only one user (+ selects all users)", false, CMD_user},
81c8aa5e52SEitan Adler {'w', "toggle the display of swap use for each process", false, CMD_swaptog},
82*0a85254dSAlexander Ziaee {'z', "toggle the display of the system idle process", false, CMD_kidletog},
83c8aa5e52SEitan Adler {0, NULL, true, CMD_NONE}
84b26cf3d0SEitan Adler };
85b26cf3d0SEitan Adler
863be6ef06SEitan Adler void
show_help(void)87f6234b51SEitan Adler show_help(void)
883be6ef06SEitan Adler {
89e7cb1c07SEitan Adler const struct command *curcmd, *nextcmd;
90e7cb1c07SEitan Adler char keys[8] = "";
91e7cb1c07SEitan Adler _Static_assert(sizeof(keys) >= sizeof("a or b"), "keys right size");
923be6ef06SEitan Adler
93b26cf3d0SEitan Adler printf("Top version FreeBSD, %s\n", copyright);
94b26cf3d0SEitan Adler curcmd = all_commands;
95b26cf3d0SEitan Adler while (curcmd->c != 0) {
96b26cf3d0SEitan Adler if (overstrike && !curcmd->available_to_dumb) {
97b26cf3d0SEitan Adler ++curcmd;
98b26cf3d0SEitan Adler continue;
99b26cf3d0SEitan Adler }
100e7cb1c07SEitan Adler if (curcmd->desc == NULL) {
101e7cb1c07SEitan Adler /* we already printed this */
102e7cb1c07SEitan Adler ++curcmd;
103e7cb1c07SEitan Adler continue;
104e7cb1c07SEitan Adler }
105e7cb1c07SEitan Adler nextcmd = curcmd + 1;
106e7cb1c07SEitan Adler if (nextcmd->desc == NULL && nextcmd->c != '\0') {
107e7cb1c07SEitan Adler sprintf(keys, "%c or %c", curcmd->c, nextcmd->c);
108e7cb1c07SEitan Adler } else if (curcmd->c == ' '){
109e7cb1c07SEitan Adler /* special case space rather than introducing a "display string" to
110e7cb1c07SEitan Adler * the struct */
111*0a85254dSAlexander Ziaee sprintf(keys, "space");
112e7cb1c07SEitan Adler } else {
113e7cb1c07SEitan Adler sprintf(keys, "%c", curcmd->c);
114e7cb1c07SEitan Adler }
115e7cb1c07SEitan Adler printf("%s\t- %s\n", keys, curcmd->desc);
116b26cf3d0SEitan Adler ++curcmd;
117b26cf3d0SEitan Adler }
1183be6ef06SEitan Adler if (overstrike)
1193be6ef06SEitan Adler {
120b26cf3d0SEitan Adler fputs("\
1213be6ef06SEitan Adler Other commands are also available, but this terminal is not\n\
122b26cf3d0SEitan Adler sophisticated enough to handle those commands gracefully.\n", stdout);
1233be6ef06SEitan Adler }
1243be6ef06SEitan Adler }
1253be6ef06SEitan Adler
1263be6ef06SEitan Adler /*
1273be6ef06SEitan Adler * Utility routines that help with some of the commands.
1283be6ef06SEitan Adler */
1293be6ef06SEitan Adler
130b3c88c28SEitan Adler static char *
next_field(char * str)131b3c88c28SEitan Adler next_field(char *str)
1323be6ef06SEitan Adler {
1333be6ef06SEitan Adler if ((str = strchr(str, ' ')) == NULL)
1343be6ef06SEitan Adler {
1353be6ef06SEitan Adler return(NULL);
1363be6ef06SEitan Adler }
1373be6ef06SEitan Adler *str = '\0';
1383be6ef06SEitan Adler while (*++str == ' ') /* loop */;
1393be6ef06SEitan Adler
1403be6ef06SEitan Adler /* if there is nothing left of the string, return NULL */
1413be6ef06SEitan Adler /* This fix is dedicated to Greg Earle */
1423be6ef06SEitan Adler return(*str == '\0' ? NULL : str);
1433be6ef06SEitan Adler }
1443be6ef06SEitan Adler
145b3c88c28SEitan Adler static int
scanint(char * str,int * intp)146bc875b45SEitan Adler scanint(char *str, int *intp)
1473be6ef06SEitan Adler {
14898c299e0SEitan Adler int val = 0;
14998c299e0SEitan Adler char ch;
1503be6ef06SEitan Adler
1513be6ef06SEitan Adler /* if there is nothing left of the string, flag it as an error */
1523be6ef06SEitan Adler /* This fix is dedicated to Greg Earle */
1533be6ef06SEitan Adler if (*str == '\0')
1543be6ef06SEitan Adler {
1553be6ef06SEitan Adler return(-1);
1563be6ef06SEitan Adler }
1573be6ef06SEitan Adler
1583be6ef06SEitan Adler while ((ch = *str++) != '\0')
1593be6ef06SEitan Adler {
1603be6ef06SEitan Adler if (isdigit(ch))
1613be6ef06SEitan Adler {
1623be6ef06SEitan Adler val = val * 10 + (ch - '0');
1633be6ef06SEitan Adler }
1643be6ef06SEitan Adler else if (isspace(ch))
1653be6ef06SEitan Adler {
1663be6ef06SEitan Adler break;
1673be6ef06SEitan Adler }
1683be6ef06SEitan Adler else
1693be6ef06SEitan Adler {
1703be6ef06SEitan Adler return(-1);
1713be6ef06SEitan Adler }
1723be6ef06SEitan Adler }
1733be6ef06SEitan Adler *intp = val;
1743be6ef06SEitan Adler return(0);
1753be6ef06SEitan Adler }
1763be6ef06SEitan Adler
1773be6ef06SEitan Adler /*
1783be6ef06SEitan Adler * Some of the commands make system calls that could generate errors.
1793be6ef06SEitan Adler * These errors are collected up in an array of structures for later
1803be6ef06SEitan Adler * contemplation and display. Such routines return a string containing an
1813be6ef06SEitan Adler * error message, or NULL if no errors occurred. The next few routines are
1823be6ef06SEitan Adler * for manipulating and displaying these errors. We need an upper limit on
1833be6ef06SEitan Adler * the number of errors, so we arbitrarily choose 20.
1843be6ef06SEitan Adler */
1853be6ef06SEitan Adler
1863be6ef06SEitan Adler #define ERRMAX 20
1873be6ef06SEitan Adler
1883be6ef06SEitan Adler static struct errs errs[ERRMAX];
1893be6ef06SEitan Adler static int errcnt;
1903c9ec0a5SEitan Adler static char err_toomany[] = " too many errors occurred";
1913c9ec0a5SEitan Adler static char err_listem[] =
1923be6ef06SEitan Adler " Many errors occurred. Press `e' to display the list of errors.";
1933be6ef06SEitan Adler
1943be6ef06SEitan Adler /* These macros get used to reset and log the errors */
1953be6ef06SEitan Adler #define ERR_RESET errcnt = 0
1963be6ef06SEitan Adler #define ERROR(p, e) if (errcnt >= ERRMAX) \
1973be6ef06SEitan Adler { \
1983be6ef06SEitan Adler return(err_toomany); \
1993be6ef06SEitan Adler } \
2003be6ef06SEitan Adler else \
2013be6ef06SEitan Adler { \
2023be6ef06SEitan Adler errs[errcnt].arg = (p); \
2033be6ef06SEitan Adler errs[errcnt++].errnum = (e); \
2043be6ef06SEitan Adler }
2053be6ef06SEitan Adler
2063be6ef06SEitan Adler /*
2073be6ef06SEitan Adler * err_string() - return an appropriate error string. This is what the
2083be6ef06SEitan Adler * command will return for displaying. If no errors were logged, then
2093be6ef06SEitan Adler * return NULL. The maximum length of the error string is defined by
2103be6ef06SEitan Adler * "STRMAX".
2113be6ef06SEitan Adler */
2123be6ef06SEitan Adler
2133be6ef06SEitan Adler #define STRMAX 80
2143be6ef06SEitan Adler
215ccf22059SEitan Adler char *
err_string(void)216ccf22059SEitan Adler err_string(void)
2173be6ef06SEitan Adler {
21898c299e0SEitan Adler struct errs *errp;
21998c299e0SEitan Adler int cnt = 0;
220d0bb69dcSEitan Adler bool first = true;
22198c299e0SEitan Adler int currerr = -1;
2223be6ef06SEitan Adler int stringlen; /* characters still available in "string" */
2233be6ef06SEitan Adler static char string[STRMAX];
2243be6ef06SEitan Adler
2253be6ef06SEitan Adler /* if there are no errors, return NULL */
2263be6ef06SEitan Adler if (errcnt == 0)
2273be6ef06SEitan Adler {
2283be6ef06SEitan Adler return(NULL);
2293be6ef06SEitan Adler }
2303be6ef06SEitan Adler
2313be6ef06SEitan Adler /* sort the errors */
2323be6ef06SEitan Adler qsort((char *)errs, errcnt, sizeof(struct errs), err_compar);
2333be6ef06SEitan Adler
2343be6ef06SEitan Adler /* need a space at the front of the error string */
2353be6ef06SEitan Adler string[0] = ' ';
2363be6ef06SEitan Adler string[1] = '\0';
2373be6ef06SEitan Adler stringlen = STRMAX - 2;
2383be6ef06SEitan Adler
2393be6ef06SEitan Adler /* loop thru the sorted list, building an error string */
2403be6ef06SEitan Adler while (cnt < errcnt)
2413be6ef06SEitan Adler {
2423be6ef06SEitan Adler errp = &(errs[cnt++]);
2433be6ef06SEitan Adler if (errp->errnum != currerr)
2443be6ef06SEitan Adler {
245aa9d9bfaSAlan Somers if (currerr >= 0)
2463be6ef06SEitan Adler {
2473be6ef06SEitan Adler if ((stringlen = str_adderr(string, stringlen, currerr)) < 2)
2483be6ef06SEitan Adler {
2493be6ef06SEitan Adler return(err_listem);
2503be6ef06SEitan Adler }
251419fab3bSEitan Adler strcat(string, "; "); /* we know there's more */
2523be6ef06SEitan Adler }
2533be6ef06SEitan Adler currerr = errp->errnum;
2540b2f6ed1SEitan Adler first = true;
2553be6ef06SEitan Adler }
2563be6ef06SEitan Adler if ((stringlen = str_addarg(string, stringlen, errp->arg, first)) ==0)
2573be6ef06SEitan Adler {
2583be6ef06SEitan Adler return(err_listem);
2593be6ef06SEitan Adler }
2600b2f6ed1SEitan Adler first = false;
2613be6ef06SEitan Adler }
2623be6ef06SEitan Adler
2633be6ef06SEitan Adler /* add final message */
2643be6ef06SEitan Adler stringlen = str_adderr(string, stringlen, currerr);
2653be6ef06SEitan Adler
2663be6ef06SEitan Adler /* return the error string */
2673be6ef06SEitan Adler return(stringlen == 0 ? err_listem : string);
2683be6ef06SEitan Adler }
2693be6ef06SEitan Adler
2703be6ef06SEitan Adler /*
2713be6ef06SEitan Adler * str_adderr(str, len, err) - add an explanation of error "err" to
2723be6ef06SEitan Adler * the string "str".
2733be6ef06SEitan Adler */
2743be6ef06SEitan Adler
2753be6ef06SEitan Adler static int
str_adderr(char * str,int len,int err)276419fab3bSEitan Adler str_adderr(char *str, int len, int err)
2773be6ef06SEitan Adler {
278419fab3bSEitan Adler const char *msg;
27998c299e0SEitan Adler int msglen;
2803be6ef06SEitan Adler
281b3c88c28SEitan Adler msg = err == 0 ? "Not a number" : strerror(err);
2823be6ef06SEitan Adler msglen = strlen(msg) + 2;
2833be6ef06SEitan Adler if (len <= msglen)
2843be6ef06SEitan Adler {
2853be6ef06SEitan Adler return(0);
2863be6ef06SEitan Adler }
287419fab3bSEitan Adler strcat(str, ": ");
288419fab3bSEitan Adler strcat(str, msg);
2893be6ef06SEitan Adler return(len - msglen);
2903be6ef06SEitan Adler }
2913be6ef06SEitan Adler
2923be6ef06SEitan Adler /*
2933be6ef06SEitan Adler * str_addarg(str, len, arg, first) - add the string argument "arg" to
2943be6ef06SEitan Adler * the string "str". This is the first in the group when "first"
2953be6ef06SEitan Adler * is set (indicating that a comma should NOT be added to the front).
2963be6ef06SEitan Adler */
2973be6ef06SEitan Adler
2983be6ef06SEitan Adler static int
str_addarg(char str[],int len,char arg[],bool first)299d0bb69dcSEitan Adler str_addarg(char str[], int len, char arg[], bool first)
3003be6ef06SEitan Adler {
30198c299e0SEitan Adler int arglen;
3023be6ef06SEitan Adler
3033be6ef06SEitan Adler arglen = strlen(arg);
3043be6ef06SEitan Adler if (!first)
3053be6ef06SEitan Adler {
3063be6ef06SEitan Adler arglen += 2;
3073be6ef06SEitan Adler }
3083be6ef06SEitan Adler if (len <= arglen)
3093be6ef06SEitan Adler {
3103be6ef06SEitan Adler return(0);
3113be6ef06SEitan Adler }
3123be6ef06SEitan Adler if (!first)
3133be6ef06SEitan Adler {
314419fab3bSEitan Adler strcat(str, ", ");
3153be6ef06SEitan Adler }
316419fab3bSEitan Adler strcat(str, arg);
3173be6ef06SEitan Adler return(len - arglen);
3183be6ef06SEitan Adler }
3193be6ef06SEitan Adler
3203be6ef06SEitan Adler /*
3213be6ef06SEitan Adler * err_compar(p1, p2) - comparison routine used by "qsort"
3223be6ef06SEitan Adler * for sorting errors.
3233be6ef06SEitan Adler */
3243be6ef06SEitan Adler
325b3c88c28SEitan Adler static int
err_compar(const void * p1,const void * p2)326b3c88c28SEitan Adler err_compar(const void *p1, const void *p2)
3273be6ef06SEitan Adler {
32898c299e0SEitan Adler int result;
329a5ca08edSEitan Adler const struct errs * const g1 = (const struct errs * const)p1;
330a5ca08edSEitan Adler const struct errs * const g2 = (const struct errs * const)p2;
3313be6ef06SEitan Adler
332b3c88c28SEitan Adler
333b3c88c28SEitan Adler
334b3c88c28SEitan Adler if ((result = g1->errnum - g2->errnum) == 0)
3353be6ef06SEitan Adler {
336b3c88c28SEitan Adler return(strcmp(g1->arg, g2->arg));
3373be6ef06SEitan Adler }
3383be6ef06SEitan Adler return(result);
3393be6ef06SEitan Adler }
3403be6ef06SEitan Adler
3413be6ef06SEitan Adler /*
3423be6ef06SEitan Adler * error_count() - return the number of errors currently logged.
3433be6ef06SEitan Adler */
3443be6ef06SEitan Adler
3453be6ef06SEitan Adler int
error_count(void)346f6234b51SEitan Adler error_count(void)
3473be6ef06SEitan Adler {
3483be6ef06SEitan Adler return(errcnt);
3493be6ef06SEitan Adler }
3503be6ef06SEitan Adler
3513be6ef06SEitan Adler /*
3523be6ef06SEitan Adler * show_errors() - display on stdout the current log of errors.
3533be6ef06SEitan Adler */
3543be6ef06SEitan Adler
3553be6ef06SEitan Adler void
show_errors(void)356f6234b51SEitan Adler show_errors(void)
3573be6ef06SEitan Adler {
35898c299e0SEitan Adler int cnt = 0;
35998c299e0SEitan Adler struct errs *errp = errs;
3603be6ef06SEitan Adler
3613be6ef06SEitan Adler printf("%d error%s:\n\n", errcnt, errcnt == 1 ? "" : "s");
3623be6ef06SEitan Adler while (cnt++ < errcnt)
3633be6ef06SEitan Adler {
3643be6ef06SEitan Adler printf("%5s: %s\n", errp->arg,
365b3c88c28SEitan Adler errp->errnum == 0 ? "Not a number" : strerror(errp->errnum));
3663be6ef06SEitan Adler errp++;
3673be6ef06SEitan Adler }
3683be6ef06SEitan Adler }
3693be6ef06SEitan Adler
370b26cf3d0SEitan Adler static const char no_proc_specified[] = " no processes specified";
371b26cf3d0SEitan Adler static const char invalid_signal_number[] = " invalid_signal_number";
372b26cf3d0SEitan Adler static const char bad_signal_name[] = " bad signal name";
373b26cf3d0SEitan Adler static const char bad_pri_value[] = " bad priority value";
3743c9ec0a5SEitan Adler
375561b0720SEitan Adler static int
signame_to_signum(const char * sig)376561b0720SEitan Adler signame_to_signum(const char * sig)
377561b0720SEitan Adler {
378561b0720SEitan Adler int n;
379561b0720SEitan Adler
380561b0720SEitan Adler if (strncasecmp(sig, "SIG", 3) == 0)
381561b0720SEitan Adler sig += 3;
382561b0720SEitan Adler for (n = 1; n < sys_nsig; n++) {
383561b0720SEitan Adler if (!strcasecmp(sys_signame[n], sig))
384561b0720SEitan Adler return (n);
385561b0720SEitan Adler }
386561b0720SEitan Adler return (-1);
387561b0720SEitan Adler }
388561b0720SEitan Adler
3893be6ef06SEitan Adler /*
3903be6ef06SEitan Adler * kill_procs(str) - send signals to processes, much like the "kill"
3913be6ef06SEitan Adler * command does; invoked in response to 'k'.
3923be6ef06SEitan Adler */
3933be6ef06SEitan Adler
394b26cf3d0SEitan Adler const char *
kill_procs(char * str)395b3c88c28SEitan Adler kill_procs(char *str)
3963be6ef06SEitan Adler {
39798c299e0SEitan Adler char *nptr;
3983be6ef06SEitan Adler int signum = SIGTERM; /* default */
3993be6ef06SEitan Adler int procnum;
4003be6ef06SEitan Adler
4013be6ef06SEitan Adler /* reset error array */
4023be6ef06SEitan Adler ERR_RESET;
4033be6ef06SEitan Adler
4043be6ef06SEitan Adler /* skip over leading white space */
4053be6ef06SEitan Adler while (isspace(*str)) str++;
4063be6ef06SEitan Adler
4073be6ef06SEitan Adler if (str[0] == '-')
4083be6ef06SEitan Adler {
4093be6ef06SEitan Adler /* explicit signal specified */
4103be6ef06SEitan Adler if ((nptr = next_field(str)) == NULL)
4113be6ef06SEitan Adler {
4123c9ec0a5SEitan Adler return(no_proc_specified);
4133be6ef06SEitan Adler }
4143be6ef06SEitan Adler
4153be6ef06SEitan Adler if (isdigit(str[1]))
4163be6ef06SEitan Adler {
417419fab3bSEitan Adler scanint(str + 1, &signum);
4183be6ef06SEitan Adler if (signum <= 0 || signum >= NSIG)
4193be6ef06SEitan Adler {
4203c9ec0a5SEitan Adler return(invalid_signal_number);
4213be6ef06SEitan Adler }
4223be6ef06SEitan Adler }
4233be6ef06SEitan Adler else
4243be6ef06SEitan Adler {
425561b0720SEitan Adler signum = signame_to_signum(str + 1);
4263be6ef06SEitan Adler
4273be6ef06SEitan Adler /* was it ever found */
428561b0720SEitan Adler if (signum == -1 )
4293be6ef06SEitan Adler {
4303c9ec0a5SEitan Adler return(bad_signal_name);
4313be6ef06SEitan Adler }
4323be6ef06SEitan Adler }
4333be6ef06SEitan Adler /* put the new pointer in place */
4343be6ef06SEitan Adler str = nptr;
4353be6ef06SEitan Adler }
4363be6ef06SEitan Adler
4373be6ef06SEitan Adler /* loop thru the string, killing processes */
4383be6ef06SEitan Adler do
4393be6ef06SEitan Adler {
4403be6ef06SEitan Adler if (scanint(str, &procnum) == -1)
4413be6ef06SEitan Adler {
4423be6ef06SEitan Adler ERROR(str, 0);
4433be6ef06SEitan Adler }
4443be6ef06SEitan Adler else
4453be6ef06SEitan Adler {
4463be6ef06SEitan Adler /* go in for the kill */
447a0116099SEitan Adler if (kill(procnum, signum) == -1)
4483be6ef06SEitan Adler {
4493be6ef06SEitan Adler /* chalk up an error */
4503be6ef06SEitan Adler ERROR(str, errno);
4513be6ef06SEitan Adler }
4523be6ef06SEitan Adler }
4533be6ef06SEitan Adler } while ((str = next_field(str)) != NULL);
4543be6ef06SEitan Adler
4553be6ef06SEitan Adler /* return appropriate error string */
4563be6ef06SEitan Adler return(err_string());
4573be6ef06SEitan Adler }
4583be6ef06SEitan Adler
4593be6ef06SEitan Adler /*
4603be6ef06SEitan Adler * renice_procs(str) - change the "nice" of processes, much like the
4613be6ef06SEitan Adler * "renice" command does; invoked in response to 'r'.
4623be6ef06SEitan Adler */
4633be6ef06SEitan Adler
464b26cf3d0SEitan Adler const char *
renice_procs(char * str)465b3c88c28SEitan Adler renice_procs(char *str)
4663be6ef06SEitan Adler {
46798c299e0SEitan Adler char negate;
4683be6ef06SEitan Adler int prio;
4693be6ef06SEitan Adler int procnum;
4703be6ef06SEitan Adler
4713be6ef06SEitan Adler ERR_RESET;
4723be6ef06SEitan Adler
4733be6ef06SEitan Adler /* allow for negative priority values */
4743be6ef06SEitan Adler if ((negate = (*str == '-')) != 0)
4753be6ef06SEitan Adler {
4763be6ef06SEitan Adler /* move past the minus sign */
4773be6ef06SEitan Adler str++;
4783be6ef06SEitan Adler }
4793be6ef06SEitan Adler
4803be6ef06SEitan Adler /* use procnum as a temporary holding place and get the number */
4813be6ef06SEitan Adler procnum = scanint(str, &prio);
4823be6ef06SEitan Adler
4833be6ef06SEitan Adler /* negate if necessary */
4843be6ef06SEitan Adler if (negate)
4853be6ef06SEitan Adler {
4863be6ef06SEitan Adler prio = -prio;
4873be6ef06SEitan Adler }
4883be6ef06SEitan Adler
4893be6ef06SEitan Adler /* check for validity */
4903be6ef06SEitan Adler if (procnum == -1 || prio < PRIO_MIN || prio > PRIO_MAX)
4913be6ef06SEitan Adler {
4923c9ec0a5SEitan Adler return(bad_pri_value);
4933be6ef06SEitan Adler }
4943be6ef06SEitan Adler
4953be6ef06SEitan Adler /* move to the first process number */
4963be6ef06SEitan Adler if ((str = next_field(str)) == NULL)
4973be6ef06SEitan Adler {
4983c9ec0a5SEitan Adler return(no_proc_specified);
4993be6ef06SEitan Adler }
5003be6ef06SEitan Adler
5013be6ef06SEitan Adler /* loop thru the process numbers, renicing each one */
5023be6ef06SEitan Adler do
5033be6ef06SEitan Adler {
5043be6ef06SEitan Adler if (scanint(str, &procnum) == -1)
5053be6ef06SEitan Adler {
5063be6ef06SEitan Adler ERROR(str, 0);
5073be6ef06SEitan Adler }
5083be6ef06SEitan Adler
509a0116099SEitan Adler if (setpriority(PRIO_PROCESS, procnum, prio) == -1)
5103be6ef06SEitan Adler {
5113be6ef06SEitan Adler ERROR(str, errno);
5123be6ef06SEitan Adler }
5133be6ef06SEitan Adler } while ((str = next_field(str)) != NULL);
5143be6ef06SEitan Adler
5153be6ef06SEitan Adler /* return appropriate error string */
5163be6ef06SEitan Adler return(err_string());
5173be6ef06SEitan Adler }
5183be6ef06SEitan Adler
519