/* * Copyright (c) 2002 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1980, 1990, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * Robert Elz at The University of Melbourne. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include #include #if REV_ENDIAN_FS #import "ufs_byte_order.h" #endif /* REV_ENDIAN_FS */ #include "quotacheck.h" union { struct fs sblk; char dummy[MAXBSIZE]; } un; #define sblock un.sblk long dev_bsize; long maxino; int fi; /* open disk file descriptor */ #if REV_ENDIAN_FS int rev_endian=0; #endif /* REV_ENDIAN_FS */ void bread(daddr_t, char *, long); void freeinodebuf(void); struct dinode * getnextinode(ino_t); void resetinodebuf(void); /* * Scan a UFS filesystem to check quota(s) present on it. */ int chkquota_ufs(fsname, mntpt, qnp) char *fsname, *mntpt; register struct quotaname *qnp; { register struct fileusage *fup; register struct dinode *dp; int cg, i, mode, errs = 0; ino_t ino; if ((fi = open(fsname, O_RDONLY, 0)) < 0) { perror(fsname); return (1); } sync(); dev_bsize = 1; bread(SBOFF, (char *)&sblock, (long)SBSIZE); if (sblock.fs_magic != FS_MAGIC) { #if REV_ENDIAN_FS byte_swap_sbin(&sblock); if (sblock.fs_magic != FS_MAGIC) { #endif /* REV_ENDIAN_FS */ (void)printf("%s: superblock has bad magic number, skipped", fsname); (void)close(fi); return (1); #if REV_ENDIAN_FS } else { if(vflag) (void)printf("Reverse Byte order Filesystem Detected\n"); rev_endian=1; } #endif /* REV_ENDIAN_FS */ } #if REV_ENDIAN_FS else rev_endian=0; #endif /* REV_ENDIAN_FS */ dev_bsize = sblock.fs_fsize / fsbtodb(&sblock, 1); maxino = sblock.fs_ncg * sblock.fs_ipg; resetinodebuf(); for (ino = 0, cg = 0; cg < sblock.fs_ncg; cg++) { for (i = 0; i < sblock.fs_ipg; i++, ino++) { if (ino < ROOTINO) continue; if ((dp = getnextinode(ino)) == NULL) continue; if ((mode = dp->di_mode & IFMT) == 0) continue; if (qnp->flags & HASGRP) { fup = addid((u_long)dp->di_gid, GRPQUOTA); fup->fu_curinodes++; if (mode == IFREG || mode == IFDIR || mode == IFLNK) fup->fu_curbytes += dbtob((u_int64_t)dp->di_blocks, dev_bsize); } if (qnp->flags & HASUSR) { fup = addid((u_long)dp->di_uid, USRQUOTA); fup->fu_curinodes++; if (mode == IFREG || mode == IFDIR || mode == IFLNK) fup->fu_curbytes += dbtob((u_int64_t)dp->di_blocks, dev_bsize); } } } freeinodebuf(); if (qnp->flags & HASUSR) errs += update(mntpt, qnp->usrqfname, USRQUOTA); if (qnp->flags & HASGRP) errs += update(mntpt, qnp->grpqfname, GRPQUOTA); close(fi); return (errs); } /* * Special purpose version of ginode used to optimize pass * over all the inodes in numerical order. */ ino_t nextino, lastinum; long readcnt, readpercg, fullcnt, inobufsize, partialcnt, partialsize; struct dinode *inodebuf; #define INOBUFSIZE 56*1024 /* size of buffer to read inodes */ struct dinode * getnextinode(inumber) ino_t inumber; { long size; daddr_t dblk; static struct dinode *dp; if (inumber != nextino++ || inumber > maxino) err(1, "bad inode number %d to nextinode", inumber); if (inumber >= lastinum) { readcnt++; dblk = fsbtodb(&sblock, ino_to_fsba(&sblock, lastinum)); if (readcnt % readpercg == 0) { size = partialsize; lastinum += partialcnt; } else { size = inobufsize; lastinum += fullcnt; } bread(dblk, (char *)inodebuf, size); #if REV_ENDIAN_FS if (rev_endian) byte_swap_dinodecount(inodebuf, size, 0); #endif /* REV_ENDIAN_FS */ dp = inodebuf; } return (dp++); } /* * Prepare to scan a set of inodes. */ void resetinodebuf() { nextino = 0; lastinum = 0; readcnt = 0; inobufsize = blkroundup(&sblock, INOBUFSIZE); fullcnt = inobufsize / sizeof(struct dinode); readpercg = sblock.fs_ipg / fullcnt; partialcnt = sblock.fs_ipg % fullcnt; partialsize = partialcnt * sizeof(struct dinode); if (partialcnt != 0) { readpercg++; } else { partialcnt = fullcnt; partialsize = inobufsize; } if (inodebuf == NULL && (inodebuf = malloc((u_int)inobufsize)) == NULL) err(1, "%s", strerror(errno)); while (nextino < ROOTINO) getnextinode(nextino); } /* * Free up data structures used to scan inodes. */ void freeinodebuf() { if (inodebuf != NULL) free(inodebuf); inodebuf = NULL; } /* * Read specified disk blocks. */ void bread(bno, buf, cnt) daddr_t bno; char *buf; long cnt; { if (lseek(fi, (off_t)bno * dev_bsize, SEEK_SET) < 0 || read(fi, buf, cnt) != cnt) err(1, "block %ld", bno); }