file.c 4.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *	fs/bfs/file.c
 *	BFS file operations.
 *	Copyright (C) 1999,2000 Tigran Aivazian <tigran@veritas.com>
5 6 7 8 9
 *
 *	Make the file block allocation algorithm understand the size
 *	of the underlying block device.
 *	Copyright (C) 2007 Dmitri Vorobiev <dmitri.vorobiev@gmail.com>
 *
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23
 */

#include <linux/fs.h>
#include <linux/buffer_head.h>
#include "bfs.h"

#undef DEBUG

#ifdef DEBUG
#define dprintf(x...)	printf(x)
#else
#define dprintf(x...)
#endif

24
const struct file_operations bfs_file_operations = {
L
Linus Torvalds 已提交
25
	.llseek 	= generic_file_llseek,
26 27 28 29
	.read		= do_sync_read,
	.aio_read	= generic_file_aio_read,
	.write		= do_sync_write,
	.aio_write	= generic_file_aio_write,
L
Linus Torvalds 已提交
30
	.mmap		= generic_file_mmap,
31
	.splice_read	= generic_file_splice_read,
L
Linus Torvalds 已提交
32 33
};

34 35
static int bfs_move_block(unsigned long from, unsigned long to,
					struct super_block *sb)
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49
{
	struct buffer_head *bh, *new;

	bh = sb_bread(sb, from);
	if (!bh)
		return -EIO;
	new = sb_getblk(sb, to);
	memcpy(new->b_data, bh->b_data, bh->b_size);
	mark_buffer_dirty(new);
	bforget(bh);
	brelse(new);
	return 0;
}

50
static int bfs_move_blocks(struct super_block *sb, unsigned long start,
51
				unsigned long end, unsigned long where)
L
Linus Torvalds 已提交
52 53 54 55 56 57
{
	unsigned long i;

	dprintf("%08lx-%08lx->%08lx\n", start, end, where);
	for (i = start; i <= end; i++)
		if(bfs_move_block(i, where + i, sb)) {
58 59
			dprintf("failed to move block %08lx -> %08lx\n", i,
								where + i);
L
Linus Torvalds 已提交
60 61 62 63 64
			return -EIO;
		}
	return 0;
}

65 66
static int bfs_get_block(struct inode *inode, sector_t block,
			struct buffer_head *bh_result, int create)
