2003-05-12 05:20:17 +04:00
/*
Unix SMB / CIFS implementation .
System QUOTA function wrappers
Copyright ( C ) Stefan ( metze ) Metzmacher 2003
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-05-12 05:20:17 +04:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-05-12 05:20:17 +04:00
*/
# include "includes.h"
2004-01-15 11:49:30 +03:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_QUOTA
2003-05-14 18:38:11 +04:00
# ifdef HAVE_SYS_QUOTAS
2003-05-12 05:20:17 +04:00
# if defined(HAVE_QUOTACTL_4A)
/*#endif HAVE_QUOTACTL_4A */
# elif defined(HAVE_QUOTACTL_4B)
# error HAVE_QUOTACTL_4B not implemeted
/*#endif HAVE_QUOTACTL_4B */
# elif defined(HAVE_QUOTACTL_3)
# error HAVE_QUOTACTL_3 not implemented
/* #endif HAVE_QUOTACTL_3 */
# else /* NO_QUOTACTL_USED */
# endif /* NO_QUOTACTL_USED */
# ifdef HAVE_MNTENT
static int sys_path_to_bdev ( const char * path , char * * mntpath , char * * bdev , char * * fs )
{
int ret = - 1 ;
SMB_STRUCT_STAT S ;
FILE * fp ;
struct mntent * mnt ;
SMB_DEV_T devno ;
/* find the block device file */
if ( ! path | | ! mntpath | | ! bdev | | ! fs )
smb_panic ( " sys_path_to_bdev: called with NULL pointer " ) ;
( * mntpath ) = NULL ;
( * bdev ) = NULL ;
( * fs ) = NULL ;
2009-11-27 15:08:51 +03:00
if ( sys_stat ( path , & S , false ) = = - 1 )
2003-05-12 05:20:17 +04:00
return ( - 1 ) ;
2009-06-29 18:11:13 +04:00
devno = S . st_ex_dev ;
2003-05-12 05:20:17 +04:00
fp = setmntent ( MOUNTED , " r " ) ;
2005-11-07 22:18:00 +03:00
if ( fp = = NULL ) {
return - 1 ;
}
2003-05-12 05:20:17 +04:00
while ( ( mnt = getmntent ( fp ) ) ) {
2009-11-27 15:08:51 +03:00
if ( sys_stat ( mnt - > mnt_dir , & S , false ) = = - 1 )
2003-05-12 05:20:17 +04:00
continue ;
2009-06-29 18:11:13 +04:00
if ( S . st_ex_dev = = devno ) {
2004-12-17 00:12:29 +03:00
( * mntpath ) = SMB_STRDUP ( mnt - > mnt_dir ) ;
( * bdev ) = SMB_STRDUP ( mnt - > mnt_fsname ) ;
( * fs ) = SMB_STRDUP ( mnt - > mnt_type ) ;
2003-05-12 05:20:17 +04:00
if ( ( * mntpath ) & & ( * bdev ) & & ( * fs ) ) {
ret = 0 ;
} else {
SAFE_FREE ( * mntpath ) ;
SAFE_FREE ( * bdev ) ;
SAFE_FREE ( * fs ) ;
ret = - 1 ;
}
break ;
}
}
endmntent ( fp ) ;
return ret ;
}
/* #endif HAVE_MNTENT */
# elif defined(HAVE_DEVNM)
/* we have this on HPUX, ... */
static int sys_path_to_bdev ( const char * path , char * * mntpath , char * * bdev , char * * fs )
{
int ret = - 1 ;
char dev_disk [ 256 ] ;
SMB_STRUCT_STAT S ;
if ( ! path | | ! mntpath | | ! bdev | | ! fs )
smb_panic ( " sys_path_to_bdev: called with NULL pointer " ) ;
( * mntpath ) = NULL ;
( * bdev ) = NULL ;
( * fs ) = NULL ;
/* find the block device file */
2009-11-27 15:08:51 +03:00
if ( ( ret = sys_stat ( path , & S , false ) ) ! = 0 ) {
2003-05-12 05:20:17 +04:00
return ret ;
}
2009-06-29 18:11:13 +04:00
if ( ( ret = devnm ( S_IFBLK , S . st_ex_dev , dev_disk , 256 , 1 ) ) ! = 0 ) {
2003-05-12 05:20:17 +04:00
return ret ;
}
/* we should get the mntpath right...
* but I don ' t know how
* - - metze
*/
2004-12-17 00:12:29 +03:00
( * mntpath ) = SMB_STRDUP ( path ) ;
( * bdev ) = SMB_STRDUP ( dev_disk ) ;
2003-05-12 05:20:17 +04:00
if ( ( * mntpath ) & & ( * bdev ) ) {
ret = 0 ;
} else {
SAFE_FREE ( * mntpath ) ;
SAFE_FREE ( * bdev ) ;
ret = - 1 ;
}
return ret ;
}
/* #endif HAVE_DEVNM */
# else
/* we should fake this up...*/
static int sys_path_to_bdev ( const char * path , char * * mntpath , char * * bdev , char * * fs )
{
int ret = - 1 ;
if ( ! path | | ! mntpath | | ! bdev | | ! fs )
smb_panic ( " sys_path_to_bdev: called with NULL pointer " ) ;
( * mntpath ) = NULL ;
( * bdev ) = NULL ;
( * fs ) = NULL ;
2004-12-17 00:12:29 +03:00
( * mntpath ) = SMB_STRDUP ( path ) ;
2003-05-12 05:20:17 +04:00
if ( * mntpath ) {
ret = 0 ;
} else {
SAFE_FREE ( * mntpath ) ;
ret = - 1 ;
}
return ret ;
}
# endif
/*********************************************************************
Now the list of all filesystem specific quota systems we have found
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static struct {
const char * name ;
int ( * get_quota ) ( const char * path , const char * bdev , enum SMB_QUOTA_TYPE qtype , unid_t id , SMB_DISK_QUOTA * dp ) ;
int ( * set_quota ) ( const char * path , const char * bdev , enum SMB_QUOTA_TYPE qtype , unid_t id , SMB_DISK_QUOTA * dp ) ;
} sys_quota_backends [ ] = {
2004-01-14 05:51:41 +03:00
# ifdef HAVE_XFS_QUOTAS
2003-05-12 05:20:17 +04:00
{ " xfs " , sys_get_xfs_quota , sys_set_xfs_quota } ,
2004-01-14 05:51:41 +03:00
# endif /* HAVE_XFS_QUOTAS */
2010-08-06 12:21:09 +04:00
# ifdef HAVE_NFS_QUOTAS
{ " nfs " , sys_get_nfs_quota , sys_set_nfs_quota } ,
# endif /* HAVE_NFS_QUOTAS */
2007-11-16 01:19:52 +03:00
{ NULL , NULL , NULL }
2003-05-12 05:20:17 +04:00
} ;
static int command_get_quota ( const char * path , enum SMB_QUOTA_TYPE qtype , unid_t id , SMB_DISK_QUOTA * dp )
{
const char * get_quota_command ;
2006-03-13 22:47:18 +03:00
char * * lines = NULL ;
2007-11-16 01:19:52 +03:00
2012-07-18 09:37:23 +04:00
get_quota_command = lp_get_quota_command ( talloc_tos ( ) ) ;
2003-05-12 05:20:17 +04:00
if ( get_quota_command & & * get_quota_command ) {
const char * p ;
char * p2 ;
2007-11-16 01:19:52 +03:00
char * syscmd = NULL ;
2003-05-12 05:20:17 +04:00
int _id = - 1 ;
switch ( qtype ) {
case SMB_USER_QUOTA_TYPE :
case SMB_USER_FS_QUOTA_TYPE :
_id = id . uid ;
break ;
case SMB_GROUP_QUOTA_TYPE :
case SMB_GROUP_FS_QUOTA_TYPE :
_id = id . gid ;
break ;
default :
DEBUG ( 0 , ( " invalid quota type. \n " ) ) ;
return - 1 ;
}
2007-11-16 01:19:52 +03:00
if ( asprintf ( & syscmd , " %s \" %s \" %d %d " ,
get_quota_command , path , qtype , _id ) < 0 ) {
return - 1 ;
}
2003-05-12 05:20:17 +04:00
DEBUG ( 3 , ( " get_quota: Running command %s \n " , syscmd ) ) ;
lines = file_lines_pload ( syscmd , NULL ) ;
2007-11-16 01:19:52 +03:00
SAFE_FREE ( syscmd ) ;
2003-05-12 05:20:17 +04:00
if ( lines ) {
char * line = lines [ 0 ] ;
2003-10-10 00:58:11 +04:00
DEBUG ( 3 , ( " Read output from get_quota, \" %s \" \n " , line ) ) ;
2003-05-12 05:20:17 +04:00
/* we need to deal with long long unsigned here, if supported */
dp - > qflags = ( enum SMB_QUOTA_TYPE ) strtoul ( line , & p2 , 10 ) ;
p = p2 ;
2006-03-13 22:47:18 +03:00
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > curblocks = STR_TO_SMB_BIG_UINT ( p , & p ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
goto invalid_param ;
2006-03-13 22:47:18 +03:00
}
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > softlimit = STR_TO_SMB_BIG_UINT ( p , & p ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
goto invalid_param ;
2006-03-13 22:47:18 +03:00
}
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > hardlimit = STR_TO_SMB_BIG_UINT ( p , & p ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
goto invalid_param ;
2006-03-13 22:47:18 +03:00
}
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > curinodes = STR_TO_SMB_BIG_UINT ( p , & p ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
goto invalid_param ;
2006-03-13 22:47:18 +03:00
}
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > isoftlimit = STR_TO_SMB_BIG_UINT ( p , & p ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
goto invalid_param ;
2006-03-13 22:47:18 +03:00
}
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > ihardlimit = STR_TO_SMB_BIG_UINT ( p , & p ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
goto invalid_param ;
2006-03-13 22:47:18 +03:00
}
while ( p & & * p & & isspace ( * p ) ) {
2003-05-12 05:20:17 +04:00
p + + ;
2006-03-13 22:47:18 +03:00
}
if ( p & & * p ) {
2003-05-12 05:20:17 +04:00
dp - > bsize = STR_TO_SMB_BIG_UINT ( p , NULL ) ;
2006-03-13 22:47:18 +03:00
} else {
2003-05-12 05:20:17 +04:00
dp - > bsize = 1024 ;
2006-03-13 22:47:18 +03:00
}
2008-10-12 19:34:43 +04:00
TALLOC_FREE ( lines ) ;
2006-03-13 22:47:18 +03:00
lines = NULL ;
2003-05-12 05:20:17 +04:00
DEBUG ( 3 , ( " Parsed output of get_quota, ... \n " ) ) ;
DEBUGADD ( 5 , (
" qflags:%u curblocks:%llu softlimit:%llu hardlimit:%llu \n "
" curinodes:%llu isoftlimit:%llu ihardlimit:%llu bsize:%llu \n " ,
dp - > qflags , ( long long unsigned ) dp - > curblocks ,
( long long unsigned ) dp - > softlimit , ( long long unsigned ) dp - > hardlimit ,
( long long unsigned ) dp - > curinodes ,
( long long unsigned ) dp - > isoftlimit , ( long long unsigned ) dp - > ihardlimit ,
( long long unsigned ) dp - > bsize ) ) ;
return 0 ;
}
DEBUG ( 0 , ( " get_quota_command failed! \n " ) ) ;
return - 1 ;
}
errno = ENOSYS ;
return - 1 ;
2007-11-16 01:19:52 +03:00
2003-05-12 05:20:17 +04:00
invalid_param :
2006-03-13 22:47:18 +03:00
2008-10-12 19:34:43 +04:00
TALLOC_FREE ( lines ) ;
2003-05-12 05:20:17 +04:00
DEBUG ( 0 , ( " The output of get_quota_command is invalid! \n " ) ) ;
return - 1 ;
}
static int command_set_quota ( const char * path , enum SMB_QUOTA_TYPE qtype , unid_t id , SMB_DISK_QUOTA * dp )
{
const char * set_quota_command ;
2007-11-16 01:19:52 +03:00
2012-07-18 09:37:23 +04:00
set_quota_command = lp_set_quota_command ( talloc_tos ( ) ) ;
2003-05-12 05:20:17 +04:00
if ( set_quota_command & & * set_quota_command ) {
2007-11-16 01:19:52 +03:00
char * * lines = NULL ;
char * syscmd = NULL ;
2003-05-12 05:20:17 +04:00
int _id = - 1 ;
switch ( qtype ) {
case SMB_USER_QUOTA_TYPE :
case SMB_USER_FS_QUOTA_TYPE :
_id = id . uid ;
break ;
case SMB_GROUP_QUOTA_TYPE :
case SMB_GROUP_FS_QUOTA_TYPE :
_id = id . gid ;
break ;
default :
return - 1 ;
}
2007-11-16 01:19:52 +03:00
if ( asprintf ( & syscmd ,
2003-05-12 05:20:17 +04:00
" %s \" %s \" %d %d "
" %u %llu %llu "
2007-11-16 01:19:52 +03:00
" %llu %llu %llu " ,
2003-05-12 05:20:17 +04:00
set_quota_command , path , qtype , _id , dp - > qflags ,
( long long unsigned ) dp - > softlimit , ( long long unsigned ) dp - > hardlimit ,
( long long unsigned ) dp - > isoftlimit , ( long long unsigned ) dp - > ihardlimit ,
2007-11-16 01:19:52 +03:00
( long long unsigned ) dp - > bsize ) < 0 ) {
return - 1 ;
}
2003-05-12 05:20:17 +04:00
DEBUG ( 3 , ( " get_quota: Running command %s \n " , syscmd ) ) ;
lines = file_lines_pload ( syscmd , NULL ) ;
2007-11-16 01:19:52 +03:00
SAFE_FREE ( syscmd ) ;
2003-05-12 05:20:17 +04:00
if ( lines ) {
char * line = lines [ 0 ] ;
DEBUG ( 3 , ( " Read output from set_quota, \" %s \" \n " , line ) ) ;
2008-10-12 19:34:43 +04:00
TALLOC_FREE ( lines ) ;
2007-11-16 01:19:52 +03:00
2003-05-12 05:20:17 +04:00
return 0 ;
}
DEBUG ( 0 , ( " set_quota_command failed! \n " ) ) ;
return - 1 ;
}
errno = ENOSYS ;
return - 1 ;
}
int sys_get_quota ( const char * path , enum SMB_QUOTA_TYPE qtype , unid_t id , SMB_DISK_QUOTA * dp )
{
int ret = - 1 ;
int i ;
2007-10-19 04:40:25 +04:00
bool ready = False ;
2003-05-12 05:20:17 +04:00
char * mntpath = NULL ;
char * bdev = NULL ;
char * fs = NULL ;
if ( ! path | | ! dp )
smb_panic ( " sys_get_quota: called with NULL pointer " ) ;
if ( command_get_quota ( path , qtype , id , dp ) = = 0 ) {
return 0 ;
} else if ( errno ! = ENOSYS ) {
return - 1 ;
}
if ( ( ret = sys_path_to_bdev ( path , & mntpath , & bdev , & fs ) ) ! = 0 ) {
2003-07-29 22:07:13 +04:00
DEBUG ( 0 , ( " sys_path_to_bdev() failed for path [%s]! \n " , path ) ) ;
2003-05-12 05:20:17 +04:00
return ret ;
}
2004-01-15 11:49:30 +03:00
errno = 0 ;
DEBUG ( 10 , ( " sys_get_quota() uid(%u, %u) \n " , ( unsigned ) getuid ( ) , ( unsigned ) geteuid ( ) ) ) ;
2003-05-12 05:20:17 +04:00
for ( i = 0 ; ( fs & & sys_quota_backends [ i ] . name & & sys_quota_backends [ i ] . get_quota ) ; i + + ) {
if ( strcmp ( fs , sys_quota_backends [ i ] . name ) = = 0 ) {
ret = sys_quota_backends [ i ] . get_quota ( mntpath , bdev , qtype , id , dp ) ;
2003-07-29 22:07:13 +04:00
if ( ret ! = 0 ) {
2004-01-15 11:49:30 +03:00
DEBUG ( 3 , ( " sys_get_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s. \n " ,
fs , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) , strerror ( errno ) ) ) ;
} else {
DEBUG ( 10 , ( " sys_get_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d]. \n " ,
fs , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) ) ) ;
2003-07-29 22:07:13 +04:00
}
2003-05-12 05:20:17 +04:00
ready = True ;
break ;
}
}
if ( ! ready ) {
/* use the default vfs quota functions */
2003-07-29 22:07:13 +04:00
ret = sys_get_vfs_quota ( mntpath , bdev , qtype , id , dp ) ;
if ( ret ! = 0 ) {
2004-01-15 11:49:30 +03:00
DEBUG ( 3 , ( " sys_get_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s \n " ,
" vfs " , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) , strerror ( errno ) ) ) ;
} else {
DEBUG ( 10 , ( " sys_get_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d]. \n " ,
" vfs " , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) ) ) ;
2003-07-29 22:07:13 +04:00
}
2003-05-12 05:20:17 +04:00
}
SAFE_FREE ( mntpath ) ;
SAFE_FREE ( bdev ) ;
SAFE_FREE ( fs ) ;
if ( ( ret ! = 0 ) & & ( errno = = EDQUOT ) ) {
2004-01-15 11:49:30 +03:00
DEBUG ( 10 , ( " sys_get_quota() warning over quota! \n " ) ) ;
2003-05-12 05:20:17 +04:00
return 0 ;
}
return ret ;
}
int sys_set_quota ( const char * path , enum SMB_QUOTA_TYPE qtype , unid_t id , SMB_DISK_QUOTA * dp )
{
int ret = - 1 ;
int i ;
2007-10-19 04:40:25 +04:00
bool ready = False ;
2003-05-12 05:20:17 +04:00
char * mntpath = NULL ;
char * bdev = NULL ;
char * fs = NULL ;
/* find the block device file */
if ( ! path | | ! dp )
smb_panic ( " get_smb_quota: called with NULL pointer " ) ;
if ( command_set_quota ( path , qtype , id , dp ) = = 0 ) {
return 0 ;
} else if ( errno ! = ENOSYS ) {
return - 1 ;
}
if ( ( ret = sys_path_to_bdev ( path , & mntpath , & bdev , & fs ) ) ! = 0 ) {
2003-07-29 22:07:13 +04:00
DEBUG ( 0 , ( " sys_path_to_bdev() failed for path [%s]! \n " , path ) ) ;
2003-05-12 05:20:17 +04:00
return ret ;
}
2004-01-15 11:49:30 +03:00
errno = 0 ;
DEBUG ( 10 , ( " sys_set_quota() uid(%u, %u) \n " , ( unsigned ) getuid ( ) , ( unsigned ) geteuid ( ) ) ) ;
2003-05-12 05:20:17 +04:00
for ( i = 0 ; ( fs & & sys_quota_backends [ i ] . name & & sys_quota_backends [ i ] . set_quota ) ; i + + ) {
if ( strcmp ( fs , sys_quota_backends [ i ] . name ) = = 0 ) {
ret = sys_quota_backends [ i ] . set_quota ( mntpath , bdev , qtype , id , dp ) ;
2003-07-29 22:07:13 +04:00
if ( ret ! = 0 ) {
2004-01-15 11:49:30 +03:00
DEBUG ( 3 , ( " sys_set_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s. \n " ,
fs , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) , strerror ( errno ) ) ) ;
} else {
DEBUG ( 10 , ( " sys_set_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d]. \n " ,
fs , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) ) ) ;
2003-07-29 22:07:13 +04:00
}
2003-05-12 05:20:17 +04:00
ready = True ;
break ;
}
}
if ( ! ready ) {
/* use the default vfs quota functions */
ret = sys_set_vfs_quota ( mntpath , bdev , qtype , id , dp ) ;
2003-07-29 22:07:13 +04:00
if ( ret ! = 0 ) {
2004-01-15 11:49:30 +03:00
DEBUG ( 3 , ( " sys_set_%s_quota() failed for mntpath[%s] bdev[%s] qtype[%d] id[%d]: %s. \n " ,
" vfs " , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) , strerror ( errno ) ) ) ;
} else {
DEBUG ( 10 , ( " sys_set_%s_quota() called for mntpath[%s] bdev[%s] qtype[%d] id[%d]. \n " ,
" vfs " , mntpath , bdev , qtype , ( qtype = = SMB_GROUP_QUOTA_TYPE ? id . gid : id . uid ) ) ) ;
2003-07-29 22:07:13 +04:00
}
2003-05-12 05:20:17 +04:00
}
SAFE_FREE ( mntpath ) ;
SAFE_FREE ( bdev ) ;
SAFE_FREE ( fs ) ;
if ( ( ret ! = 0 ) & & ( errno = = EDQUOT ) ) {
2004-01-15 11:49:30 +03:00
DEBUG ( 10 , ( " sys_set_quota() warning over quota! \n " ) ) ;
2003-05-12 05:20:17 +04:00
return 0 ;
}
return ret ;
}
2003-05-14 18:38:11 +04:00
# else /* HAVE_SYS_QUOTAS */
2005-05-02 21:49:43 +04:00
void dummy_sysquotas_c ( void ) ;
2003-05-14 18:38:11 +04:00
void dummy_sysquotas_c ( void )
{
return ;
}
# endif /* HAVE_SYS_QUOTAS */
2003-05-12 05:20:17 +04:00