From af5dcaa7405b7e5f67acacece96690da03ae9e5a Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Sun, 2 Sep 2012 16:08:58 +0200 Subject: s3: adopt the new sysquotas_4B support for BSD most BSD systems have ufs/ufs/quota.h and they count the quota in blocks, not bytes and have slightly different dqblk struct members. --- source3/configure.in | 9 +++++++++ source3/lib/sysquotas_4B.c | 22 +++++++++++++++++++--- 2 files changed, 28 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/configure.in b/source3/configure.in index 67ccad6ed1..e11f434362 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4646,6 +4646,10 @@ AC_CHECK_HEADERS(linux/dqblk_xfs.h) # For sys/quota.h and linux/quota.h AC_CHECK_HEADERS(sys/quota.h) +# For quotas on BSD systems +AC_CHECK_HEADERS(ufs/ufs/quota.h) + + if test x"$samba_cv_found_xfs_header" != x"yes"; then # if we have xfs quota support (IRIX) we should use it AC_CACHE_CHECK([for XFS QUOTA in ],samba_cv_HAVE_SYS_QUOTA_XFS, [ @@ -4710,6 +4714,11 @@ if test x"$samba_cv_HAVE_QUOTACTL_4B" = x"yes"; then samba_cv_SYSQUOTA_FOUND=yes; AC_DEFINE(HAVE_QUOTACTL_4B,1,[Whether int quotactl(const char *path, int cmd, int id, char *addr) is available]) samba_cv_sysquotas_file="lib/sysquotas_4B.c" + AC_CHECK_MEMBERS([struct dqblk.dqb_curbytes], # Darwin bytecount style + [ AC_DEFINE([HAVE_STRUCT_DQBLK_DQB_CURBYTES],[1],[darwin style quota bytecount])],, + [#include + #include ]) + fi fi diff --git a/source3/lib/sysquotas_4B.c b/source3/lib/sysquotas_4B.c index 9badd3b75b..e3adc35015 100644 --- a/source3/lib/sysquotas_4B.c +++ b/source3/lib/sysquotas_4B.c @@ -43,8 +43,14 @@ #include #endif -/* WorkARound broken HFS access checks in hfs_quotactl. */ +#ifdef HAVE_UFS_UFS_QUOTA_H +#include +#endif + +#if defined(DARWINOS) +/* WorkARound broken HFS access checks in hfs_quotactl. Darwin only(?) */ #define HFS_QUOTACTL_WAR 1 +#endif static void xlate_qblk_to_smb(const struct dqblk * const qblk, SMB_DISK_QUOTA *dp) @@ -53,12 +59,17 @@ static void xlate_qblk_to_smb(const struct dqblk * const qblk, DEBUG(10, ("unix softlimit=%u hardlimit=%u curblock=%u\n", (unsigned)qblk->dqb_bsoftlimit, (unsigned)qblk->dqb_bhardlimit, +#ifdef HAVE_STRUCT_DQBLK_DQB_CURBYTES (unsigned)qblk->dqb_curbytes)); +#else + (unsigned)qblk->dqb_curblocks)); +#endif DEBUGADD(10, ("unix softinodes=%u hardinodes=%u curinodes=%u\n", (unsigned)qblk->dqb_isoftlimit, (unsigned)qblk->dqb_ihardlimit, (unsigned)qblk->dqb_curinodes)); +#ifdef HAVE_STRUCT_DQBLK_DQB_CURBYTES /* On Darwin, quotas are counted in bytes. We report them * in 512b blocks because various callers have assumptions * about the block size. @@ -70,6 +81,7 @@ static void xlate_qblk_to_smb(const struct dqblk * const qblk, dp->hardlimit = XLATE_TO_BLOCKS(qblk->dqb_bhardlimit); dp->curblocks = XLATE_TO_BLOCKS(qblk->dqb_curbytes); #undef XLATE_TO_BLOCKS +#endif dp->ihardlimit = qblk->dqb_ihardlimit; dp->isoftlimit = qblk->dqb_isoftlimit; @@ -92,9 +104,13 @@ static void xlate_smb_to_qblk(const SMB_DISK_QUOTA * const dp, { ZERO_STRUCTP(qblk); + qblk->dqb_bsoftlimit = dp->softlimit; + qblk->dqb_bhardlimit = dp->hardlimit; +#ifdef HAVE_STRUCT_DQBLK_DQB_CURBYTES /* On Darwin, quotas are counted in bytes. */ - qblk->dqb_bsoftlimit = dp->softlimit * dp->bsize; - qblk->dqb_bhardlimit = dp->hardlimit * dp->bsize; + qblk->dqb_bsoftlimit *= dp->bsize; + qblk->dqb_bhardlimit *= dp->bsize; +#endif qblk->dqb_ihardlimit = dp->ihardlimit; qblk->dqb_isoftlimit = dp->isoftlimit; } -- cgit