L
Linus Torvalds 已提交
67
{
68
	unsigned long phys;
L
Linus Torvalds 已提交
69 70 71 72 73 74 75 76
	int err;
	struct super_block *sb = inode->i_sb;
	struct bfs_sb_info *info = BFS_SB(sb);
	struct bfs_inode_info *bi = BFS_I(inode);

	phys = bi->i_sblock + block;
	if (!create) {
		if (phys <= bi->i_eblock) {
77 78
			dprintf("c=%d, b=%08lx, phys=%09lx (granted)\n",
                                create, (unsigned long)block, phys);
L
Linus Torvalds 已提交
79 80 81 82 83
			map_bh(bh_result, sb, phys);
		}
		return 0;
	}

84 85 86 87 88
	/*
	 * If the file is not empty and the requested block is within the
	 * range of blocks allocated for this file, we can grant it.
	 */
	if (bi->i_sblock && (phys <= bi->i_eblock)) {
L
Linus Torvalds 已提交
89
		dprintf("c=%d, b=%08lx, phys=%08lx (interim block granted)\n", 
90
				create, (unsigned long)block, phys);
L
Linus Torvalds 已提交
91 92 93 94
		map_bh(bh_result, sb, phys);
		return 0;
	}

95 96 97 98 99
	/* The file will be extended, so let's see if there is enough space. */
	if (phys >= info->si_blocks)
		return -ENOSPC;

	/* The rest has to be protected against itself. */
D
Dmitri Vorobiev 已提交
100
	mutex_lock(&info->bfs_lock);
L
Linus Torvalds 已提交
101

102 103 104 105 106
	/*
	 * If the last data block for this file is the last allocated
	 * block, we can extend the file trivially, without moving it
	 * anywhere.
	 */
L
Linus Torvalds 已提交
107 108
	if (bi->i_eblock == info->si_lf_eblk) {
		dprintf("c=%d, b=%08lx, phys=%08lx (simple extension)\n", 
109
				create, (unsigned long)block, phys);
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117
		map_bh(bh_result, sb, phys);
		info->si_freeb -= phys - bi->i_eblock;
		info->si_lf_eblk = bi->i_eblock = phys;
		mark_inode_dirty(inode);
		err = 0;
		goto out;
	}

118
	/* Ok, we have to move this entire file to the next free block. */
L
Linus Torvalds 已提交
119
	phys = info->si_lf_eblk + 1;
120 121 122 123 124 125
	if (phys + block >= info->si_blocks) {
		err = -ENOSPC;
		goto out;
	}

	if (bi->i_sblock) {
L
Linus Torvalds 已提交
126
		err = bfs_move_blocks(inode->i_sb, bi->i_sblock, 
127
						bi->i_eblock, phys);
L
Linus Torvalds 已提交
128
		if (err) {
129 130
			dprintf("failed to move ino=%08lx -> fs corruption\n",
								inode->i_ino);
L
Linus Torvalds 已提交
131 132 133 134 135
			goto out;
		}
	} else
		err = 0;

136 137
	dprintf("c=%d, b=%08lx, phys=%08lx (moved)\n",
                create, (unsigned long)block, phys);
L
Linus Torvalds 已提交
138 139 140 141
	bi->i_sblock = phys;
	phys += block;
	info->si_lf_eblk = bi->i_eblock = phys;

142 143 144 145
	/*
	 * This assumes nothing can write the inode back while we are here
	 * and thus update inode->i_blocks! (XXX)
	 */
L
Linus Torvalds 已提交
146 147 148 149
	info->si_freeb -= bi->i_eblock - bi->i_sblock + 1 - inode->i_blocks;
	mark_inode_dirty(inode);
	map_bh(bh_result, sb, phys);
out:
D
Dmitri Vorobiev 已提交
150
	mutex_unlock(&info->bfs_lock);
L
Linus Torvalds 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163
	return err;
}

static int bfs_writepage(struct page *page, struct writeback_control *wbc)
{
	return block_write_full_page(page, bfs_get_block, wbc);
}

static int bfs_readpage(struct file *file, struct page *page)
{
	return block_read_full_page(page, bfs_get_block);
}

N
Nick Piggin 已提交
164 165 166
static int bfs_write_begin(struct file *file, struct address_space *mapping,
			loff_t pos, unsigned len, unsigned flags,
			struct page **pagep, void **fsdata)
L
Linus Torvalds 已提交
167
{
168 169 170 171 172 173 174 175 176 177 178
	int ret;

	ret = block_write_begin(mapping, pos, len, flags, pagep,
				bfs_get_block);
	if (unlikely(ret)) {
		loff_t isize = mapping->host->i_size;
		if (pos + len > isize)
			vmtruncate(mapping->host, isize);
	}

	return ret;
L
Linus Torvalds 已提交
179 180 181 182 183 184 185
}

static sector_t bfs_bmap(struct address_space *mapping, sector_t block)
{
	return generic_block_bmap(mapping, block, bfs_get_block);
}

186
const struct address_space_operations bfs_aops = {
L
Linus Torvalds 已提交
187 188
	.readpage	= bfs_readpage,
	.writepage	= bfs_writepage,
N
Nick Piggin 已提交
189 190
	.write_begin	= bfs_write_begin,
	.write_end	= generic_write_end,
L
Linus Torvalds 已提交
191 192 193
	.bmap		= bfs_bmap,
};

194
const struct inode_operations bfs_file_inops;