Home | History | Annotate | Line # | Download | only in nilfs
nilfs_subr.c revision 1.7
      1  1.7  pgoyette /* $NetBSD: nilfs_subr.c,v 1.7 2010/08/11 11:43:13 pgoyette Exp $ */
      2  1.1   reinoud 
      3  1.1   reinoud /*
      4  1.1   reinoud  * Copyright (c) 2008, 2009 Reinoud Zandijk
      5  1.1   reinoud  * All rights reserved.
      6  1.1   reinoud  *
      7  1.1   reinoud  * Redistribution and use in source and binary forms, with or without
      8  1.1   reinoud  * modification, are permitted provided that the following conditions
      9  1.1   reinoud  * are met:
     10  1.1   reinoud  * 1. Redistributions of source code must retain the above copyright
     11  1.1   reinoud  *    notice, this list of conditions and the following disclaimer.
     12  1.1   reinoud  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1   reinoud  *    notice, this list of conditions and the following disclaimer in the
     14  1.1   reinoud  *    documentation and/or other materials provided with the distribution.
     15  1.1   reinoud  *
     16  1.1   reinoud  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.1   reinoud  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.1   reinoud  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.1   reinoud  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.1   reinoud  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     21  1.1   reinoud  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     22  1.1   reinoud  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     23  1.1   reinoud  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     24  1.1   reinoud  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     25  1.1   reinoud  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  1.1   reinoud  *
     27  1.1   reinoud  */
     28  1.1   reinoud 
     29  1.1   reinoud #include <sys/cdefs.h>
     30  1.1   reinoud #ifndef lint
     31  1.7  pgoyette __KERNEL_RCSID(0, "$NetBSD: nilfs_subr.c,v 1.7 2010/08/11 11:43:13 pgoyette Exp $");
     32  1.1   reinoud #endif /* not lint */
     33  1.1   reinoud 
     34  1.1   reinoud #include <sys/param.h>
     35  1.1   reinoud #include <sys/systm.h>
     36  1.1   reinoud #include <sys/namei.h>
     37  1.1   reinoud #include <sys/resourcevar.h>	/* defines plimit structure in proc struct */
     38  1.1   reinoud #include <sys/kernel.h>
     39  1.1   reinoud #include <sys/file.h>		/* define FWRITE ... */
     40  1.1   reinoud #include <sys/stat.h>
     41  1.1   reinoud #include <sys/buf.h>
     42  1.1   reinoud #include <sys/proc.h>
     43  1.1   reinoud #include <sys/mount.h>
     44  1.1   reinoud #include <sys/vnode.h>
     45  1.1   reinoud #include <sys/signalvar.h>
     46  1.1   reinoud #include <sys/malloc.h>
     47  1.1   reinoud #include <sys/dirent.h>
     48  1.1   reinoud #include <sys/lockf.h>
     49  1.1   reinoud #include <sys/kauth.h>
     50  1.1   reinoud #include <sys/dirhash.h>
     51  1.1   reinoud 
     52  1.1   reinoud #include <miscfs/genfs/genfs.h>
     53  1.1   reinoud #include <uvm/uvm_extern.h>
     54  1.1   reinoud 
     55  1.1   reinoud #include <fs/nilfs/nilfs_mount.h>
     56  1.1   reinoud #include "nilfs.h"
     57  1.1   reinoud #include "nilfs_subr.h"
     58  1.1   reinoud #include "nilfs_bswap.h"
     59  1.1   reinoud 
     60  1.1   reinoud 
     61  1.1   reinoud #define VTOI(vnode) ((struct nilfs_node *) (vnode)->v_data)
     62  1.1   reinoud 
     63  1.5   reinoud /* forwards */
     64  1.5   reinoud static int nilfs_btree_lookup(struct nilfs_node *node, uint64_t lblocknr,
     65  1.5   reinoud 	uint64_t *vblocknr);
     66  1.5   reinoud 
     67  1.1   reinoud /* basic calculators */
     68  1.1   reinoud uint64_t nilfs_get_segnum_of_block(struct nilfs_device *nilfsdev,
     69  1.1   reinoud 	uint64_t blocknr)
     70  1.1   reinoud {
     71  1.1   reinoud 	return blocknr / nilfs_rw32(nilfsdev->super.s_blocks_per_segment);
     72  1.1   reinoud }
     73  1.1   reinoud 
     74  1.1   reinoud 
     75  1.1   reinoud void
     76  1.1   reinoud nilfs_get_segment_range(struct nilfs_device *nilfsdev, uint64_t segnum,
     77  1.1   reinoud         uint64_t *seg_start, uint64_t *seg_end)
     78  1.1   reinoud {
     79  1.1   reinoud         uint64_t blks_per_seg;
     80  1.1   reinoud 
     81  1.1   reinoud         blks_per_seg = nilfs_rw64(nilfsdev->super.s_blocks_per_segment);
     82  1.1   reinoud         *seg_start = blks_per_seg * segnum;
     83  1.1   reinoud         *seg_end   = *seg_start + blks_per_seg -1;
     84  1.1   reinoud         if (segnum == 0)
     85  1.1   reinoud                 *seg_start = nilfs_rw64(nilfsdev->super.s_first_data_block);
     86  1.1   reinoud }
     87  1.1   reinoud 
     88  1.1   reinoud 
     89  1.1   reinoud void nilfs_calc_mdt_consts(struct nilfs_device *nilfsdev,
     90  1.1   reinoud 	struct nilfs_mdt *mdt, int entry_size)
     91  1.1   reinoud {
     92  1.1   reinoud 	uint32_t blocksize = nilfsdev->blocksize;
     93  1.1   reinoud 
     94  1.1   reinoud 	mdt->entries_per_group = blocksize * 8;	   /* bits in sector */
     95  1.1   reinoud 	mdt->entries_per_block = blocksize / entry_size;
     96  1.1   reinoud 
     97  1.1   reinoud 	mdt->blocks_per_group  =
     98  1.1   reinoud 		(mdt->entries_per_group -1) / mdt->entries_per_block + 1 + 1;
     99  1.1   reinoud 	mdt->groups_per_desc_block =
    100  1.1   reinoud 		blocksize / sizeof(struct nilfs_block_group_desc);
    101  1.1   reinoud 	mdt->blocks_per_desc_block =
    102  1.1   reinoud 		mdt->groups_per_desc_block * mdt->blocks_per_group + 1;
    103  1.1   reinoud }
    104  1.1   reinoud 
    105  1.1   reinoud 
    106  1.1   reinoud /* from NetBSD's src/sys/net/if_ethersubr.c */
    107  1.1   reinoud uint32_t
    108  1.1   reinoud crc32_le(uint32_t crc, const uint8_t *buf, size_t len)
    109  1.1   reinoud {
    110  1.1   reinoud         static const uint32_t crctab[] = {
    111  1.1   reinoud                 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac,
    112  1.1   reinoud                 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c,
    113  1.1   reinoud                 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c,
    114  1.1   reinoud                 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c
    115  1.1   reinoud         };
    116  1.1   reinoud         size_t i;
    117  1.1   reinoud 
    118  1.1   reinoud         for (i = 0; i < len; i++) {
    119  1.1   reinoud                 crc ^= buf[i];
    120  1.1   reinoud                 crc = (crc >> 4) ^ crctab[crc & 0xf];
    121  1.1   reinoud                 crc = (crc >> 4) ^ crctab[crc & 0xf];
    122  1.1   reinoud         }
    123  1.1   reinoud 
    124  1.1   reinoud         return (crc);
    125  1.1   reinoud }
    126  1.1   reinoud 
    127  1.1   reinoud 
    128  1.1   reinoud static int
    129  1.1   reinoud nilfs_calchash(uint64_t ino)
    130  1.1   reinoud {
    131  1.1   reinoud 	return (int) ino;
    132  1.1   reinoud }
    133  1.1   reinoud 
    134  1.1   reinoud 
    135  1.1   reinoud /* dev reading */
    136  1.1   reinoud static int
    137  1.1   reinoud nilfs_dev_bread(struct nilfs_device *nilfsdev, uint64_t blocknr,
    138  1.1   reinoud 	struct kauth_cred *cred, int flags, struct buf **bpp)
    139  1.1   reinoud {
    140  1.1   reinoud 	int blk2dev = nilfsdev->blocksize / DEV_BSIZE;
    141  1.1   reinoud 
    142  1.1   reinoud 	return bread(nilfsdev->devvp, blocknr * blk2dev, nilfsdev->blocksize,
    143  1.1   reinoud 		NOCRED, 0, bpp);
    144  1.1   reinoud }
    145  1.1   reinoud 
    146  1.1   reinoud 
    147  1.1   reinoud /* read on a node */
    148  1.1   reinoud int
    149  1.1   reinoud nilfs_bread(struct nilfs_node *node, uint64_t blocknr,
    150  1.1   reinoud 	struct kauth_cred *cred, int flags, struct buf **bpp)
    151  1.1   reinoud {
    152  1.5   reinoud 	uint64_t vblocknr;
    153  1.5   reinoud 	int error;
    154  1.5   reinoud 
    155  1.5   reinoud 	error = nilfs_btree_lookup(node, blocknr, &vblocknr);
    156  1.5   reinoud 	if (error)
    157  1.5   reinoud 		return error;
    158  1.5   reinoud 	return bread(node->vnode, vblocknr, node->nilfsdev->blocksize,
    159  1.1   reinoud 		cred, flags, bpp);
    160  1.1   reinoud }
    161  1.1   reinoud 
    162  1.1   reinoud 
    163  1.1   reinoud /* segment-log reading */
    164  1.1   reinoud int
    165  1.1   reinoud nilfs_get_segment_log(struct nilfs_device *nilfsdev, uint64_t *blocknr,
    166  1.1   reinoud 	uint64_t *offset, struct buf **bpp, int len, void *blob)
    167  1.1   reinoud {
    168  1.1   reinoud 	int blocksize = nilfsdev->blocksize;
    169  1.1   reinoud 	int error;
    170  1.1   reinoud 
    171  1.1   reinoud 	KASSERT(len <= blocksize);
    172  1.1   reinoud 
    173  1.1   reinoud 	if (*offset + len > blocksize) {
    174  1.1   reinoud 		*blocknr = *blocknr + 1;
    175  1.1   reinoud 		*offset = 0;
    176  1.1   reinoud 	}
    177  1.1   reinoud 	if (*offset == 0) {
    178  1.1   reinoud 		if (*bpp)
    179  1.1   reinoud 			brelse(*bpp, BC_AGE);
    180  1.1   reinoud 		/* read in block */
    181  1.1   reinoud 		error = nilfs_dev_bread(nilfsdev, *blocknr, NOCRED, 0, bpp);
    182  1.1   reinoud 		if (error)
    183  1.1   reinoud 			return error;
    184  1.1   reinoud 	}
    185  1.1   reinoud 	memcpy(blob, ((uint8_t *) (*bpp)->b_data) + *offset, len);
    186  1.1   reinoud 	*offset += len;
    187  1.1   reinoud 
    188  1.1   reinoud 	return 0;
    189  1.1   reinoud }
    190  1.1   reinoud 
    191  1.1   reinoud /* -------------------------------------------------------------------------- */
    192  1.1   reinoud 
    193  1.1   reinoud /* btree operations */
    194  1.1   reinoud 
    195  1.1   reinoud static int
    196  1.1   reinoud nilfs_btree_lookup_level(struct nilfs_node *node, uint64_t lblocknr,
    197  1.1   reinoud 		uint64_t btree_vblknr, int level, uint64_t *vblocknr)
    198  1.1   reinoud {
    199  1.1   reinoud 	struct nilfs_device *nilfsdev = node->nilfsdev;
    200  1.1   reinoud 	struct nilfs_btree_node *btree_hdr;
    201  1.1   reinoud 	struct buf *bp;
    202  1.1   reinoud 	uint64_t btree_blknr;
    203  1.1   reinoud 	uint64_t *dkeys, *dptrs, child_btree_blk;
    204  1.1   reinoud 	uint8_t  *pos;
    205  1.1   reinoud 	int i, error, selected;
    206  1.1   reinoud 
    207  1.1   reinoud 	DPRINTF(TRANSLATE, ("nilfs_btree_lookup_level ino %"PRIu64", "
    208  1.1   reinoud 		"lblocknr %"PRIu64", btree_vblknr %"PRIu64", level %d\n",
    209  1.1   reinoud 		node->ino, lblocknr, btree_vblknr, level));
    210  1.1   reinoud 
    211  1.1   reinoud 	/* translate btree_vblknr */
    212  1.1   reinoud 	error = nilfs_nvtop(node, 1, &btree_vblknr, &btree_blknr);
    213  1.1   reinoud 	if (error)
    214  1.1   reinoud 		return error;
    215  1.1   reinoud 
    216  1.1   reinoud 	/* get our block */
    217  1.1   reinoud 	error = nilfs_dev_bread(nilfsdev, btree_blknr, NOCRED, 0, &bp);
    218  1.1   reinoud 	if (error) {
    219  1.1   reinoud 		brelse(bp, BC_AGE);
    220  1.1   reinoud 		return error;
    221  1.1   reinoud 	}
    222  1.1   reinoud 
    223  1.1   reinoud 	btree_hdr = (struct nilfs_btree_node *) bp->b_data;
    224  1.1   reinoud 	pos =   (uint8_t *) bp->b_data +
    225  1.1   reinoud 		sizeof(struct nilfs_btree_node) +
    226  1.1   reinoud 		NILFS_BTREE_NODE_EXTRA_PAD_SIZE;
    227  1.1   reinoud 	dkeys = (uint64_t *) pos;
    228  1.1   reinoud 	dptrs = dkeys + NILFS_BTREE_NODE_NCHILDREN_MAX(nilfsdev->blocksize);
    229  1.1   reinoud 
    230  1.1   reinoud 	assert((btree_hdr->bn_flags & NILFS_BTREE_NODE_ROOT) == 0);
    231  1.1   reinoud 
    232  1.1   reinoud 	/* select matching child XXX could use binary search */
    233  1.1   reinoud 	selected = 0;
    234  1.1   reinoud 	for (i = 0; i < nilfs_rw16(btree_hdr->bn_nchildren); i++) {
    235  1.1   reinoud 		if (dkeys[i] > lblocknr)
    236  1.1   reinoud 			break;
    237  1.1   reinoud 		selected = i;
    238  1.1   reinoud 	}
    239  1.1   reinoud 
    240  1.1   reinoud 	if (level == 1) {
    241  1.1   reinoud 		/* if found it mapped */
    242  1.1   reinoud 		if (dkeys[selected] == lblocknr)
    243  1.1   reinoud 			*vblocknr = dptrs[selected];
    244  1.1   reinoud 		brelse(bp, BC_AGE);
    245  1.1   reinoud 		return 0;
    246  1.1   reinoud 	}
    247  1.1   reinoud 
    248  1.1   reinoud 	/* lookup in selected child */
    249  1.1   reinoud 	assert(dkeys[selected] <= lblocknr);
    250  1.1   reinoud 	child_btree_blk = dptrs[selected];
    251  1.1   reinoud 	brelse(bp, BC_AGE);
    252  1.1   reinoud 
    253  1.1   reinoud 	return nilfs_btree_lookup_level(node, lblocknr,
    254  1.1   reinoud 			child_btree_blk, btree_hdr->bn_level-1, vblocknr);
    255  1.1   reinoud }
    256  1.1   reinoud 
    257  1.1   reinoud 
    258  1.1   reinoud /* internal function */
    259  1.1   reinoud static int
    260  1.1   reinoud nilfs_btree_lookup(struct nilfs_node *node, uint64_t lblocknr,
    261  1.1   reinoud 		uint64_t *vblocknr)
    262  1.1   reinoud {
    263  1.1   reinoud 	struct nilfs_inode  *inode    = &node->inode;
    264  1.1   reinoud 	struct nilfs_btree_node  *btree_hdr;
    265  1.1   reinoud 	uint64_t *dkeys, *dptrs, *dtrans;
    266  1.1   reinoud 	int i, selected;
    267  1.1   reinoud 	int error;
    268  1.1   reinoud 
    269  1.1   reinoud 	DPRINTF(TRANSLATE, ("nilfs_btree_lookup ino %"PRIu64", "
    270  1.1   reinoud 		"lblocknr %"PRIu64"\n", node->ino, lblocknr));
    271  1.1   reinoud 
    272  1.1   reinoud 	btree_hdr  = (struct nilfs_btree_node *) &inode->i_bmap[0];
    273  1.1   reinoud 	dkeys  = &inode->i_bmap[1];
    274  1.1   reinoud 	dptrs  = dkeys + NILFS_BTREE_ROOT_NCHILDREN_MAX;
    275  1.1   reinoud 	dtrans = &inode->i_bmap[1];
    276  1.1   reinoud 
    277  1.1   reinoud 	/* SMALL, direct lookup */
    278  1.1   reinoud 	*vblocknr = 0;
    279  1.1   reinoud 	if ((btree_hdr->bn_flags & NILFS_BMAP_LARGE) == 0) {
    280  1.1   reinoud 		if (lblocknr < NILFS_DIRECT_NBLOCKS) {
    281  1.1   reinoud 			*vblocknr = dtrans[lblocknr];
    282  1.1   reinoud 			return 0;
    283  1.1   reinoud 		}
    284  1.1   reinoud 		/* not mapped XXX could be considered error here */
    285  1.1   reinoud 		return 0;
    286  1.1   reinoud 	}
    287  1.1   reinoud 
    288  1.1   reinoud 	/* LARGE, select matching child; XXX could use binary search */
    289  1.1   reinoud 	dtrans = NULL;
    290  1.1   reinoud 	error = 0;
    291  1.1   reinoud 	selected = 0;
    292  1.1   reinoud 	for (i = 0; i < nilfs_rw16(btree_hdr->bn_nchildren); i++) {
    293  1.1   reinoud 		if (dkeys[i] > lblocknr)
    294  1.1   reinoud 			break;
    295  1.1   reinoud 		selected = i;
    296  1.1   reinoud 	}
    297  1.2   reinoud 
    298  1.2   reinoud 	/* if selected key > lblocknr, its not mapped */
    299  1.2   reinoud 	if (dkeys[selected] > lblocknr)
    300  1.2   reinoud 		return 0;
    301  1.2   reinoud 
    302  1.1   reinoud 	/* overshooting? then not mapped */
    303  1.1   reinoud 	if (selected == nilfs_rw16(btree_hdr->bn_nchildren))
    304  1.1   reinoud 		return 0;
    305  1.1   reinoud 
    306  1.2   reinoud 	/* level should be > 1 or otherwise it should be a direct one */
    307  1.2   reinoud 	assert(btree_hdr->bn_level > 1);
    308  1.2   reinoud 
    309  1.1   reinoud 	/* lookup in selected child */
    310  1.1   reinoud 	assert(dkeys[selected] <= lblocknr);
    311  1.1   reinoud 	error = nilfs_btree_lookup_level(node, lblocknr,
    312  1.1   reinoud 			dptrs[selected], btree_hdr->bn_level-1, vblocknr);
    313  1.1   reinoud 
    314  1.1   reinoud 	return error;
    315  1.1   reinoud }
    316  1.1   reinoud 
    317  1.1   reinoud 
    318  1.1   reinoud /* node should be locked on entry to prevent btree changes (unlikely) */
    319  1.1   reinoud int
    320  1.1   reinoud nilfs_btree_nlookup(struct nilfs_node *node, uint64_t from, uint64_t blks,
    321  1.1   reinoud 		uint64_t *l2vmap)
    322  1.1   reinoud {
    323  1.1   reinoud 	uint64_t lblocknr, *vblocknr;
    324  1.1   reinoud 	int i, error;
    325  1.1   reinoud 
    326  1.1   reinoud 	/* TODO / OPTI multiple translations in one go possible */
    327  1.1   reinoud 	error = EINVAL;
    328  1.1   reinoud 	for (i = 0; i < blks; i++) {
    329  1.1   reinoud 		lblocknr  = from + i;
    330  1.1   reinoud 		vblocknr  = l2vmap + i;
    331  1.1   reinoud 		error = nilfs_btree_lookup(node, lblocknr, vblocknr);
    332  1.1   reinoud 
    333  1.1   reinoud 		DPRINTF(TRANSLATE, ("btree_nlookup ino %"PRIu64", "
    334  1.1   reinoud 			"lblocknr %"PRIu64" -> %"PRIu64"\n",
    335  1.1   reinoud 			node->ino, lblocknr, *vblocknr));
    336  1.1   reinoud 		if (error)
    337  1.1   reinoud 			break;
    338  1.1   reinoud 	}
    339  1.1   reinoud 
    340  1.1   reinoud 	return error;
    341  1.1   reinoud }
    342  1.1   reinoud 
    343  1.1   reinoud /* --------------------------------------------------------------------- */
    344  1.1   reinoud 
    345  1.1   reinoud /* vtop operations */
    346  1.1   reinoud 
    347  1.1   reinoud /* translate index to a file block number and an entry */
    348  1.1   reinoud static void
    349  1.1   reinoud nilfs_mdt_trans(struct nilfs_mdt *mdt, uint64_t index,
    350  1.1   reinoud 	uint64_t *blocknr, uint32_t *entry_in_block)
    351  1.1   reinoud {
    352  1.1   reinoud 	uint64_t blknr;
    353  1.1   reinoud 	uint64_t group, group_offset, blocknr_in_group;
    354  1.1   reinoud 	uint64_t desc_block, desc_offset;
    355  1.1   reinoud 
    356  1.1   reinoud 	/* calculate our offset in the file */
    357  1.1   reinoud 	group             = index / mdt->entries_per_group;
    358  1.1   reinoud 	group_offset      = index % mdt->entries_per_group;
    359  1.1   reinoud 	desc_block        = group / mdt->groups_per_desc_block;
    360  1.1   reinoud 	desc_offset       = group % mdt->groups_per_desc_block;
    361  1.1   reinoud 	blocknr_in_group  = group_offset / mdt->entries_per_block;
    362  1.1   reinoud 
    363  1.1   reinoud 	/* to descgroup offset */
    364  1.1   reinoud 	blknr = 1 + desc_block * mdt->blocks_per_desc_block;
    365  1.1   reinoud 
    366  1.1   reinoud 	/* to group offset */
    367  1.1   reinoud 	blknr += desc_offset * mdt->blocks_per_group;
    368  1.1   reinoud 
    369  1.1   reinoud 	/* to actual file block */
    370  1.1   reinoud 	blknr += 1 + blocknr_in_group;
    371  1.1   reinoud 
    372  1.1   reinoud 	*blocknr        = blknr;
    373  1.1   reinoud 	*entry_in_block = group_offset % mdt->entries_per_block;
    374  1.1   reinoud }
    375  1.1   reinoud 
    376  1.1   reinoud 
    377  1.1   reinoud static int
    378  1.1   reinoud nilfs_vtop(struct nilfs_device *nilfsdev, uint64_t vblocknr, uint64_t *pblocknr)
    379  1.1   reinoud {
    380  1.1   reinoud 	struct nilfs_dat_entry *entry;
    381  1.1   reinoud 	struct buf *bp;
    382  1.1   reinoud 	uint64_t  ldatblknr;
    383  1.1   reinoud 	uint32_t  entry_in_block;
    384  1.1   reinoud 	int error;
    385  1.1   reinoud 
    386  1.1   reinoud 	nilfs_mdt_trans(&nilfsdev->dat_mdt, vblocknr,
    387  1.1   reinoud 		&ldatblknr, &entry_in_block);
    388  1.1   reinoud 
    389  1.1   reinoud 	error = nilfs_bread(nilfsdev->dat_node, ldatblknr, NOCRED, 0, &bp);
    390  1.1   reinoud 	if (error) {
    391  1.1   reinoud 		printf("vtop: can't read in DAT block %"PRIu64"!\n", ldatblknr);
    392  1.1   reinoud 		brelse(bp, BC_AGE);
    393  1.1   reinoud 		return error;
    394  1.1   reinoud 	}
    395  1.1   reinoud 
    396  1.1   reinoud 	/* get our translation */
    397  1.1   reinoud 	entry = ((struct nilfs_dat_entry *) bp->b_data) + entry_in_block;
    398  1.1   reinoud #if 0
    399  1.1   reinoud 	printf("\tvblk %4"PRIu64" -> %"PRIu64" for "
    400  1.1   reinoud 		"checkpoint %"PRIu64" to %"PRIu64"\n",
    401  1.1   reinoud 		vblocknr,
    402  1.1   reinoud 		nilfs_rw64(entry->de_blocknr),
    403  1.1   reinoud 		nilfs_rw64(entry->de_start),
    404  1.1   reinoud 		nilfs_rw64(entry->de_end));
    405  1.1   reinoud #endif
    406  1.1   reinoud 
    407  1.1   reinoud 	*pblocknr = nilfs_rw64(entry->de_blocknr);
    408  1.1   reinoud 	brelse(bp, BC_AGE);
    409  1.1   reinoud 
    410  1.1   reinoud 	return 0;
    411  1.1   reinoud }
    412  1.1   reinoud 
    413  1.1   reinoud 
    414  1.1   reinoud int
    415  1.1   reinoud nilfs_nvtop(struct nilfs_node *node, uint64_t blks, uint64_t *l2vmap,
    416  1.1   reinoud 		uint64_t *v2pmap)
    417  1.1   reinoud {
    418  1.1   reinoud 	uint64_t vblocknr, *pblocknr;
    419  1.1   reinoud 	int i, error;
    420  1.1   reinoud 
    421  1.1   reinoud 	/* the DAT inode is the only one not mapped virtual */
    422  1.1   reinoud 	if (node->ino == NILFS_DAT_INO) {
    423  1.1   reinoud 		memcpy(v2pmap, l2vmap, blks * sizeof(uint64_t));
    424  1.1   reinoud 		return 0;
    425  1.1   reinoud 	}
    426  1.1   reinoud 
    427  1.1   reinoud 	/* TODO / OPTI more translations in one go */
    428  1.2   reinoud 	error = 0;
    429  1.1   reinoud 	for (i = 0; i < blks; i++) {
    430  1.1   reinoud 		vblocknr  = l2vmap[i];
    431  1.1   reinoud 		pblocknr  = v2pmap + i;
    432  1.2   reinoud 		*pblocknr = 0;
    433  1.2   reinoud 
    434  1.1   reinoud 		/* only translate valid vblocknrs */
    435  1.1   reinoud 		if (vblocknr == 0)
    436  1.1   reinoud 			continue;
    437  1.1   reinoud 		error = nilfs_vtop(node->nilfsdev, vblocknr, pblocknr);
    438  1.1   reinoud 		if (error)
    439  1.1   reinoud 			break;
    440  1.1   reinoud 	}
    441  1.1   reinoud 
    442  1.1   reinoud 	return error;
    443  1.1   reinoud }
    444  1.1   reinoud 
    445  1.1   reinoud /* --------------------------------------------------------------------- */
    446  1.1   reinoud 
    447  1.1   reinoud struct nilfs_recover_info {
    448  1.1   reinoud 	uint64_t segnum;
    449  1.1   reinoud 	uint64_t pseg;
    450  1.1   reinoud 
    451  1.1   reinoud 	struct nilfs_segment_summary segsum;
    452  1.1   reinoud 	struct nilfs_super_root      super_root;
    453  1.1   reinoud 	STAILQ_ENTRY(nilfs_recover_info) next;
    454  1.1   reinoud };
    455  1.1   reinoud 
    456  1.1   reinoud 
    457  1.1   reinoud /*
    458  1.1   reinoud  * Helper functions of nilfs_mount() that actually mounts the disc.
    459  1.1   reinoud  */
    460  1.1   reinoud static int
    461  1.1   reinoud nilfs_load_segsum(struct nilfs_device *nilfsdev,
    462  1.1   reinoud 	struct nilfs_recover_info *ri)
    463  1.1   reinoud {
    464  1.1   reinoud 	struct buf *bp;
    465  1.1   reinoud 	uint64_t blocknr, offset;
    466  1.1   reinoud 	uint32_t segsum_struct_size;
    467  1.1   reinoud 	uint32_t magic;
    468  1.1   reinoud 	int error;
    469  1.1   reinoud 
    470  1.1   reinoud 	segsum_struct_size = sizeof(struct nilfs_segment_summary);
    471  1.1   reinoud 
    472  1.1   reinoud 	/* read in segsum structure */
    473  1.1   reinoud 	bp      = NULL;
    474  1.1   reinoud 	blocknr = ri->pseg;
    475  1.1   reinoud 	offset  = 0;
    476  1.1   reinoud 	error = nilfs_get_segment_log(nilfsdev,
    477  1.1   reinoud 			&blocknr, &offset, &bp,
    478  1.1   reinoud 			segsum_struct_size, (void *) &ri->segsum);
    479  1.1   reinoud 	if (error)
    480  1.1   reinoud 		goto out;
    481  1.1   reinoud 
    482  1.1   reinoud 	/* sanity checks */
    483  1.1   reinoud 	magic = nilfs_rw32(ri->segsum.ss_magic);
    484  1.1   reinoud 	if (magic != NILFS_SEGSUM_MAGIC) {
    485  1.1   reinoud 		DPRINTF(VOLUMES, ("nilfs: bad magic in pseg %"PRIu64"\n",
    486  1.1   reinoud 			ri->pseg));
    487  1.1   reinoud 		error = EINVAL;
    488  1.1   reinoud 		goto out;
    489  1.1   reinoud 	}
    490  1.1   reinoud 
    491  1.1   reinoud 	/* TODO check segment summary checksum */
    492  1.1   reinoud 	/* TODO check data checksum */
    493  1.1   reinoud 
    494  1.1   reinoud out:
    495  1.1   reinoud 	if (bp)
    496  1.1   reinoud 		brelse(bp, BC_AGE);
    497  1.1   reinoud 
    498  1.1   reinoud 	return error;
    499  1.1   reinoud }
    500  1.1   reinoud 
    501  1.1   reinoud 
    502  1.1   reinoud static int
    503  1.1   reinoud nilfs_load_super_root(struct nilfs_device *nilfsdev,
    504  1.1   reinoud 	struct nilfs_recover_info *ri)
    505  1.1   reinoud {
    506  1.1   reinoud 	struct nilfs_segment_summary *segsum = &ri->segsum;
    507  1.4   reinoud 	struct nilfs_super_root *super_root;
    508  1.1   reinoud 	struct buf *bp;
    509  1.1   reinoud 	uint64_t blocknr, offset;
    510  1.1   reinoud 	uint32_t segsum_size, size;
    511  1.1   reinoud 	uint32_t nsumblk, nfileblk;
    512  1.4   reinoud 	uint32_t super_root_crc, comp_crc;
    513  1.4   reinoud 	int off, error;
    514  1.1   reinoud 
    515  1.1   reinoud 	/* process segment summary */
    516  1.1   reinoud 	segsum_size = nilfs_rw32(segsum->ss_sumbytes);
    517  1.1   reinoud 	nsumblk     = (segsum_size - 1) / nilfsdev->blocksize + 1;
    518  1.1   reinoud 	nfileblk    = nilfs_rw32(segsum->ss_nblocks) - nsumblk;
    519  1.1   reinoud 
    520  1.1   reinoud 	/* check if there is a superroot */
    521  1.1   reinoud 	if ((nilfs_rw16(segsum->ss_flags) & NILFS_SS_SR) == 0) {
    522  1.1   reinoud 		DPRINTF(VOLUMES, ("nilfs: no super root in pseg %"PRIu64"\n",
    523  1.1   reinoud 			ri->pseg));
    524  1.4   reinoud 		return ENOENT;
    525  1.1   reinoud 	}
    526  1.1   reinoud 
    527  1.1   reinoud 	/* get our super root, located at the end of the pseg */
    528  1.1   reinoud 	blocknr = ri->pseg + nsumblk + nfileblk - 1;
    529  1.1   reinoud 	offset = 0;
    530  1.1   reinoud 	size = sizeof(struct nilfs_super_root);
    531  1.4   reinoud 	bp = NULL;
    532  1.1   reinoud 	error = nilfs_get_segment_log(nilfsdev,
    533  1.1   reinoud 			&blocknr, &offset, &bp,
    534  1.1   reinoud 			size, (void *) &nilfsdev->super_root);
    535  1.4   reinoud 	if (bp)
    536  1.4   reinoud 		brelse(bp, BC_AGE);
    537  1.1   reinoud 	if (error) {
    538  1.1   reinoud 		printf("read in of superroot failed\n");
    539  1.4   reinoud 		return EIO;
    540  1.4   reinoud 	}
    541  1.4   reinoud 
    542  1.4   reinoud 	/* check super root crc */
    543  1.4   reinoud 	super_root = &nilfsdev->super_root;
    544  1.4   reinoud 	super_root_crc = nilfs_rw32(super_root->sr_sum);
    545  1.4   reinoud 	off = sizeof(super_root->sr_sum);
    546  1.4   reinoud 	comp_crc = crc32_le(nilfs_rw32(nilfsdev->super.s_crc_seed),
    547  1.4   reinoud 		(uint8_t *) super_root + off,
    548  1.4   reinoud 		NILFS_SR_BYTES - off);
    549  1.4   reinoud 	if (super_root_crc != comp_crc) {
    550  1.4   reinoud 		DPRINTF(VOLUMES, ("    invalid superroot, likely from old format\n"));
    551  1.4   reinoud 		return EINVAL;
    552  1.1   reinoud 	}
    553  1.1   reinoud 
    554  1.4   reinoud 	DPRINTF(VOLUMES, ("    got valid superroot\n"));
    555  1.1   reinoud 
    556  1.4   reinoud 	return 0;
    557  1.1   reinoud }
    558  1.1   reinoud 
    559  1.1   reinoud /*
    560  1.1   reinoud  * Search for the last super root recorded.
    561  1.1   reinoud  */
    562  1.1   reinoud void
    563  1.1   reinoud nilfs_search_super_root(struct nilfs_device *nilfsdev)
    564  1.1   reinoud {
    565  1.1   reinoud 	struct nilfs_super_block *super;
    566  1.1   reinoud 	struct nilfs_segment_summary *segsum;
    567  1.1   reinoud 	struct nilfs_recover_info *ri, *ori, *i_ri;
    568  1.1   reinoud 	STAILQ_HEAD(,nilfs_recover_info) ri_list;
    569  1.1   reinoud 	uint64_t seg_start, seg_end, cno;
    570  1.1   reinoud 	uint32_t segsum_size;
    571  1.1   reinoud 	uint32_t nsumblk, nfileblk;
    572  1.1   reinoud 	int error;
    573  1.1   reinoud 
    574  1.1   reinoud 	STAILQ_INIT(&ri_list);
    575  1.1   reinoud 
    576  1.1   reinoud 	/* search for last super root */
    577  1.1   reinoud 	ri = malloc(sizeof(struct nilfs_recover_info), M_NILFSTEMP, M_WAITOK);
    578  1.1   reinoud 	memset(ri, 0, sizeof(struct nilfs_recover_info));
    579  1.1   reinoud 
    580  1.1   reinoud 	/* if enabled, start from the specified position */
    581  1.1   reinoud 	if (0) {
    582  1.1   reinoud 		/* start from set start */
    583  1.1   reinoud 		nilfsdev->super.s_last_pseg = nilfsdev->super.s_first_data_block;
    584  1.1   reinoud 		nilfsdev->super.s_last_cno  = nilfs_rw64(1);
    585  1.1   reinoud 	}
    586  1.1   reinoud 
    587  1.1   reinoud 	ri->pseg   = nilfs_rw64(nilfsdev->super.s_last_pseg); /* blknr */
    588  1.1   reinoud 	ri->segnum = nilfs_get_segnum_of_block(nilfsdev, ri->pseg);
    589  1.1   reinoud 
    590  1.1   reinoud 	error = 0;
    591  1.1   reinoud 	cno = nilfs_rw64(nilfsdev->super.s_last_cno);
    592  1.1   reinoud 	DPRINTF(VOLUMES, ("nilfs: seach_super_root start in pseg %"PRIu64"\n",
    593  1.1   reinoud 			ri->pseg));
    594  1.1   reinoud 	for (;;) {
    595  1.1   reinoud 		DPRINTF(VOLUMES, (" at pseg %"PRIu64"\n", ri->pseg));
    596  1.1   reinoud 		error = nilfs_load_segsum(nilfsdev, ri);
    597  1.1   reinoud 		if (error)
    598  1.1   reinoud 			break;
    599  1.1   reinoud 
    600  1.1   reinoud 		segsum = &ri->segsum;
    601  1.1   reinoud 
    602  1.1   reinoud 		/* try to load super root */
    603  1.1   reinoud 		if (nilfs_rw16(segsum->ss_flags) & NILFS_SS_SR) {
    604  1.1   reinoud 			DPRINTF(VOLUMES, (" try super root\n"));
    605  1.1   reinoud 			error = nilfs_load_super_root(nilfsdev, ri);
    606  1.1   reinoud 			if (error)
    607  1.1   reinoud 				break;	/* confused */
    608  1.1   reinoud 			/* wipe current list of ri */
    609  1.1   reinoud 			while (!STAILQ_EMPTY(&ri_list)) {
    610  1.1   reinoud 				i_ri = STAILQ_FIRST(&ri_list);
    611  1.1   reinoud 				STAILQ_REMOVE_HEAD(&ri_list, next);
    612  1.1   reinoud 				free(i_ri, M_NILFSTEMP);
    613  1.1   reinoud 			}
    614  1.1   reinoud 			super = &nilfsdev->super;
    615  1.1   reinoud 
    616  1.1   reinoud 			super->s_last_pseg = nilfs_rw64(ri->pseg);
    617  1.1   reinoud 			super->s_last_cno  = cno++;
    618  1.1   reinoud 			super->s_last_seq  = segsum->ss_seq;
    619  1.1   reinoud 			super->s_state     = nilfs_rw16(NILFS_VALID_FS);
    620  1.1   reinoud 		} else {
    621  1.1   reinoud 			STAILQ_INSERT_TAIL(&ri_list, ri, next);
    622  1.1   reinoud 			ori = ri;
    623  1.1   reinoud 			ri = malloc(sizeof(struct nilfs_recover_info),
    624  1.1   reinoud 				M_NILFSTEMP, M_WAITOK);
    625  1.1   reinoud 			memset(ri, 0, sizeof(struct nilfs_recover_info));
    626  1.1   reinoud 			ri->segnum = ori->segnum;
    627  1.1   reinoud 			ri->pseg   = ori->pseg;
    628  1.1   reinoud 			/* segsum keeps pointing to the `old' ri */
    629  1.1   reinoud 		}
    630  1.1   reinoud 
    631  1.1   reinoud 		/* continue to the next pseg */
    632  1.1   reinoud 		segsum_size = nilfs_rw32(segsum->ss_sumbytes);
    633  1.1   reinoud 		nsumblk     = (segsum_size - 1) / nilfsdev->blocksize + 1;
    634  1.1   reinoud 		nfileblk    = nilfs_rw32(segsum->ss_nblocks) - nsumblk;
    635  1.1   reinoud 
    636  1.1   reinoud 		/* calculate next partial segment location */
    637  1.1   reinoud 		ri->pseg += nsumblk + nfileblk;
    638  1.1   reinoud 
    639  1.1   reinoud 		/* did we reach the end of the segment? if so, go to the next */
    640  1.1   reinoud 		nilfs_get_segment_range(nilfsdev, ri->segnum, &seg_start, &seg_end);
    641  1.1   reinoud 		if (ri->pseg >= seg_end)
    642  1.1   reinoud 			ri->pseg = nilfs_rw64(segsum->ss_next);
    643  1.1   reinoud 		ri->segnum = nilfs_get_segnum_of_block(nilfsdev, ri->pseg);
    644  1.1   reinoud 	}
    645  1.1   reinoud 
    646  1.1   reinoud 	/*
    647  1.1   reinoud 	 * XXX No roll-forward yet of the remaining partial segments.
    648  1.1   reinoud 	 */
    649  1.1   reinoud 
    650  1.1   reinoud 	/* wipe current list of ri */
    651  1.1   reinoud 	while (!STAILQ_EMPTY(&ri_list)) {
    652  1.1   reinoud 		i_ri = STAILQ_FIRST(&ri_list);
    653  1.1   reinoud 		STAILQ_REMOVE_HEAD(&ri_list, next);
    654  1.1   reinoud 		printf("nilfs: ignoring pseg at %"PRIu64"\n", i_ri->pseg);
    655  1.1   reinoud 		free(i_ri, M_NILFSTEMP);
    656  1.1   reinoud 	}
    657  1.1   reinoud 	free(ri, M_NILFSTEMP);
    658  1.1   reinoud }
    659  1.1   reinoud 
    660  1.1   reinoud /* --------------------------------------------------------------------- */
    661  1.1   reinoud 
    662  1.1   reinoud /*
    663  1.1   reinoud  * Genfs interfacing
    664  1.1   reinoud  *
    665  1.1   reinoud  * static const struct genfs_ops nilfs_genfsops = {
    666  1.1   reinoud  * 	.gop_size = genfs_size,
    667  1.1   reinoud  * 		size of transfers
    668  1.1   reinoud  * 	.gop_alloc = nilfs_gop_alloc,
    669  1.1   reinoud  * 		allocate len bytes at offset
    670  1.1   reinoud  * 	.gop_write = genfs_gop_write,
    671  1.1   reinoud  * 		putpages interface code
    672  1.1   reinoud  * 	.gop_markupdate = nilfs_gop_markupdate,
    673  1.1   reinoud  * 		set update/modify flags etc.
    674  1.1   reinoud  * }
    675  1.1   reinoud  */
    676  1.1   reinoud 
    677  1.1   reinoud /*
    678  1.1   reinoud  * Callback from genfs to allocate len bytes at offset off; only called when
    679  1.1   reinoud  * filling up gaps in the allocation.
    680  1.1   reinoud  */
    681  1.1   reinoud static int
    682  1.1   reinoud nilfs_gop_alloc(struct vnode *vp, off_t off,
    683  1.1   reinoud     off_t len, int flags, kauth_cred_t cred)
    684  1.1   reinoud {
    685  1.1   reinoud 	DPRINTF(NOTIMPL, ("nilfs_gop_alloc not implemented\n"));
    686  1.1   reinoud 	DPRINTF(ALLOC, ("nilfs_gop_alloc called for %"PRIu64" bytes\n", len));
    687  1.1   reinoud 
    688  1.1   reinoud 	return 0;
    689  1.1   reinoud }
    690  1.1   reinoud 
    691  1.1   reinoud 
    692  1.1   reinoud /*
    693  1.1   reinoud  * callback from genfs to update our flags
    694  1.1   reinoud  */
    695  1.1   reinoud static void
    696  1.1   reinoud nilfs_gop_markupdate(struct vnode *vp, int flags)
    697  1.1   reinoud {
    698  1.1   reinoud 	struct nilfs_node *nilfs_node = VTOI(vp);
    699  1.1   reinoud 	u_long mask = 0;
    700  1.1   reinoud 
    701  1.1   reinoud 	if ((flags & GOP_UPDATE_ACCESSED) != 0) {
    702  1.1   reinoud 		mask = IN_ACCESS;
    703  1.1   reinoud 	}
    704  1.1   reinoud 	if ((flags & GOP_UPDATE_MODIFIED) != 0) {
    705  1.1   reinoud 		if (vp->v_type == VREG) {
    706  1.1   reinoud 			mask |= IN_CHANGE | IN_UPDATE;
    707  1.1   reinoud 		} else {
    708  1.1   reinoud 			mask |= IN_MODIFY;
    709  1.1   reinoud 		}
    710  1.1   reinoud 	}
    711  1.1   reinoud 	if (mask) {
    712  1.1   reinoud 		nilfs_node->i_flags |= mask;
    713  1.1   reinoud 	}
    714  1.1   reinoud }
    715  1.1   reinoud 
    716  1.1   reinoud 
    717  1.1   reinoud static const struct genfs_ops nilfs_genfsops = {
    718  1.1   reinoud 	.gop_size = genfs_size,
    719  1.1   reinoud 	.gop_alloc = nilfs_gop_alloc,
    720  1.1   reinoud 	.gop_write = genfs_gop_write_rwmap,
    721  1.1   reinoud 	.gop_markupdate = nilfs_gop_markupdate,
    722  1.1   reinoud };
    723  1.1   reinoud 
    724  1.1   reinoud /* --------------------------------------------------------------------- */
    725  1.1   reinoud 
    726  1.1   reinoud static void
    727  1.1   reinoud nilfs_register_node(struct nilfs_node *node)
    728  1.1   reinoud {
    729  1.1   reinoud 	struct nilfs_mount *ump;
    730  1.1   reinoud 	struct nilfs_node *chk;
    731  1.1   reinoud 	uint32_t hashline;
    732  1.1   reinoud 
    733  1.1   reinoud 	ump = node->ump;
    734  1.1   reinoud 	mutex_enter(&ump->ihash_lock);
    735  1.1   reinoud 
    736  1.1   reinoud 	/* add to our hash table */
    737  1.1   reinoud 	hashline = nilfs_calchash(node->ino) & NILFS_INODE_HASHMASK;
    738  1.1   reinoud #ifdef DEBUG
    739  1.1   reinoud 	LIST_FOREACH(chk, &ump->nilfs_nodes[hashline], hashchain) {
    740  1.1   reinoud 		assert(chk);
    741  1.1   reinoud 		if (chk->ino == node->ino)
    742  1.1   reinoud 			panic("Double node entered\n");
    743  1.1   reinoud 	}
    744  1.1   reinoud #else
    745  1.1   reinoud 	chk = NULL;
    746  1.1   reinoud #endif
    747  1.1   reinoud 	LIST_INSERT_HEAD(&ump->nilfs_nodes[hashline], node, hashchain);
    748  1.1   reinoud 
    749  1.1   reinoud 	mutex_exit(&ump->ihash_lock);
    750  1.1   reinoud }
    751  1.1   reinoud 
    752  1.1   reinoud 
    753  1.1   reinoud static void
    754  1.1   reinoud nilfs_deregister_node(struct nilfs_node *node)
    755  1.1   reinoud {
    756  1.1   reinoud 	struct nilfs_mount *ump;
    757  1.1   reinoud 
    758  1.1   reinoud 	ump = node->ump;
    759  1.1   reinoud 	mutex_enter(&ump->ihash_lock);
    760  1.1   reinoud 
    761  1.1   reinoud 	/* remove from hash list */
    762  1.1   reinoud 	LIST_REMOVE(node, hashchain);
    763  1.1   reinoud 
    764  1.1   reinoud 	mutex_exit(&ump->ihash_lock);
    765  1.1   reinoud }
    766  1.1   reinoud 
    767  1.1   reinoud 
    768  1.1   reinoud static struct nilfs_node *
    769  1.1   reinoud nilfs_hash_lookup(struct nilfs_mount *ump, ino_t ino)
    770  1.1   reinoud {
    771  1.1   reinoud 	struct nilfs_node *node;
    772  1.1   reinoud 	struct vnode *vp;
    773  1.1   reinoud 	uint32_t hashline;
    774  1.1   reinoud 
    775  1.1   reinoud loop:
    776  1.1   reinoud 	mutex_enter(&ump->ihash_lock);
    777  1.1   reinoud 
    778  1.1   reinoud 	/* search our hash table */
    779  1.1   reinoud 	hashline = nilfs_calchash(ino) & NILFS_INODE_HASHMASK;
    780  1.1   reinoud 	LIST_FOREACH(node, &ump->nilfs_nodes[hashline], hashchain) {
    781  1.1   reinoud 		assert(node);
    782  1.1   reinoud 		if (node->ino == ino) {
    783  1.1   reinoud 			vp = node->vnode;
    784  1.1   reinoud 			assert(vp);
    785  1.1   reinoud 			mutex_enter(&vp->v_interlock);
    786  1.1   reinoud 			mutex_exit(&ump->ihash_lock);
    787  1.6   hannken 			if (vget(vp, LK_EXCLUSIVE))
    788  1.1   reinoud 				goto loop;
    789  1.1   reinoud 			return node;
    790  1.1   reinoud 		}
    791  1.1   reinoud 	}
    792  1.1   reinoud 	mutex_exit(&ump->ihash_lock);
    793  1.1   reinoud 
    794  1.1   reinoud 	return NULL;
    795  1.1   reinoud }
    796  1.1   reinoud 
    797  1.1   reinoud 
    798  1.1   reinoud /* node action implementators */
    799  1.1   reinoud extern int (**nilfs_vnodeop_p)(void *);
    800  1.1   reinoud 
    801  1.1   reinoud int
    802  1.1   reinoud nilfs_get_node_raw(struct nilfs_device *nilfsdev, struct nilfs_mount *ump,
    803  1.1   reinoud 	uint64_t ino, struct nilfs_inode *inode, struct nilfs_node **nodep)
    804  1.1   reinoud {
    805  1.1   reinoud 	struct nilfs_node *node;
    806  1.1   reinoud 	struct vnode *nvp;
    807  1.1   reinoud 	struct mount *mp;
    808  1.1   reinoud 	int (**vnodeops)(void *);
    809  1.1   reinoud 	int error;
    810  1.1   reinoud 
    811  1.1   reinoud 	*nodep = NULL;
    812  1.1   reinoud 	vnodeops = nilfs_vnodeop_p;
    813  1.1   reinoud 
    814  1.1   reinoud 	/* associate with mountpoint if present*/
    815  1.1   reinoud 	mp = ump? ump->vfs_mountp : NULL;
    816  1.1   reinoud 	error = getnewvnode(VT_NILFS, mp, vnodeops, &nvp);
    817  1.1   reinoud 	if (error)
    818  1.1   reinoud 		return error;
    819  1.1   reinoud 
    820  1.1   reinoud 	/* lock node */
    821  1.1   reinoud 	error = vn_lock(nvp, LK_EXCLUSIVE | LK_RETRY);
    822  1.1   reinoud 	if (error) {
    823  1.1   reinoud 		nvp->v_data = NULL;
    824  1.1   reinoud 		ungetnewvnode(nvp);
    825  1.1   reinoud 		return error;
    826  1.1   reinoud 	}
    827  1.1   reinoud 
    828  1.1   reinoud 	node = pool_get(&nilfs_node_pool, PR_WAITOK);
    829  1.1   reinoud 	memset(node, 0, sizeof(struct nilfs_node));
    830  1.1   reinoud 
    831  1.1   reinoud 	/* crosslink */
    832  1.1   reinoud 	node->vnode    = nvp;
    833  1.1   reinoud 	node->ump      = ump;
    834  1.1   reinoud 	node->nilfsdev = nilfsdev;
    835  1.1   reinoud 	nvp->v_data    = node;
    836  1.1   reinoud 
    837  1.1   reinoud 	/* initiase nilfs node */
    838  1.1   reinoud 	node->ino   = ino;
    839  1.1   reinoud 	node->inode = *inode;
    840  1.1   reinoud 	node->lockf = NULL;
    841  1.1   reinoud 
    842  1.1   reinoud 	/* needed? */
    843  1.1   reinoud 	mutex_init(&node->node_mutex, MUTEX_DEFAULT, IPL_NONE);
    844  1.7  pgoyette 	cv_init(&node->node_lock, "nilfsnlk");
    845  1.1   reinoud 
    846  1.1   reinoud 	/* initialise genfs */
    847  1.1   reinoud 	genfs_node_init(nvp, &nilfs_genfsops);
    848  1.1   reinoud 
    849  1.1   reinoud 	/* check if we're fetching the root */
    850  1.1   reinoud 	if (ino == NILFS_ROOT_INO)
    851  1.1   reinoud 		nvp->v_vflag |= VV_ROOT;
    852  1.1   reinoud 
    853  1.1   reinoud 	/* update vnode's file type XXX is there a function for this? */
    854  1.1   reinoud 	nvp->v_type = VREG;
    855  1.1   reinoud 	if (S_ISDIR(inode->i_mode))
    856  1.1   reinoud 		nvp->v_type = VDIR;
    857  1.1   reinoud 	if (S_ISLNK(inode->i_mode))
    858  1.1   reinoud 		nvp->v_type = VLNK;
    859  1.1   reinoud #if 0
    860  1.1   reinoud 	if (S_ISCHR(inode->i_mode))
    861  1.1   reinoud 		nvp->v_type = VCHR;
    862  1.1   reinoud 	if (S_ISBLK(inode->i_mode))
    863  1.1   reinoud 		nvp->v_type = VBLK;
    864  1.1   reinoud #endif
    865  1.1   reinoud 	/* XXX what else? */
    866  1.1   reinoud 
    867  1.1   reinoud 	/* fixup inode size for system nodes */
    868  1.1   reinoud 	if ((ino < NILFS_USER_INO) && (ino != NILFS_ROOT_INO)) {
    869  1.1   reinoud 		DPRINTF(VOLUMES, ("NEED TO GET my size for inode %"PRIu64"\n",
    870  1.1   reinoud 			ino));
    871  1.1   reinoud 		/* for now set it to maximum, -1 is illegal */
    872  1.1   reinoud 		inode->i_size = nilfs_rw64(((uint64_t) -2));
    873  1.1   reinoud 	}
    874  1.1   reinoud 
    875  1.1   reinoud 	uvm_vnp_setsize(nvp, nilfs_rw64(inode->i_size));
    876  1.1   reinoud 
    877  1.1   reinoud 	if (ump)
    878  1.1   reinoud 		nilfs_register_node(node);
    879  1.1   reinoud 
    880  1.1   reinoud 	/* return node */
    881  1.1   reinoud 	*nodep = node;
    882  1.1   reinoud 	return 0;
    883  1.1   reinoud }
    884  1.1   reinoud 
    885  1.1   reinoud 
    886  1.1   reinoud int
    887  1.1   reinoud nilfs_get_node(struct nilfs_mount *ump, uint64_t ino, struct nilfs_node **nodep)
    888  1.1   reinoud {
    889  1.1   reinoud 	struct nilfs_device *nilfsdev;
    890  1.1   reinoud 	struct nilfs_inode   inode, *entry;
    891  1.1   reinoud 	struct buf *bp;
    892  1.1   reinoud 	uint64_t ivblocknr;
    893  1.1   reinoud 	uint32_t entry_in_block;
    894  1.1   reinoud 	int error;
    895  1.1   reinoud 
    896  1.1   reinoud 	/* lookup node in hash table */
    897  1.1   reinoud 	*nodep = nilfs_hash_lookup(ump, ino);
    898  1.1   reinoud 	if (*nodep)
    899  1.1   reinoud 		return 0;
    900  1.1   reinoud 
    901  1.1   reinoud 	/* lock to disallow simultanious creation of same udf_node */
    902  1.1   reinoud 	mutex_enter(&ump->get_node_lock);
    903  1.1   reinoud 
    904  1.1   reinoud 	/* relookup since it could be created while waiting for the mutex */
    905  1.1   reinoud 	*nodep = nilfs_hash_lookup(ump, ino);
    906  1.1   reinoud 	if (*nodep) {
    907  1.1   reinoud 		mutex_exit(&ump->get_node_lock);
    908  1.1   reinoud 		return 0;
    909  1.1   reinoud 	}
    910  1.1   reinoud 
    911  1.1   reinoud 	/* create new inode; XXX check could be handier */
    912  1.1   reinoud 	if ((ino < NILFS_ATIME_INO) && (ino != NILFS_ROOT_INO)) {
    913  1.1   reinoud 		printf("nilfs_get_node: system ino %"PRIu64" not in mount "
    914  1.1   reinoud 			"point!\n", ino);
    915  1.1   reinoud 		mutex_exit(&ump->get_node_lock);
    916  1.1   reinoud 		return ENOENT;
    917  1.1   reinoud 	}
    918  1.1   reinoud 
    919  1.1   reinoud 	/* lookup inode in the ifile */
    920  1.1   reinoud 	DPRINTF(NODE, ("lookup ino %"PRIu64"\n", ino));
    921  1.1   reinoud 
    922  1.1   reinoud 	/* lookup inode structure in mountpoints ifile */
    923  1.1   reinoud 	nilfsdev = ump->nilfsdev;
    924  1.1   reinoud 	nilfs_mdt_trans(&nilfsdev->ifile_mdt, ino, &ivblocknr, &entry_in_block);
    925  1.1   reinoud 
    926  1.1   reinoud 	error = nilfs_bread(ump->ifile_node, ivblocknr, NOCRED, 0, &bp);
    927  1.1   reinoud 	if (error) {
    928  1.1   reinoud 		mutex_exit(&ump->get_node_lock);
    929  1.1   reinoud 		return ENOENT;
    930  1.1   reinoud 	}
    931  1.1   reinoud 
    932  1.1   reinoud 	/* get inode entry */
    933  1.1   reinoud 	entry =  (struct nilfs_inode *) bp->b_data + entry_in_block;
    934  1.1   reinoud 	inode = *entry;
    935  1.1   reinoud 	brelse(bp, BC_AGE);
    936  1.1   reinoud 
    937  1.1   reinoud 	/* get node */
    938  1.1   reinoud 	error = nilfs_get_node_raw(ump->nilfsdev, ump, ino, &inode, nodep);
    939  1.1   reinoud 	mutex_exit(&ump->get_node_lock);
    940  1.1   reinoud 
    941  1.1   reinoud 	return error;
    942  1.1   reinoud }
    943  1.1   reinoud 
    944  1.1   reinoud 
    945  1.1   reinoud void
    946  1.1   reinoud nilfs_dispose_node(struct nilfs_node **nodep)
    947  1.1   reinoud {
    948  1.1   reinoud 	struct vnode *vp;
    949  1.1   reinoud 	struct nilfs_node *node;
    950  1.1   reinoud 
    951  1.1   reinoud 	/* protect against rogue values */
    952  1.1   reinoud 	if (!*nodep)
    953  1.1   reinoud 		return;
    954  1.1   reinoud 
    955  1.1   reinoud 	node = *nodep;
    956  1.1   reinoud 	vp = node->vnode;
    957  1.1   reinoud 
    958  1.1   reinoud 	/* remove dirhash if present */
    959  1.1   reinoud 	dirhash_purge(&node->dir_hash);
    960  1.1   reinoud 
    961  1.1   reinoud 	/* remove from our hash lookup table */
    962  1.1   reinoud 	if (node->ump)
    963  1.1   reinoud 		nilfs_deregister_node(node);
    964  1.1   reinoud 
    965  1.1   reinoud 	/* destroy our locks */
    966  1.1   reinoud 	mutex_destroy(&node->node_mutex);
    967  1.1   reinoud 	cv_destroy(&node->node_lock);
    968  1.1   reinoud 
    969  1.1   reinoud 	/* dissociate from our vnode */
    970  1.1   reinoud 	genfs_node_destroy(node->vnode);
    971  1.1   reinoud 	vp->v_data = NULL;
    972  1.1   reinoud 
    973  1.1   reinoud 	/* free our associated memory */
    974  1.1   reinoud 	pool_put(&nilfs_node_pool, node);
    975  1.1   reinoud 
    976  1.1   reinoud 	*nodep = NULL;
    977  1.1   reinoud }
    978  1.1   reinoud 
    979  1.1   reinoud 
    980  1.1   reinoud void
    981  1.1   reinoud nilfs_itimes(struct nilfs_node *node, struct timespec *acc,
    982  1.1   reinoud 	struct timespec *mod, struct timespec *birth)
    983  1.1   reinoud {
    984  1.1   reinoud }
    985  1.1   reinoud 
    986  1.1   reinoud 
    987  1.1   reinoud int
    988  1.1   reinoud nilfs_update(struct vnode *node, struct timespec *acc,
    989  1.1   reinoud 	struct timespec *mod, struct timespec *birth, int updflags)
    990  1.1   reinoud {
    991  1.1   reinoud 	return EROFS;
    992  1.1   reinoud }
    993  1.1   reinoud 
    994  1.1   reinoud 
    995  1.1   reinoud int
    996  1.1   reinoud nilfs_chsize(struct vnode *vp, u_quad_t newsize, kauth_cred_t cred)
    997  1.1   reinoud {
    998  1.1   reinoud 	return EROFS;
    999  1.1   reinoud }
   1000  1.1   reinoud 
   1001  1.1   reinoud 
   1002  1.1   reinoud 
   1003  1.1   reinoud int
   1004  1.1   reinoud nilfs_grow_node(struct nilfs_node *node, uint64_t new_size)
   1005  1.1   reinoud {
   1006  1.1   reinoud 	return EROFS;
   1007  1.1   reinoud }
   1008  1.1   reinoud 
   1009  1.1   reinoud 
   1010  1.1   reinoud int
   1011  1.1   reinoud nilfs_shrink_node(struct nilfs_node *node, uint64_t new_size)
   1012  1.1   reinoud {
   1013  1.1   reinoud 	return EROFS;
   1014  1.1   reinoud }
   1015  1.1   reinoud 
   1016  1.1   reinoud 
   1017  1.1   reinoud static int
   1018  1.1   reinoud dirhash_fill(struct nilfs_node *dir_node)
   1019  1.1   reinoud {
   1020  1.1   reinoud 	struct vnode *dvp = dir_node->vnode;
   1021  1.1   reinoud 	struct dirhash *dirh;
   1022  1.1   reinoud 	struct nilfs_dir_entry *ndirent;
   1023  1.1   reinoud 	struct dirent dirent;
   1024  1.1   reinoud 	struct buf *bp;
   1025  1.1   reinoud 	uint64_t file_size, diroffset, blkoff;
   1026  1.1   reinoud 	uint64_t blocknr;
   1027  1.1   reinoud 	uint32_t blocksize = dir_node->nilfsdev->blocksize;
   1028  1.1   reinoud 	uint8_t *pos, name_len;
   1029  1.1   reinoud 	int error;
   1030  1.1   reinoud 
   1031  1.1   reinoud 	DPRINTF(CALL, ("dirhash_fill called\n"));
   1032  1.1   reinoud 
   1033  1.1   reinoud 	if (dvp->v_type != VDIR)
   1034  1.1   reinoud 		return ENOTDIR;
   1035  1.1   reinoud 
   1036  1.1   reinoud 	/* make sure we have a dirhash to work on */
   1037  1.1   reinoud 	dirh = dir_node->dir_hash;
   1038  1.1   reinoud 	KASSERT(dirh);
   1039  1.1   reinoud 	KASSERT(dirh->refcnt > 0);
   1040  1.1   reinoud 
   1041  1.1   reinoud 	if (dirh->flags & DIRH_BROKEN)
   1042  1.1   reinoud 		return EIO;
   1043  1.1   reinoud 
   1044  1.1   reinoud 	if (dirh->flags & DIRH_COMPLETE)
   1045  1.1   reinoud 		return 0;
   1046  1.1   reinoud 
   1047  1.1   reinoud 	DPRINTF(DIRHASH, ("Filling directory hash\n"));
   1048  1.1   reinoud 
   1049  1.1   reinoud 	/* make sure we have a clean dirhash to add to */
   1050  1.1   reinoud 	dirhash_purge_entries(dirh);
   1051  1.1   reinoud 
   1052  1.1   reinoud 	/* get directory filesize */
   1053  1.1   reinoud 	file_size = nilfs_rw64(dir_node->inode.i_size);
   1054  1.1   reinoud 
   1055  1.1   reinoud 	/* walk the directory */
   1056  1.1   reinoud 	error = 0;
   1057  1.1   reinoud 	diroffset = 0;
   1058  1.1   reinoud 
   1059  1.1   reinoud 	blocknr = diroffset / blocksize;
   1060  1.1   reinoud 	blkoff  = diroffset % blocksize;
   1061  1.1   reinoud 	error = nilfs_bread(dir_node, blocknr, NOCRED, 0, &bp);
   1062  1.1   reinoud 	if (error) {
   1063  1.1   reinoud 		dirh->flags |= DIRH_BROKEN;
   1064  1.1   reinoud 		dirhash_purge_entries(dirh);
   1065  1.1   reinoud 		return EIO;
   1066  1.1   reinoud 	}
   1067  1.1   reinoud 	while (diroffset < file_size) {
   1068  1.1   reinoud 		DPRINTF(READDIR, ("filldir : offset = %"PRIu64"\n",
   1069  1.1   reinoud 			diroffset));
   1070  1.1   reinoud 		if (blkoff >= blocksize) {
   1071  1.1   reinoud 			blkoff = 0; blocknr++;
   1072  1.1   reinoud 			brelse(bp, BC_AGE);
   1073  1.1   reinoud 			error = nilfs_bread(dir_node, blocknr, NOCRED, 0,
   1074  1.1   reinoud 					&bp);
   1075  1.1   reinoud 			if (error) {
   1076  1.1   reinoud 				dirh->flags |= DIRH_BROKEN;
   1077  1.1   reinoud 				dirhash_purge_entries(dirh);
   1078  1.1   reinoud 				return EIO;
   1079  1.1   reinoud 			}
   1080  1.1   reinoud 		}
   1081  1.1   reinoud 
   1082  1.1   reinoud 		/* read in one dirent */
   1083  1.1   reinoud 		pos = (uint8_t *) bp->b_data + blkoff;
   1084  1.1   reinoud 		ndirent = (struct nilfs_dir_entry *) pos;
   1085  1.1   reinoud 		name_len = ndirent->name_len;
   1086  1.1   reinoud 
   1087  1.1   reinoud 		memset(&dirent, 0, sizeof(struct dirent));
   1088  1.1   reinoud 		dirent.d_fileno = nilfs_rw64(ndirent->inode);
   1089  1.1   reinoud 		dirent.d_type   = ndirent->file_type;	/* 1:1 ? */
   1090  1.1   reinoud 		dirent.d_namlen = name_len;
   1091  1.1   reinoud 		strncpy(dirent.d_name, ndirent->name, name_len);
   1092  1.1   reinoud 		dirent.d_reclen = _DIRENT_SIZE(&dirent);
   1093  1.1   reinoud 		DPRINTF(DIRHASH, ("copying `%*.*s`\n", name_len,
   1094  1.1   reinoud 			name_len, dirent.d_name));
   1095  1.1   reinoud 
   1096  1.1   reinoud 		/* XXX is it deleted? extra free space? */
   1097  1.1   reinoud 		dirhash_enter(dirh, &dirent, diroffset,
   1098  1.1   reinoud 			nilfs_rw16(ndirent->rec_len), 0);
   1099  1.1   reinoud 
   1100  1.1   reinoud 		/* advance */
   1101  1.1   reinoud 		diroffset += nilfs_rw16(ndirent->rec_len);
   1102  1.1   reinoud 		blkoff    += nilfs_rw16(ndirent->rec_len);
   1103  1.1   reinoud 	}
   1104  1.1   reinoud 	brelse(bp, BC_AGE);
   1105  1.1   reinoud 
   1106  1.1   reinoud 	dirh->flags |= DIRH_COMPLETE;
   1107  1.1   reinoud 
   1108  1.1   reinoud 	return 0;
   1109  1.1   reinoud }
   1110  1.1   reinoud 
   1111  1.1   reinoud 
   1112  1.1   reinoud int
   1113  1.1   reinoud nilfs_lookup_name_in_dir(struct vnode *dvp, const char *name, int namelen,
   1114  1.1   reinoud 		uint64_t *ino, int *found)
   1115  1.1   reinoud {
   1116  1.1   reinoud 	struct nilfs_node	*dir_node = VTOI(dvp);
   1117  1.1   reinoud 	struct nilfs_dir_entry *ndirent;
   1118  1.1   reinoud 	struct dirhash		*dirh;
   1119  1.1   reinoud 	struct dirhash_entry	*dirh_ep;
   1120  1.1   reinoud 	struct buf *bp;
   1121  1.1   reinoud 	uint64_t diroffset, blkoff;
   1122  1.1   reinoud 	uint64_t blocknr;
   1123  1.1   reinoud 	uint32_t blocksize = dir_node->nilfsdev->blocksize;
   1124  1.1   reinoud 	uint8_t *pos;
   1125  1.1   reinoud 	int hit, error;
   1126  1.1   reinoud 
   1127  1.1   reinoud 	/* set default return */
   1128  1.1   reinoud 	*found = 0;
   1129  1.1   reinoud 
   1130  1.1   reinoud 	/* get our dirhash and make sure its read in */
   1131  1.1   reinoud 	dirhash_get(&dir_node->dir_hash);
   1132  1.1   reinoud 	error = dirhash_fill(dir_node);
   1133  1.1   reinoud 	if (error) {
   1134  1.1   reinoud 		dirhash_put(dir_node->dir_hash);
   1135  1.1   reinoud 		return error;
   1136  1.1   reinoud 	}
   1137  1.1   reinoud 	dirh = dir_node->dir_hash;
   1138  1.1   reinoud 
   1139  1.1   reinoud 	/* allocate temporary space for fid */
   1140  1.1   reinoud 
   1141  1.1   reinoud 	DPRINTF(DIRHASH, ("dirhash_lookup looking for `%*.*s`\n",
   1142  1.1   reinoud 		namelen, namelen, name));
   1143  1.1   reinoud 
   1144  1.1   reinoud 	/* search our dirhash hits */
   1145  1.1   reinoud 	*ino = 0;
   1146  1.1   reinoud 	dirh_ep = NULL;
   1147  1.1   reinoud 	for (;;) {
   1148  1.1   reinoud 		hit = dirhash_lookup(dirh, name, namelen, &dirh_ep);
   1149  1.1   reinoud 		/* if no hit, abort the search */
   1150  1.1   reinoud 		if (!hit)
   1151  1.1   reinoud 			break;
   1152  1.1   reinoud 
   1153  1.1   reinoud 		/* check this hit */
   1154  1.1   reinoud 		diroffset = dirh_ep->offset;
   1155  1.1   reinoud 
   1156  1.1   reinoud 		blocknr = diroffset / blocksize;
   1157  1.1   reinoud 		blkoff  = diroffset % blocksize;
   1158  1.1   reinoud 		error = nilfs_bread(dir_node, blocknr, NOCRED, 0, &bp);
   1159  1.1   reinoud 		if (error)
   1160  1.1   reinoud 			return EIO;
   1161  1.1   reinoud 
   1162  1.1   reinoud 		/* read in one dirent */
   1163  1.1   reinoud 		pos = (uint8_t *) bp->b_data + blkoff;
   1164  1.1   reinoud 		ndirent = (struct nilfs_dir_entry *) pos;
   1165  1.1   reinoud 
   1166  1.1   reinoud 		DPRINTF(DIRHASH, ("dirhash_lookup\tchecking `%*.*s`\n",
   1167  1.1   reinoud 			ndirent->name_len, ndirent->name_len, ndirent->name));
   1168  1.1   reinoud 
   1169  1.1   reinoud 		/* see if its our entry */
   1170  1.1   reinoud 		KASSERT(ndirent->name_len == namelen);
   1171  1.1   reinoud 		if (strncmp(ndirent->name, name, namelen) == 0) {
   1172  1.1   reinoud 			*found = 1;
   1173  1.1   reinoud 			*ino = nilfs_rw64(ndirent->inode);
   1174  1.1   reinoud 			brelse(bp, BC_AGE);
   1175  1.1   reinoud 			break;
   1176  1.1   reinoud 		}
   1177  1.1   reinoud 		brelse(bp, BC_AGE);
   1178  1.1   reinoud 	}
   1179  1.1   reinoud 
   1180  1.1   reinoud 	dirhash_put(dir_node->dir_hash);
   1181  1.1   reinoud 
   1182  1.1   reinoud 	return error;
   1183  1.1   reinoud }
   1184  1.1   reinoud 
   1185  1.1   reinoud 
   1186  1.1   reinoud int
   1187  1.1   reinoud nilfs_dir_detach(struct nilfs_mount *ump, struct nilfs_node *dir_node, struct nilfs_node *node, struct componentname *cnp)
   1188  1.1   reinoud {
   1189  1.1   reinoud 	return EROFS;
   1190  1.1   reinoud }
   1191  1.1   reinoud 
   1192  1.1   reinoud 
   1193  1.1   reinoud int
   1194  1.1   reinoud nilfs_dir_attach(struct nilfs_mount *ump, struct nilfs_node *dir_node, struct nilfs_node *node, struct vattr *vap, struct componentname *cnp)
   1195  1.1   reinoud {
   1196  1.1   reinoud 	return EROFS;
   1197  1.1   reinoud }
   1198  1.1   reinoud 
   1199  1.1   reinoud 
   1200  1.1   reinoud /* XXX return vnode? */
   1201  1.1   reinoud int
   1202  1.1   reinoud nilfs_create_node(struct vnode *dvp, struct vnode **vpp, struct vattr *vap, struct componentname *cnp)
   1203  1.1   reinoud {
   1204  1.1   reinoud 	return EROFS;
   1205  1.1   reinoud }
   1206  1.1   reinoud 
   1207  1.1   reinoud 
   1208  1.1   reinoud void
   1209  1.1   reinoud nilfs_delete_node(struct nilfs_node *node)
   1210  1.1   reinoud {
   1211  1.1   reinoud }
   1212  1.1   reinoud 
   1213  1.1   reinoud 
   1214