2008-04-27 06:10:09 +05:30
|
|
|
/*
|
|
|
|
* Copyright (c) 1990 - 1994, Julianne Frances Haugh
|
|
|
|
* Copyright (c) 1996 - 1997, Marek Michałkiewicz
|
|
|
|
* Copyright (c) 2003 - 2005, Tomasz Kłoczko
|
|
|
|
* Copyright (c) 2008 , Nicolas François
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
|
|
|
|
* HOLDERS 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.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#if HAVE_ULIMIT_H
|
|
|
|
#include <ulimit.h>
|
|
|
|
#ifndef UL_SETFSIZE
|
|
|
|
#ifdef UL_SFILLIM
|
|
|
|
#define UL_SETFSIZE UL_SFILLIM
|
|
|
|
#else
|
|
|
|
#define UL_SETFSIZE 2
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#elif HAVE_SYS_RESOURCE_H
|
2007-10-07 17:15:23 +05:30
|
|
|
#include <sys/time.h> /* for struct timeval on sunos4 */
|
2007-10-07 17:14:02 +05:30
|
|
|
/* XXX - is the above ok or should it be <time.h> on ultrix? */
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
* libmisc/console.c, libmisc/ulimit.c, lib/sgetgrent.c,
lib/sgetpwent.c: Include "prototypes.h" to make
sure the exported prototypes are the ones used for the definition
of functions.
* lib/prototypes.h: Added prototypes for __gr_del_entry(),
__gr_get_db(), __gr_get_head(), __gr_set_changed(), __gr_dup(),
__pw_del_entry(), __pw_get_db(), __pw_get_head(), __pw_dup(),
sgetgrent(), sgetpwent(), __sgr_del_entry(), __sgr_dup(),
__sgr_get_head(), __sgr_set_changed(), __spw_get_head(),
__spw_del_entry(), __spw_dup().
* lib/prototypes.h: Removed prototype for is_listed().
* lib/prototypes.h: Added name of the check_su_auth()'s parameters.
* lib/groupio.h: Removed prototypes for __gr_dup() and
__gr_set_changed().
* lib/sgroupio.c: Removed prototypes for putsgent(), sgetsgent(),
and __gr_get_db().
* lib/sgroupio.h: Removed prototypes for __sgr_dup() and
__sgr_set_changed().
* lib/shadowio.c: Removed prototype for __pw_get_db().
* lib/pwio.c: Removed prototype for sgetpwent() and putpwent().
* lib/shadowio.h: Removed prototypes for __spw_dup() and
__spw_set_changed().
* lib/pwio.h: Removed prototypes for __pw_dup() and
__pw_set_changed().
* lib/commonio.h: Add protection against multiple inclusions.
* lib/prototypes.h: Include commonio.h (needed for the
__xx_del_entry() functions).
2008-01-06 17:29:01 +05:30
|
|
|
#include "prototypes.h"
|
|
|
|
|
2008-06-16 03:29:41 +05:30
|
|
|
int set_filesize_limit (int blocks)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2008-06-16 03:29:41 +05:30
|
|
|
int ret = -1;
|
2007-10-07 17:14:02 +05:30
|
|
|
#if HAVE_ULIMIT_H
|
2008-06-16 03:29:41 +05:30
|
|
|
if (ulimit (UL_SETFSIZE, blocks) != -1) {
|
|
|
|
ret = 0;
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
#elif defined(RLIMIT_FSIZE)
|
|
|
|
struct rlimit rlimit_fsize;
|
|
|
|
|
2008-06-16 03:29:41 +05:30
|
|
|
rlimit_fsize.rlim_cur = 512L * blocks;
|
|
|
|
rlimit_fsize.rlim_max = rlimit_fsize.rlim_cur;
|
|
|
|
ret = setrlimit (RLIMIT_FSIZE, &rlimit_fsize);
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2008-06-16 03:29:41 +05:30
|
|
|
|
|
|
|
return ret;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2008-06-16 03:29:41 +05:30
|
|
|
|