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