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