Home | History | Annotate | Line # | Download | only in ext2fs
ext2fs_subr.c revision 1.31.2.1
      1  1.31.2.1  pgoyette /*	$NetBSD: ext2fs_subr.c,v 1.31.2.1 2016/08/06 00:19:11 pgoyette 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.10       agc  * 3. Neither the name of the University nor the names of its contributors
     16      1.10       agc  *    may be used to endorse or promote products derived from this software
     17      1.10       agc  *    without specific prior written permission.
     18      1.10       agc  *
     19      1.10       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20      1.10       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21      1.10       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22      1.10       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23      1.10       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24      1.10       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25      1.10       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26      1.10       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27      1.10       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28      1.10       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29      1.10       agc  * SUCH DAMAGE.
     30      1.10       agc  *
     31      1.10       agc  *	@(#)ffs_subr.c	8.2 (Berkeley) 9/21/93
     32      1.10       agc  * Modified for ext2fs by Manuel Bouyer.
     33      1.10       agc  */
     34      1.10       agc 
     35      1.10       agc /*
     36      1.10       agc  * Copyright (c) 1997 Manuel Bouyer.
     37      1.10       agc  *
     38      1.10       agc  * Redistribution and use in source and binary forms, with or without
     39      1.10       agc  * modification, are permitted provided that the following conditions
     40      1.10       agc  * are met:
     41      1.10       agc  * 1. Redistributions of source code must retain the above copyright
     42      1.10       agc  *    notice, this list of conditions and the following disclaimer.
     43      1.10       agc  * 2. Redistributions in binary form must reproduce the above copyright
     44      1.10       agc  *    notice, this list of conditions and the following disclaimer in the
     45      1.10       agc  *    documentation and/or other materials provided with the distribution.
     46       1.1    bouyer  *
     47      1.13    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     48      1.13    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     49      1.13    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     50      1.13    bouyer  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     51      1.13    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     52      1.13    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     53      1.13    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     54      1.13    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     55      1.13    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     56      1.13    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     57       1.1    bouyer  *
     58       1.1    bouyer  *	@(#)ffs_subr.c	8.2 (Berkeley) 9/21/93
     59       1.1    bouyer  * Modified for ext2fs by Manuel Bouyer.
     60       1.1    bouyer  */
     61       1.6     lukem 
     62       1.6     lukem #include <sys/cdefs.h>
     63  1.31.2.1  pgoyette __KERNEL_RCSID(0, "$NetBSD: ext2fs_subr.c,v 1.31.2.1 2016/08/06 00:19:11 pgoyette Exp $");
     64       1.1    bouyer 
     65       1.1    bouyer #include <sys/param.h>
     66       1.1    bouyer #include <sys/systm.h>
     67       1.1    bouyer #include <sys/vnode.h>
     68       1.1    bouyer #include <sys/buf.h>
     69       1.9      tron #include <sys/inttypes.h>
     70      1.22      elad #include <sys/kauth.h>
     71      1.22      elad 
     72       1.1    bouyer #include <ufs/ufs/inode.h>
     73       1.2      fvdl #include <ufs/ext2fs/ext2fs.h>
     74       1.2      fvdl #include <ufs/ext2fs/ext2fs_extern.h>
     75       1.1    bouyer 
     76       1.1    bouyer /*
     77       1.1    bouyer  * Return buffer with the contents of block "offset" from the beginning of
     78       1.1    bouyer  * directory "ip".  If "res" is non-zero, fill it in with a pointer to the
     79       1.1    bouyer  * remaining space in the directory.
     80       1.1    bouyer  */
     81       1.1    bouyer int
     82      1.18      yamt ext2fs_blkatoff(struct vnode *vp, off_t offset, char **res, struct buf **bpp)
     83       1.1    bouyer {
     84       1.1    bouyer 	struct inode *ip;
     85       1.4  augustss 	struct m_ext2fs *fs;
     86       1.1    bouyer 	struct buf *bp;
     87       1.7      fvdl 	daddr_t lbn;
     88       1.1    bouyer 	int error;
     89       1.1    bouyer 
     90      1.18      yamt 	ip = VTOI(vp);
     91       1.1    bouyer 	fs = ip->i_e2fs;
     92      1.30  dholland 	lbn = ext2_lblkno(fs, offset);
     93       1.1    bouyer 
     94      1.18      yamt 	*bpp = NULL;
     95      1.31      maxv 	if ((error = bread(vp, lbn, fs->e2fs_bsize, 0, &bp)) != 0) {
     96       1.1    bouyer 		return (error);
     97       1.1    bouyer 	}
     98      1.18      yamt 	if (res)
     99      1.29  dholland 		*res = (char *)bp->b_data + ext2_blkoff(fs, offset);
    100      1.18      yamt 	*bpp = bp;
    101       1.1    bouyer 	return (0);
    102       1.1    bouyer }
    103       1.1    bouyer 
    104      1.15  christos void
    105      1.15  christos ext2fs_itimes(struct inode *ip, const struct timespec *acc,
    106      1.15  christos     const struct timespec *mod, const struct timespec *cre)
    107      1.15  christos {
    108      1.23    kardel 	struct timespec now;
    109      1.15  christos 
    110      1.17      yamt 	if (!(ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY))) {
    111      1.17      yamt 		return;
    112      1.17      yamt 	}
    113      1.16  christos 
    114      1.24      yamt 	vfs_timestamp(&now);
    115      1.15  christos 	if (ip->i_flag & IN_ACCESS) {
    116      1.15  christos 		if (acc == NULL)
    117      1.23    kardel 			acc = &now;
    118  1.31.2.1  pgoyette 		EXT2_DINODE_TIME_SET(acc, ip->i_din.e2fs_din, e2di_atime, EXT2_DINODE_SIZE(ip->i_e2fs));
    119      1.15  christos 	}
    120      1.15  christos 	if (ip->i_flag & (IN_UPDATE | IN_MODIFY)) {
    121      1.15  christos 		if (mod == NULL)
    122      1.23    kardel 			mod = &now;
    123  1.31.2.1  pgoyette 		EXT2_DINODE_TIME_SET(mod, ip->i_din.e2fs_din, e2di_mtime, EXT2_DINODE_SIZE(ip->i_e2fs));
    124      1.15  christos 		ip->i_modrev++;
    125      1.15  christos 	}
    126      1.15  christos 	if (ip->i_flag & (IN_CHANGE | IN_MODIFY)) {
    127      1.15  christos 		if (cre == NULL)
    128      1.23    kardel 			cre = &now;
    129  1.31.2.1  pgoyette 		EXT2_DINODE_TIME_SET(cre, ip->i_din.e2fs_din, e2di_ctime, EXT2_DINODE_SIZE(ip->i_e2fs));
    130      1.15  christos 	}
    131      1.15  christos 	if (ip->i_flag & (IN_ACCESS | IN_MODIFY))
    132      1.15  christos 		ip->i_flag |= IN_ACCESSED;
    133      1.15  christos 	if (ip->i_flag & (IN_UPDATE | IN_CHANGE))
    134      1.15  christos 		ip->i_flag |= IN_MODIFIED;
    135      1.15  christos 	ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY);
    136      1.15  christos }
    137