- add new RLIMIT_AS (aka RLIMIT_VMEM) resource that limits the total
address space available to processes. this limit exists in most other
modern unix variants, and like most of them, our defaults are unlimited.
remove the old mmap / rlimit.datasize hack.
- adds the VMCMD_STACK flag to all the stack-creation vmcmd callers.
it is currently unused, but was added a few years ago.
- add a pair of new process size values to kinfo_proc2{}. one is the
total size of the process memory map, and the other is the total size
adjusted for unused stack space (since most processes have a lot of
this...)
- patch sh, and csh to notice RLIMIT_AS. (in some cases, the alias
RLIMIT_VMEM was already present and used if availble.)
- patch ps, top and systat to notice the new k_vm_vsize member of
kinfo_proc2{}.
- update irix, svr4, svr4_32, linux and osf1 emulations to support
this information. (freebsd could be done, but that it's best left
as part of the full-update of compat/freebsd.)
this addresses PR 7897. it also gives correct memory usage values,
which have never been entirely correct (since mmap), and have been
very incorrect since jemalloc() was enabled.
tested on i386 and sparc64, build tested on several other platforms.
thanks to many folks for feedback and testing but most espcially
chuq and yamt for critical suggestions that lead to this patch not
having a special ugliness i wasn't happy with anyway :-)
2009-03-29 05:02:48 +04:00
|
|
|
/* $NetBSD: miscbltin.c,v 1.38 2009/03/29 01:02:49 mrg Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1994-05-11 21:09:42 +04:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:05:01 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-07-05 01:01:48 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1995-03-21 12:01:59 +03:00
|
|
|
#if 0
|
1995-05-12 01:28:33 +04:00
|
|
|
static char sccsid[] = "@(#)miscbltin.c 8.4 (Berkeley) 5/4/95";
|
1995-03-21 12:01:59 +03:00
|
|
|
#else
|
- add new RLIMIT_AS (aka RLIMIT_VMEM) resource that limits the total
address space available to processes. this limit exists in most other
modern unix variants, and like most of them, our defaults are unlimited.
remove the old mmap / rlimit.datasize hack.
- adds the VMCMD_STACK flag to all the stack-creation vmcmd callers.
it is currently unused, but was added a few years ago.
- add a pair of new process size values to kinfo_proc2{}. one is the
total size of the process memory map, and the other is the total size
adjusted for unused stack space (since most processes have a lot of
this...)
- patch sh, and csh to notice RLIMIT_AS. (in some cases, the alias
RLIMIT_VMEM was already present and used if availble.)
- patch ps, top and systat to notice the new k_vm_vsize member of
kinfo_proc2{}.
- update irix, svr4, svr4_32, linux and osf1 emulations to support
this information. (freebsd could be done, but that it's best left
as part of the full-update of compat/freebsd.)
this addresses PR 7897. it also gives correct memory usage values,
which have never been entirely correct (since mmap), and have been
very incorrect since jemalloc() was enabled.
tested on i386 and sparc64, build tested on several other platforms.
thanks to many folks for feedback and testing but most espcially
chuq and yamt for critical suggestions that lead to this patch not
having a special ugliness i wasn't happy with anyway :-)
2009-03-29 05:02:48 +04:00
|
|
|
__RCSID("$NetBSD: miscbltin.c,v 1.38 2009/03/29 01:02:49 mrg Exp $");
|
1995-03-21 12:01:59 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscelaneous builtins.
|
|
|
|
*/
|
|
|
|
|
1998-01-21 13:47:37 +03:00
|
|
|
#include <sys/types.h> /* quad_t */
|
|
|
|
#include <sys/param.h> /* BSD4_4 */
|
1994-05-11 21:53:54 +04:00
|
|
|
#include <sys/stat.h>
|
1995-05-12 01:28:33 +04:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
1994-05-12 21:03:32 +04:00
|
|
|
#include <unistd.h>
|
1998-09-26 23:28:12 +04:00
|
|
|
#include <stdlib.h>
|
1994-05-12 21:03:32 +04:00
|
|
|
#include <ctype.h>
|
2000-11-22 22:20:31 +03:00
|
|
|
#include <errno.h>
|
1995-05-12 01:28:33 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "shell.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "var.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "memalloc.h"
|
|
|
|
#include "error.h"
|
1997-07-05 01:01:48 +04:00
|
|
|
#include "miscbltin.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "mystring.h"
|
|
|
|
|
1997-11-05 17:05:28 +03:00
|
|
|
#undef rflag
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2005-03-19 17:22:50 +03:00
|
|
|
* The read builtin.
|
|
|
|
* Backslahes escape the next char unless -r is specified.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This uses unbuffered input, which may be avoidable in some cases.
|
2005-03-19 17:22:50 +03:00
|
|
|
*
|
|
|
|
* Note that if IFS=' :' then read x y should work so that:
|
|
|
|
* 'a b' x='a', y='b'
|
|
|
|
* ' a b ' x='a', y='b'
|
|
|
|
* ':b' x='', y='b'
|
|
|
|
* ':' x='', y=''
|
|
|
|
* '::' x='', y=''
|
|
|
|
* ': :' x='', y=''
|
|
|
|
* ':::' x='', y='::'
|
|
|
|
* ':b c:' x='', y='b c:'
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
1994-12-05 22:07:32 +03:00
|
|
|
int
|
2002-11-25 01:35:38 +03:00
|
|
|
readcmd(int argc, char **argv)
|
1994-12-05 22:07:32 +03:00
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
char **ap;
|
|
|
|
char c;
|
1997-11-05 17:05:28 +03:00
|
|
|
int rflag;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *prompt;
|
2005-03-19 17:22:50 +03:00
|
|
|
const char *ifs;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *p;
|
|
|
|
int startword;
|
|
|
|
int status;
|
|
|
|
int i;
|
2005-03-19 17:22:50 +03:00
|
|
|
int is_ifs;
|
|
|
|
int saveall = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-11-05 17:05:28 +03:00
|
|
|
rflag = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
prompt = NULL;
|
1997-11-05 17:05:28 +03:00
|
|
|
while ((i = nextopt("p:r")) != '\0') {
|
1993-03-21 12:45:37 +03:00
|
|
|
if (i == 'p')
|
2001-02-04 22:52:06 +03:00
|
|
|
prompt = optionarg;
|
1993-03-21 12:45:37 +03:00
|
|
|
else
|
1997-11-05 17:05:28 +03:00
|
|
|
rflag = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-03-19 17:22:50 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (prompt && isatty(0)) {
|
|
|
|
out2str(prompt);
|
|
|
|
flushall();
|
|
|
|
}
|
2005-03-19 17:22:50 +03:00
|
|
|
|
1994-04-06 23:08:14 +04:00
|
|
|
if (*(ap = argptr) == NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
error("arg count");
|
2005-03-19 17:22:50 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((ifs = bltinlookup("IFS", 1)) == NULL)
|
2005-03-19 17:22:50 +03:00
|
|
|
ifs = " \t\n";
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
status = 0;
|
2005-03-19 17:22:50 +03:00
|
|
|
startword = 2;
|
1993-03-21 12:45:37 +03:00
|
|
|
STARTSTACKSTR(p);
|
|
|
|
for (;;) {
|
|
|
|
if (read(0, &c, 1) != 1) {
|
|
|
|
status = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (c == '\0')
|
|
|
|
continue;
|
2005-03-19 17:22:50 +03:00
|
|
|
if (c == '\\' && !rflag) {
|
|
|
|
if (read(0, &c, 1) != 1) {
|
|
|
|
status = 1;
|
|
|
|
break;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
if (c != '\n')
|
|
|
|
STPUTC(c, p);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c == '\n')
|
|
|
|
break;
|
2005-03-19 17:22:50 +03:00
|
|
|
if (strchr(ifs, c))
|
|
|
|
is_ifs = strchr(" \t\n", c) ? 1 : 2;
|
|
|
|
else
|
|
|
|
is_ifs = 0;
|
|
|
|
|
|
|
|
if (startword != 0) {
|
|
|
|
if (is_ifs == 1) {
|
|
|
|
/* Ignore leading IFS whitespace */
|
|
|
|
if (saveall)
|
|
|
|
STPUTC(c, p);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (is_ifs == 2 && startword == 1) {
|
|
|
|
/* Only one non-whitespace IFS per word */
|
|
|
|
startword = 2;
|
|
|
|
if (saveall)
|
|
|
|
STPUTC(c, p);
|
|
|
|
continue;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-03-19 17:22:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (is_ifs == 0) {
|
|
|
|
/* append this character to the current variable */
|
|
|
|
startword = 0;
|
|
|
|
if (saveall)
|
|
|
|
/* Not just a spare terminator */
|
|
|
|
saveall++;
|
1993-03-21 12:45:37 +03:00
|
|
|
STPUTC(c, p);
|
2005-03-19 17:22:50 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of variable... */
|
|
|
|
startword = is_ifs;
|
|
|
|
|
|
|
|
if (ap[1] == NULL) {
|
|
|
|
/* Last variable needs all IFS chars */
|
|
|
|
saveall++;
|
1993-03-21 12:45:37 +03:00
|
|
|
STPUTC(c, p);
|
2005-03-19 17:22:50 +03:00
|
|
|
continue;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-03-19 17:22:50 +03:00
|
|
|
|
|
|
|
STACKSTRNUL(p);
|
|
|
|
setvar(*ap, stackblock(), 0);
|
|
|
|
ap++;
|
|
|
|
STARTSTACKSTR(p);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
STACKSTRNUL(p);
|
2005-03-19 17:22:50 +03:00
|
|
|
|
|
|
|
/* Remove trailing IFS chars */
|
|
|
|
for (; stackblock() <= --p; *p = 0) {
|
|
|
|
if (!strchr(ifs, *p))
|
|
|
|
break;
|
|
|
|
if (strchr(" \t\n", *p))
|
|
|
|
/* Always remove whitespace */
|
|
|
|
continue;
|
|
|
|
if (saveall > 1)
|
|
|
|
/* Don't remove non-whitespace unless it was naked */
|
|
|
|
break;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
setvar(*ap, stackblock(), 0);
|
2005-03-19 17:22:50 +03:00
|
|
|
|
|
|
|
/* Set any remaining args to "" */
|
1993-03-21 12:45:37 +03:00
|
|
|
while (*++ap != NULL)
|
|
|
|
setvar(*ap, nullstr, 0);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1994-12-05 22:07:32 +03:00
|
|
|
int
|
2002-11-25 01:35:38 +03:00
|
|
|
umaskcmd(int argc, char **argv)
|
1994-12-05 22:07:32 +03:00
|
|
|
{
|
1994-05-11 21:53:54 +04:00
|
|
|
char *ap;
|
1993-03-21 12:45:37 +03:00
|
|
|
int mask;
|
|
|
|
int i;
|
1994-05-11 21:53:54 +04:00
|
|
|
int symbolic_mode = 0;
|
|
|
|
|
|
|
|
while ((i = nextopt("S")) != '\0') {
|
|
|
|
symbolic_mode = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
mask = umask(0);
|
|
|
|
umask(mask);
|
|
|
|
INTON;
|
|
|
|
|
|
|
|
if ((ap = *argptr) == NULL) {
|
|
|
|
if (symbolic_mode) {
|
|
|
|
char u[4], g[4], o[4];
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
if ((mask & S_IRUSR) == 0)
|
|
|
|
u[i++] = 'r';
|
|
|
|
if ((mask & S_IWUSR) == 0)
|
|
|
|
u[i++] = 'w';
|
|
|
|
if ((mask & S_IXUSR) == 0)
|
|
|
|
u[i++] = 'x';
|
|
|
|
u[i] = '\0';
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
if ((mask & S_IRGRP) == 0)
|
|
|
|
g[i++] = 'r';
|
|
|
|
if ((mask & S_IWGRP) == 0)
|
|
|
|
g[i++] = 'w';
|
|
|
|
if ((mask & S_IXGRP) == 0)
|
|
|
|
g[i++] = 'x';
|
|
|
|
g[i] = '\0';
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-05-11 21:53:54 +04:00
|
|
|
i = 0;
|
|
|
|
if ((mask & S_IROTH) == 0)
|
|
|
|
o[i++] = 'r';
|
|
|
|
if ((mask & S_IWOTH) == 0)
|
|
|
|
o[i++] = 'w';
|
|
|
|
if ((mask & S_IXOTH) == 0)
|
|
|
|
o[i++] = 'x';
|
|
|
|
o[i] = '\0';
|
|
|
|
|
|
|
|
out1fmt("u=%s,g=%s,o=%s\n", u, g, o);
|
|
|
|
} else {
|
|
|
|
out1fmt("%.4o\n", mask);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
} else {
|
1998-05-20 04:32:05 +04:00
|
|
|
if (isdigit((unsigned char)*ap)) {
|
1994-05-11 21:53:54 +04:00
|
|
|
mask = 0;
|
|
|
|
do {
|
|
|
|
if (*ap >= '8' || *ap < '0')
|
|
|
|
error("Illegal number: %s", argv[1]);
|
|
|
|
mask = (mask << 3) + (*ap - '0');
|
|
|
|
} while (*++ap != '\0');
|
|
|
|
umask(mask);
|
|
|
|
} else {
|
1996-10-16 19:45:03 +04:00
|
|
|
void *set;
|
1994-05-11 21:53:54 +04:00
|
|
|
|
1998-09-24 21:49:48 +04:00
|
|
|
INTOFF;
|
|
|
|
if ((set = setmode(ap)) != 0) {
|
|
|
|
mask = getmode(set, ~mask & 0777);
|
|
|
|
ckfree(set);
|
|
|
|
}
|
|
|
|
INTON;
|
|
|
|
if (!set)
|
2005-10-02 00:23:54 +04:00
|
|
|
error("Cannot set mode `%s' (%s)", ap,
|
|
|
|
strerror(errno));
|
1998-09-24 21:49:48 +04:00
|
|
|
|
1994-05-11 21:53:54 +04:00
|
|
|
umask(~mask & 0777);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
1995-05-12 01:28:33 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ulimit builtin
|
|
|
|
*
|
|
|
|
* This code, originally by Doug Gwyn, Doug Kingston, Eric Gisin, and
|
|
|
|
* Michael Rendell was ripped from pdksh 5.0.8 and hacked for use with
|
|
|
|
* ash by J.T. Conklin.
|
|
|
|
*
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct limits {
|
|
|
|
const char *name;
|
|
|
|
int cmd;
|
|
|
|
int factor; /* multiply by to get rlim_{cur,max} values */
|
|
|
|
char option;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct limits limits[] = {
|
|
|
|
#ifdef RLIMIT_CPU
|
|
|
|
{ "time(seconds)", RLIMIT_CPU, 1, 't' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_FSIZE
|
|
|
|
{ "file(blocks)", RLIMIT_FSIZE, 512, 'f' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_DATA
|
|
|
|
{ "data(kbytes)", RLIMIT_DATA, 1024, 'd' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_STACK
|
|
|
|
{ "stack(kbytes)", RLIMIT_STACK, 1024, 's' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_CORE
|
|
|
|
{ "coredump(blocks)", RLIMIT_CORE, 512, 'c' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_RSS
|
|
|
|
{ "memory(kbytes)", RLIMIT_RSS, 1024, 'm' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_MEMLOCK
|
|
|
|
{ "locked memory(kbytes)", RLIMIT_MEMLOCK, 1024, 'l' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_NPROC
|
|
|
|
{ "process(processes)", RLIMIT_NPROC, 1, 'p' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_NOFILE
|
|
|
|
{ "nofiles(descriptors)", RLIMIT_NOFILE, 1, 'n' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_VMEM
|
|
|
|
{ "vmemory(kbytes)", RLIMIT_VMEM, 1024, 'v' },
|
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_SWAP
|
|
|
|
{ "swap(kbytes)", RLIMIT_SWAP, 1024, 'w' },
|
2004-04-17 19:40:12 +04:00
|
|
|
#endif
|
|
|
|
#ifdef RLIMIT_SBSIZE
|
2004-04-19 05:36:32 +04:00
|
|
|
{ "sbsize(bytes)", RLIMIT_SBSIZE, 1, 'b' },
|
1995-05-12 01:28:33 +04:00
|
|
|
#endif
|
|
|
|
{ (char *) 0, 0, 0, '\0' }
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
2002-11-25 01:35:38 +03:00
|
|
|
ulimitcmd(int argc, char **argv)
|
1995-05-12 01:28:33 +04:00
|
|
|
{
|
1997-01-11 05:04:27 +03:00
|
|
|
int c;
|
1997-07-05 01:01:48 +04:00
|
|
|
rlim_t val = 0;
|
1995-05-12 01:28:33 +04:00
|
|
|
enum { SOFT = 0x1, HARD = 0x2 }
|
|
|
|
how = SOFT | HARD;
|
|
|
|
const struct limits *l;
|
|
|
|
int set, all = 0;
|
|
|
|
int optc, what;
|
|
|
|
struct rlimit limit;
|
|
|
|
|
|
|
|
what = 'f';
|
- add new RLIMIT_AS (aka RLIMIT_VMEM) resource that limits the total
address space available to processes. this limit exists in most other
modern unix variants, and like most of them, our defaults are unlimited.
remove the old mmap / rlimit.datasize hack.
- adds the VMCMD_STACK flag to all the stack-creation vmcmd callers.
it is currently unused, but was added a few years ago.
- add a pair of new process size values to kinfo_proc2{}. one is the
total size of the process memory map, and the other is the total size
adjusted for unused stack space (since most processes have a lot of
this...)
- patch sh, and csh to notice RLIMIT_AS. (in some cases, the alias
RLIMIT_VMEM was already present and used if availble.)
- patch ps, top and systat to notice the new k_vm_vsize member of
kinfo_proc2{}.
- update irix, svr4, svr4_32, linux and osf1 emulations to support
this information. (freebsd could be done, but that it's best left
as part of the full-update of compat/freebsd.)
this addresses PR 7897. it also gives correct memory usage values,
which have never been entirely correct (since mmap), and have been
very incorrect since jemalloc() was enabled.
tested on i386 and sparc64, build tested on several other platforms.
thanks to many folks for feedback and testing but most espcially
chuq and yamt for critical suggestions that lead to this patch not
having a special ugliness i wasn't happy with anyway :-)
2009-03-29 05:02:48 +04:00
|
|
|
while ((optc = nextopt("HSabtfdsmcnplv")) != '\0')
|
1995-05-12 01:28:33 +04:00
|
|
|
switch (optc) {
|
|
|
|
case 'H':
|
|
|
|
how = HARD;
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
how = SOFT;
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
all = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
what = optc;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (l = limits; l->name && l->option != what; l++)
|
|
|
|
;
|
|
|
|
if (!l->name)
|
2000-11-22 22:20:31 +03:00
|
|
|
error("internal error (%c)", what);
|
1995-05-12 01:28:33 +04:00
|
|
|
|
|
|
|
set = *argptr ? 1 : 0;
|
|
|
|
if (set) {
|
|
|
|
char *p = *argptr;
|
|
|
|
|
|
|
|
if (all || argptr[1])
|
2000-11-22 22:20:31 +03:00
|
|
|
error("too many arguments");
|
1995-05-12 01:28:33 +04:00
|
|
|
if (strcmp(p, "unlimited") == 0)
|
|
|
|
val = RLIM_INFINITY;
|
|
|
|
else {
|
1995-06-12 23:44:16 +04:00
|
|
|
val = (rlim_t) 0;
|
1995-05-12 01:28:33 +04:00
|
|
|
|
|
|
|
while ((c = *p++) >= '0' && c <= '9')
|
|
|
|
val = (val * 10) + (long)(c - '0');
|
|
|
|
if (c)
|
2000-11-22 22:20:31 +03:00
|
|
|
error("bad number");
|
1995-05-12 01:28:33 +04:00
|
|
|
val *= l->factor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (all) {
|
|
|
|
for (l = limits; l->name; l++) {
|
|
|
|
getrlimit(l->cmd, &limit);
|
|
|
|
if (how & SOFT)
|
|
|
|
val = limit.rlim_cur;
|
|
|
|
else if (how & HARD)
|
|
|
|
val = limit.rlim_max;
|
|
|
|
|
|
|
|
out1fmt("%-20s ", l->name);
|
|
|
|
if (val == RLIM_INFINITY)
|
|
|
|
out1fmt("unlimited\n");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
val /= l->factor;
|
1997-04-12 03:08:15 +04:00
|
|
|
#ifdef BSD4_4
|
2001-01-04 18:39:50 +03:00
|
|
|
out1fmt("%lld\n", (long long) val);
|
1997-04-12 03:08:15 +04:00
|
|
|
#else
|
|
|
|
out1fmt("%ld\n", (long) val);
|
|
|
|
#endif
|
1995-05-12 01:28:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
getrlimit(l->cmd, &limit);
|
|
|
|
if (set) {
|
|
|
|
if (how & HARD)
|
|
|
|
limit.rlim_max = val;
|
2000-11-22 22:20:31 +03:00
|
|
|
if (how & SOFT)
|
|
|
|
limit.rlim_cur = val;
|
1995-05-12 01:28:33 +04:00
|
|
|
if (setrlimit(l->cmd, &limit) < 0)
|
2000-11-22 22:20:31 +03:00
|
|
|
error("error setting limit (%s)", strerror(errno));
|
1995-05-12 01:28:33 +04:00
|
|
|
} else {
|
|
|
|
if (how & SOFT)
|
|
|
|
val = limit.rlim_cur;
|
|
|
|
else if (how & HARD)
|
|
|
|
val = limit.rlim_max;
|
|
|
|
|
|
|
|
if (val == RLIM_INFINITY)
|
|
|
|
out1fmt("unlimited\n");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
val /= l->factor;
|
1997-04-12 03:08:15 +04:00
|
|
|
#ifdef BSD4_4
|
2001-01-04 18:39:50 +03:00
|
|
|
out1fmt("%lld\n", (long long) val);
|
1997-04-12 03:08:15 +04:00
|
|
|
#else
|
|
|
|
out1fmt("%ld\n", (long) val);
|
|
|
|
#endif
|
1995-05-12 01:28:33 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|