summaryrefslogtreecommitdiff
path: root/source3/smbd/quotas.c
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1996-12-10 17:58:11 +0000
committerSamba Release Account <samba-bugs@samba.org>1996-12-10 17:58:11 +0000
commit53a9501444e3e00797e464ad4550db3e99921c87 (patch)
tree70f38b3f41fa226a56b9d0844ab577e2adcfe778 /source3/smbd/quotas.c
parent3eb2945910aa64bb5062ee58252174ee28c750ab (diff)
downloadsamba-53a9501444e3e00797e464ad4550db3e99921c87.tar.gz
samba-53a9501444e3e00797e464ad4550db3e99921c87.tar.bz2
samba-53a9501444e3e00797e464ad4550db3e99921c87.zip
Fixed quota support for FreeBsd.
jra@cygnus.com (This used to be commit d1009c53517c3cfc536cb6436a702441c27be448)
Diffstat (limited to 'source3/smbd/quotas.c')
-rw-r--r--source3/smbd/quotas.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/source3/smbd/quotas.c b/source3/smbd/quotas.c
index 6ba20faa6c..3e22e26ba3 100644
--- a/source3/smbd/quotas.c
+++ b/source3/smbd/quotas.c
@@ -376,8 +376,12 @@ DEBUG(5,("disk_quotas for path \"%s\" returning bsize %d, dfree %d, dsize %d\n"
#else
+#ifdef __FreeBSD__
+#include <ufs/ufs/quota.h>
+#else
#include <sys/quota.h>
#include <devnm.h>
+#endif
/****************************************************************************
try to get the disk space from disk quotas - default version
@@ -389,9 +393,11 @@ BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize)
char dev_disk[256];
struct dqblk D;
struct stat S;
+#ifndef __FreeBSD__
/* find the block device file */
if ((stat(path, &S)<0) ||
(devnm(S_IFBLK, S.st_dev, dev_disk, 256, 0)<0)) return (False);
+#endif
euser_id = geteuid();
@@ -399,12 +405,17 @@ BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize)
/* for HPUX, real uid must be same as euid to execute quotactl for euid */
user_id = getuid();
setresuid(euser_id,-1,-1);
-#endif
r=quotactl(Q_GETQUOTA, dev_disk, euser_id, &D);
- #ifdef USE_SETRES
if (setresuid(user_id,-1,-1))
DEBUG(5,("Unable to reset uid to %d\n", user_id));
+#else
+#if defined(__FreeBSD__)
+ r= quotactl(path,Q_GETQUOTA,euser_id,(char *) &D);
+#else
+ r=quotactl(Q_GETQUOTA, dev_disk, euser_id, &D);
#endif
+#endif
+
/* Use softlimit to determine disk space, except when it has been exceeded */
*bsize = 1024;
if (r)
@@ -420,8 +431,11 @@ BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize)
if (D.dqb_bsoftlimit==0)
return(False);
/* Use softlimit to determine disk space, except when it has been exceeded */
- if ((D.dqb_curblocks>D.dqb_bsoftlimit)||(D.dqb_curfiles>D.dqb_fsoftlimit))
- {
+ if ((D.dqb_curblocks>D.dqb_bsoftlimit)
+#if !defined(__FreeBSD__)
+||(D.dqb_curfiles>D.dqb_fsoftlimit))
+#endif
+ ) {
*dfree = 0;
*dsize = D.dqb_curblocks;
}