Home | History | Annotate | Line # | Download | only in ext2fs
ext2fs_subr.c revision 1.9.2.4
      1  1.9.2.4     skrll /*	$NetBSD: ext2fs_subr.c,v 1.9.2.4 2005/11/10 14:12:31 skrll Exp $	*/
      2      1.1    bouyer 
      3      1.1    bouyer /*
      4      1.1    bouyer  * Copyright (c) 1982, 1986, 1989, 1993
      5      1.1    bouyer  *	The Regents of the University of California.  All rights reserved.
      6      1.1    bouyer  *
      7      1.1    bouyer  * Redistribution and use in source and binary forms, with or without
      8      1.1    bouyer  * modification, are permitted provided that the following conditions
      9      1.1    bouyer  * are met:
     10      1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     11      1.1    bouyer  *    notice, this list of conditions and the following disclaimer.
     12      1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1    bouyer  *    notice, this list of conditions and the following disclaimer in the
     14      1.1    bouyer  *    documentation and/or other materials provided with the distribution.
     15  1.9.2.1     skrll  * 3. Neither the name of the University nor the names of its contributors
     16      1.1    bouyer  *    may be used to endorse or promote products derived from this software
     17      1.1    bouyer  *    without specific prior written permission.
     18      1.1    bouyer  *
     19      1.1    bouyer  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20      1.1    bouyer  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21      1.1    bouyer  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22      1.1    bouyer  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23      1.1    bouyer  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24      1.1    bouyer  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25      1.1    bouyer  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26      1.1    bouyer  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27      1.1    bouyer  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28      1.1    bouyer  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29      1.1    bouyer  * SUCH DAMAGE.
     30      1.1    bouyer  *
     31      1.1    bouyer  *	@(#)ffs_subr.c	8.2 (Berkeley) 9/21/93
     32      1.1    bouyer  * Modified for ext2fs by Manuel Bouyer.
     33      1.1    bouyer  */
     34      1.6     lukem 
     35  1.9.2.1     skrll /*
     36  1.9.2.1     skrll  * Copyright (c) 1997 Manuel Bouyer.
     37  1.9.2.1     skrll  *
     38  1.9.2.1     skrll  * Redistribution and use in source and binary forms, with or without
     39  1.9.2.1     skrll  * modification, are permitted provided that the following conditions
     40  1.9.2.1     skrll  * are met:
     41  1.9.2.1     skrll  * 1. Redistributions of source code must retain the above copyright
     42  1.9.2.1     skrll  *    notice, this list of conditions and the following disclaimer.
     43  1.9.2.1     skrll  * 2. Redistributions in binary form must reproduce the above copyright
     44  1.9.2.1     skrll  *    notice, this list of conditions and the following disclaimer in the
     45  1.9.2.1     skrll  *    documentation and/or other materials provided with the distribution.
     46  1.9.2.1     skrll  * 3. All advertising materials mentioning features or use of this software
     47  1.9.2.1     skrll  *    must display the following acknowledgement:
     48  1.9.2.1     skrll  *	This product includes software developed by Manuel Bouyer.
     49  1.9.2.1     skrll  * 4. The name of the author may not be used to endorse or promote products
     50  1.9.2.1     skrll  *    derived from this software without specific prior written permission.
     51  1.9.2.1     skrll  *
     52  1.9.2.1     skrll  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     53  1.9.2.1     skrll  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     54  1.9.2.1     skrll  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     55  1.9.2.1     skrll  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     56  1.9.2.1     skrll  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     57  1.9.2.1     skrll  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     58  1.9.2.1     skrll  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     59  1.9.2.1     skrll  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     60  1.9.2.1     skrll  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     61  1.9.2.1     skrll  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     62  1.9.2.1     skrll  *
     63  1.9.2.1     skrll  *	@(#)ffs_subr.c	8.2 (Berkeley) 9/21/93
     64  1.9.2.1     skrll  * Modified for ext2fs by Manuel Bouyer.
     65  1.9.2.1     skrll  */
     66  1.9.2.1     skrll 
     67      1.6     lukem #include <sys/cdefs.h>
     68  1.9.2.4     skrll __KERNEL_RCSID(0, "$NetBSD: ext2fs_subr.c,v 1.9.2.4 2005/11/10 14:12:31 skrll Exp $");
     69      1.1    bouyer 
     70      1.1    bouyer #include <sys/param.h>
     71      1.1    bouyer #include <sys/systm.h>
     72      1.1    bouyer #include <sys/vnode.h>
     73      1.1    bouyer #include <sys/buf.h>
     74      1.9      tron #include <sys/inttypes.h>
     75      1.1    bouyer #include <ufs/ufs/inode.h>
     76      1.2      fvdl #include <ufs/ext2fs/ext2fs.h>
     77      1.2      fvdl #include <ufs/ext2fs/ext2fs_extern.h>
     78      1.1    bouyer 
     79      1.1    bouyer /*
     80      1.1    bouyer  * Return buffer with the contents of block "offset" from the beginning of
     81      1.1    bouyer  * directory "ip".  If "res" is non-zero, fill it in with a pointer to the
     82      1.1    bouyer  * remaining space in the directory.
     83      1.1    bouyer  */
     84      1.1    bouyer int
     85  1.9.2.4     skrll ext2fs_blkatoff(struct vnode *vp, off_t offset, char **res, struct buf **bpp)
     86      1.1    bouyer {
     87      1.1    bouyer 	struct inode *ip;
     88      1.4  augustss 	struct m_ext2fs *fs;
     89      1.1    bouyer 	struct buf *bp;
     90      1.7      fvdl 	daddr_t lbn;
     91      1.1    bouyer 	int error;
     92      1.1    bouyer 
     93  1.9.2.4     skrll 	ip = VTOI(vp);
     94      1.1    bouyer 	fs = ip->i_e2fs;
     95  1.9.2.4     skrll 	lbn = lblkno(fs, offset);
     96      1.1    bouyer 
     97  1.9.2.4     skrll 	*bpp = NULL;
     98  1.9.2.4     skrll 	if ((error = bread(vp, lbn, fs->e2fs_bsize, NOCRED, &bp)) != 0) {
     99      1.1    bouyer 		brelse(bp);
    100      1.1    bouyer 		return (error);
    101      1.1    bouyer 	}
    102  1.9.2.4     skrll 	if (res)
    103  1.9.2.4     skrll 		*res = (char *)bp->b_data + blkoff(fs, offset);
    104  1.9.2.4     skrll 	*bpp = bp;
    105      1.1    bouyer 	return (0);
    106      1.1    bouyer }
    107      1.1    bouyer 
    108  1.9.2.4     skrll void
    109  1.9.2.4     skrll ext2fs_itimes(struct inode *ip, const struct timespec *acc,
    110  1.9.2.4     skrll     const struct timespec *mod, const struct timespec *cre)
    111  1.9.2.4     skrll {
    112  1.9.2.4     skrll 	struct timespec *ts = NULL, tsb;
    113  1.9.2.4     skrll 
    114  1.9.2.4     skrll 	if (!(ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY))) {
    115  1.9.2.4     skrll 		return;
    116  1.9.2.4     skrll 	}
    117  1.9.2.4     skrll 
    118  1.9.2.4     skrll 	if (ip->i_flag & IN_ACCESS) {
    119  1.9.2.4     skrll 		if (acc == NULL)
    120  1.9.2.4     skrll 			acc = ts == NULL ? (ts = nanotime(&tsb)) : ts;
    121  1.9.2.4     skrll 		ip->i_e2fs_atime = acc->tv_sec;
    122  1.9.2.4     skrll 	}
    123  1.9.2.4     skrll 	if (ip->i_flag & (IN_UPDATE | IN_MODIFY)) {
    124  1.9.2.4     skrll 		if (mod == NULL)
    125  1.9.2.4     skrll 			mod = ts == NULL ? (ts = nanotime(&tsb)) : ts;
    126  1.9.2.4     skrll 		ip->i_e2fs_mtime = mod->tv_sec;
    127  1.9.2.4     skrll 		ip->i_modrev++;
    128  1.9.2.4     skrll 	}
    129  1.9.2.4     skrll 	if (ip->i_flag & (IN_CHANGE | IN_MODIFY)) {
    130  1.9.2.4     skrll 		if (cre == NULL)
    131  1.9.2.4     skrll 			cre = ts == NULL ? (ts = nanotime(&tsb)) : ts;
    132  1.9.2.4     skrll 		ip->i_e2fs_ctime = cre->tv_sec;
    133  1.9.2.4     skrll 	}
    134  1.9.2.4     skrll 	if (ip->i_flag & (IN_ACCESS | IN_MODIFY))
    135  1.9.2.4     skrll 		ip->i_flag |= IN_ACCESSED;
    136  1.9.2.4     skrll 	if (ip->i_flag & (IN_UPDATE | IN_CHANGE))
    137  1.9.2.4     skrll 		ip->i_flag |= IN_MODIFIED;
    138  1.9.2.4     skrll 	ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY);
    139  1.9.2.4     skrll }
    140  1.9.2.4     skrll 
    141      1.3       cgd #ifdef DIAGNOSTIC
    142      1.1    bouyer void
    143  1.9.2.4     skrll ext2fs_checkoverlap(struct buf *bp, struct inode *ip)
    144      1.1    bouyer {
    145  1.9.2.1     skrll #if 0
    146      1.4  augustss 	struct buf *ebp, *ep;
    147      1.7      fvdl 	daddr_t start, last;
    148      1.1    bouyer 	struct vnode *vp;
    149      1.1    bouyer 
    150      1.1    bouyer 	ebp = &buf[nbuf];
    151      1.1    bouyer 	start = bp->b_blkno;
    152      1.1    bouyer 	last = start + btodb(bp->b_bcount) - 1;
    153      1.1    bouyer 	for (ep = buf; ep < ebp; ep++) {
    154      1.1    bouyer 		if (ep == bp || (ep->b_flags & B_INVAL) ||
    155      1.1    bouyer 			ep->b_vp == NULLVP)
    156      1.1    bouyer 			continue;
    157      1.7      fvdl 		if (VOP_BMAP(ep->b_vp, (daddr_t)0, &vp, (daddr_t)0, NULL))
    158      1.1    bouyer 			continue;
    159      1.1    bouyer 		if (vp != ip->i_devvp)
    160      1.1    bouyer 			continue;
    161      1.1    bouyer 		/* look for overlap */
    162      1.1    bouyer 		if (ep->b_bcount == 0 || ep->b_blkno > last ||
    163      1.1    bouyer 			ep->b_blkno + btodb(ep->b_bcount) <= start)
    164      1.1    bouyer 			continue;
    165      1.1    bouyer 		vprint("Disk overlap", vp);
    166      1.9      tron 		printf("\tstart %" PRId64 ", end %" PRId64 " overlap start "
    167      1.9      tron 			"%" PRId64 ", end %" PRId64 "\n",
    168      1.1    bouyer 			start, last, ep->b_blkno,
    169      1.1    bouyer 			ep->b_blkno + btodb(ep->b_bcount) - 1);
    170      1.1    bouyer 		panic("Disk buffer overlap");
    171      1.1    bouyer 	}
    172  1.9.2.1     skrll #else
    173  1.9.2.1     skrll 	printf("ext2fs_checkoverlap disabled due to buffer cache implementation changes\n");
    174  1.9.2.1     skrll #endif
    175      1.1    bouyer }
    176      1.3       cgd #endif
    177