X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=etc%2Fafpd%2Fquota.c;h=e40de5fab87fb5f16cc1d6a3d02cafa8a7d1774e;hb=7b12c56c26d0ce7ef5834c71d3c8bcc90fef2532;hp=1bfc05b6bca4fc6397c524509eeab4137d30199e;hpb=cd88519f69dbd46eab346a83774e07c343820e75;p=netatalk.git diff --git a/etc/afpd/quota.c b/etc/afpd/quota.c index 1bfc05b6..e40de5fa 100644 --- a/etc/afpd/quota.c +++ b/etc/afpd/quota.c @@ -1,5 +1,5 @@ /* - * $Id: quota.c,v 1.27 2006-09-15 00:07:43 didg Exp $ + * $Id: quota.c,v 1.33 2010-01-21 14:14:49 didg Exp $ * * Copyright (c) 1990,1993 Regents of The University of Michigan. * All Rights Reserved. See COPYRIGHT. @@ -46,7 +46,10 @@ char *strchr (), *strrchr (); #include "volume.h" #include "unix.h" +/* #define DEBUG_QUOTA 0 +*/ + #define WANT_USER_QUOTA 0 #define WANT_GROUP_QUOTA 1 @@ -187,11 +190,7 @@ static int get_linux_quota(int what, char *path, uid_t euser_id, struct dqblk *d Abstract out the XFS Quota Manager quota get call. ****************************************************************************/ -static int get_linux_xfs_quota(what, path, euser_id, dqb) -int what; -char *path; -uid_t euser_id; -struct dqblk *dqb; +static int get_linux_xfs_quota(int what, char *path, uid_t euser_id, struct dqblk *dqb) { int ret = -1; #ifdef HAVE_LINUX_XQM_H @@ -218,11 +217,7 @@ struct dqblk *dqb; ** For API v2 the results are copied back into a v1 structure. ** Taken from quota-1.4.8 perl module */ -static int get_linux_fs_quota( what, path, euser_id, dqb) -int what; -char *path; -uid_t euser_id; -struct dqblk *dqb; +static int get_linux_fs_quota(int what, char *path, uid_t euser_id, struct dqblk *dqb) { int ret; @@ -294,9 +289,7 @@ struct dqblk *dqb; * on which "file" resides. Returns NULL on failure. */ static char * -mountp( file, nfs) -char *file; -int *nfs; +mountp( char *file, int *nfs) { struct stat sb; FILE *mtab; @@ -341,9 +334,7 @@ int *nfs; */ static char * -special( file, nfs ) -char *file; -int *nfs; +special( char *file, int *nfs) { static struct fs_data fsd; @@ -362,9 +353,7 @@ int *nfs; #if (defined(HAVE_SYS_MOUNT_H) && !defined(__linux__)) || defined(BSD4_4) || defined(_IBMR2) static char * -special( file, nfs ) -char *file; -int *nfs; +special(char *file, int *nfs) { static struct statfs sfs; @@ -387,9 +376,7 @@ int *nfs; #else /* BSD4_4 */ static char * -special( file, nfs ) -char *file; -int *nfs; +special(char *file, int *nfs) { struct stat sb; FILE *mtab; @@ -440,10 +427,7 @@ int *nfs; #endif /* __svr4__ */ -static int getfsquota(vol, uid, dq) -struct vol *vol; -const int uid; -struct dqblk *dq; +static int getfsquota(struct vol *vol, const int uid, struct dqblk *dq) { struct dqblk dqg; @@ -557,10 +541,7 @@ struct dqblk *dq; } -static int getquota( vol, dq, bsize) -struct vol *vol; -struct dqblk *dq; -const u_int32_t bsize; +static int getquota( struct vol *vol, struct dqblk *dq, const u_int32_t bsize) { char *p; @@ -643,8 +624,7 @@ const u_int32_t bsize; #endif /* TRU64 */ } -static int overquota( dqblk ) -struct dqblk *dqblk; +static int overquota( struct dqblk *dqblk) { struct timeval tv; @@ -662,7 +642,7 @@ struct dqblk *dqblk; return( 0 ); } #else /* ultrix */ - if ( gettimeofday( &tv, 0 ) < 0 ) { + if ( gettimeofday( &tv, NULL ) < 0 ) { LOG(log_error, logtype_afpd, "overquota: gettimeofday: %s", strerror(errno) ); return( AFPERR_PARAM ); } @@ -699,10 +679,7 @@ struct dqblk *dqblk; #define tobytes(a, b) dbtob((VolSpace) (a)) #endif -int uquota_getvolspace( vol, bfree, btotal, bsize) -struct vol *vol; -VolSpace *bfree, *btotal; -const u_int32_t bsize; +int uquota_getvolspace( struct vol *vol, VolSpace *bfree, VolSpace *btotal, const u_int32_t bsize) { u_int64_t this_bsize; struct dqblk dqblk; @@ -718,19 +695,19 @@ const u_int32_t bsize; #endif #ifdef DEBUG_QUOTA - LOG(log_info, logtype_afpd, "after calling getquota in uquota_getvolspace!" ); - LOG(log_info, logtype_afpd, "dqb_ihardlimit: %u", dqblk.dqb_ihardlimit ); - LOG(log_info, logtype_afpd, "dqb_isoftlimit: %u", dqblk.dqb_isoftlimit ); - LOG(log_info, logtype_afpd, "dqb_curinodes : %u", dqblk.dqb_curinodes ); - LOG(log_info, logtype_afpd, "dqb_bhardlimit: %u", dqblk.dqb_bhardlimit ); - LOG(log_info, logtype_afpd, "dqb_bsoftlimit: %u", dqblk.dqb_bsoftlimit ); - LOG(log_info, logtype_afpd, "dqb_curblocks : %u", dqblk.dqb_curblocks ); - LOG(log_info, logtype_afpd, "dqb_btime : %u", dqblk.dqb_btime ); - LOG(log_info, logtype_afpd, "dqb_itime : %u", dqblk.dqb_itime ); - LOG(log_info, logtype_afpd, "bsize/this_bsize : %u/%u", bsize, this_bsize ); - LOG(log_info, logtype_afpd, "dqblk.dqb_bhardlimit size: %u", tobytes( dqblk.dqb_bhardlimit, this_bsize )); - LOG(log_info, logtype_afpd, "dqblk.dqb_bsoftlimit size: %u", tobytes( dqblk.dqb_bsoftlimit, this_bsize )); - LOG(log_info, logtype_afpd, "dqblk.dqb_curblocks size: %u", tobytes( dqblk.dqb_curblocks, this_bsize )); + LOG(log_debug, logtype_afpd, "after calling getquota in uquota_getvolspace!" ); + LOG(log_debug, logtype_afpd, "dqb_ihardlimit: %u", dqblk.dqb_ihardlimit ); + LOG(log_debug, logtype_afpd, "dqb_isoftlimit: %u", dqblk.dqb_isoftlimit ); + LOG(log_debug, logtype_afpd, "dqb_curinodes : %u", dqblk.dqb_curinodes ); + LOG(log_debug, logtype_afpd, "dqb_bhardlimit: %u", dqblk.dqb_bhardlimit ); + LOG(log_debug, logtype_afpd, "dqb_bsoftlimit: %u", dqblk.dqb_bsoftlimit ); + LOG(log_debug, logtype_afpd, "dqb_curblocks : %u", dqblk.dqb_curblocks ); + LOG(log_debug, logtype_afpd, "dqb_btime : %u", dqblk.dqb_btime ); + LOG(log_debug, logtype_afpd, "dqb_itime : %u", dqblk.dqb_itime ); + LOG(log_debug, logtype_afpd, "bsize/this_bsize : %u/%u", bsize, this_bsize ); + LOG(log_debug, logtype_afpd, "dqblk.dqb_bhardlimit size: %u", tobytes( dqblk.dqb_bhardlimit, this_bsize )); + LOG(log_debug, logtype_afpd, "dqblk.dqb_bsoftlimit size: %u", tobytes( dqblk.dqb_bsoftlimit, this_bsize )); + LOG(log_debug, logtype_afpd, "dqblk.dqb_curblocks size: %u", tobytes( dqblk.dqb_curblocks, this_bsize )); #endif /* DEBUG_QUOTA */ /* no limit set for this user. it might be set in the future. */ @@ -753,10 +730,10 @@ const u_int32_t bsize; } #ifdef DEBUG_QUOTA - LOG(log_info, logtype_afpd, "bfree : %u", *bfree ); - LOG(log_info, logtype_afpd, "btotal : %u", *btotal ); - LOG(log_info, logtype_afpd, "bfree : %uKB", *bfree/1024 ); - LOG(log_info, logtype_afpd, "btotal : %uKB", *btotal/1024 ); + LOG(log_debug, logtype_afpd, "bfree : %u", *bfree ); + LOG(log_debug, logtype_afpd, "btotal : %u", *btotal ); + LOG(log_debug, logtype_afpd, "bfree : %uKB", *bfree/1024 ); + LOG(log_debug, logtype_afpd, "btotal : %uKB", *btotal/1024 ); #endif return( AFP_OK );