]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/quota.c
fix typos, PAM_C/LDFLAGS were always empty - from Alexander Barton
[netatalk.git] / etc / afpd / quota.c
1 /*
2  * $Id: quota.c,v 1.22.8.8 2004-03-22 22:46:29 bfernhomberg Exp $
3  *
4  * Copyright (c) 1990,1993 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif /* HAVE_CONFIG_H */
11
12 #ifndef NO_QUOTA_SUPPORT
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <errno.h>
17 #include <sys/types.h>
18 /* STDC check */
19 #if STDC_HEADERS
20 #include <string.h>
21 #else /* STDC_HEADERS */
22 #ifndef HAVE_STRCHR
23 #define strchr index
24 #define strrchr index
25 #endif /* HAVE_STRCHR */
26 char *strchr (), *strrchr ();
27 #ifndef HAVE_MEMCPY
28 #define memcpy(d,s,n) bcopy ((s), (d), (n))
29 #define memmove(d,s,n) bcopy ((s), (d), (n))
30 #endif /* ! HAVE_MEMCPY */
31 #endif /* STDC_HEADERS */
32 #include <sys/stat.h>
33 #include <sys/time.h>
34 #include <sys/param.h>
35 #ifdef HAVE_UNISTD_H
36 #include <unistd.h>
37 #endif /* HAVE_UNISTD_H */
38 #ifdef HAVE_FCNTL_H
39 #include <fcntl.h>
40 #endif /* HAVE_FCNTL_H */
41
42 #include <atalk/logger.h>
43 #include <atalk/afp.h>
44
45 #include "auth.h"
46 #include "volume.h"
47 #include "unix.h"
48
49 #define DEBUG_QUOTA 0
50 #define WANT_USER_QUOTA 0
51 #define WANT_GROUP_QUOTA 1
52
53 #ifdef NEED_QUOTACTL_WRAPPER
54 int quotactl(int cmd, const char *special, int id, caddr_t addr)
55 {
56     return syscall(__NR_quotactl, cmd, special, id, addr);
57 }
58 #endif /* NEED_QUOTACTL_WRAPPER */
59
60 #ifdef linux
61
62 #ifdef HAVE_LINUX_XQM_H
63 #include <linux/xqm.h>
64 #else
65 #ifdef HAVE_XFS_XQM_H
66 #include <xfs/xqm.h>
67 #define HAVE_LINUX_XQM_H
68 #endif /* HAVE_XFS_XQM_H */
69 #endif /* HAVE_LINUX_XQM_H */
70
71 #include <linux/unistd.h>
72
73 static int is_xfs = 0;
74
75 static int get_linux_xfs_quota(int, char*, uid_t, struct dqblk *);
76 static int get_linux_fs_quota(int, char*, uid_t, struct dqblk *);
77 static int overquota( struct dqblk *);
78
79 /* format supported by current kernel */
80 static int kernel_iface = IFACE_UNSET;
81
82 /*
83 **  Check kernel quota version
84 **  Taken from quota-tools 3.08 by Jan Kara <jack@suse.cz>
85 */
86 static void linuxquota_get_api( void )
87 {
88 #ifndef LINUX_API_VERSION
89     struct stat st;
90
91     if (stat("/proc/sys/fs/quota", &st) == 0) {
92         kernel_iface = IFACE_GENERIC;
93     }
94     else {
95         struct dqstats_v2 v2_stats;
96         struct sigaction  sig;
97         struct sigaction  oldsig;
98
99         /* This signal handling is needed because old kernels send us SIGSEGV as they try to resolve the device */
100         sig.sa_handler   = SIG_IGN;
101         sig.sa_sigaction = NULL;
102         sig.sa_flags     = 0;
103         sigemptyset(&sig.sa_mask);
104         if (sigaction(SIGSEGV, &sig, &oldsig) < 0) {
105             LOG( log_error, logtype_afpd, "cannot set SEGV signal handler: %s\n", strerror(errno));
106             goto failure;
107         }
108         if (quotactl(QCMD(Q_V2_GETSTATS, 0), NULL, 0, (void *)&v2_stats) >= 0) {
109             kernel_iface = IFACE_VFSV0;
110         }
111         else if (errno != ENOSYS && errno != ENOTSUP) {
112             /* RedHat 7.1 (2.4.2-2) newquota check 
113              * Q_V2_GETSTATS in it's old place, Q_GETQUOTA in the new place
114              * (they haven't moved Q_GETSTATS to its new value) */
115             int err_stat = 0;
116             int err_quota = 0;
117             char tmp[1024];         /* Just temporary buffer */
118
119             if (quotactl(QCMD(Q_V1_GETSTATS, 0), NULL, 0, tmp))
120                 err_stat = errno;
121             if (quotactl(QCMD(Q_V1_GETQUOTA, 0), "/dev/null", 0, tmp))
122                 err_quota = errno;
123
124             /* On a RedHat 2.4.2-2      we expect 0, EINVAL
125              * On a 2.4.x               we expect 0, ENOENT
126              * On a 2.4.x-ac    we wont get here */
127             if (err_stat == 0 && err_quota == EINVAL) {
128                 kernel_iface = IFACE_VFSV0;
129             }
130             else {
131                 kernel_iface = IFACE_VFSOLD;
132             }
133         }
134         else {
135             /* This branch is *not* in quota-tools 3.08
136             ** but without it quota version is not correctly
137             ** identified for the original SuSE 8.0 kernel */
138             unsigned int vers_no;
139             FILE * qf;
140
141             if ((qf = fopen("/proc/fs/quota", "r"))) {
142                 if (fscanf(qf, "Version %u", &vers_no) == 1) {
143                     if ( (vers_no == (6*10000 + 5*100 + 0)) ||
144                          (vers_no == (6*10000 + 5*100 + 1)) ) {
145                         kernel_iface = IFACE_VFSV0;
146                     }
147                 }
148                 fclose(qf);
149             }
150         }
151         if (sigaction(SIGSEGV, &oldsig, NULL) < 0) {
152             LOG(log_error, logtype_afpd, "cannot reset signal handler: %s\n", strerror(errno));
153             goto failure;
154         }
155     }
156
157 failure:
158     if (kernel_iface == IFACE_UNSET)
159        kernel_iface = IFACE_VFSOLD;
160
161 #else /* defined LINUX_API_VERSION */
162     kernel_iface = LINUX_API_VERSION;
163 #endif
164 }
165
166 /****************************************************************************/
167
168 static int get_linux_quota(int what, char *path, uid_t euser_id, struct dqblk *dp)
169 {
170         int r; /* result */
171
172         if ( is_xfs )
173                 r=get_linux_xfs_quota(what, path, euser_id, dp);
174         else
175                 r=get_linux_fs_quota(what, path, euser_id, dp);
176     
177         return r;
178 }
179
180 /****************************************************************************
181  Abstract out the XFS Quota Manager quota get call.
182 ****************************************************************************/
183
184 static int get_linux_xfs_quota(what, path, euser_id, dqb)
185 int what;
186 char *path;
187 uid_t euser_id;
188 struct dqblk *dqb;
189 {
190         int ret = -1;
191 #ifdef HAVE_LINUX_XQM_H
192         struct fs_disk_quota D;
193         
194         memset (&D, 0, sizeof(D));
195
196         if ((ret = quotactl(QCMD(Q_XGETQUOTA,(what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t)&D)))
197                return ret;
198
199         dqb->bsize = (u_int64_t)512;
200         dqb->dqb_bsoftlimit  = (u_int64_t)D.d_blk_softlimit;
201         dqb->dqb_bhardlimit  = (u_int64_t)D.d_blk_hardlimit;
202         dqb->dqb_ihardlimit  = (u_int64_t)D.d_ino_hardlimit;
203         dqb->dqb_isoftlimit  = (u_int64_t)D.d_ino_softlimit;
204         dqb->dqb_curinodes   = (u_int64_t)D.d_icount;
205         dqb->dqb_curblocks   = (u_int64_t)D.d_bcount; 
206 #endif
207        return ret;
208 }
209
210 /*
211 ** Wrapper for the quotactl(GETQUOTA) call.
212 ** For API v2 the results are copied back into a v1 structure.
213 ** Taken from quota-1.4.8 perl module
214 */
215 static int get_linux_fs_quota( what, path, euser_id, dqb)
216 int what;
217 char *path;
218 uid_t euser_id;
219 struct dqblk *dqb;
220 {
221         int ret;
222
223         if (kernel_iface == IFACE_UNSET)
224                 linuxquota_get_api();
225
226         if (kernel_iface == IFACE_GENERIC)
227         {
228                 struct dqblk_v3 dqb3;
229
230                 ret = quotactl(QCMD(Q_V3_GETQUOTA, (what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t) &dqb3);
231                 if (ret == 0)
232                 {
233                         dqb->dqb_bhardlimit = dqb3.dqb_bhardlimit;
234                         dqb->dqb_bsoftlimit = dqb3.dqb_bsoftlimit;
235                         dqb->dqb_curblocks  = dqb3.dqb_curspace / DEV_QBSIZE;
236                         dqb->dqb_ihardlimit = dqb3.dqb_ihardlimit;
237                         dqb->dqb_isoftlimit = dqb3.dqb_isoftlimit;
238                         dqb->dqb_curinodes  = dqb3.dqb_curinodes;
239                         dqb->dqb_btime      = dqb3.dqb_btime;
240                         dqb->dqb_itime      = dqb3.dqb_itime;
241                         dqb->bsize          = DEV_QBSIZE;
242                 }
243         }
244         else if (kernel_iface == IFACE_VFSV0)
245         {
246                 struct dqblk_v2 dqb2;
247
248                 ret = quotactl(QCMD(Q_V2_GETQUOTA, (what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t) &dqb2);
249                 if (ret == 0)
250                 {
251                         dqb->dqb_bhardlimit = dqb2.dqb_bhardlimit;
252                         dqb->dqb_bsoftlimit = dqb2.dqb_bsoftlimit;
253                         dqb->dqb_curblocks  = dqb2.dqb_curspace / DEV_QBSIZE;
254                         dqb->dqb_ihardlimit = dqb2.dqb_ihardlimit;
255                         dqb->dqb_isoftlimit = dqb2.dqb_isoftlimit;
256                         dqb->dqb_curinodes  = dqb2.dqb_curinodes;
257                         dqb->dqb_btime      = dqb2.dqb_btime;
258                         dqb->dqb_itime      = dqb2.dqb_itime;
259                         dqb->bsize          = DEV_QBSIZE;
260                 }
261         }
262         else /* if (kernel_iface == IFACE_VFSOLD) */
263         {
264                 struct dqblk_v1 dqb1;
265
266                 ret = quotactl(QCMD(Q_V1_GETQUOTA, (what ? GRPQUOTA : USRQUOTA)), path, euser_id, (caddr_t) &dqb1);
267                 if (ret == 0)
268                 {
269                         dqb->dqb_bhardlimit = dqb1.dqb_bhardlimit;
270                         dqb->dqb_bsoftlimit = dqb1.dqb_bsoftlimit;
271                         dqb->dqb_curblocks  = dqb1.dqb_curblocks;
272                         dqb->dqb_ihardlimit = dqb1.dqb_ihardlimit;
273                         dqb->dqb_isoftlimit = dqb1.dqb_isoftlimit;
274                         dqb->dqb_curinodes  = dqb1.dqb_curinodes;
275                         dqb->dqb_btime      = dqb1.dqb_btime;
276                         dqb->dqb_itime      = dqb1.dqb_itime;
277                         dqb->bsize          = DEV_QBSIZE;
278                 }
279         }
280         return ret;
281 }
282
283 #endif /* linux */
284
285 #if defined(HAVE_SYS_MNTTAB_H) || defined(__svr4__)
286 /*
287  * Return the mount point associated with the filesystem
288  * on which "file" resides.  Returns NULL on failure.
289  */
290 static char *
291 mountp( file, nfs)
292 char    *file;
293 int         *nfs;
294 {
295     struct stat                 sb;
296     FILE                        *mtab;
297     dev_t                       devno;
298     static struct mnttab        mnt;
299
300     if ( stat( file, &sb ) < 0 ) {
301         return( NULL );
302     }
303     devno = sb.st_dev;
304
305     if (( mtab = fopen( "/etc/mnttab", "r" )) == NULL ) {
306         return( NULL );
307     }
308
309     while ( getmntent( mtab, &mnt ) == 0 ) {
310         /* local fs */
311         if ( (stat( mnt.mnt_special, &sb ) == 0) && (devno == sb.st_rdev)) {
312             fclose( mtab );
313             return mnt.mnt_mountp;
314         }
315
316         /* check for nfs. we probably should use
317          * strcmp(mnt.mnt_fstype, MNTTYPE_NFS), but that's not as fast. */
318         if ((stat(mnt.mnt_mountp, &sb) == 0) && (devno == sb.st_dev) &&
319                 strchr(mnt.mnt_special, ':')) {
320             *nfs = 1;
321             fclose( mtab );
322             return mnt.mnt_special;
323         }
324     }
325
326     fclose( mtab );
327     return( NULL );
328 }
329
330 #else /* __svr4__ */
331 #ifdef ultrix
332 /*
333 * Return the block-special device name associated with the filesystem
334 * on which "file" resides.  Returns NULL on failure.
335 */
336
337 static char *
338 special( file, nfs )
339 char *file;
340 int  *nfs;
341 {
342     static struct fs_data       fsd;
343
344     if ( getmnt(0, &fsd, 0, STAT_ONE, file ) < 0 ) {
345         LOG(log_info, logtype_afpd, "special: getmnt %s: %s", file, strerror(errno) );
346         return( NULL );
347     }
348
349     /* XXX: does this really detect an nfs mounted fs? */
350     if (strchr(fsd.fd_req.devname, ':'))
351         *nfs = 1;
352     return( fsd.fd_req.devname );
353 }
354
355 #else /* ultrix */
356 #if (defined(HAVE_SYS_MOUNT_H) && !defined(__linux__)) || defined(BSD4_4) || defined(_IBMR2)
357
358 static char *
359 special( file, nfs )
360 char    *file;
361 int         *nfs;
362 {
363     static struct statfs        sfs;
364
365     if ( statfs( file, &sfs ) < 0 ) {
366         return( NULL );
367     }
368
369 #ifdef TRU64
370     /* Digital UNIX: The struct sfs contains a field sfs.f_type,
371      * the MOUNT_* constants are defined in <sys/mount.h> */
372     if ((sfs.f_type == MOUNT_NFS)||(sfs.f_type == MOUNT_NFS3))
373 #else /* TRU64 */
374     /* XXX: make sure this really detects an nfs mounted fs */
375     if (strchr(sfs.f_mntfromname, ':'))
376 #endif /* TRU64 */
377         *nfs = 1;
378     return( sfs.f_mntfromname );
379 }
380
381 #else /* BSD4_4 */
382
383 static char *
384 special( file, nfs )
385 char *file;
386 int *nfs;
387 {
388     struct stat         sb;
389     FILE                *mtab;
390     dev_t               devno;
391     struct mntent       *mnt;
392     int                 found=0;
393
394     if ( stat( file, &sb ) < 0 ) {
395         return( NULL );
396     }
397     devno = sb.st_dev;
398
399     if (( mtab = setmntent( "/etc/mtab", "r" )) == NULL ) {
400         return( NULL );
401     }
402
403     while (( mnt = getmntent( mtab )) != NULL ) {
404         /* check for local fs */
405         if ( (stat( mnt->mnt_fsname, &sb ) == 0) && devno == sb.st_rdev) {
406             found = 1;
407             break;
408         }
409
410         /* check for an nfs mount entry. the alternative is to use
411         * strcmp(mnt->mnt_type, MNTTYPE_NFS) instead of the strchr. */
412         if ((stat(mnt->mnt_dir, &sb) == 0) && (devno == sb.st_dev) &&
413                 strchr(mnt->mnt_fsname, ':')) {
414             *nfs = 1;
415             found = 1;
416             break;
417         }
418     }
419
420     endmntent( mtab );
421
422     if (!found)
423         return (NULL);
424 #ifdef linux
425     if (strcmp(mnt->mnt_type, "xfs") == 0)
426         is_xfs = 1;
427 #endif
428         
429     return( mnt->mnt_fsname );
430 }
431
432 #endif /* BSD4_4 */
433 #endif /* ultrix */
434 #endif /* __svr4__ */
435
436
437 static int getfsquota(vol, uid, dq)
438 struct vol              *vol;
439 const int               uid;
440 struct dqblk            *dq;
441
442 {
443         struct dqblk dqg;
444
445     memset(&dqg, 0, sizeof(dqg));
446         
447 #ifdef __svr4__
448     struct quotctl      qc;
449
450     qc.op = Q_GETQUOTA;
451     qc.uid = uid;
452     qc.addr = (caddr_t)dq;
453     if ( ioctl( vol->v_qfd, Q_QUOTACTL, &qc ) < 0 ) {
454         return( AFPERR_PARAM );
455     }
456
457 #else /* __svr4__ */
458 #ifdef ultrix
459     if ( quota( Q_GETDLIM, uid, vol->v_gvs, dq ) != 0 ) {
460         return( AFPERR_PARAM );
461     }
462 #else /* ultrix */
463
464 #ifndef USRQUOTA
465 #define USRQUOTA   0
466 #endif
467
468 #ifndef QCMD
469 #define QCMD(a,b)  (a)
470 #endif
471
472 #ifndef TRU64
473     /* for group quotas. we only use these if the user belongs
474     * to one group. */
475 #endif /* TRU64 */
476
477 #ifdef BSD4_4
478     if ( seteuid( getuid() ) == 0 ) {
479         if ( quotactl( vol->v_path, QCMD(Q_GETQUOTA,USRQUOTA),
480                        uid, (char *)dq ) != 0 ) {
481             /* try group quotas */
482             if (ngroups >= 1) {
483                 if ( quotactl(vol->v_path, QCMD(Q_GETQUOTA, GRPQUOTA),
484                               groups[0], (char *) &dqg) != 0 ) {
485                     seteuid( uid );
486                     return( AFPERR_PARAM );
487                 }
488             }
489         }
490         seteuid( uid );
491     }
492
493 #elif defined(TRU64)
494     if ( seteuid( getuid() ) == 0 ) {
495         if ( quotactl( vol->v_path, QCMD(Q_GETQUOTA, USRQUOTA),
496                        uid, (char *)dq ) != 0 ) {
497             seteuid( uid );
498             return ( AFPERR_PARAM );
499         }
500         seteuid( uid );
501     }
502
503 #else /* BSD4_4 */
504     if (get_linux_quota (WANT_USER_QUOTA, vol->v_gvs, uid, dq) !=0) {
505         return( AFPERR_PARAM );
506     }
507
508     if (get_linux_quota(WANT_GROUP_QUOTA, vol->v_gvs, getegid(),  &dqg) != 0) {
509 #ifdef DEBUG_QUOTA
510         LOG(log_debug, logtype_afpd, "group quota did not work!" );
511 #endif /* DEBUG_QUOTA */
512
513         return AFP_OK; /* no need to check user vs group quota */
514     }
515 #endif  /* BSD4_4 */
516
517
518 #ifndef TRU64
519     /* return either the group quota entry or user quota entry,
520        whichever has the least amount of space remaining
521     */
522
523     /* if user space remaining > group space remaining */
524     if( 
525         /* if overquota, free space is 0 otherwise hard-current */
526         ( overquota( dq ) ? 0 : ( dq->dqb_bhardlimit ? dq->dqb_bhardlimit - 
527                                   dq->dqb_curblocks : ~((qsize_t) 0) ) )
528
529       >
530         
531         ( overquota( &dqg ) ? 0 : ( dqg.dqb_bhardlimit ? dqg.dqb_bhardlimit - 
532                                     dqg.dqb_curblocks : ~((qsize_t) 0) ) )
533
534       ) /* if */
535     {
536         /* use group quota limits rather than user limits */
537         dq->dqb_curblocks = dqg.dqb_curblocks;
538         dq->dqb_bhardlimit = dqg.dqb_bhardlimit;
539         dq->dqb_bsoftlimit = dqg.dqb_bsoftlimit;
540         dq->dqb_btimelimit = dqg.dqb_btimelimit;
541     } /* if */
542
543 #endif /* TRU64 */
544
545 #endif /* ultrix */
546 #endif /* __svr4__ */
547
548     return AFP_OK;
549 }
550
551
552 static int getquota( vol, dq, bsize)
553 struct vol              *vol;
554 struct dqblk            *dq;
555 const u_int32_t         bsize;
556 {
557     char *p;
558
559 #ifdef __svr4__
560     char                buf[ MAXPATHLEN + 1];
561
562     if ( vol->v_qfd == -1 && vol->v_gvs == NULL) {
563         if (( p = mountp( vol->v_path, &vol->v_nfs)) == NULL ) {
564             LOG(log_info, logtype_afpd, "getquota: mountp %s fails", vol->v_path );
565             return( AFPERR_PARAM );
566         }
567
568         if (vol->v_nfs) {
569             if (( vol->v_gvs = (char *)malloc( strlen( p ) + 1 )) == NULL ) {
570                 LOG(log_error, logtype_afpd, "getquota: malloc: %s", strerror(errno) );
571                 return AFPERR_MISC;
572             }
573             strcpy( vol->v_gvs, p );
574
575         } else {
576             sprintf( buf, "%s/quotas", p );
577             if (( vol->v_qfd = open( buf, O_RDONLY, 0 )) < 0 ) {
578                 LOG(log_info, logtype_afpd, "open %s: %s", buf, strerror(errno) );
579                 return( AFPERR_PARAM );
580             }
581         }
582
583     }
584 #else
585     if ( vol->v_gvs == NULL ) {
586         if (( p = special( vol->v_path, &vol->v_nfs )) == NULL ) {
587             LOG(log_info, logtype_afpd, "getquota: special %s fails", vol->v_path );
588             return( AFPERR_PARAM );
589         }
590
591         if (( vol->v_gvs = (char *)malloc( strlen( p ) + 1 )) == NULL ) {
592             LOG(log_error, logtype_afpd, "getquota: malloc: %s", strerror(errno) );
593             return AFPERR_MISC;
594         }
595         strcpy( vol->v_gvs, p );
596     }
597 #endif
598
599 #ifdef TRU64
600     /* Digital UNIX: Two forms of specifying an NFS filesystem are possible,
601        either 'hostname:path' or 'path@hostname' (Ultrix heritage) */
602     if (vol->v_nfs) {
603         char *hostpath;
604         char pathstring[MNAMELEN];
605         /* MNAMELEN ist defined in <sys/mount.h> */
606         int result;
607         
608         if ((hostpath = strchr(vol->v_gvs,'@')) != NULL ) {
609             /* convert 'path@hostname' to 'hostname:path',
610              * call getnfsquota(),
611              * convert 'hostname:path' back to 'path@hostname' */
612             *hostpath = '\0';
613             sprintf(pathstring,"%s:%s",hostpath+1,vol->v_gvs);
614             strcpy(vol->v_gvs,pathstring);
615             
616             result = getnfsquota(vol, uuid, bsize, dq);
617             
618             hostpath = strchr(vol->v_gvs,':');
619             *hostpath = '\0';
620             sprintf(pathstring,"%s@%s",hostpath+1,vol->v_gvs);
621             strcpy(vol->v_gvs,pathstring);
622             
623             return result;
624         }
625         else
626             /* vol->v_gvs is of the form 'hostname:path' */
627             return getnfsquota(vol, uuid, bsize, dq);
628     } else
629         /* local filesystem */
630         return getfsquota(vol, uuid, dq);
631            
632 #else /* TRU64 */
633     return vol->v_nfs ? getnfsquota(vol, uuid, bsize, dq) :
634            getfsquota(vol, uuid, dq);
635 #endif /* TRU64 */
636 }
637
638 static int overquota( dqblk )
639 struct dqblk      *dqblk;
640 {
641     struct timeval      tv;
642
643     if ( dqblk->dqb_curblocks > dqblk->dqb_bhardlimit &&
644          dqblk->dqb_bhardlimit != 0 ) {
645         return( 1 );
646     }
647
648     if ( dqblk->dqb_curblocks < dqblk->dqb_bsoftlimit ||
649          dqblk->dqb_bsoftlimit == 0 ) {
650         return( 0 );
651     }
652 #ifdef ultrix
653     if ( dqblk->dqb_bwarn ) {
654         return( 0 );
655     }
656 #else /* ultrix */
657     if ( gettimeofday( &tv, 0 ) < 0 ) {
658         LOG(log_error, logtype_afpd, "overquota: gettimeofday: %s", strerror(errno) );
659         return( AFPERR_PARAM );
660     }
661     if ( dqblk->dqb_btimelimit && dqblk->dqb_btimelimit > tv.tv_sec ) {
662         return( 0 );
663     }
664 #endif /* ultrix */
665     return( 1 );
666 }
667
668 /*
669  * This next bit is basically for linux -- everything is fine
670  * if you use 1k blocks... but if you try (for example) to mount
671  * a volume via nfs from a netapp (which might use 4k blocks) everything
672  * gets reported improperly.  I have no idea about dbtob on other
673  * platforms.
674  */
675
676 #ifdef HAVE_BROKEN_DBTOB
677 #undef dbtob
678 #define dbtob(a, b)     ((VolSpace)((VolSpace)(a) * (VolSpace)(b)))
679 #define HAVE_2ARG_DBTOB
680 #endif
681
682 #ifndef dbtob
683 #define dbtob(a)       ((a) << 10)
684 #endif
685
686 /* i do the cast to VolSpace here to make sure that 64-bit shifts
687    work */
688 #ifdef HAVE_2ARG_DBTOB
689 #define tobytes(a, b)  dbtob((VolSpace) (a), (VolSpace) (b))
690 #else 
691 #define tobytes(a, b)  dbtob((VolSpace) (a))
692 #endif
693
694 int uquota_getvolspace( vol, bfree, btotal, bsize)
695 const struct vol        *vol;
696 VolSpace        *bfree, *btotal;
697 const u_int32_t bsize;
698 {
699         u_int64_t this_bsize;
700         struct dqblk dqblk;
701
702         this_bsize = bsize;
703                         
704         if (getquota( vol, &dqblk, bsize) != 0 ) {
705                 return( AFPERR_PARAM );
706         }
707
708 #ifdef linux
709         this_bsize = dqblk.bsize;
710 #endif
711
712 #if DEBUG_QUOTA
713         LOG(log_info, logtype_afpd, "after calling getquota in uquota_getvolspace!" );
714         LOG(log_info, logtype_afpd, "dqb_ihardlimit: %u", dqblk.dqb_ihardlimit );
715         LOG(log_info, logtype_afpd, "dqb_isoftlimit: %u", dqblk.dqb_isoftlimit );
716         LOG(log_info, logtype_afpd, "dqb_curinodes : %u", dqblk.dqb_curinodes );
717         LOG(log_info, logtype_afpd, "dqb_bhardlimit: %u", dqblk.dqb_bhardlimit );
718         LOG(log_info, logtype_afpd, "dqb_bsoftlimit: %u", dqblk.dqb_bsoftlimit );
719         LOG(log_info, logtype_afpd, "dqb_curblocks : %u", dqblk.dqb_curblocks );
720         LOG(log_info, logtype_afpd, "dqb_btime     : %u", dqblk.dqb_btime );
721         LOG(log_info, logtype_afpd, "dqb_itime     : %u", dqblk.dqb_itime );
722         LOG(log_info, logtype_afpd, "bsize/this_bsize : %u/%u", bsize, this_bsize );
723         LOG(log_info, logtype_afpd, "dqblk.dqb_bhardlimit size: %u", tobytes( dqblk.dqb_bhardlimit, this_bsize ));
724         LOG(log_info, logtype_afpd, "dqblk.dqb_bsoftlimit size: %u", tobytes( dqblk.dqb_bsoftlimit, this_bsize ));
725         LOG(log_info, logtype_afpd, "dqblk.dqb_curblocks  size: %u", tobytes( dqblk.dqb_curblocks, this_bsize ));
726 #endif /* DEBUG_QUOTA */ 
727
728         /* no limit set for this user. it might be set in the future. */
729         if (dqblk.dqb_bsoftlimit == 0 && dqblk.dqb_bhardlimit == 0) {
730                 *btotal = *bfree = ~((VolSpace) 0);
731         } else if ( overquota( &dqblk )) {
732                 if ( tobytes( dqblk.dqb_curblocks, this_bsize ) > tobytes( dqblk.dqb_bsoftlimit, this_bsize ) ) {
733                         *btotal = tobytes( dqblk.dqb_curblocks, this_bsize );
734                         *bfree = 0;
735                 }
736                 else {
737                         *btotal = tobytes( dqblk.dqb_bsoftlimit, this_bsize );
738                         *bfree  = tobytes( dqblk.dqb_bsoftlimit, this_bsize ) -
739                                   tobytes( dqblk.dqb_curblocks, this_bsize );
740                 }
741         } else {
742                 *btotal = tobytes( dqblk.dqb_bhardlimit, this_bsize );
743                 *bfree  = tobytes( dqblk.dqb_bhardlimit, this_bsize  ) -
744                           tobytes( dqblk.dqb_curblocks, this_bsize );
745         }
746
747 #if DEBUG_QUOTA
748         LOG(log_info, logtype_afpd, "bfree          : %u", *bfree );
749         LOG(log_info, logtype_afpd, "btotal         : %u", *btotal );
750         LOG(log_info, logtype_afpd, "bfree          : %uKB", *bfree/1024 );
751         LOG(log_info, logtype_afpd, "btotal         : %uKB", *btotal/1024 );
752 #endif
753
754         return( AFP_OK );
755 }
756 #endif