Home | History | Annotate | Line # | Download | only in quotacheck
quotacheck.c revision 1.14
      1  1.14  christos /*	$NetBSD: quotacheck.c,v 1.14 1996/09/28 19:20:44 christos Exp $	*/
      2  1.10       cgd 
      3   1.1       cgd /*
      4   1.5   mycroft  * Copyright (c) 1980, 1990, 1993
      5   1.5   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Robert Elz at The University of Melbourne.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19   1.1       cgd  *    must display the following acknowledgement:
     20   1.1       cgd  *	This product includes software developed by the University of
     21   1.1       cgd  *	California, Berkeley and its contributors.
     22   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     23   1.1       cgd  *    may be used to endorse or promote products derived from this software
     24   1.1       cgd  *    without specific prior written permission.
     25   1.1       cgd  *
     26   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36   1.1       cgd  * SUCH DAMAGE.
     37   1.1       cgd  */
     38   1.1       cgd 
     39   1.1       cgd #ifndef lint
     40   1.5   mycroft static char copyright[] =
     41   1.5   mycroft "@(#) Copyright (c) 1980, 1990, 1993\n\
     42   1.5   mycroft 	The Regents of the University of California.  All rights reserved.\n";
     43   1.1       cgd #endif /* not lint */
     44   1.1       cgd 
     45   1.1       cgd #ifndef lint
     46  1.10       cgd #if 0
     47  1.10       cgd static char sccsid[] = "@(#)quotacheck.c	8.3 (Berkeley) 1/29/94";
     48  1.10       cgd #else
     49  1.14  christos static char rcsid[] = "$NetBSD: quotacheck.c,v 1.14 1996/09/28 19:20:44 christos Exp $";
     50  1.10       cgd #endif
     51   1.1       cgd #endif /* not lint */
     52   1.1       cgd 
     53   1.1       cgd /*
     54   1.1       cgd  * Fix up / report on disk quotas & usage
     55   1.1       cgd  */
     56   1.1       cgd #include <sys/param.h>
     57   1.1       cgd #include <sys/stat.h>
     58   1.5   mycroft 
     59   1.5   mycroft #include <ufs/ufs/dinode.h>
     60   1.5   mycroft #include <ufs/ufs/quota.h>
     61   1.5   mycroft #include <ufs/ffs/fs.h>
     62   1.5   mycroft 
     63   1.1       cgd #include <fcntl.h>
     64   1.1       cgd #include <fstab.h>
     65   1.1       cgd #include <pwd.h>
     66   1.1       cgd #include <grp.h>
     67   1.1       cgd #include <errno.h>
     68   1.1       cgd #include <unistd.h>
     69   1.1       cgd #include <stdio.h>
     70   1.1       cgd #include <stdlib.h>
     71   1.1       cgd #include <string.h>
     72   1.6   mycroft #include <err.h>
     73   1.1       cgd 
     74  1.13  christos #include "fsutil.h"
     75   1.1       cgd 
     76  1.13  christos static char *qfname = QUOTAFILENAME;
     77  1.13  christos static char *qfextension[] = INITQFNAMES;
     78  1.13  christos static char *quotagroup = QUOTAGROUP;
     79  1.13  christos 
     80  1.13  christos static union {
     81   1.1       cgd 	struct	fs	sblk;
     82   1.1       cgd 	char	dummy[MAXBSIZE];
     83   1.1       cgd } un;
     84   1.1       cgd #define	sblock	un.sblk
     85  1.13  christos static long dev_bsize;
     86  1.13  christos static long maxino;
     87   1.1       cgd 
     88   1.1       cgd struct quotaname {
     89   1.1       cgd 	long	flags;
     90   1.1       cgd 	char	grpqfname[MAXPATHLEN + 1];
     91   1.1       cgd 	char	usrqfname[MAXPATHLEN + 1];
     92   1.1       cgd };
     93   1.1       cgd #define	HASUSR	1
     94   1.1       cgd #define	HASGRP	2
     95   1.1       cgd 
     96   1.1       cgd struct fileusage {
     97   1.1       cgd 	struct	fileusage *fu_next;
     98   1.1       cgd 	u_long	fu_curinodes;
     99   1.1       cgd 	u_long	fu_curblocks;
    100   1.1       cgd 	u_long	fu_id;
    101   1.1       cgd 	char	fu_name[1];
    102   1.1       cgd 	/* actually bigger */
    103   1.1       cgd };
    104   1.1       cgd #define FUHASH 1024	/* must be power of two */
    105  1.13  christos static struct fileusage *fuhead[MAXQUOTAS][FUHASH];
    106   1.1       cgd 
    107  1.13  christos static int	aflag;		/* all file systems */
    108  1.13  christos static int	gflag;		/* check group quotas */
    109  1.13  christos static int	uflag;		/* check user quotas */
    110  1.13  christos static int	vflag;		/* verbose */
    111  1.13  christos static int	fi;		/* open disk file descriptor */
    112  1.13  christos static u_long	highid[MAXQUOTAS];/* highest addid()'ed identifier per type */
    113  1.13  christos 
    114  1.13  christos 
    115  1.13  christos int main __P((int, char *[]));
    116  1.13  christos static void usage __P((void));
    117  1.13  christos static void *needchk __P((struct fstab *));
    118  1.14  christos static int chkquota __P((const char *, const char *, const char *, void *,
    119  1.14  christos     pid_t *));
    120  1.13  christos static int update __P((const char *, const char *, int));
    121  1.13  christos static int oneof __P((char *, char *[], int));
    122  1.13  christos static int getquotagid __P((void));
    123  1.13  christos static int hasquota __P((struct fstab *, int, char **));
    124  1.13  christos static struct fileusage *lookup __P((u_long, int));
    125  1.13  christos static struct fileusage *addid __P((u_long, int, char *));
    126  1.13  christos static struct dinode *getnextinode __P((ino_t));
    127  1.13  christos static void resetinodebuf __P((void));
    128  1.13  christos static void freeinodebuf __P((void));
    129  1.13  christos static void bread __P((daddr_t, char *, long));
    130   1.5   mycroft 
    131   1.5   mycroft int
    132   1.1       cgd main(argc, argv)
    133   1.1       cgd 	int argc;
    134   1.5   mycroft 	char *argv[];
    135   1.1       cgd {
    136  1.13  christos 	struct fstab *fs;
    137  1.13  christos 	struct passwd *pw;
    138  1.13  christos 	struct group *gr;
    139   1.5   mycroft 	struct quotaname *auxdata;
    140   1.5   mycroft 	int i, argnum, maxrun, errs;
    141   1.5   mycroft 	long done = 0;
    142  1.14  christos 	int flags = CHECK_PREEN;
    143  1.12      mark 	char *name;
    144  1.12      mark 	int ch;
    145   1.1       cgd 
    146   1.5   mycroft 	errs = maxrun = 0;
    147  1.14  christos 	while ((ch = getopt(argc, argv, "aguvdl:")) != -1) {
    148   1.1       cgd 		switch(ch) {
    149   1.1       cgd 		case 'a':
    150   1.1       cgd 			aflag++;
    151   1.1       cgd 			break;
    152  1.14  christos 		case 'd':
    153  1.14  christos 			flags |= CHECK_DEBUG;
    154  1.14  christos 			break;
    155   1.1       cgd 		case 'g':
    156   1.1       cgd 			gflag++;
    157   1.1       cgd 			break;
    158   1.1       cgd 		case 'u':
    159   1.1       cgd 			uflag++;
    160   1.1       cgd 			break;
    161   1.1       cgd 		case 'v':
    162   1.1       cgd 			vflag++;
    163   1.1       cgd 			break;
    164   1.1       cgd 		case 'l':
    165   1.1       cgd 			maxrun = atoi(optarg);
    166   1.1       cgd 			break;
    167   1.1       cgd 		default:
    168   1.1       cgd 			usage();
    169   1.1       cgd 		}
    170   1.1       cgd 	}
    171   1.1       cgd 	argc -= optind;
    172   1.1       cgd 	argv += optind;
    173   1.1       cgd 	if ((argc == 0 && !aflag) || (argc > 0 && aflag))
    174   1.1       cgd 		usage();
    175   1.1       cgd 	if (!gflag && !uflag) {
    176   1.1       cgd 		gflag++;
    177   1.1       cgd 		uflag++;
    178   1.1       cgd 	}
    179   1.1       cgd 	if (gflag) {
    180   1.1       cgd 		setgrent();
    181   1.1       cgd 		while ((gr = getgrent()) != 0)
    182   1.1       cgd 			(void) addid((u_long)gr->gr_gid, GRPQUOTA, gr->gr_name);
    183   1.1       cgd 		endgrent();
    184   1.1       cgd 	}
    185   1.1       cgd 	if (uflag) {
    186   1.1       cgd 		setpwent();
    187   1.1       cgd 		while ((pw = getpwent()) != 0)
    188   1.1       cgd 			(void) addid((u_long)pw->pw_uid, USRQUOTA, pw->pw_name);
    189   1.1       cgd 		endpwent();
    190   1.1       cgd 	}
    191   1.1       cgd 	if (aflag)
    192  1.14  christos 		exit(checkfstab(flags, maxrun, needchk, chkquota));
    193   1.5   mycroft 	if (setfsent() == 0)
    194   1.6   mycroft 		err(1, "%s: can't open", FSTAB);
    195   1.1       cgd 	while ((fs = getfsent()) != NULL) {
    196   1.1       cgd 		if (((argnum = oneof(fs->fs_file, argv, argc)) >= 0 ||
    197   1.1       cgd 		    (argnum = oneof(fs->fs_spec, argv, argc)) >= 0) &&
    198   1.1       cgd 		    (auxdata = needchk(fs)) &&
    199   1.1       cgd 		    (name = blockcheck(fs->fs_spec))) {
    200   1.1       cgd 			done |= 1 << argnum;
    201  1.13  christos 			errs += chkquota(fs->fs_type, name, fs->fs_file,
    202  1.14  christos 			    auxdata, NULL);
    203   1.1       cgd 		}
    204   1.1       cgd 	}
    205   1.1       cgd 	endfsent();
    206   1.1       cgd 	for (i = 0; i < argc; i++)
    207   1.1       cgd 		if ((done & (1 << i)) == 0)
    208   1.1       cgd 			fprintf(stderr, "%s not found in %s\n",
    209   1.1       cgd 				argv[i], FSTAB);
    210   1.1       cgd 	exit(errs);
    211   1.1       cgd }
    212   1.1       cgd 
    213  1.13  christos static void
    214   1.1       cgd usage()
    215   1.1       cgd {
    216  1.13  christos 	extern char *__progname;
    217  1.13  christos 	(void)fprintf(stderr,
    218  1.13  christos 	    "Usage:\t%s -a [-guv]\n\t%s [-guv] filesys ...\n", __progname,
    219  1.13  christos 	    __progname);
    220   1.1       cgd 	exit(1);
    221   1.1       cgd }
    222   1.1       cgd 
    223  1.13  christos static void *
    224   1.1       cgd needchk(fs)
    225  1.13  christos 	struct fstab *fs;
    226   1.1       cgd {
    227  1.13  christos 	struct quotaname *qnp;
    228   1.1       cgd 	char *qfnp;
    229   1.1       cgd 
    230  1.11       jtc 	if (strcmp(fs->fs_vfstype, "ffs") ||
    231   1.1       cgd 	    strcmp(fs->fs_type, FSTAB_RW))
    232   1.5   mycroft 		return (NULL);
    233   1.5   mycroft 	if ((qnp = malloc(sizeof(*qnp))) == NULL)
    234   1.6   mycroft 		err(1, "%s", strerror(errno));
    235   1.1       cgd 	qnp->flags = 0;
    236   1.1       cgd 	if (gflag && hasquota(fs, GRPQUOTA, &qfnp)) {
    237   1.1       cgd 		strcpy(qnp->grpqfname, qfnp);
    238   1.1       cgd 		qnp->flags |= HASGRP;
    239   1.1       cgd 	}
    240   1.1       cgd 	if (uflag && hasquota(fs, USRQUOTA, &qfnp)) {
    241   1.1       cgd 		strcpy(qnp->usrqfname, qfnp);
    242   1.1       cgd 		qnp->flags |= HASUSR;
    243   1.1       cgd 	}
    244   1.1       cgd 	if (qnp->flags)
    245   1.5   mycroft 		return (qnp);
    246   1.5   mycroft 	free(qnp);
    247   1.5   mycroft 	return (NULL);
    248   1.1       cgd }
    249   1.1       cgd 
    250   1.1       cgd /*
    251   1.1       cgd  * Scan the specified filesystem to check quota(s) present on it.
    252   1.1       cgd  */
    253  1.13  christos static int
    254  1.14  christos chkquota(type, fsname, mntpt, v, pid)
    255  1.13  christos 	const char *type, *fsname, *mntpt;
    256  1.13  christos 	void *v;
    257  1.14  christos 	pid_t *pid;
    258  1.13  christos {
    259  1.13  christos 	struct quotaname *qnp = v;
    260  1.13  christos 	struct fileusage *fup;
    261  1.13  christos 	struct dinode *dp;
    262   1.1       cgd 	int cg, i, mode, errs = 0;
    263   1.1       cgd 	ino_t ino;
    264   1.1       cgd 
    265  1.14  christos 	if (pid != NULL) {
    266  1.14  christos 		switch ((*pid = fork())) {
    267  1.14  christos 		default:
    268  1.14  christos 			break;
    269  1.14  christos 		case 0:
    270  1.14  christos 			return 0;
    271  1.14  christos 		case -1:
    272  1.14  christos 			err(1, "Cannot fork");
    273  1.14  christos 		}
    274  1.14  christos 	}
    275  1.14  christos 
    276   1.5   mycroft 	if ((fi = open(fsname, O_RDONLY, 0)) < 0) {
    277  1.14  christos 		warn("Cannot open %s", fsname);
    278   1.1       cgd 		return (1);
    279   1.1       cgd 	}
    280   1.1       cgd 	if (vflag) {
    281   1.5   mycroft 		(void)printf("*** Checking ");
    282   1.1       cgd 		if (qnp->flags & HASUSR)
    283   1.5   mycroft 			(void)printf("%s%s", qfextension[USRQUOTA],
    284   1.1       cgd 			    (qnp->flags & HASGRP) ? " and " : "");
    285   1.1       cgd 		if (qnp->flags & HASGRP)
    286   1.5   mycroft 			(void)printf("%s", qfextension[GRPQUOTA]);
    287   1.5   mycroft 		(void)printf(" quotas for %s (%s)\n", fsname, mntpt);
    288   1.1       cgd 	}
    289   1.1       cgd 	sync();
    290   1.6   mycroft 	dev_bsize = 1;
    291   1.5   mycroft 	bread(SBOFF, (char *)&sblock, (long)SBSIZE);
    292   1.1       cgd 	dev_bsize = sblock.fs_fsize / fsbtodb(&sblock, 1);
    293   1.1       cgd 	maxino = sblock.fs_ncg * sblock.fs_ipg;
    294   1.1       cgd 	resetinodebuf();
    295   1.1       cgd 	for (ino = 0, cg = 0; cg < sblock.fs_ncg; cg++) {
    296   1.1       cgd 		for (i = 0; i < sblock.fs_ipg; i++, ino++) {
    297   1.1       cgd 			if (ino < ROOTINO)
    298   1.1       cgd 				continue;
    299   1.1       cgd 			if ((dp = getnextinode(ino)) == NULL)
    300   1.1       cgd 				continue;
    301   1.1       cgd 			if ((mode = dp->di_mode & IFMT) == 0)
    302   1.1       cgd 				continue;
    303   1.1       cgd 			if (qnp->flags & HASGRP) {
    304   1.1       cgd 				fup = addid((u_long)dp->di_gid, GRPQUOTA,
    305   1.1       cgd 				    (char *)0);
    306   1.1       cgd 				fup->fu_curinodes++;
    307   1.1       cgd 				if (mode == IFREG || mode == IFDIR ||
    308   1.1       cgd 				    mode == IFLNK)
    309   1.1       cgd 					fup->fu_curblocks += dp->di_blocks;
    310   1.1       cgd 			}
    311   1.1       cgd 			if (qnp->flags & HASUSR) {
    312   1.1       cgd 				fup = addid((u_long)dp->di_uid, USRQUOTA,
    313   1.1       cgd 				    (char *)0);
    314   1.1       cgd 				fup->fu_curinodes++;
    315   1.1       cgd 				if (mode == IFREG || mode == IFDIR ||
    316   1.1       cgd 				    mode == IFLNK)
    317   1.1       cgd 					fup->fu_curblocks += dp->di_blocks;
    318   1.1       cgd 			}
    319   1.1       cgd 		}
    320   1.1       cgd 	}
    321   1.1       cgd 	freeinodebuf();
    322   1.1       cgd 	if (qnp->flags & HASUSR)
    323   1.1       cgd 		errs += update(mntpt, qnp->usrqfname, USRQUOTA);
    324   1.1       cgd 	if (qnp->flags & HASGRP)
    325   1.1       cgd 		errs += update(mntpt, qnp->grpqfname, GRPQUOTA);
    326   1.1       cgd 	close(fi);
    327   1.1       cgd 	return (errs);
    328   1.1       cgd }
    329   1.1       cgd 
    330   1.1       cgd /*
    331   1.1       cgd  * Update a specified quota file.
    332   1.1       cgd  */
    333  1.13  christos static int
    334   1.1       cgd update(fsname, quotafile, type)
    335  1.13  christos 	const char *fsname, *quotafile;
    336  1.13  christos 	int type;
    337   1.1       cgd {
    338  1.13  christos 	struct fileusage *fup;
    339  1.13  christos 	FILE *qfi, *qfo;
    340  1.13  christos 	u_long id, lastid;
    341   1.1       cgd 	struct dqblk dqbuf;
    342   1.1       cgd 	static int warned = 0;
    343   1.1       cgd 	static struct dqblk zerodqbuf;
    344   1.1       cgd 	static struct fileusage zerofileusage;
    345   1.1       cgd 
    346   1.1       cgd 	if ((qfo = fopen(quotafile, "r+")) == NULL) {
    347   1.1       cgd 		if (errno == ENOENT)
    348   1.1       cgd 			qfo = fopen(quotafile, "w+");
    349   1.1       cgd 		if (qfo) {
    350   1.1       cgd 			(void) fprintf(stderr,
    351   1.1       cgd 			    "quotacheck: creating quota file %s\n", quotafile);
    352   1.1       cgd #define	MODE	(S_IRUSR|S_IWUSR|S_IRGRP)
    353   1.1       cgd 			(void) fchown(fileno(qfo), getuid(), getquotagid());
    354   1.1       cgd 			(void) fchmod(fileno(qfo), MODE);
    355   1.1       cgd 		} else {
    356   1.1       cgd 			(void) fprintf(stderr,
    357   1.1       cgd 			    "quotacheck: %s: %s\n", quotafile, strerror(errno));
    358   1.1       cgd 			return (1);
    359   1.1       cgd 		}
    360   1.1       cgd 	}
    361   1.1       cgd 	if ((qfi = fopen(quotafile, "r")) == NULL) {
    362   1.1       cgd 		(void) fprintf(stderr,
    363   1.1       cgd 		    "quotacheck: %s: %s\n", quotafile, strerror(errno));
    364   1.1       cgd 		(void) fclose(qfo);
    365   1.1       cgd 		return (1);
    366   1.1       cgd 	}
    367   1.1       cgd 	if (quotactl(fsname, QCMD(Q_SYNC, type), (u_long)0, (caddr_t)0) < 0 &&
    368   1.1       cgd 	    errno == EOPNOTSUPP && !warned && vflag) {
    369   1.1       cgd 		warned++;
    370   1.5   mycroft 		(void)printf("*** Warning: %s\n",
    371   1.1       cgd 		    "Quotas are not compiled into this kernel");
    372   1.1       cgd 	}
    373   1.1       cgd 	for (lastid = highid[type], id = 0; id <= lastid; id++) {
    374   1.1       cgd 		if (fread((char *)&dqbuf, sizeof(struct dqblk), 1, qfi) == 0)
    375   1.1       cgd 			dqbuf = zerodqbuf;
    376   1.1       cgd 		if ((fup = lookup(id, type)) == 0)
    377   1.1       cgd 			fup = &zerofileusage;
    378   1.1       cgd 		if (dqbuf.dqb_curinodes == fup->fu_curinodes &&
    379   1.1       cgd 		    dqbuf.dqb_curblocks == fup->fu_curblocks) {
    380   1.1       cgd 			fup->fu_curinodes = 0;
    381   1.1       cgd 			fup->fu_curblocks = 0;
    382  1.13  christos 			(void) fseek(qfo, (long)sizeof(struct dqblk), 1);
    383   1.1       cgd 			continue;
    384   1.1       cgd 		}
    385   1.1       cgd 		if (vflag) {
    386   1.1       cgd 			if (aflag)
    387   1.1       cgd 				printf("%s: ", fsname);
    388   1.1       cgd 			printf("%-8s fixed:", fup->fu_name);
    389   1.1       cgd 			if (dqbuf.dqb_curinodes != fup->fu_curinodes)
    390  1.13  christos 				(void)printf("\tinodes %d -> %ld",
    391   1.1       cgd 					dqbuf.dqb_curinodes, fup->fu_curinodes);
    392   1.1       cgd 			if (dqbuf.dqb_curblocks != fup->fu_curblocks)
    393  1.13  christos 				(void)printf("\tblocks %d -> %ld",
    394   1.1       cgd 					dqbuf.dqb_curblocks, fup->fu_curblocks);
    395   1.5   mycroft 			(void)printf("\n");
    396   1.1       cgd 		}
    397   1.1       cgd 		/*
    398   1.1       cgd 		 * Reset time limit if have a soft limit and were
    399   1.1       cgd 		 * previously under it, but are now over it.
    400   1.1       cgd 		 */
    401   1.1       cgd 		if (dqbuf.dqb_bsoftlimit &&
    402   1.1       cgd 		    dqbuf.dqb_curblocks < dqbuf.dqb_bsoftlimit &&
    403   1.1       cgd 		    fup->fu_curblocks >= dqbuf.dqb_bsoftlimit)
    404   1.1       cgd 			dqbuf.dqb_btime = 0;
    405   1.1       cgd 		if (dqbuf.dqb_isoftlimit &&
    406   1.1       cgd 		    dqbuf.dqb_curblocks < dqbuf.dqb_isoftlimit &&
    407   1.1       cgd 		    fup->fu_curblocks >= dqbuf.dqb_isoftlimit)
    408   1.1       cgd 			dqbuf.dqb_itime = 0;
    409   1.1       cgd 		dqbuf.dqb_curinodes = fup->fu_curinodes;
    410   1.1       cgd 		dqbuf.dqb_curblocks = fup->fu_curblocks;
    411  1.13  christos 		(void) fwrite((char *)&dqbuf, sizeof(struct dqblk), 1, qfo);
    412   1.1       cgd 		(void) quotactl(fsname, QCMD(Q_SETUSE, type), id,
    413   1.1       cgd 		    (caddr_t)&dqbuf);
    414   1.1       cgd 		fup->fu_curinodes = 0;
    415   1.1       cgd 		fup->fu_curblocks = 0;
    416   1.1       cgd 	}
    417  1.13  christos 	(void) fclose(qfi);
    418  1.13  christos 	(void) fflush(qfo);
    419  1.13  christos 	(void) ftruncate(fileno(qfo),
    420   1.1       cgd 	    (off_t)((highid[type] + 1) * sizeof(struct dqblk)));
    421  1.13  christos 	(void) fclose(qfo);
    422   1.1       cgd 	return (0);
    423   1.1       cgd }
    424   1.1       cgd 
    425   1.1       cgd /*
    426   1.1       cgd  * Check to see if target appears in list of size cnt.
    427   1.1       cgd  */
    428  1.13  christos static int
    429   1.1       cgd oneof(target, list, cnt)
    430  1.13  christos 	char *target, *list[];
    431   1.1       cgd 	int cnt;
    432   1.1       cgd {
    433  1.13  christos 	int i;
    434   1.1       cgd 
    435   1.1       cgd 	for (i = 0; i < cnt; i++)
    436   1.1       cgd 		if (strcmp(target, list[i]) == 0)
    437   1.1       cgd 			return (i);
    438   1.1       cgd 	return (-1);
    439   1.1       cgd }
    440   1.1       cgd 
    441   1.1       cgd /*
    442   1.1       cgd  * Determine the group identifier for quota files.
    443   1.1       cgd  */
    444  1.13  christos static int
    445   1.1       cgd getquotagid()
    446   1.1       cgd {
    447   1.1       cgd 	struct group *gr;
    448   1.1       cgd 
    449  1.13  christos 	if ((gr = getgrnam(quotagroup)) != NULL)
    450   1.1       cgd 		return (gr->gr_gid);
    451   1.1       cgd 	return (-1);
    452   1.1       cgd }
    453   1.1       cgd 
    454   1.1       cgd /*
    455   1.1       cgd  * Check to see if a particular quota is to be enabled.
    456   1.1       cgd  */
    457  1.13  christos static int
    458   1.1       cgd hasquota(fs, type, qfnamep)
    459  1.13  christos 	struct fstab *fs;
    460   1.1       cgd 	int type;
    461   1.1       cgd 	char **qfnamep;
    462   1.1       cgd {
    463  1.13  christos 	char *opt;
    464   1.5   mycroft 	char *cp;
    465   1.1       cgd 	static char initname, usrname[100], grpname[100];
    466   1.1       cgd 	static char buf[BUFSIZ];
    467   1.1       cgd 
    468   1.1       cgd 	if (!initname) {
    469   1.5   mycroft 		(void)snprintf(usrname, sizeof(usrname),
    470   1.5   mycroft 		    "%s%s", qfextension[USRQUOTA], qfname);
    471   1.5   mycroft 		(void)snprintf(grpname, sizeof(grpname),
    472   1.5   mycroft 		    "%s%s", qfextension[GRPQUOTA], qfname);
    473   1.1       cgd 		initname = 1;
    474   1.1       cgd 	}
    475  1.13  christos 	(void) strcpy(buf, fs->fs_mntops);
    476   1.1       cgd 	for (opt = strtok(buf, ","); opt; opt = strtok(NULL, ",")) {
    477  1.13  christos 		if ((cp = strchr(opt, '=')) != NULL)
    478   1.1       cgd 			*cp++ = '\0';
    479   1.1       cgd 		if (type == USRQUOTA && strcmp(opt, usrname) == 0)
    480   1.1       cgd 			break;
    481   1.1       cgd 		if (type == GRPQUOTA && strcmp(opt, grpname) == 0)
    482   1.1       cgd 			break;
    483   1.1       cgd 	}
    484   1.1       cgd 	if (!opt)
    485   1.1       cgd 		return (0);
    486   1.5   mycroft 	if (cp)
    487   1.1       cgd 		*qfnamep = cp;
    488   1.5   mycroft 	else {
    489   1.5   mycroft 		(void)snprintf(buf, sizeof(buf),
    490   1.5   mycroft 		    "%s/%s.%s", fs->fs_file, qfname, qfextension[type]);
    491   1.5   mycroft 		*qfnamep = buf;
    492   1.1       cgd 	}
    493   1.1       cgd 	return (1);
    494   1.1       cgd }
    495   1.1       cgd 
    496   1.1       cgd /*
    497   1.1       cgd  * Routines to manage the file usage table.
    498   1.1       cgd  *
    499   1.1       cgd  * Lookup an id of a specific type.
    500   1.1       cgd  */
    501  1.13  christos static struct fileusage *
    502   1.1       cgd lookup(id, type)
    503   1.1       cgd 	u_long id;
    504   1.1       cgd 	int type;
    505   1.1       cgd {
    506  1.13  christos 	struct fileusage *fup;
    507   1.1       cgd 
    508   1.1       cgd 	for (fup = fuhead[type][id & (FUHASH-1)]; fup != 0; fup = fup->fu_next)
    509   1.1       cgd 		if (fup->fu_id == id)
    510   1.1       cgd 			return (fup);
    511   1.5   mycroft 	return (NULL);
    512   1.1       cgd }
    513   1.1       cgd 
    514   1.1       cgd /*
    515   1.1       cgd  * Add a new file usage id if it does not already exist.
    516   1.1       cgd  */
    517  1.13  christos static struct fileusage *
    518   1.1       cgd addid(id, type, name)
    519   1.1       cgd 	u_long id;
    520   1.1       cgd 	int type;
    521   1.1       cgd 	char *name;
    522   1.1       cgd {
    523   1.1       cgd 	struct fileusage *fup, **fhp;
    524   1.1       cgd 	int len;
    525   1.1       cgd 
    526  1.13  christos 	if ((fup = lookup(id, type)) != NULL)
    527   1.1       cgd 		return (fup);
    528   1.1       cgd 	if (name)
    529   1.1       cgd 		len = strlen(name);
    530   1.1       cgd 	else
    531   1.1       cgd 		len = 10;
    532   1.5   mycroft 	if ((fup = calloc(1, sizeof(*fup) + len)) == NULL)
    533   1.6   mycroft 		err(1, "%s", strerror(errno));
    534   1.1       cgd 	fhp = &fuhead[type][id & (FUHASH - 1)];
    535   1.1       cgd 	fup->fu_next = *fhp;
    536   1.1       cgd 	*fhp = fup;
    537   1.1       cgd 	fup->fu_id = id;
    538   1.1       cgd 	if (id > highid[type])
    539   1.1       cgd 		highid[type] = id;
    540   1.5   mycroft 	if (name)
    541   1.7   mycroft 		memcpy(fup->fu_name, name, len + 1);
    542   1.5   mycroft 	else
    543  1.13  christos 		(void)sprintf(fup->fu_name, "%lu", id);
    544   1.1       cgd 	return (fup);
    545   1.1       cgd }
    546   1.1       cgd 
    547   1.1       cgd /*
    548   1.1       cgd  * Special purpose version of ginode used to optimize pass
    549   1.1       cgd  * over all the inodes in numerical order.
    550   1.1       cgd  */
    551  1.13  christos static ino_t nextino, lastinum;
    552  1.13  christos static long readcnt, readpercg, fullcnt, inobufsize, partialcnt, partialsize;
    553  1.13  christos static struct dinode *inodebuf;
    554   1.1       cgd #define	INOBUFSIZE	56*1024	/* size of buffer to read inodes */
    555   1.1       cgd 
    556  1.13  christos static struct dinode *
    557   1.1       cgd getnextinode(inumber)
    558   1.1       cgd 	ino_t inumber;
    559   1.1       cgd {
    560   1.1       cgd 	long size;
    561   1.1       cgd 	daddr_t dblk;
    562   1.1       cgd 	static struct dinode *dp;
    563   1.1       cgd 
    564   1.5   mycroft 	if (inumber != nextino++ || inumber > maxino)
    565   1.6   mycroft 		err(1, "bad inode number %d to nextinode", inumber);
    566   1.1       cgd 	if (inumber >= lastinum) {
    567   1.1       cgd 		readcnt++;
    568   1.5   mycroft 		dblk = fsbtodb(&sblock, ino_to_fsba(&sblock, lastinum));
    569   1.1       cgd 		if (readcnt % readpercg == 0) {
    570   1.1       cgd 			size = partialsize;
    571   1.1       cgd 			lastinum += partialcnt;
    572   1.1       cgd 		} else {
    573   1.1       cgd 			size = inobufsize;
    574   1.1       cgd 			lastinum += fullcnt;
    575   1.1       cgd 		}
    576   1.1       cgd 		bread(dblk, (char *)inodebuf, size);
    577   1.1       cgd 		dp = inodebuf;
    578   1.1       cgd 	}
    579   1.1       cgd 	return (dp++);
    580   1.1       cgd }
    581   1.1       cgd 
    582   1.1       cgd /*
    583   1.1       cgd  * Prepare to scan a set of inodes.
    584   1.1       cgd  */
    585  1.13  christos static void
    586   1.1       cgd resetinodebuf()
    587   1.1       cgd {
    588   1.1       cgd 
    589   1.1       cgd 	nextino = 0;
    590   1.1       cgd 	lastinum = 0;
    591   1.1       cgd 	readcnt = 0;
    592   1.1       cgd 	inobufsize = blkroundup(&sblock, INOBUFSIZE);
    593   1.1       cgd 	fullcnt = inobufsize / sizeof(struct dinode);
    594   1.1       cgd 	readpercg = sblock.fs_ipg / fullcnt;
    595   1.1       cgd 	partialcnt = sblock.fs_ipg % fullcnt;
    596   1.1       cgd 	partialsize = partialcnt * sizeof(struct dinode);
    597   1.1       cgd 	if (partialcnt != 0) {
    598   1.1       cgd 		readpercg++;
    599   1.1       cgd 	} else {
    600   1.1       cgd 		partialcnt = fullcnt;
    601   1.1       cgd 		partialsize = inobufsize;
    602   1.1       cgd 	}
    603   1.1       cgd 	if (inodebuf == NULL &&
    604   1.5   mycroft 	   (inodebuf = malloc((u_int)inobufsize)) == NULL)
    605   1.6   mycroft 		err(1, "%s", strerror(errno));
    606   1.1       cgd 	while (nextino < ROOTINO)
    607   1.1       cgd 		getnextinode(nextino);
    608   1.1       cgd }
    609   1.1       cgd 
    610   1.1       cgd /*
    611   1.1       cgd  * Free up data structures used to scan inodes.
    612   1.1       cgd  */
    613  1.13  christos static void
    614   1.1       cgd freeinodebuf()
    615   1.1       cgd {
    616   1.1       cgd 
    617   1.1       cgd 	if (inodebuf != NULL)
    618   1.5   mycroft 		free(inodebuf);
    619   1.1       cgd 	inodebuf = NULL;
    620   1.1       cgd }
    621   1.1       cgd 
    622   1.1       cgd /*
    623   1.1       cgd  * Read specified disk blocks.
    624   1.1       cgd  */
    625  1.13  christos static void
    626   1.1       cgd bread(bno, buf, cnt)
    627   1.1       cgd 	daddr_t bno;
    628   1.1       cgd 	char *buf;
    629   1.1       cgd 	long cnt;
    630   1.1       cgd {
    631   1.1       cgd 
    632   1.5   mycroft 	if (lseek(fi, (off_t)bno * dev_bsize, SEEK_SET) < 0 ||
    633   1.5   mycroft 	    read(fi, buf, cnt) != cnt)
    634  1.13  christos 		err(1, "block %d", bno);
    635   1.1       cgd }
    636