2013-06-11 18:33:52 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-11-17 16:32:30 +00:00
|
|
|
#include <errno.h>
|
2013-06-11 18:33:52 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-11-13 20:24:47 +00:00
|
|
|
#include <sys/resource.h>
|
2014-11-13 17:29:30 +00:00
|
|
|
|
2013-06-11 18:33:52 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static int strtop(const char *);
|
2014-11-13 20:24:47 +00:00
|
|
|
static int renice(int, int, long);
|
2014-04-22 12:13:51 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("renice -n inc [-g | -p | -u] ID ...\n");
|
|
|
|
}
|
2013-06-11 18:33:52 +00:00
|
|
|
|
|
|
|
int
|
2014-04-18 10:51:18 +00:00
|
|
|
main(int argc, char *argv[])
|
2013-06-11 18:33:52 +00:00
|
|
|
{
|
|
|
|
const char *adj = NULL;
|
|
|
|
long val;
|
2014-10-02 22:46:04 +00:00
|
|
|
int i, which = PRIO_PROCESS, status = 0;
|
2014-11-17 16:32:30 +00:00
|
|
|
struct passwd *pw;
|
|
|
|
int who;
|
2013-06-11 18:33:52 +00:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
case 'n':
|
2013-10-07 16:13:01 +00:00
|
|
|
adj = EARGF(usage());
|
2013-06-11 18:33:52 +00:00
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
which = PRIO_PGRP;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
which = PRIO_PROCESS;
|
|
|
|
break;
|
|
|
|
case 'u':
|
|
|
|
which = PRIO_USER;
|
|
|
|
break;
|
|
|
|
default:
|
2013-10-07 16:13:01 +00:00
|
|
|
usage();
|
2013-06-11 18:33:52 +00:00
|
|
|
break;
|
|
|
|
} ARGEND;
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (argc == 0 || !adj)
|
2013-10-07 16:13:01 +00:00
|
|
|
usage();
|
2013-06-11 18:33:52 +00:00
|
|
|
|
2015-01-30 15:52:44 +00:00
|
|
|
val = estrtonum(adj, PRIO_MIN, PRIO_MAX);
|
2014-11-13 17:29:30 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
2014-11-17 16:32:30 +00:00
|
|
|
who = -1;
|
2014-11-13 17:29:30 +00:00
|
|
|
if (which == PRIO_USER) {
|
2013-06-11 18:33:52 +00:00
|
|
|
errno = 0;
|
2014-11-17 16:32:30 +00:00
|
|
|
pw = getpwnam(argv[i]);
|
|
|
|
if (!pw) {
|
|
|
|
if (errno != 0)
|
|
|
|
weprintf("getpwnam %s:", argv[i]);
|
|
|
|
else
|
|
|
|
weprintf("getpwnam %s: no user found\n", argv[i]);
|
2014-10-02 22:46:04 +00:00
|
|
|
status = 1;
|
2013-06-11 18:33:52 +00:00
|
|
|
continue;
|
|
|
|
}
|
2014-11-17 16:32:30 +00:00
|
|
|
who = pw->pw_uid;
|
2013-06-11 18:33:52 +00:00
|
|
|
}
|
2014-11-13 17:29:30 +00:00
|
|
|
if (who < 0)
|
2013-06-11 18:33:52 +00:00
|
|
|
who = strtop(argv[i]);
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (who < 0 || !renice(which, who, val))
|
2014-10-02 22:46:04 +00:00
|
|
|
status = 1;
|
2013-06-11 18:33:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
strtop(const char *s)
|
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
long n;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
n = strtol(s, &end, 10);
|
2014-11-13 17:29:30 +00:00
|
|
|
if (*end != '\0') {
|
2014-11-17 16:27:12 +00:00
|
|
|
weprintf("%s: not an integer\n", s);
|
2013-06-11 18:33:52 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-11-13 17:29:30 +00:00
|
|
|
if (errno != 0 || n <= 0 || n > INT_MAX) {
|
2014-11-17 16:27:12 +00:00
|
|
|
weprintf("%s: invalid value\n", s);
|
2013-06-11 18:33:52 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (int)n;
|
|
|
|
}
|
|
|
|
|
2014-11-13 20:24:47 +00:00
|
|
|
static int
|
2013-06-11 18:33:52 +00:00
|
|
|
renice(int which, int who, long adj)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
adj += getpriority(which, who);
|
2014-11-13 17:29:30 +00:00
|
|
|
if (errno != 0) {
|
2014-11-17 16:27:12 +00:00
|
|
|
weprintf("getpriority %d:", who);
|
2014-11-13 20:24:47 +00:00
|
|
|
return 0;
|
2013-06-11 18:33:52 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 15:01:43 +00:00
|
|
|
adj = MAX(PRIO_MIN, MIN(adj, PRIO_MAX));
|
2014-11-19 19:59:37 +00:00
|
|
|
if (setpriority(which, who, (int)adj) < 0) {
|
2014-11-17 16:27:12 +00:00
|
|
|
weprintf("setpriority %d:", who);
|
2014-11-13 20:24:47 +00:00
|
|
|
return 0;
|
2013-06-11 18:33:52 +00:00
|
|
|
}
|
|
|
|
|
2014-11-13 20:24:47 +00:00
|
|
|
return 1;
|
2013-06-11 18:33:52 +00:00
|
|
|
}
|