Home | History | Annotate | Line # | Download | only in quotacheck
quotacheck.c revision 1.10
      1  1.10      cgd /*	$NetBSD: quotacheck.c,v 1.10 1995/03/18 14:59:22 cgd 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.10      cgd static char rcsid[] = "$NetBSD: quotacheck.c,v 1.10 1995/03/18 14:59:22 cgd 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.1      cgd char *qfname = QUOTAFILENAME;
     75   1.1      cgd char *qfextension[] = INITQFNAMES;
     76   1.1      cgd char *quotagroup = QUOTAGROUP;
     77   1.1      cgd 
     78   1.1      cgd union {
     79   1.1      cgd 	struct	fs	sblk;
     80   1.1      cgd 	char	dummy[MAXBSIZE];
     81   1.1      cgd } un;
     82   1.1      cgd #define	sblock	un.sblk
     83   1.6  mycroft long dev_bsize;
     84   1.1      cgd long maxino;
     85   1.1      cgd 
     86   1.1      cgd struct quotaname {
     87   1.1      cgd 	long	flags;
     88   1.1      cgd 	char	grpqfname[MAXPATHLEN + 1];
     89   1.1      cgd 	char	usrqfname[MAXPATHLEN + 1];
     90   1.1      cgd };
     91   1.1      cgd #define	HASUSR	1
     92   1.1      cgd #define	HASGRP	2
     93   1.1      cgd 
     94   1.1      cgd struct fileusage {
     95   1.1      cgd 	struct	fileusage *fu_next;
     96   1.1      cgd 	u_long	fu_curinodes;
     97   1.1      cgd 	u_long	fu_curblocks;
     98   1.1      cgd 	u_long	fu_id;
     99   1.1      cgd 	char	fu_name[1];
    100   1.1      cgd 	/* actually bigger */
    101   1.1      cgd };
    102   1.1      cgd #define FUHASH 1024	/* must be power of two */
    103   1.1      cgd struct fileusage *fuhead[MAXQUOTAS][FUHASH];
    104   1.1      cgd 
    105   1.1      cgd int	aflag;			/* all file systems */
    106   1.1      cgd int	gflag;			/* check group quotas */
    107   1.1      cgd int	uflag;			/* check user quotas */
    108   1.1      cgd int	vflag;			/* verbose */
    109   1.1      cgd int	fi;			/* open disk file descriptor */
    110   1.1      cgd u_long	highid[MAXQUOTAS];	/* highest addid()'ed identifier per type */
    111   1.1      cgd 
    112   1.5  mycroft struct fileusage *
    113   1.5  mycroft 	 addid __P((u_long, int, char *));
    114   1.5  mycroft char	*blockcheck __P((char *));
    115   1.5  mycroft void	 bread __P((daddr_t, char *, long));
    116   1.5  mycroft int	 chkquota __P((char *, char *, struct quotaname *));
    117   1.5  mycroft void	 freeinodebuf __P((void));
    118   1.5  mycroft struct dinode *
    119   1.5  mycroft 	 getnextinode __P((ino_t));
    120   1.5  mycroft int	 getquotagid __P((void));
    121   1.5  mycroft int	 hasquota __P((struct fstab *, int, char **));
    122   1.5  mycroft struct fileusage *
    123   1.5  mycroft 	 lookup __P((u_long, int));
    124   1.5  mycroft void	*needchk __P((struct fstab *));
    125   1.5  mycroft int	 oneof __P((char *, char*[], int));
    126   1.5  mycroft void	 resetinodebuf __P((void));
    127   1.5  mycroft int	 update __P((char *, char *, int));
    128   1.5  mycroft void	 usage __P((void));
    129   1.5  mycroft 
    130   1.5  mycroft int
    131   1.1      cgd main(argc, argv)
    132   1.1      cgd 	int argc;
    133   1.5  mycroft 	char *argv[];
    134   1.1      cgd {
    135   1.1      cgd 	register struct fstab *fs;
    136   1.1      cgd 	register struct passwd *pw;
    137   1.1      cgd 	register struct group *gr;
    138   1.5  mycroft 	struct quotaname *auxdata;
    139   1.5  mycroft 	int i, argnum, maxrun, errs;
    140   1.5  mycroft 	long done = 0;
    141   1.5  mycroft 	char ch, *name;
    142   1.1      cgd 
    143   1.5  mycroft 	errs = maxrun = 0;
    144   1.1      cgd 	while ((ch = getopt(argc, argv, "aguvl:")) != EOF) {
    145   1.1      cgd 		switch(ch) {
    146   1.1      cgd 		case 'a':
    147   1.1      cgd 			aflag++;
    148   1.1      cgd 			break;
    149   1.1      cgd 		case 'g':
    150   1.1      cgd 			gflag++;
    151   1.1      cgd 			break;
    152   1.1      cgd 		case 'u':
    153   1.1      cgd 			uflag++;
    154   1.1      cgd 			break;
    155   1.1      cgd 		case 'v':
    156   1.1      cgd 			vflag++;
    157   1.1      cgd 			break;
    158   1.1      cgd 		case 'l':
    159   1.1      cgd 			maxrun = atoi(optarg);
    160   1.1      cgd 			break;
    161   1.1      cgd 		default:
    162   1.1      cgd 			usage();
    163   1.1      cgd 		}
    164   1.1      cgd 	}
    165   1.1      cgd 	argc -= optind;
    166   1.1      cgd 	argv += optind;
    167   1.1      cgd 	if ((argc == 0 && !aflag) || (argc > 0 && aflag))
    168   1.1      cgd 		usage();
    169   1.1      cgd 	if (!gflag && !uflag) {
    170   1.1      cgd 		gflag++;
    171   1.1      cgd 		uflag++;
    172   1.1      cgd 	}
    173   1.1      cgd 	if (gflag) {
    174   1.1      cgd 		setgrent();
    175   1.1      cgd 		while ((gr = getgrent()) != 0)
    176   1.1      cgd 			(void) addid((u_long)gr->gr_gid, GRPQUOTA, gr->gr_name);
    177   1.1      cgd 		endgrent();
    178   1.1      cgd 	}
    179   1.1      cgd 	if (uflag) {
    180   1.1      cgd 		setpwent();
    181   1.1      cgd 		while ((pw = getpwent()) != 0)
    182   1.1      cgd 			(void) addid((u_long)pw->pw_uid, USRQUOTA, pw->pw_name);
    183   1.1      cgd 		endpwent();
    184   1.1      cgd 	}
    185   1.1      cgd 	if (aflag)
    186   1.1      cgd 		exit(checkfstab(1, maxrun, needchk, chkquota));
    187   1.5  mycroft 	if (setfsent() == 0)
    188   1.6  mycroft 		err(1, "%s: can't open", FSTAB);
    189   1.1      cgd 	while ((fs = getfsent()) != NULL) {
    190   1.1      cgd 		if (((argnum = oneof(fs->fs_file, argv, argc)) >= 0 ||
    191   1.1      cgd 		    (argnum = oneof(fs->fs_spec, argv, argc)) >= 0) &&
    192   1.1      cgd 		    (auxdata = needchk(fs)) &&
    193   1.1      cgd 		    (name = blockcheck(fs->fs_spec))) {
    194   1.1      cgd 			done |= 1 << argnum;
    195   1.1      cgd 			errs += chkquota(name, fs->fs_file, auxdata);
    196   1.1      cgd 		}
    197   1.1      cgd 	}
    198   1.1      cgd 	endfsent();
    199   1.1      cgd 	for (i = 0; i < argc; i++)
    200   1.1      cgd 		if ((done & (1 << i)) == 0)
    201   1.1      cgd 			fprintf(stderr, "%s not found in %s\n",
    202   1.1      cgd 				argv[i], FSTAB);
    203   1.1      cgd 	exit(errs);
    204   1.1      cgd }
    205   1.1      cgd 
    206   1.5  mycroft void
    207   1.1      cgd usage()
    208   1.1      cgd {
    209   1.5  mycroft 	(void)fprintf(stderr, "usage:\t%s\n\t%s\n",
    210   1.1      cgd 		"quotacheck -a [-guv]",
    211   1.1      cgd 		"quotacheck [-guv] filesys ...");
    212   1.1      cgd 	exit(1);
    213   1.1      cgd }
    214   1.1      cgd 
    215   1.5  mycroft void *
    216   1.1      cgd needchk(fs)
    217   1.1      cgd 	register struct fstab *fs;
    218   1.1      cgd {
    219   1.1      cgd 	register struct quotaname *qnp;
    220   1.1      cgd 	char *qfnp;
    221   1.1      cgd 
    222   1.1      cgd 	if (strcmp(fs->fs_vfstype, "ufs") ||
    223   1.1      cgd 	    strcmp(fs->fs_type, FSTAB_RW))
    224   1.5  mycroft 		return (NULL);
    225   1.5  mycroft 	if ((qnp = malloc(sizeof(*qnp))) == NULL)
    226   1.6  mycroft 		err(1, "%s", strerror(errno));
    227   1.1      cgd 	qnp->flags = 0;
    228   1.1      cgd 	if (gflag && hasquota(fs, GRPQUOTA, &qfnp)) {
    229   1.1      cgd 		strcpy(qnp->grpqfname, qfnp);
    230   1.1      cgd 		qnp->flags |= HASGRP;
    231   1.1      cgd 	}
    232   1.1      cgd 	if (uflag && hasquota(fs, USRQUOTA, &qfnp)) {
    233   1.1      cgd 		strcpy(qnp->usrqfname, qfnp);
    234   1.1      cgd 		qnp->flags |= HASUSR;
    235   1.1      cgd 	}
    236   1.1      cgd 	if (qnp->flags)
    237   1.5  mycroft 		return (qnp);
    238   1.5  mycroft 	free(qnp);
    239   1.5  mycroft 	return (NULL);
    240   1.1      cgd }
    241   1.1      cgd 
    242   1.1      cgd /*
    243   1.1      cgd  * Scan the specified filesystem to check quota(s) present on it.
    244   1.1      cgd  */
    245   1.5  mycroft int
    246   1.1      cgd chkquota(fsname, mntpt, qnp)
    247   1.1      cgd 	char *fsname, *mntpt;
    248   1.1      cgd 	register struct quotaname *qnp;
    249   1.1      cgd {
    250   1.1      cgd 	register struct fileusage *fup;
    251   1.1      cgd 	register struct dinode *dp;
    252   1.1      cgd 	int cg, i, mode, errs = 0;
    253   1.1      cgd 	ino_t ino;
    254   1.1      cgd 
    255   1.5  mycroft 	if ((fi = open(fsname, O_RDONLY, 0)) < 0) {
    256   1.1      cgd 		perror(fsname);
    257   1.1      cgd 		return (1);
    258   1.1      cgd 	}
    259   1.1      cgd 	if (vflag) {
    260   1.5  mycroft 		(void)printf("*** Checking ");
    261   1.1      cgd 		if (qnp->flags & HASUSR)
    262   1.5  mycroft 			(void)printf("%s%s", qfextension[USRQUOTA],
    263   1.1      cgd 			    (qnp->flags & HASGRP) ? " and " : "");
    264   1.1      cgd 		if (qnp->flags & HASGRP)
    265   1.5  mycroft 			(void)printf("%s", qfextension[GRPQUOTA]);
    266   1.5  mycroft 		(void)printf(" quotas for %s (%s)\n", fsname, mntpt);
    267   1.1      cgd 	}
    268   1.1      cgd 	sync();
    269   1.6  mycroft 	dev_bsize = 1;
    270   1.5  mycroft 	bread(SBOFF, (char *)&sblock, (long)SBSIZE);
    271   1.1      cgd 	dev_bsize = sblock.fs_fsize / fsbtodb(&sblock, 1);
    272   1.1      cgd 	maxino = sblock.fs_ncg * sblock.fs_ipg;
    273   1.1      cgd 	resetinodebuf();
    274   1.1      cgd 	for (ino = 0, cg = 0; cg < sblock.fs_ncg; cg++) {
    275   1.1      cgd 		for (i = 0; i < sblock.fs_ipg; i++, ino++) {
    276   1.1      cgd 			if (ino < ROOTINO)
    277   1.1      cgd 				continue;
    278   1.1      cgd 			if ((dp = getnextinode(ino)) == NULL)
    279   1.1      cgd 				continue;
    280   1.1      cgd 			if ((mode = dp->di_mode & IFMT) == 0)
    281   1.1      cgd 				continue;
    282   1.1      cgd 			if (qnp->flags & HASGRP) {
    283   1.1      cgd 				fup = addid((u_long)dp->di_gid, GRPQUOTA,
    284   1.1      cgd 				    (char *)0);
    285   1.1      cgd 				fup->fu_curinodes++;
    286   1.1      cgd 				if (mode == IFREG || mode == IFDIR ||
    287   1.1      cgd 				    mode == IFLNK)
    288   1.1      cgd 					fup->fu_curblocks += dp->di_blocks;
    289   1.1      cgd 			}
    290   1.1      cgd 			if (qnp->flags & HASUSR) {
    291   1.1      cgd 				fup = addid((u_long)dp->di_uid, USRQUOTA,
    292   1.1      cgd 				    (char *)0);
    293   1.1      cgd 				fup->fu_curinodes++;
    294   1.1      cgd 				if (mode == IFREG || mode == IFDIR ||
    295   1.1      cgd 				    mode == IFLNK)
    296   1.1      cgd 					fup->fu_curblocks += dp->di_blocks;
    297   1.1      cgd 			}
    298   1.1      cgd 		}
    299   1.1      cgd 	}
    300   1.1      cgd 	freeinodebuf();
    301   1.1      cgd 	if (qnp->flags & HASUSR)
    302   1.1      cgd 		errs += update(mntpt, qnp->usrqfname, USRQUOTA);
    303   1.1      cgd 	if (qnp->flags & HASGRP)
    304   1.1      cgd 		errs += update(mntpt, qnp->grpqfname, GRPQUOTA);
    305   1.1      cgd 	close(fi);
    306   1.1      cgd 	return (errs);
    307   1.1      cgd }
    308   1.1      cgd 
    309   1.1      cgd /*
    310   1.1      cgd  * Update a specified quota file.
    311   1.1      cgd  */
    312   1.5  mycroft int
    313   1.1      cgd update(fsname, quotafile, type)
    314   1.1      cgd 	char *fsname, *quotafile;
    315   1.1      cgd 	register int type;
    316   1.1      cgd {
    317   1.1      cgd 	register struct fileusage *fup;
    318   1.1      cgd 	register FILE *qfi, *qfo;
    319   1.1      cgd 	register u_long id, lastid;
    320   1.1      cgd 	struct dqblk dqbuf;
    321   1.1      cgd 	static int warned = 0;
    322   1.1      cgd 	static struct dqblk zerodqbuf;
    323   1.1      cgd 	static struct fileusage zerofileusage;
    324   1.1      cgd 
    325   1.1      cgd 	if ((qfo = fopen(quotafile, "r+")) == NULL) {
    326   1.1      cgd 		if (errno == ENOENT)
    327   1.1      cgd 			qfo = fopen(quotafile, "w+");
    328   1.1      cgd 		if (qfo) {
    329   1.1      cgd 			(void) fprintf(stderr,
    330   1.1      cgd 			    "quotacheck: creating quota file %s\n", quotafile);
    331   1.1      cgd #define	MODE	(S_IRUSR|S_IWUSR|S_IRGRP)
    332   1.1      cgd 			(void) fchown(fileno(qfo), getuid(), getquotagid());
    333   1.1      cgd 			(void) fchmod(fileno(qfo), MODE);
    334   1.1      cgd 		} else {
    335   1.1      cgd 			(void) fprintf(stderr,
    336   1.1      cgd 			    "quotacheck: %s: %s\n", quotafile, strerror(errno));
    337   1.1      cgd 			return (1);
    338   1.1      cgd 		}
    339   1.1      cgd 	}
    340   1.1      cgd 	if ((qfi = fopen(quotafile, "r")) == NULL) {
    341   1.1      cgd 		(void) fprintf(stderr,
    342   1.1      cgd 		    "quotacheck: %s: %s\n", quotafile, strerror(errno));
    343   1.1      cgd 		(void) fclose(qfo);
    344   1.1      cgd 		return (1);
    345   1.1      cgd 	}
    346   1.1      cgd 	if (quotactl(fsname, QCMD(Q_SYNC, type), (u_long)0, (caddr_t)0) < 0 &&
    347   1.1      cgd 	    errno == EOPNOTSUPP && !warned && vflag) {
    348   1.1      cgd 		warned++;
    349   1.5  mycroft 		(void)printf("*** Warning: %s\n",
    350   1.1      cgd 		    "Quotas are not compiled into this kernel");
    351   1.1      cgd 	}
    352   1.1      cgd 	for (lastid = highid[type], id = 0; id <= lastid; id++) {
    353   1.1      cgd 		if (fread((char *)&dqbuf, sizeof(struct dqblk), 1, qfi) == 0)
    354   1.1      cgd 			dqbuf = zerodqbuf;
    355   1.1      cgd 		if ((fup = lookup(id, type)) == 0)
    356   1.1      cgd 			fup = &zerofileusage;
    357   1.1      cgd 		if (dqbuf.dqb_curinodes == fup->fu_curinodes &&
    358   1.1      cgd 		    dqbuf.dqb_curblocks == fup->fu_curblocks) {
    359   1.1      cgd 			fup->fu_curinodes = 0;
    360   1.1      cgd 			fup->fu_curblocks = 0;
    361   1.1      cgd 			fseek(qfo, (long)sizeof(struct dqblk), 1);
    362   1.1      cgd 			continue;
    363   1.1      cgd 		}
    364   1.1      cgd 		if (vflag) {
    365   1.1      cgd 			if (aflag)
    366   1.1      cgd 				printf("%s: ", fsname);
    367   1.1      cgd 			printf("%-8s fixed:", fup->fu_name);
    368   1.1      cgd 			if (dqbuf.dqb_curinodes != fup->fu_curinodes)
    369   1.5  mycroft 				(void)printf("\tinodes %d -> %d",
    370   1.1      cgd 					dqbuf.dqb_curinodes, fup->fu_curinodes);
    371   1.1      cgd 			if (dqbuf.dqb_curblocks != fup->fu_curblocks)
    372   1.5  mycroft 				(void)printf("\tblocks %d -> %d",
    373   1.1      cgd 					dqbuf.dqb_curblocks, fup->fu_curblocks);
    374   1.5  mycroft 			(void)printf("\n");
    375   1.1      cgd 		}
    376   1.1      cgd 		/*
    377   1.1      cgd 		 * Reset time limit if have a soft limit and were
    378   1.1      cgd 		 * previously under it, but are now over it.
    379   1.1      cgd 		 */
    380   1.1      cgd 		if (dqbuf.dqb_bsoftlimit &&
    381   1.1      cgd 		    dqbuf.dqb_curblocks < dqbuf.dqb_bsoftlimit &&
    382   1.1      cgd 		    fup->fu_curblocks >= dqbuf.dqb_bsoftlimit)
    383   1.1      cgd 			dqbuf.dqb_btime = 0;
    384   1.1      cgd 		if (dqbuf.dqb_isoftlimit &&
    385   1.1      cgd 		    dqbuf.dqb_curblocks < dqbuf.dqb_isoftlimit &&
    386   1.1      cgd 		    fup->fu_curblocks >= dqbuf.dqb_isoftlimit)
    387   1.1      cgd 			dqbuf.dqb_itime = 0;
    388   1.1      cgd 		dqbuf.dqb_curinodes = fup->fu_curinodes;
    389   1.1      cgd 		dqbuf.dqb_curblocks = fup->fu_curblocks;
    390   1.1      cgd 		fwrite((char *)&dqbuf, sizeof(struct dqblk), 1, qfo);
    391   1.1      cgd 		(void) quotactl(fsname, QCMD(Q_SETUSE, type), id,
    392   1.1      cgd 		    (caddr_t)&dqbuf);
    393   1.1      cgd 		fup->fu_curinodes = 0;
    394   1.1      cgd 		fup->fu_curblocks = 0;
    395   1.1      cgd 	}
    396   1.1      cgd 	fclose(qfi);
    397   1.1      cgd 	fflush(qfo);
    398   1.1      cgd 	ftruncate(fileno(qfo),
    399   1.1      cgd 	    (off_t)((highid[type] + 1) * sizeof(struct dqblk)));
    400   1.1      cgd 	fclose(qfo);
    401   1.1      cgd 	return (0);
    402   1.1      cgd }
    403   1.1      cgd 
    404   1.1      cgd /*
    405   1.1      cgd  * Check to see if target appears in list of size cnt.
    406   1.1      cgd  */
    407   1.5  mycroft int
    408   1.1      cgd oneof(target, list, cnt)
    409   1.1      cgd 	register char *target, *list[];
    410   1.1      cgd 	int cnt;
    411   1.1      cgd {
    412   1.1      cgd 	register int i;
    413   1.1      cgd 
    414   1.1      cgd 	for (i = 0; i < cnt; i++)
    415   1.1      cgd 		if (strcmp(target, list[i]) == 0)
    416   1.1      cgd 			return (i);
    417   1.1      cgd 	return (-1);
    418   1.1      cgd }
    419   1.1      cgd 
    420   1.1      cgd /*
    421   1.1      cgd  * Determine the group identifier for quota files.
    422   1.1      cgd  */
    423   1.5  mycroft int
    424   1.1      cgd getquotagid()
    425   1.1      cgd {
    426   1.1      cgd 	struct group *gr;
    427   1.1      cgd 
    428   1.1      cgd 	if (gr = getgrnam(quotagroup))
    429   1.1      cgd 		return (gr->gr_gid);
    430   1.1      cgd 	return (-1);
    431   1.1      cgd }
    432   1.1      cgd 
    433   1.1      cgd /*
    434   1.1      cgd  * Check to see if a particular quota is to be enabled.
    435   1.1      cgd  */
    436   1.5  mycroft int
    437   1.1      cgd hasquota(fs, type, qfnamep)
    438   1.1      cgd 	register struct fstab *fs;
    439   1.1      cgd 	int type;
    440   1.1      cgd 	char **qfnamep;
    441   1.1      cgd {
    442   1.1      cgd 	register char *opt;
    443   1.5  mycroft 	char *cp;
    444   1.1      cgd 	static char initname, usrname[100], grpname[100];
    445   1.1      cgd 	static char buf[BUFSIZ];
    446   1.1      cgd 
    447   1.1      cgd 	if (!initname) {
    448   1.5  mycroft 		(void)snprintf(usrname, sizeof(usrname),
    449   1.5  mycroft 		    "%s%s", qfextension[USRQUOTA], qfname);
    450   1.5  mycroft 		(void)snprintf(grpname, sizeof(grpname),
    451   1.5  mycroft 		    "%s%s", qfextension[GRPQUOTA], qfname);
    452   1.1      cgd 		initname = 1;
    453   1.1      cgd 	}
    454   1.1      cgd 	strcpy(buf, fs->fs_mntops);
    455   1.1      cgd 	for (opt = strtok(buf, ","); opt; opt = strtok(NULL, ",")) {
    456   1.7  mycroft 		if (cp = strchr(opt, '='))
    457   1.1      cgd 			*cp++ = '\0';
    458   1.1      cgd 		if (type == USRQUOTA && strcmp(opt, usrname) == 0)
    459   1.1      cgd 			break;
    460   1.1      cgd 		if (type == GRPQUOTA && strcmp(opt, grpname) == 0)
    461   1.1      cgd 			break;
    462   1.1      cgd 	}
    463   1.1      cgd 	if (!opt)
    464   1.1      cgd 		return (0);
    465   1.5  mycroft 	if (cp)
    466   1.1      cgd 		*qfnamep = cp;
    467   1.5  mycroft 	else {
    468   1.5  mycroft 		(void)snprintf(buf, sizeof(buf),
    469   1.5  mycroft 		    "%s/%s.%s", fs->fs_file, qfname, qfextension[type]);
    470   1.5  mycroft 		*qfnamep = buf;
    471   1.1      cgd 	}
    472   1.1      cgd 	return (1);
    473   1.1      cgd }
    474   1.1      cgd 
    475   1.1      cgd /*
    476   1.1      cgd  * Routines to manage the file usage table.
    477   1.1      cgd  *
    478   1.1      cgd  * Lookup an id of a specific type.
    479   1.1      cgd  */
    480   1.1      cgd struct fileusage *
    481   1.1      cgd lookup(id, type)
    482   1.1      cgd 	u_long id;
    483   1.1      cgd 	int type;
    484   1.1      cgd {
    485   1.1      cgd 	register struct fileusage *fup;
    486   1.1      cgd 
    487   1.1      cgd 	for (fup = fuhead[type][id & (FUHASH-1)]; fup != 0; fup = fup->fu_next)
    488   1.1      cgd 		if (fup->fu_id == id)
    489   1.1      cgd 			return (fup);
    490   1.5  mycroft 	return (NULL);
    491   1.1      cgd }
    492   1.1      cgd 
    493   1.1      cgd /*
    494   1.1      cgd  * Add a new file usage id if it does not already exist.
    495   1.1      cgd  */
    496   1.1      cgd struct fileusage *
    497   1.1      cgd addid(id, type, name)
    498   1.1      cgd 	u_long id;
    499   1.1      cgd 	int type;
    500   1.1      cgd 	char *name;
    501   1.1      cgd {
    502   1.1      cgd 	struct fileusage *fup, **fhp;
    503   1.1      cgd 	int len;
    504   1.1      cgd 
    505   1.1      cgd 	if (fup = lookup(id, type))
    506   1.1      cgd 		return (fup);
    507   1.1      cgd 	if (name)
    508   1.1      cgd 		len = strlen(name);
    509   1.1      cgd 	else
    510   1.1      cgd 		len = 10;
    511   1.5  mycroft 	if ((fup = calloc(1, sizeof(*fup) + len)) == NULL)
    512   1.6  mycroft 		err(1, "%s", strerror(errno));
    513   1.1      cgd 	fhp = &fuhead[type][id & (FUHASH - 1)];
    514   1.1      cgd 	fup->fu_next = *fhp;
    515   1.1      cgd 	*fhp = fup;
    516   1.1      cgd 	fup->fu_id = id;
    517   1.1      cgd 	if (id > highid[type])
    518   1.1      cgd 		highid[type] = id;
    519   1.5  mycroft 	if (name)
    520   1.7  mycroft 		memcpy(fup->fu_name, name, len + 1);
    521   1.5  mycroft 	else
    522   1.5  mycroft 		(void)sprintf(fup->fu_name, "%u", id);
    523   1.1      cgd 	return (fup);
    524   1.1      cgd }
    525   1.1      cgd 
    526   1.1      cgd /*
    527   1.1      cgd  * Special purpose version of ginode used to optimize pass
    528   1.1      cgd  * over all the inodes in numerical order.
    529   1.1      cgd  */
    530   1.1      cgd ino_t nextino, lastinum;
    531   1.1      cgd long readcnt, readpercg, fullcnt, inobufsize, partialcnt, partialsize;
    532   1.1      cgd struct dinode *inodebuf;
    533   1.1      cgd #define	INOBUFSIZE	56*1024	/* size of buffer to read inodes */
    534   1.1      cgd 
    535   1.1      cgd struct dinode *
    536   1.1      cgd getnextinode(inumber)
    537   1.1      cgd 	ino_t inumber;
    538   1.1      cgd {
    539   1.1      cgd 	long size;
    540   1.1      cgd 	daddr_t dblk;
    541   1.1      cgd 	static struct dinode *dp;
    542   1.1      cgd 
    543   1.5  mycroft 	if (inumber != nextino++ || inumber > maxino)
    544   1.6  mycroft 		err(1, "bad inode number %d to nextinode", inumber);
    545   1.1      cgd 	if (inumber >= lastinum) {
    546   1.1      cgd 		readcnt++;
    547   1.5  mycroft 		dblk = fsbtodb(&sblock, ino_to_fsba(&sblock, lastinum));
    548   1.1      cgd 		if (readcnt % readpercg == 0) {
    549   1.1      cgd 			size = partialsize;
    550   1.1      cgd 			lastinum += partialcnt;
    551   1.1      cgd 		} else {
    552   1.1      cgd 			size = inobufsize;
    553   1.1      cgd 			lastinum += fullcnt;
    554   1.1      cgd 		}
    555   1.1      cgd 		bread(dblk, (char *)inodebuf, size);
    556   1.1      cgd 		dp = inodebuf;
    557   1.1      cgd 	}
    558   1.1      cgd 	return (dp++);
    559   1.1      cgd }
    560   1.1      cgd 
    561   1.1      cgd /*
    562   1.1      cgd  * Prepare to scan a set of inodes.
    563   1.1      cgd  */
    564   1.5  mycroft void
    565   1.1      cgd resetinodebuf()
    566   1.1      cgd {
    567   1.1      cgd 
    568   1.1      cgd 	nextino = 0;
    569   1.1      cgd 	lastinum = 0;
    570   1.1      cgd 	readcnt = 0;
    571   1.1      cgd 	inobufsize = blkroundup(&sblock, INOBUFSIZE);
    572   1.1      cgd 	fullcnt = inobufsize / sizeof(struct dinode);
    573   1.1      cgd 	readpercg = sblock.fs_ipg / fullcnt;
    574   1.1      cgd 	partialcnt = sblock.fs_ipg % fullcnt;
    575   1.1      cgd 	partialsize = partialcnt * sizeof(struct dinode);
    576   1.1      cgd 	if (partialcnt != 0) {
    577   1.1      cgd 		readpercg++;
    578   1.1      cgd 	} else {
    579   1.1      cgd 		partialcnt = fullcnt;
    580   1.1      cgd 		partialsize = inobufsize;
    581   1.1      cgd 	}
    582   1.1      cgd 	if (inodebuf == NULL &&
    583   1.5  mycroft 	   (inodebuf = malloc((u_int)inobufsize)) == NULL)
    584   1.6  mycroft 		err(1, "%s", strerror(errno));
    585   1.1      cgd 	while (nextino < ROOTINO)
    586   1.1      cgd 		getnextinode(nextino);
    587   1.1      cgd }
    588   1.1      cgd 
    589   1.1      cgd /*
    590   1.1      cgd  * Free up data structures used to scan inodes.
    591   1.1      cgd  */
    592   1.5  mycroft void
    593   1.1      cgd freeinodebuf()
    594   1.1      cgd {
    595   1.1      cgd 
    596   1.1      cgd 	if (inodebuf != NULL)
    597   1.5  mycroft 		free(inodebuf);
    598   1.1      cgd 	inodebuf = NULL;
    599   1.1      cgd }
    600   1.1      cgd 
    601   1.1      cgd /*
    602   1.1      cgd  * Read specified disk blocks.
    603   1.1      cgd  */
    604   1.5  mycroft void
    605   1.1      cgd bread(bno, buf, cnt)
    606   1.1      cgd 	daddr_t bno;
    607   1.1      cgd 	char *buf;
    608   1.1      cgd 	long cnt;
    609   1.1      cgd {
    610   1.1      cgd 
    611   1.5  mycroft 	if (lseek(fi, (off_t)bno * dev_bsize, SEEK_SET) < 0 ||
    612   1.5  mycroft 	    read(fi, buf, cnt) != cnt)
    613   1.6  mycroft 		err(1, "block %ld", bno);
    614   1.1      cgd }
    615