/*- * Copyright (c) 1993 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * Sean Eric Fagan of Cygnus Support. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)sysconf.c 5.3 (Berkeley) 05/24/93"; #endif /* LIBC_SCCS and not lint */ #include #include #include #include #include #include /* * sysconf -- * get configurable system variables. * * XXX * POSIX 1003.1 (ISO/IEC 9945-1, 4.8.1.3) states that the variable values * not change during the lifetime of the calling process. This would seem * to require that any change to system limits kill all running processes. * A workaround might be to cache the values when they are first retrieved * and then simply return the cached value on subsequent calls. This is * less useful than returning up-to-date values, however. */ long sysconf(name) int name; { struct clockinfo clk; struct rlimit rl; size_t len; int mib[2], value; len = sizeof(value); switch (name) { /* 1003.1 */ case _SC_ARG_MAX: mib[0] = CTL_KERN; mib[1] = KERN_ARGMAX; break; case _SC_CHILD_MAX: return (getrlimit(RLIMIT_NPROC, &rl) ? -1 : rl.rlim_max); case _SC_CLK_TCK: return (CLK_TCK); case _SC_JOB_CONTROL: mib[0] = CTL_KERN; mib[1] = KERN_JOB_CONTROL; goto yesno; case _SC_NGROUPS_MAX: mib[0] = CTL_KERN; mib[1] = KERN_NGROUPS; break; case _SC_OPEN_MAX: return (getrlimit(RLIMIT_NOFILE, &rl) ? -1 : rl.rlim_max); case _SC_STREAM_MAX: mib[0] = CTL_USER; mib[1] = USER_STREAM_MAX; break; case _SC_TZNAME_MAX: mib[0] = CTL_USER; mib[1] = USER_TZNAME_MAX; break; case _SC_SAVED_IDS: mib[0] = CTL_KERN; mib[1] = KERN_SAVED_IDS; goto yesno; case _SC_VERSION: mib[0] = CTL_KERN; mib[1] = KERN_POSIX1; break; /* 1003.2 */ case _SC_BC_BASE_MAX: mib[0] = CTL_USER; mib[1] = USER_BC_BASE_MAX; break; case _SC_BC_DIM_MAX: mib[0] = CTL_USER; mib[1] = USER_BC_DIM_MAX; break; case _SC_BC_SCALE_MAX: mib[0] = CTL_USER; mib[1] = USER_BC_SCALE_MAX; break; case _SC_BC_STRING_MAX: mib[0] = CTL_USER; mib[1] = USER_BC_STRING_MAX; break; case _SC_COLL_WEIGHTS_MAX: mib[0] = CTL_USER; mib[1] = USER_COLL_WEIGHTS_MAX; break; case _SC_EXPR_NEST_MAX: mib[0] = CTL_USER; mib[1] = USER_EXPR_NEST_MAX; break; case _SC_LINE_MAX: mib[0] = CTL_USER; mib[1] = USER_LINE_MAX; break; case _SC_RE_DUP_MAX: mib[0] = CTL_USER; mib[1] = USER_RE_DUP_MAX; break; case _SC_2_VERSION: mib[0] = CTL_USER; mib[1] = USER_POSIX2_VERSION; break; case _SC_2_C_BIND: mib[0] = CTL_USER; mib[1] = USER_POSIX2_C_BIND; goto yesno; case _SC_2_C_DEV: mib[0] = CTL_USER; mib[1] = USER_POSIX2_C_DEV; goto yesno; case _SC_2_CHAR_TERM: mib[0] = CTL_USER; mib[1] = USER_POSIX2_CHAR_TERM; goto yesno; case _SC_2_FORT_DEV: mib[0] = CTL_USER; mib[1] = USER_POSIX2_FORT_DEV; goto yesno; case _SC_2_FORT_RUN: mib[0] = CTL_USER; mib[1] = USER_POSIX2_FORT_RUN; goto yesno; case _SC_2_LOCALEDEF: mib[0] = CTL_USER; mib[1] = USER_POSIX2_LOCALEDEF; goto yesno; case _SC_2_SW_DEV: mib[0] = CTL_USER; mib[1] = USER_POSIX2_SW_DEV; goto yesno; case _SC_2_UPE: mib[0] = CTL_USER; mib[1] = USER_POSIX2_UPE; yesno: if (sysctl(mib, 2, &value, &len, NULL, 0) == -1) return (-1); if (value == 0) return (-1); return (value); break; default: errno = EINVAL; return (-1); } return (sysctl(mib, 2, &value, &len, NULL, 0) == -1 ? -1 : value); }