| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved. | 
| Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 |  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 |  * | 
 | 5 |  * This copyrighted material is made available to anyone wishing to use, | 
 | 6 |  * modify, copy, or redistribute it subject to the terms and conditions | 
| Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 |  * of the GNU General Public License version 2. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 |  */ | 
 | 9 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 10 | #include <linux/spinlock.h> | 
 | 11 | #include <linux/completion.h> | 
 | 12 | #include <linux/buffer_head.h> | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 13 | #include <linux/gfs2_ondisk.h> | 
| Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 14 | #include <linux/crc32.h> | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 15 |  | 
 | 16 | #include "gfs2.h" | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 17 | #include "incore.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 18 | #include "bmap.h" | 
 | 19 | #include "glock.h" | 
 | 20 | #include "inode.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 21 | #include "meta_io.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 22 | #include "quota.h" | 
 | 23 | #include "rgrp.h" | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 24 | #include "super.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 25 | #include "trans.h" | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 26 | #include "dir.h" | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 27 | #include "util.h" | 
| Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 28 | #include "trace_gfs2.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 29 |  | 
 | 30 | /* This doesn't need to be that large as max 64 bit pointers in a 4k | 
 | 31 |  * block is 512, so __u16 is fine for that. It saves stack space to | 
 | 32 |  * keep it small. | 
 | 33 |  */ | 
 | 34 | struct metapath { | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 35 | 	struct buffer_head *mp_bh[GFS2_MAX_META_HEIGHT]; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 36 | 	__u16 mp_list[GFS2_MAX_META_HEIGHT]; | 
 | 37 | }; | 
 | 38 |  | 
 | 39 | typedef int (*block_call_t) (struct gfs2_inode *ip, struct buffer_head *dibh, | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 40 | 			     struct buffer_head *bh, __be64 *top, | 
 | 41 | 			     __be64 *bottom, unsigned int height, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 42 | 			     void *data); | 
 | 43 |  | 
 | 44 | struct strip_mine { | 
 | 45 | 	int sm_first; | 
 | 46 | 	unsigned int sm_height; | 
 | 47 | }; | 
 | 48 |  | 
 | 49 | /** | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 50 |  * gfs2_unstuffer_page - unstuff a stuffed inode into a block cached by a page | 
 | 51 |  * @ip: the inode | 
 | 52 |  * @dibh: the dinode buffer | 
 | 53 |  * @block: the block number that was allocated | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 54 |  * @page: The (optional) page. This is looked up if @page is NULL | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 55 |  * | 
 | 56 |  * Returns: errno | 
 | 57 |  */ | 
 | 58 |  | 
 | 59 | static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh, | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 60 | 			       u64 block, struct page *page) | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 61 | { | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 62 | 	struct inode *inode = &ip->i_inode; | 
 | 63 | 	struct buffer_head *bh; | 
 | 64 | 	int release = 0; | 
 | 65 |  | 
 | 66 | 	if (!page || page->index) { | 
 | 67 | 		page = grab_cache_page(inode->i_mapping, 0); | 
 | 68 | 		if (!page) | 
 | 69 | 			return -ENOMEM; | 
 | 70 | 		release = 1; | 
 | 71 | 	} | 
 | 72 |  | 
 | 73 | 	if (!PageUptodate(page)) { | 
 | 74 | 		void *kaddr = kmap(page); | 
| Steven Whitehouse | 602c89d | 2010-03-25 14:32:43 +0000 | [diff] [blame] | 75 | 		u64 dsize = i_size_read(inode); | 
 | 76 |   | 
 | 77 | 		if (dsize > (dibh->b_size - sizeof(struct gfs2_dinode))) | 
 | 78 | 			dsize = dibh->b_size - sizeof(struct gfs2_dinode); | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 79 |  | 
| Steven Whitehouse | 602c89d | 2010-03-25 14:32:43 +0000 | [diff] [blame] | 80 | 		memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode), dsize); | 
 | 81 | 		memset(kaddr + dsize, 0, PAGE_CACHE_SIZE - dsize); | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 82 | 		kunmap(page); | 
 | 83 |  | 
 | 84 | 		SetPageUptodate(page); | 
 | 85 | 	} | 
 | 86 |  | 
 | 87 | 	if (!page_has_buffers(page)) | 
 | 88 | 		create_empty_buffers(page, 1 << inode->i_blkbits, | 
 | 89 | 				     (1 << BH_Uptodate)); | 
 | 90 |  | 
 | 91 | 	bh = page_buffers(page); | 
 | 92 |  | 
 | 93 | 	if (!buffer_mapped(bh)) | 
 | 94 | 		map_bh(bh, inode->i_sb, block); | 
 | 95 |  | 
 | 96 | 	set_buffer_uptodate(bh); | 
| Steven Whitehouse | eaf9652 | 2007-08-27 09:49:37 +0100 | [diff] [blame] | 97 | 	if (!gfs2_is_jdata(ip)) | 
 | 98 | 		mark_buffer_dirty(bh); | 
| Steven Whitehouse | bf36a71 | 2007-10-17 08:35:19 +0100 | [diff] [blame] | 99 | 	if (!gfs2_is_writeback(ip)) | 
| Bob Peterson | 8475487 | 2007-09-02 10:55:29 +0100 | [diff] [blame] | 100 | 		gfs2_trans_add_bh(ip->i_gl, bh, 0); | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 101 |  | 
 | 102 | 	if (release) { | 
 | 103 | 		unlock_page(page); | 
 | 104 | 		page_cache_release(page); | 
 | 105 | 	} | 
 | 106 |  | 
 | 107 | 	return 0; | 
 | 108 | } | 
 | 109 |  | 
 | 110 | /** | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 111 |  * gfs2_unstuff_dinode - Unstuff a dinode when the data has grown too big | 
 | 112 |  * @ip: The GFS2 inode to unstuff | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 113 |  * @page: The (optional) page. This is looked up if the @page is NULL | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 114 |  * | 
 | 115 |  * This routine unstuffs a dinode and returns it to a "normal" state such | 
 | 116 |  * that the height can be grown in the traditional way. | 
 | 117 |  * | 
 | 118 |  * Returns: errno | 
 | 119 |  */ | 
 | 120 |  | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 121 | int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 122 | { | 
 | 123 | 	struct buffer_head *bh, *dibh; | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 124 | 	struct gfs2_dinode *di; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 125 | 	u64 block = 0; | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 126 | 	int isdir = gfs2_is_dir(ip); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 127 | 	int error; | 
 | 128 |  | 
 | 129 | 	down_write(&ip->i_rw_mutex); | 
 | 130 |  | 
 | 131 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 132 | 	if (error) | 
 | 133 | 		goto out; | 
| Steven Whitehouse | 907b9bc | 2006-09-25 09:26:04 -0400 | [diff] [blame] | 134 |  | 
| Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 135 | 	if (i_size_read(&ip->i_inode)) { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 136 | 		/* Get a free block, fill it with the stuffed data, | 
 | 137 | 		   and write it out to disk */ | 
 | 138 |  | 
| Steven Whitehouse | b45e41d | 2008-02-06 10:11:15 +0000 | [diff] [blame] | 139 | 		unsigned int n = 1; | 
| Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 140 | 		error = gfs2_alloc_block(ip, &block, &n); | 
 | 141 | 		if (error) | 
 | 142 | 			goto out_brelse; | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 143 | 		if (isdir) { | 
| Steven Whitehouse | 5731be5 | 2008-02-01 13:16:55 +0000 | [diff] [blame] | 144 | 			gfs2_trans_add_unrevoke(GFS2_SB(&ip->i_inode), block, 1); | 
| Steven Whitehouse | 61e085a | 2006-04-24 10:07:13 -0400 | [diff] [blame] | 145 | 			error = gfs2_dir_get_new_buffer(ip, block, &bh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 146 | 			if (error) | 
 | 147 | 				goto out_brelse; | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 148 | 			gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header), | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 149 | 					      dibh, sizeof(struct gfs2_dinode)); | 
 | 150 | 			brelse(bh); | 
 | 151 | 		} else { | 
| Steven Whitehouse | f25ef0c | 2006-07-26 10:51:20 -0400 | [diff] [blame] | 152 | 			error = gfs2_unstuffer_page(ip, dibh, block, page); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 153 | 			if (error) | 
 | 154 | 				goto out_brelse; | 
 | 155 | 		} | 
 | 156 | 	} | 
 | 157 |  | 
 | 158 | 	/*  Set up the pointer to the new block  */ | 
 | 159 |  | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 160 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 161 | 	di = (struct gfs2_dinode *)dibh->b_data; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 162 | 	gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); | 
 | 163 |  | 
| Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 164 | 	if (i_size_read(&ip->i_inode)) { | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 165 | 		*(__be64 *)(di + 1) = cpu_to_be64(block); | 
| Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 166 | 		gfs2_add_inode_blocks(&ip->i_inode, 1); | 
 | 167 | 		di->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode)); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 168 | 	} | 
 | 169 |  | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 170 | 	ip->i_height = 1; | 
| Steven Whitehouse | 48516ce | 2006-10-02 12:39:19 -0400 | [diff] [blame] | 171 | 	di->di_height = cpu_to_be16(1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 172 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 173 | out_brelse: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 174 | 	brelse(dibh); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 175 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 176 | 	up_write(&ip->i_rw_mutex); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 177 | 	return error; | 
 | 178 | } | 
 | 179 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 180 |  | 
 | 181 | /** | 
 | 182 |  * find_metapath - Find path through the metadata tree | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 183 |  * @sdp: The superblock | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 184 |  * @mp: The metapath to return the result in | 
 | 185 |  * @block: The disk block to look up | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 186 |  * @height: The pre-calculated height of the metadata tree | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 187 |  * | 
 | 188 |  *   This routine returns a struct metapath structure that defines a path | 
 | 189 |  *   through the metadata of inode "ip" to get to block "block". | 
 | 190 |  * | 
 | 191 |  *   Example: | 
 | 192 |  *   Given:  "ip" is a height 3 file, "offset" is 101342453, and this is a | 
 | 193 |  *   filesystem with a blocksize of 4096. | 
 | 194 |  * | 
 | 195 |  *   find_metapath() would return a struct metapath structure set to: | 
 | 196 |  *   mp_offset = 101342453, mp_height = 3, mp_list[0] = 0, mp_list[1] = 48, | 
 | 197 |  *   and mp_list[2] = 165. | 
 | 198 |  * | 
 | 199 |  *   That means that in order to get to the block containing the byte at | 
 | 200 |  *   offset 101342453, we would load the indirect block pointed to by pointer | 
 | 201 |  *   0 in the dinode.  We would then load the indirect block pointed to by | 
 | 202 |  *   pointer 48 in that indirect block.  We would then load the data block | 
 | 203 |  *   pointed to by pointer 165 in that indirect block. | 
 | 204 |  * | 
 | 205 |  *             ---------------------------------------- | 
 | 206 |  *             | Dinode |                             | | 
 | 207 |  *             |        |                            4| | 
 | 208 |  *             |        |0 1 2 3 4 5                 9| | 
 | 209 |  *             |        |                            6| | 
 | 210 |  *             ---------------------------------------- | 
 | 211 |  *                       | | 
 | 212 |  *                       | | 
 | 213 |  *                       V | 
 | 214 |  *             ---------------------------------------- | 
 | 215 |  *             | Indirect Block                       | | 
 | 216 |  *             |                                     5| | 
 | 217 |  *             |            4 4 4 4 4 5 5            1| | 
 | 218 |  *             |0           5 6 7 8 9 0 1            2| | 
 | 219 |  *             ---------------------------------------- | 
 | 220 |  *                                | | 
 | 221 |  *                                | | 
 | 222 |  *                                V | 
 | 223 |  *             ---------------------------------------- | 
 | 224 |  *             | Indirect Block                       | | 
 | 225 |  *             |                         1 1 1 1 1   5| | 
 | 226 |  *             |                         6 6 6 6 6   1| | 
 | 227 |  *             |0                        3 4 5 6 7   2| | 
 | 228 |  *             ---------------------------------------- | 
 | 229 |  *                                           | | 
 | 230 |  *                                           | | 
 | 231 |  *                                           V | 
 | 232 |  *             ---------------------------------------- | 
 | 233 |  *             | Data block containing offset         | | 
 | 234 |  *             |            101342453                 | | 
 | 235 |  *             |                                      | | 
 | 236 |  *             |                                      | | 
 | 237 |  *             ---------------------------------------- | 
 | 238 |  * | 
 | 239 |  */ | 
 | 240 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 241 | static void find_metapath(const struct gfs2_sbd *sdp, u64 block, | 
 | 242 | 			  struct metapath *mp, unsigned int height) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 243 | { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 244 | 	unsigned int i; | 
 | 245 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 246 | 	for (i = height; i--;) | 
| Bob Peterson | 7eabb77 | 2008-01-28 11:24:35 -0600 | [diff] [blame] | 247 | 		mp->mp_list[i] = do_div(block, sdp->sd_inptrs); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 248 |  | 
 | 249 | } | 
 | 250 |  | 
| Benjamin Marzinski | 5af4e7a | 2008-06-24 12:53:38 -0500 | [diff] [blame] | 251 | static inline unsigned int metapath_branch_start(const struct metapath *mp) | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 252 | { | 
| Benjamin Marzinski | 5af4e7a | 2008-06-24 12:53:38 -0500 | [diff] [blame] | 253 | 	if (mp->mp_list[0] == 0) | 
 | 254 | 		return 2; | 
 | 255 | 	return 1; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 256 | } | 
 | 257 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 258 | /** | 
 | 259 |  * metapointer - Return pointer to start of metadata in a buffer | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 260 |  * @height: The metadata height (0 = dinode) | 
 | 261 |  * @mp: The metapath | 
 | 262 |  * | 
 | 263 |  * Return a pointer to the block number of the next height of the metadata | 
 | 264 |  * tree given a buffer containing the pointer to the current height of the | 
 | 265 |  * metadata tree. | 
 | 266 |  */ | 
 | 267 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 268 | static inline __be64 *metapointer(unsigned int height, const struct metapath *mp) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 269 | { | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 270 | 	struct buffer_head *bh = mp->mp_bh[height]; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 271 | 	unsigned int head_size = (height > 0) ? | 
 | 272 | 		sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 273 | 	return ((__be64 *)(bh->b_data + head_size)) + mp->mp_list[height]; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 274 | } | 
 | 275 |  | 
 | 276 | /** | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 277 |  * lookup_metapath - Walk the metadata tree to a specific point | 
 | 278 |  * @ip: The inode | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 279 |  * @mp: The metapath | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 280 |  * | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 281 |  * Assumes that the inode's buffer has already been looked up and | 
 | 282 |  * hooked onto mp->mp_bh[0] and that the metapath has been initialised | 
 | 283 |  * by find_metapath(). | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 284 |  * | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 285 |  * If this function encounters part of the tree which has not been | 
 | 286 |  * allocated, it returns the current height of the tree at the point | 
 | 287 |  * at which it found the unallocated block. Blocks which are found are | 
 | 288 |  * added to the mp->mp_bh[] list. | 
 | 289 |  * | 
 | 290 |  * Returns: error or height of metadata tree | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 291 |  */ | 
 | 292 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 293 | static int lookup_metapath(struct gfs2_inode *ip, struct metapath *mp) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 294 | { | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 295 | 	unsigned int end_of_metadata = ip->i_height - 1; | 
 | 296 | 	unsigned int x; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 297 | 	__be64 *ptr; | 
 | 298 | 	u64 dblock; | 
| Steven Whitehouse | e23159d | 2008-02-12 14:48:39 +0000 | [diff] [blame] | 299 | 	int ret; | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 300 |  | 
 | 301 | 	for (x = 0; x < end_of_metadata; x++) { | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 302 | 		ptr = metapointer(x, mp); | 
 | 303 | 		dblock = be64_to_cpu(*ptr); | 
 | 304 | 		if (!dblock) | 
 | 305 | 			return x + 1; | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 306 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 307 | 		ret = gfs2_meta_indirect_buffer(ip, x+1, dblock, 0, &mp->mp_bh[x+1]); | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 308 | 		if (ret) | 
 | 309 | 			return ret; | 
 | 310 | 	} | 
 | 311 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 312 | 	return ip->i_height; | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 313 | } | 
 | 314 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 315 | static inline void release_metapath(struct metapath *mp) | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 316 | { | 
 | 317 | 	int i; | 
 | 318 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 319 | 	for (i = 0; i < GFS2_MAX_META_HEIGHT; i++) { | 
 | 320 | 		if (mp->mp_bh[i] == NULL) | 
 | 321 | 			break; | 
 | 322 | 		brelse(mp->mp_bh[i]); | 
 | 323 | 	} | 
| Steven Whitehouse | 11707ea | 2008-01-28 15:10:29 +0000 | [diff] [blame] | 324 | } | 
 | 325 |  | 
| Steven Whitehouse | 30cbf18 | 2008-02-08 13:18:11 +0000 | [diff] [blame] | 326 | /** | 
 | 327 |  * gfs2_extent_length - Returns length of an extent of blocks | 
 | 328 |  * @start: Start of the buffer | 
 | 329 |  * @len: Length of the buffer in bytes | 
 | 330 |  * @ptr: Current position in the buffer | 
 | 331 |  * @limit: Max extent length to return (0 = unlimited) | 
 | 332 |  * @eob: Set to 1 if we hit "end of block" | 
 | 333 |  * | 
 | 334 |  * If the first block is zero (unallocated) it will return the number of | 
 | 335 |  * unallocated blocks in the extent, otherwise it will return the number | 
 | 336 |  * of contiguous blocks in the extent. | 
 | 337 |  * | 
 | 338 |  * Returns: The length of the extent (minimum of one block) | 
 | 339 |  */ | 
 | 340 |  | 
 | 341 | static inline unsigned int gfs2_extent_length(void *start, unsigned int len, __be64 *ptr, unsigned limit, int *eob) | 
 | 342 | { | 
 | 343 | 	const __be64 *end = (start + len); | 
 | 344 | 	const __be64 *first = ptr; | 
 | 345 | 	u64 d = be64_to_cpu(*ptr); | 
 | 346 |  | 
 | 347 | 	*eob = 0; | 
 | 348 | 	do { | 
 | 349 | 		ptr++; | 
 | 350 | 		if (ptr >= end) | 
 | 351 | 			break; | 
 | 352 | 		if (limit && --limit == 0) | 
 | 353 | 			break; | 
 | 354 | 		if (d) | 
 | 355 | 			d++; | 
 | 356 | 	} while(be64_to_cpu(*ptr) == d); | 
 | 357 | 	if (ptr >= end) | 
 | 358 | 		*eob = 1; | 
 | 359 | 	return (ptr - first); | 
 | 360 | } | 
 | 361 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 362 | static inline void bmap_lock(struct gfs2_inode *ip, int create) | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 363 | { | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 364 | 	if (create) | 
 | 365 | 		down_write(&ip->i_rw_mutex); | 
 | 366 | 	else | 
 | 367 | 		down_read(&ip->i_rw_mutex); | 
 | 368 | } | 
 | 369 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 370 | static inline void bmap_unlock(struct gfs2_inode *ip, int create) | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 371 | { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 372 | 	if (create) | 
 | 373 | 		up_write(&ip->i_rw_mutex); | 
 | 374 | 	else | 
 | 375 | 		up_read(&ip->i_rw_mutex); | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 376 | } | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 377 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 378 | static inline __be64 *gfs2_indirect_init(struct metapath *mp, | 
 | 379 | 					 struct gfs2_glock *gl, unsigned int i, | 
 | 380 | 					 unsigned offset, u64 bn) | 
 | 381 | { | 
 | 382 | 	__be64 *ptr = (__be64 *)(mp->mp_bh[i - 1]->b_data + | 
 | 383 | 		       ((i > 1) ? sizeof(struct gfs2_meta_header) : | 
 | 384 | 				 sizeof(struct gfs2_dinode))); | 
 | 385 | 	BUG_ON(i < 1); | 
 | 386 | 	BUG_ON(mp->mp_bh[i] != NULL); | 
 | 387 | 	mp->mp_bh[i] = gfs2_meta_new(gl, bn); | 
 | 388 | 	gfs2_trans_add_bh(gl, mp->mp_bh[i], 1); | 
 | 389 | 	gfs2_metatype_set(mp->mp_bh[i], GFS2_METATYPE_IN, GFS2_FORMAT_IN); | 
 | 390 | 	gfs2_buffer_clear_tail(mp->mp_bh[i], sizeof(struct gfs2_meta_header)); | 
 | 391 | 	ptr += offset; | 
 | 392 | 	*ptr = cpu_to_be64(bn); | 
 | 393 | 	return ptr; | 
 | 394 | } | 
 | 395 |  | 
 | 396 | enum alloc_state { | 
 | 397 | 	ALLOC_DATA = 0, | 
 | 398 | 	ALLOC_GROW_DEPTH = 1, | 
 | 399 | 	ALLOC_GROW_HEIGHT = 2, | 
 | 400 | 	/* ALLOC_UNSTUFF = 3,   TBD and rather complicated */ | 
 | 401 | }; | 
 | 402 |  | 
 | 403 | /** | 
 | 404 |  * gfs2_bmap_alloc - Build a metadata tree of the requested height | 
 | 405 |  * @inode: The GFS2 inode | 
 | 406 |  * @lblock: The logical starting block of the extent | 
 | 407 |  * @bh_map: This is used to return the mapping details | 
 | 408 |  * @mp: The metapath | 
 | 409 |  * @sheight: The starting height (i.e. whats already mapped) | 
 | 410 |  * @height: The height to build to | 
 | 411 |  * @maxlen: The max number of data blocks to alloc | 
 | 412 |  * | 
 | 413 |  * In this routine we may have to alloc: | 
 | 414 |  *   i) Indirect blocks to grow the metadata tree height | 
 | 415 |  *  ii) Indirect blocks to fill in lower part of the metadata tree | 
 | 416 |  * iii) Data blocks | 
 | 417 |  * | 
 | 418 |  * The function is in two parts. The first part works out the total | 
 | 419 |  * number of blocks which we need. The second part does the actual | 
 | 420 |  * allocation asking for an extent at a time (if enough contiguous free | 
 | 421 |  * blocks are available, there will only be one request per bmap call) | 
 | 422 |  * and uses the state machine to initialise the blocks in order. | 
 | 423 |  * | 
 | 424 |  * Returns: errno on error | 
 | 425 |  */ | 
 | 426 |  | 
 | 427 | static int gfs2_bmap_alloc(struct inode *inode, const sector_t lblock, | 
 | 428 | 			   struct buffer_head *bh_map, struct metapath *mp, | 
 | 429 | 			   const unsigned int sheight, | 
 | 430 | 			   const unsigned int height, | 
 | 431 | 			   const unsigned int maxlen) | 
 | 432 | { | 
 | 433 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
 | 434 | 	struct gfs2_sbd *sdp = GFS2_SB(inode); | 
 | 435 | 	struct buffer_head *dibh = mp->mp_bh[0]; | 
 | 436 | 	u64 bn, dblock = 0; | 
| Benjamin Marzinski | 5af4e7a | 2008-06-24 12:53:38 -0500 | [diff] [blame] | 437 | 	unsigned n, i, blks, alloced = 0, iblks = 0, branch_start = 0; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 438 | 	unsigned dblks = 0; | 
 | 439 | 	unsigned ptrs_per_blk; | 
 | 440 | 	const unsigned end_of_metadata = height - 1; | 
 | 441 | 	int eob = 0; | 
 | 442 | 	enum alloc_state state; | 
 | 443 | 	__be64 *ptr; | 
 | 444 | 	__be64 zero_bn = 0; | 
 | 445 |  | 
 | 446 | 	BUG_ON(sheight < 1); | 
 | 447 | 	BUG_ON(dibh == NULL); | 
 | 448 |  | 
 | 449 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
 | 450 |  | 
 | 451 | 	if (height == sheight) { | 
 | 452 | 		struct buffer_head *bh; | 
 | 453 | 		/* Bottom indirect block exists, find unalloced extent size */ | 
 | 454 | 		ptr = metapointer(end_of_metadata, mp); | 
 | 455 | 		bh = mp->mp_bh[end_of_metadata]; | 
 | 456 | 		dblks = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen, | 
 | 457 | 					   &eob); | 
 | 458 | 		BUG_ON(dblks < 1); | 
 | 459 | 		state = ALLOC_DATA; | 
 | 460 | 	} else { | 
 | 461 | 		/* Need to allocate indirect blocks */ | 
 | 462 | 		ptrs_per_blk = height > 1 ? sdp->sd_inptrs : sdp->sd_diptrs; | 
 | 463 | 		dblks = min(maxlen, ptrs_per_blk - mp->mp_list[end_of_metadata]); | 
 | 464 | 		if (height == ip->i_height) { | 
 | 465 | 			/* Writing into existing tree, extend tree down */ | 
 | 466 | 			iblks = height - sheight; | 
 | 467 | 			state = ALLOC_GROW_DEPTH; | 
 | 468 | 		} else { | 
 | 469 | 			/* Building up tree height */ | 
 | 470 | 			state = ALLOC_GROW_HEIGHT; | 
 | 471 | 			iblks = height - ip->i_height; | 
| Benjamin Marzinski | 5af4e7a | 2008-06-24 12:53:38 -0500 | [diff] [blame] | 472 | 			branch_start = metapath_branch_start(mp); | 
 | 473 | 			iblks += (height - branch_start); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 474 | 		} | 
 | 475 | 	} | 
 | 476 |  | 
 | 477 | 	/* start of the second part of the function (state machine) */ | 
 | 478 |  | 
 | 479 | 	blks = dblks + iblks; | 
 | 480 | 	i = sheight; | 
 | 481 | 	do { | 
| Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 482 | 		int error; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 483 | 		n = blks - alloced; | 
| Steven Whitehouse | 0901097 | 2009-05-20 10:48:47 +0100 | [diff] [blame] | 484 | 		error = gfs2_alloc_block(ip, &bn, &n); | 
 | 485 | 		if (error) | 
 | 486 | 			return error; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 487 | 		alloced += n; | 
 | 488 | 		if (state != ALLOC_DATA || gfs2_is_jdata(ip)) | 
 | 489 | 			gfs2_trans_add_unrevoke(sdp, bn, n); | 
 | 490 | 		switch (state) { | 
 | 491 | 		/* Growing height of tree */ | 
 | 492 | 		case ALLOC_GROW_HEIGHT: | 
 | 493 | 			if (i == 1) { | 
 | 494 | 				ptr = (__be64 *)(dibh->b_data + | 
 | 495 | 						 sizeof(struct gfs2_dinode)); | 
 | 496 | 				zero_bn = *ptr; | 
 | 497 | 			} | 
 | 498 | 			for (; i - 1 < height - ip->i_height && n > 0; i++, n--) | 
 | 499 | 				gfs2_indirect_init(mp, ip->i_gl, i, 0, bn++); | 
 | 500 | 			if (i - 1 == height - ip->i_height) { | 
 | 501 | 				i--; | 
 | 502 | 				gfs2_buffer_copy_tail(mp->mp_bh[i], | 
 | 503 | 						sizeof(struct gfs2_meta_header), | 
 | 504 | 						dibh, sizeof(struct gfs2_dinode)); | 
 | 505 | 				gfs2_buffer_clear_tail(dibh, | 
 | 506 | 						sizeof(struct gfs2_dinode) + | 
 | 507 | 						sizeof(__be64)); | 
 | 508 | 				ptr = (__be64 *)(mp->mp_bh[i]->b_data + | 
 | 509 | 					sizeof(struct gfs2_meta_header)); | 
 | 510 | 				*ptr = zero_bn; | 
 | 511 | 				state = ALLOC_GROW_DEPTH; | 
| Benjamin Marzinski | 5af4e7a | 2008-06-24 12:53:38 -0500 | [diff] [blame] | 512 | 				for(i = branch_start; i < height; i++) { | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 513 | 					if (mp->mp_bh[i] == NULL) | 
 | 514 | 						break; | 
 | 515 | 					brelse(mp->mp_bh[i]); | 
 | 516 | 					mp->mp_bh[i] = NULL; | 
 | 517 | 				} | 
| Benjamin Marzinski | 5af4e7a | 2008-06-24 12:53:38 -0500 | [diff] [blame] | 518 | 				i = branch_start; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 519 | 			} | 
 | 520 | 			if (n == 0) | 
 | 521 | 				break; | 
 | 522 | 		/* Branching from existing tree */ | 
 | 523 | 		case ALLOC_GROW_DEPTH: | 
 | 524 | 			if (i > 1 && i < height) | 
 | 525 | 				gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[i-1], 1); | 
 | 526 | 			for (; i < height && n > 0; i++, n--) | 
 | 527 | 				gfs2_indirect_init(mp, ip->i_gl, i, | 
 | 528 | 						   mp->mp_list[i-1], bn++); | 
 | 529 | 			if (i == height) | 
 | 530 | 				state = ALLOC_DATA; | 
 | 531 | 			if (n == 0) | 
 | 532 | 				break; | 
 | 533 | 		/* Tree complete, adding data blocks */ | 
 | 534 | 		case ALLOC_DATA: | 
 | 535 | 			BUG_ON(n > dblks); | 
 | 536 | 			BUG_ON(mp->mp_bh[end_of_metadata] == NULL); | 
 | 537 | 			gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[end_of_metadata], 1); | 
 | 538 | 			dblks = n; | 
 | 539 | 			ptr = metapointer(end_of_metadata, mp); | 
 | 540 | 			dblock = bn; | 
 | 541 | 			while (n-- > 0) | 
 | 542 | 				*ptr++ = cpu_to_be64(bn++); | 
 | 543 | 			break; | 
 | 544 | 		} | 
| Steven Whitehouse | 07ccb7b | 2010-02-12 10:10:55 +0000 | [diff] [blame] | 545 | 	} while ((state != ALLOC_DATA) || !dblock); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 546 |  | 
 | 547 | 	ip->i_height = height; | 
 | 548 | 	gfs2_add_inode_blocks(&ip->i_inode, alloced); | 
 | 549 | 	gfs2_dinode_out(ip, mp->mp_bh[0]->b_data); | 
 | 550 | 	map_bh(bh_map, inode->i_sb, dblock); | 
 | 551 | 	bh_map->b_size = dblks << inode->i_blkbits; | 
 | 552 | 	set_buffer_new(bh_map); | 
 | 553 | 	return 0; | 
 | 554 | } | 
 | 555 |  | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 556 | /** | 
 | 557 |  * gfs2_block_map - Map a block from an inode to a disk block | 
 | 558 |  * @inode: The inode | 
 | 559 |  * @lblock: The logical block number | 
 | 560 |  * @bh_map: The bh to be mapped | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 561 |  * @create: True if its ok to alloc blocks to satify the request | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 562 |  * | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 563 |  * Sets buffer_mapped() if successful, sets buffer_boundary() if a | 
 | 564 |  * read of metadata will be required before the next block can be | 
 | 565 |  * mapped. Sets buffer_new() if new blocks were allocated. | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 566 |  * | 
 | 567 |  * Returns: errno | 
 | 568 |  */ | 
 | 569 |  | 
| Bob Peterson | e9e1ef2 | 2007-12-10 14:13:27 -0600 | [diff] [blame] | 570 | int gfs2_block_map(struct inode *inode, sector_t lblock, | 
 | 571 | 		   struct buffer_head *bh_map, int create) | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 572 | { | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 573 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
 | 574 | 	struct gfs2_sbd *sdp = GFS2_SB(inode); | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 575 | 	unsigned int bsize = sdp->sd_sb.sb_bsize; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 576 | 	const unsigned int maxlen = bh_map->b_size >> inode->i_blkbits; | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 577 | 	const u64 *arr = sdp->sd_heightsize; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 578 | 	__be64 *ptr; | 
 | 579 | 	u64 size; | 
 | 580 | 	struct metapath mp; | 
 | 581 | 	int ret; | 
 | 582 | 	int eob; | 
 | 583 | 	unsigned int len; | 
 | 584 | 	struct buffer_head *bh; | 
 | 585 | 	u8 height; | 
 | 586 |  | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 587 | 	BUG_ON(maxlen == 0); | 
 | 588 |  | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 589 | 	memset(mp.mp_bh, 0, sizeof(mp.mp_bh)); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 590 | 	bmap_lock(ip, create); | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 591 | 	clear_buffer_mapped(bh_map); | 
 | 592 | 	clear_buffer_new(bh_map); | 
 | 593 | 	clear_buffer_boundary(bh_map); | 
| Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 594 | 	trace_gfs2_bmap(ip, bh_map, lblock, create, 1); | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 595 | 	if (gfs2_is_dir(ip)) { | 
 | 596 | 		bsize = sdp->sd_jbsize; | 
 | 597 | 		arr = sdp->sd_jheightsize; | 
 | 598 | 	} | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 599 |  | 
 | 600 | 	ret = gfs2_meta_inode_buffer(ip, &mp.mp_bh[0]); | 
 | 601 | 	if (ret) | 
 | 602 | 		goto out; | 
 | 603 |  | 
 | 604 | 	height = ip->i_height; | 
| Steven Whitehouse | 4cf1ed8 | 2006-11-15 15:21:06 -0500 | [diff] [blame] | 605 | 	size = (lblock + 1) * bsize; | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 606 | 	while (size > arr[height]) | 
 | 607 | 		height++; | 
 | 608 | 	find_metapath(sdp, lblock, &mp, height); | 
 | 609 | 	ret = 1; | 
 | 610 | 	if (height > ip->i_height || gfs2_is_stuffed(ip)) | 
 | 611 | 		goto do_alloc; | 
 | 612 | 	ret = lookup_metapath(ip, &mp); | 
 | 613 | 	if (ret < 0) | 
 | 614 | 		goto out; | 
 | 615 | 	if (ret != ip->i_height) | 
 | 616 | 		goto do_alloc; | 
 | 617 | 	ptr = metapointer(ip->i_height - 1, &mp); | 
 | 618 | 	if (*ptr == 0) | 
 | 619 | 		goto do_alloc; | 
 | 620 | 	map_bh(bh_map, inode->i_sb, be64_to_cpu(*ptr)); | 
 | 621 | 	bh = mp.mp_bh[ip->i_height - 1]; | 
 | 622 | 	len = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen, &eob); | 
 | 623 | 	bh_map->b_size = (len << inode->i_blkbits); | 
 | 624 | 	if (eob) | 
 | 625 | 		set_buffer_boundary(bh_map); | 
 | 626 | 	ret = 0; | 
 | 627 | out: | 
| Steven Whitehouse | dbac671 | 2008-01-29 09:12:55 +0000 | [diff] [blame] | 628 | 	release_metapath(&mp); | 
| Steven Whitehouse | 6399777 | 2009-06-12 08:49:20 +0100 | [diff] [blame] | 629 | 	trace_gfs2_bmap(ip, bh_map, lblock, create, ret); | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 630 | 	bmap_unlock(ip, create); | 
 | 631 | 	return ret; | 
 | 632 |  | 
 | 633 | do_alloc: | 
 | 634 | 	/* All allocations are done here, firstly check create flag */ | 
 | 635 | 	if (!create) { | 
 | 636 | 		BUG_ON(gfs2_is_stuffed(ip)); | 
 | 637 | 		ret = 0; | 
 | 638 | 		goto out; | 
 | 639 | 	} | 
 | 640 |  | 
 | 641 | 	/* At this point ret is the tree depth of already allocated blocks */ | 
 | 642 | 	ret = gfs2_bmap_alloc(inode, lblock, bh_map, &mp, ret, height, maxlen); | 
 | 643 | 	goto out; | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 644 | } | 
 | 645 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 646 | /* | 
 | 647 |  * Deprecated: do not use in new code | 
 | 648 |  */ | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 649 | int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen) | 
 | 650 | { | 
| Steven Whitehouse | 2359125 | 2006-10-13 17:25:45 -0400 | [diff] [blame] | 651 | 	struct buffer_head bh = { .b_state = 0, .b_blocknr = 0 }; | 
| Steven Whitehouse | 7a6bbac | 2006-09-18 17:18:23 -0400 | [diff] [blame] | 652 | 	int ret; | 
| Steven Whitehouse | fd88de56 | 2006-05-05 16:59:11 -0400 | [diff] [blame] | 653 | 	int create = *new; | 
 | 654 |  | 
 | 655 | 	BUG_ON(!extlen); | 
 | 656 | 	BUG_ON(!dblock); | 
 | 657 | 	BUG_ON(!new); | 
 | 658 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 659 | 	bh.b_size = 1 << (inode->i_blkbits + (create ? 0 : 5)); | 
| Bob Peterson | e9e1ef2 | 2007-12-10 14:13:27 -0600 | [diff] [blame] | 660 | 	ret = gfs2_block_map(inode, lblock, &bh, create); | 
| Steven Whitehouse | 7a6bbac | 2006-09-18 17:18:23 -0400 | [diff] [blame] | 661 | 	*extlen = bh.b_size >> inode->i_blkbits; | 
 | 662 | 	*dblock = bh.b_blocknr; | 
 | 663 | 	if (buffer_new(&bh)) | 
 | 664 | 		*new = 1; | 
 | 665 | 	else | 
 | 666 | 		*new = 0; | 
 | 667 | 	return ret; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 668 | } | 
 | 669 |  | 
 | 670 | /** | 
 | 671 |  * recursive_scan - recursively scan through the end of a file | 
 | 672 |  * @ip: the inode | 
 | 673 |  * @dibh: the dinode buffer | 
 | 674 |  * @mp: the path through the metadata to the point to start | 
 | 675 |  * @height: the height the recursion is at | 
 | 676 |  * @block: the indirect block to look at | 
 | 677 |  * @first: 1 if this is the first block | 
 | 678 |  * @bc: the call to make for each piece of metadata | 
 | 679 |  * @data: data opaque to this function to pass to @bc | 
 | 680 |  * | 
 | 681 |  * When this is first called @height and @block should be zero and | 
 | 682 |  * @first should be 1. | 
 | 683 |  * | 
 | 684 |  * Returns: errno | 
 | 685 |  */ | 
 | 686 |  | 
 | 687 | static int recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh, | 
 | 688 | 			  struct metapath *mp, unsigned int height, | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 689 | 			  u64 block, int first, block_call_t bc, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 690 | 			  void *data) | 
 | 691 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 692 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 693 | 	struct buffer_head *bh = NULL; | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 694 | 	__be64 *top, *bottom; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 695 | 	u64 bn; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 696 | 	int error; | 
 | 697 | 	int mh_size = sizeof(struct gfs2_meta_header); | 
 | 698 |  | 
 | 699 | 	if (!height) { | 
 | 700 | 		error = gfs2_meta_inode_buffer(ip, &bh); | 
 | 701 | 		if (error) | 
 | 702 | 			return error; | 
 | 703 | 		dibh = bh; | 
 | 704 |  | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 705 | 		top = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + mp->mp_list[0]; | 
 | 706 | 		bottom = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + sdp->sd_diptrs; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 707 | 	} else { | 
 | 708 | 		error = gfs2_meta_indirect_buffer(ip, height, block, 0, &bh); | 
 | 709 | 		if (error) | 
 | 710 | 			return error; | 
 | 711 |  | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 712 | 		top = (__be64 *)(bh->b_data + mh_size) + | 
| Jan Engelhardt | c539212 | 2006-09-05 14:30:40 +0200 | [diff] [blame] | 713 | 				  (first ? mp->mp_list[height] : 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 714 |  | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 715 | 		bottom = (__be64 *)(bh->b_data + mh_size) + sdp->sd_inptrs; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 716 | 	} | 
 | 717 |  | 
 | 718 | 	error = bc(ip, dibh, bh, top, bottom, height, data); | 
 | 719 | 	if (error) | 
 | 720 | 		goto out; | 
 | 721 |  | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 722 | 	if (height < ip->i_height - 1) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 723 | 		for (; top < bottom; top++, first = 0) { | 
 | 724 | 			if (!*top) | 
 | 725 | 				continue; | 
 | 726 |  | 
 | 727 | 			bn = be64_to_cpu(*top); | 
 | 728 |  | 
 | 729 | 			error = recursive_scan(ip, dibh, mp, height + 1, bn, | 
 | 730 | 					       first, bc, data); | 
 | 731 | 			if (error) | 
 | 732 | 				break; | 
 | 733 | 		} | 
 | 734 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 735 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 736 | 	brelse(bh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 737 | 	return error; | 
 | 738 | } | 
 | 739 |  | 
 | 740 | /** | 
 | 741 |  * do_strip - Look for a layer a particular layer of the file and strip it off | 
 | 742 |  * @ip: the inode | 
 | 743 |  * @dibh: the dinode buffer | 
 | 744 |  * @bh: A buffer of pointers | 
 | 745 |  * @top: The first pointer in the buffer | 
 | 746 |  * @bottom: One more than the last pointer | 
 | 747 |  * @height: the height this buffer is at | 
 | 748 |  * @data: a pointer to a struct strip_mine | 
 | 749 |  * | 
 | 750 |  * Returns: errno | 
 | 751 |  */ | 
 | 752 |  | 
 | 753 | static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh, | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 754 | 		    struct buffer_head *bh, __be64 *top, __be64 *bottom, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 755 | 		    unsigned int height, void *data) | 
 | 756 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 757 | 	struct strip_mine *sm = data; | 
 | 758 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 759 | 	struct gfs2_rgrp_list rlist; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 760 | 	u64 bn, bstart; | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 761 | 	u32 blen, btotal; | 
| Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 762 | 	__be64 *p; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 763 | 	unsigned int rg_blocks = 0; | 
 | 764 | 	int metadata; | 
 | 765 | 	unsigned int revokes = 0; | 
 | 766 | 	int x; | 
| Steven Whitehouse | e06dfc4 | 2010-11-30 15:46:02 +0000 | [diff] [blame] | 767 | 	int error = 0; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 768 |  | 
 | 769 | 	if (!*top) | 
 | 770 | 		sm->sm_first = 0; | 
 | 771 |  | 
 | 772 | 	if (height != sm->sm_height) | 
 | 773 | 		return 0; | 
 | 774 |  | 
 | 775 | 	if (sm->sm_first) { | 
 | 776 | 		top++; | 
 | 777 | 		sm->sm_first = 0; | 
 | 778 | 	} | 
 | 779 |  | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 780 | 	metadata = (height != ip->i_height - 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 781 | 	if (metadata) | 
 | 782 | 		revokes = (height) ? sdp->sd_inptrs : sdp->sd_diptrs; | 
 | 783 |  | 
| Benjamin Marzinski | 086d833 | 2010-11-23 23:52:55 -0600 | [diff] [blame] | 784 | 	if (ip != GFS2_I(sdp->sd_rindex)) | 
 | 785 | 		error = gfs2_rindex_hold(sdp, &ip->i_alloc->al_ri_gh); | 
 | 786 | 	else if (!sdp->sd_rgrps) | 
 | 787 | 		error = gfs2_ri_update(ip); | 
 | 788 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 789 | 	if (error) | 
 | 790 | 		return error; | 
 | 791 |  | 
 | 792 | 	memset(&rlist, 0, sizeof(struct gfs2_rgrp_list)); | 
 | 793 | 	bstart = 0; | 
 | 794 | 	blen = 0; | 
 | 795 |  | 
 | 796 | 	for (p = top; p < bottom; p++) { | 
 | 797 | 		if (!*p) | 
 | 798 | 			continue; | 
 | 799 |  | 
 | 800 | 		bn = be64_to_cpu(*p); | 
 | 801 |  | 
 | 802 | 		if (bstart + blen == bn) | 
 | 803 | 			blen++; | 
 | 804 | 		else { | 
 | 805 | 			if (bstart) | 
 | 806 | 				gfs2_rlist_add(sdp, &rlist, bstart); | 
 | 807 |  | 
 | 808 | 			bstart = bn; | 
 | 809 | 			blen = 1; | 
 | 810 | 		} | 
 | 811 | 	} | 
 | 812 |  | 
 | 813 | 	if (bstart) | 
 | 814 | 		gfs2_rlist_add(sdp, &rlist, bstart); | 
 | 815 | 	else | 
 | 816 | 		goto out; /* Nothing to do */ | 
 | 817 |  | 
| Bob Peterson | fe6c991 | 2008-01-28 11:13:02 -0600 | [diff] [blame] | 818 | 	gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 819 |  | 
 | 820 | 	for (x = 0; x < rlist.rl_rgrps; x++) { | 
 | 821 | 		struct gfs2_rgrpd *rgd; | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 822 | 		rgd = rlist.rl_ghs[x].gh_gl->gl_object; | 
| Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame] | 823 | 		rg_blocks += rgd->rd_length; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 824 | 	} | 
 | 825 |  | 
 | 826 | 	error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs); | 
 | 827 | 	if (error) | 
 | 828 | 		goto out_rlist; | 
 | 829 |  | 
 | 830 | 	error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE + | 
 | 831 | 				 RES_INDIRECT + RES_STATFS + RES_QUOTA, | 
 | 832 | 				 revokes); | 
 | 833 | 	if (error) | 
 | 834 | 		goto out_rg_gunlock; | 
 | 835 |  | 
 | 836 | 	down_write(&ip->i_rw_mutex); | 
 | 837 |  | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 838 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
 | 839 | 	gfs2_trans_add_bh(ip->i_gl, bh, 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 840 |  | 
 | 841 | 	bstart = 0; | 
 | 842 | 	blen = 0; | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 843 | 	btotal = 0; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 844 |  | 
 | 845 | 	for (p = top; p < bottom; p++) { | 
 | 846 | 		if (!*p) | 
 | 847 | 			continue; | 
 | 848 |  | 
 | 849 | 		bn = be64_to_cpu(*p); | 
 | 850 |  | 
 | 851 | 		if (bstart + blen == bn) | 
 | 852 | 			blen++; | 
 | 853 | 		else { | 
 | 854 | 			if (bstart) { | 
 | 855 | 				if (metadata) | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 856 | 					__gfs2_free_meta(ip, bstart, blen); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 857 | 				else | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 858 | 					__gfs2_free_data(ip, bstart, blen); | 
 | 859 |  | 
 | 860 | 				btotal += blen; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 861 | 			} | 
 | 862 |  | 
 | 863 | 			bstart = bn; | 
 | 864 | 			blen = 1; | 
 | 865 | 		} | 
 | 866 |  | 
 | 867 | 		*p = 0; | 
| Steven Whitehouse | 77658aa | 2008-02-12 14:17:27 +0000 | [diff] [blame] | 868 | 		gfs2_add_inode_blocks(&ip->i_inode, -1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 869 | 	} | 
 | 870 | 	if (bstart) { | 
 | 871 | 		if (metadata) | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 872 | 			__gfs2_free_meta(ip, bstart, blen); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 873 | 		else | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 874 | 			__gfs2_free_data(ip, bstart, blen); | 
 | 875 |  | 
 | 876 | 		btotal += blen; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 877 | 	} | 
 | 878 |  | 
| Bob Peterson | 4c16c36 | 2011-02-23 16:11:33 -0500 | [diff] [blame] | 879 | 	gfs2_statfs_change(sdp, 0, +btotal, 0); | 
 | 880 | 	gfs2_quota_change(ip, -(s64)btotal, ip->i_inode.i_uid, | 
 | 881 | 			  ip->i_inode.i_gid); | 
 | 882 |  | 
| Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 883 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 884 |  | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 885 | 	gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 886 |  | 
 | 887 | 	up_write(&ip->i_rw_mutex); | 
 | 888 |  | 
 | 889 | 	gfs2_trans_end(sdp); | 
 | 890 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 891 | out_rg_gunlock: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 892 | 	gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 893 | out_rlist: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 894 | 	gfs2_rlist_free(&rlist); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 895 | out: | 
| Benjamin Marzinski | 086d833 | 2010-11-23 23:52:55 -0600 | [diff] [blame] | 896 | 	if (ip != GFS2_I(sdp->sd_rindex)) | 
 | 897 | 		gfs2_glock_dq_uninit(&ip->i_alloc->al_ri_gh); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 898 | 	return error; | 
 | 899 | } | 
 | 900 |  | 
 | 901 | /** | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 902 |  * gfs2_block_truncate_page - Deal with zeroing out data for truncate | 
 | 903 |  * | 
 | 904 |  * This is partly borrowed from ext3. | 
 | 905 |  */ | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 906 | static int gfs2_block_truncate_page(struct address_space *mapping, loff_t from) | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 907 | { | 
 | 908 | 	struct inode *inode = mapping->host; | 
 | 909 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 910 | 	unsigned long index = from >> PAGE_CACHE_SHIFT; | 
 | 911 | 	unsigned offset = from & (PAGE_CACHE_SIZE-1); | 
 | 912 | 	unsigned blocksize, iblock, length, pos; | 
 | 913 | 	struct buffer_head *bh; | 
 | 914 | 	struct page *page; | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 915 | 	int err; | 
 | 916 |  | 
 | 917 | 	page = grab_cache_page(mapping, index); | 
 | 918 | 	if (!page) | 
 | 919 | 		return 0; | 
 | 920 |  | 
 | 921 | 	blocksize = inode->i_sb->s_blocksize; | 
 | 922 | 	length = blocksize - (offset & (blocksize - 1)); | 
 | 923 | 	iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits); | 
 | 924 |  | 
 | 925 | 	if (!page_has_buffers(page)) | 
 | 926 | 		create_empty_buffers(page, blocksize, 0); | 
 | 927 |  | 
 | 928 | 	/* Find the buffer that contains "offset" */ | 
 | 929 | 	bh = page_buffers(page); | 
 | 930 | 	pos = blocksize; | 
 | 931 | 	while (offset >= pos) { | 
 | 932 | 		bh = bh->b_this_page; | 
 | 933 | 		iblock++; | 
 | 934 | 		pos += blocksize; | 
 | 935 | 	} | 
 | 936 |  | 
 | 937 | 	err = 0; | 
 | 938 |  | 
 | 939 | 	if (!buffer_mapped(bh)) { | 
| Bob Peterson | e9e1ef2 | 2007-12-10 14:13:27 -0600 | [diff] [blame] | 940 | 		gfs2_block_map(inode, iblock, bh, 0); | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 941 | 		/* unmapped? It's a hole - nothing to do */ | 
 | 942 | 		if (!buffer_mapped(bh)) | 
 | 943 | 			goto unlock; | 
 | 944 | 	} | 
 | 945 |  | 
 | 946 | 	/* Ok, it's mapped. Make sure it's up-to-date */ | 
 | 947 | 	if (PageUptodate(page)) | 
 | 948 | 		set_buffer_uptodate(bh); | 
 | 949 |  | 
 | 950 | 	if (!buffer_uptodate(bh)) { | 
 | 951 | 		err = -EIO; | 
 | 952 | 		ll_rw_block(READ, 1, &bh); | 
 | 953 | 		wait_on_buffer(bh); | 
 | 954 | 		/* Uhhuh. Read error. Complain and punt. */ | 
 | 955 | 		if (!buffer_uptodate(bh)) | 
 | 956 | 			goto unlock; | 
| S. Wendy Cheng | 1875f2f | 2007-06-25 21:14:31 -0400 | [diff] [blame] | 957 | 		err = 0; | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 958 | 	} | 
 | 959 |  | 
| Steven Whitehouse | bf36a71 | 2007-10-17 08:35:19 +0100 | [diff] [blame] | 960 | 	if (!gfs2_is_writeback(ip)) | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 961 | 		gfs2_trans_add_bh(ip->i_gl, bh, 0); | 
 | 962 |  | 
| Christoph Lameter | eebd2aa | 2008-02-04 22:28:29 -0800 | [diff] [blame] | 963 | 	zero_user(page, offset, length); | 
| Steven Whitehouse | 40bc9a2 | 2009-06-10 09:09:40 +0100 | [diff] [blame] | 964 | 	mark_buffer_dirty(bh); | 
| Steven Whitehouse | ba7f729 | 2006-07-26 11:27:10 -0400 | [diff] [blame] | 965 | unlock: | 
 | 966 | 	unlock_page(page); | 
 | 967 | 	page_cache_release(page); | 
 | 968 | 	return err; | 
 | 969 | } | 
 | 970 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 971 | static int trunc_start(struct inode *inode, u64 oldsize, u64 newsize) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 972 | { | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 973 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
 | 974 | 	struct gfs2_sbd *sdp = GFS2_SB(inode); | 
 | 975 | 	struct address_space *mapping = inode->i_mapping; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 976 | 	struct buffer_head *dibh; | 
 | 977 | 	int journaled = gfs2_is_jdata(ip); | 
 | 978 | 	int error; | 
 | 979 |  | 
 | 980 | 	error = gfs2_trans_begin(sdp, | 
| Jan Engelhardt | c539212 | 2006-09-05 14:30:40 +0200 | [diff] [blame] | 981 | 				 RES_DINODE + (journaled ? RES_JDATA : 0), 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 982 | 	if (error) | 
 | 983 | 		return error; | 
 | 984 |  | 
 | 985 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 986 | 	if (error) | 
 | 987 | 		goto out; | 
 | 988 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 989 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 990 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 991 | 	if (gfs2_is_stuffed(ip)) { | 
 | 992 | 		gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode) + newsize); | 
 | 993 | 	} else { | 
 | 994 | 		if (newsize & (u64)(sdp->sd_sb.sb_bsize - 1)) { | 
 | 995 | 			error = gfs2_block_truncate_page(mapping, newsize); | 
 | 996 | 			if (error) | 
 | 997 | 				goto out_brelse; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 998 | 		} | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 999 | 		ip->i_diskflags |= GFS2_DIF_TRUNC_IN_PROG; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1000 | 	} | 
 | 1001 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1002 | 	i_size_write(inode, newsize); | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1003 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
 | 1004 | 	gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1005 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1006 | 	truncate_pagecache(inode, oldsize, newsize); | 
 | 1007 | out_brelse: | 
 | 1008 | 	brelse(dibh); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1009 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1010 | 	gfs2_trans_end(sdp); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1011 | 	return error; | 
 | 1012 | } | 
 | 1013 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1014 | static int trunc_dealloc(struct gfs2_inode *ip, u64 size) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1015 | { | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 1016 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 1017 | 	unsigned int height = ip->i_height; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1018 | 	u64 lblock; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1019 | 	struct metapath mp; | 
 | 1020 | 	int error; | 
 | 1021 |  | 
 | 1022 | 	if (!size) | 
 | 1023 | 		lblock = 0; | 
| Steven Whitehouse | 18ec7d5 | 2006-02-08 11:50:51 +0000 | [diff] [blame] | 1024 | 	else | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 1025 | 		lblock = (size - 1) >> sdp->sd_sb.sb_bsize_shift; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1026 |  | 
| Steven Whitehouse | 9b8c81d | 2008-02-22 16:09:31 +0000 | [diff] [blame] | 1027 | 	find_metapath(sdp, lblock, &mp, ip->i_height); | 
| Cyrill Gorcunov | 182fe5a | 2008-03-03 21:54:21 +0300 | [diff] [blame] | 1028 | 	if (!gfs2_alloc_get(ip)) | 
 | 1029 | 		return -ENOMEM; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1030 |  | 
 | 1031 | 	error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE); | 
 | 1032 | 	if (error) | 
 | 1033 | 		goto out; | 
 | 1034 |  | 
 | 1035 | 	while (height--) { | 
 | 1036 | 		struct strip_mine sm; | 
 | 1037 | 		sm.sm_first = !!size; | 
 | 1038 | 		sm.sm_height = height; | 
 | 1039 |  | 
 | 1040 | 		error = recursive_scan(ip, NULL, &mp, 0, 0, 1, do_strip, &sm); | 
 | 1041 | 		if (error) | 
 | 1042 | 			break; | 
 | 1043 | 	} | 
 | 1044 |  | 
 | 1045 | 	gfs2_quota_unhold(ip); | 
 | 1046 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1047 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1048 | 	gfs2_alloc_put(ip); | 
 | 1049 | 	return error; | 
 | 1050 | } | 
 | 1051 |  | 
 | 1052 | static int trunc_end(struct gfs2_inode *ip) | 
 | 1053 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1054 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1055 | 	struct buffer_head *dibh; | 
 | 1056 | 	int error; | 
 | 1057 |  | 
 | 1058 | 	error = gfs2_trans_begin(sdp, RES_DINODE, 0); | 
 | 1059 | 	if (error) | 
 | 1060 | 		return error; | 
 | 1061 |  | 
 | 1062 | 	down_write(&ip->i_rw_mutex); | 
 | 1063 |  | 
 | 1064 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 1065 | 	if (error) | 
 | 1066 | 		goto out; | 
 | 1067 |  | 
| Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 1068 | 	if (!i_size_read(&ip->i_inode)) { | 
| Steven Whitehouse | ecc30c7 | 2008-01-28 10:37:35 +0000 | [diff] [blame] | 1069 | 		ip->i_height = 0; | 
| Steven Whitehouse | ce276b0 | 2008-02-06 09:25:45 +0000 | [diff] [blame] | 1070 | 		ip->i_goal = ip->i_no_addr; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1071 | 		gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode)); | 
 | 1072 | 	} | 
| Steven Whitehouse | 4bd91ba | 2007-06-05 09:39:18 +0100 | [diff] [blame] | 1073 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
| Steven Whitehouse | 383f01f | 2008-11-04 10:05:22 +0000 | [diff] [blame] | 1074 | 	ip->i_diskflags &= ~GFS2_DIF_TRUNC_IN_PROG; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1075 |  | 
| Steven Whitehouse | d4e9c4c | 2006-01-18 11:19:28 +0000 | [diff] [blame] | 1076 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
| Steven Whitehouse | 539e5d6 | 2006-10-31 15:07:05 -0500 | [diff] [blame] | 1077 | 	gfs2_dinode_out(ip, dibh->b_data); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1078 | 	brelse(dibh); | 
 | 1079 |  | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 1080 | out: | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1081 | 	up_write(&ip->i_rw_mutex); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1082 | 	gfs2_trans_end(sdp); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1083 | 	return error; | 
 | 1084 | } | 
 | 1085 |  | 
 | 1086 | /** | 
 | 1087 |  * do_shrink - make a file smaller | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1088 |  * @inode: the inode | 
 | 1089 |  * @oldsize: the current inode size | 
 | 1090 |  * @newsize: the size to make the file | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1091 |  * | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1092 |  * Called with an exclusive lock on @inode. The @size must | 
 | 1093 |  * be equal to or smaller than the current inode size. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1094 |  * | 
 | 1095 |  * Returns: errno | 
 | 1096 |  */ | 
 | 1097 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1098 | static int do_shrink(struct inode *inode, u64 oldsize, u64 newsize) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1099 | { | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1100 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1101 | 	int error; | 
 | 1102 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1103 | 	error = trunc_start(inode, oldsize, newsize); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1104 | 	if (error < 0) | 
 | 1105 | 		return error; | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1106 | 	if (gfs2_is_stuffed(ip)) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1107 | 		return 0; | 
 | 1108 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1109 | 	error = trunc_dealloc(ip, newsize); | 
 | 1110 | 	if (error == 0) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1111 | 		error = trunc_end(ip); | 
 | 1112 |  | 
 | 1113 | 	return error; | 
 | 1114 | } | 
 | 1115 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1116 | void gfs2_trim_blocks(struct inode *inode) | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1117 | { | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1118 | 	u64 size = inode->i_size; | 
 | 1119 | 	int ret; | 
 | 1120 |  | 
 | 1121 | 	ret = do_shrink(inode, size, size); | 
 | 1122 | 	WARN_ON(ret != 0); | 
 | 1123 | } | 
 | 1124 |  | 
 | 1125 | /** | 
 | 1126 |  * do_grow - Touch and update inode size | 
 | 1127 |  * @inode: The inode | 
 | 1128 |  * @size: The new size | 
 | 1129 |  * | 
 | 1130 |  * This function updates the timestamps on the inode and | 
 | 1131 |  * may also increase the size of the inode. This function | 
 | 1132 |  * must not be called with @size any smaller than the current | 
 | 1133 |  * inode size. | 
 | 1134 |  * | 
 | 1135 |  * Although it is not strictly required to unstuff files here, | 
 | 1136 |  * earlier versions of GFS2 have a bug in the stuffed file reading | 
 | 1137 |  * code which will result in a buffer overrun if the size is larger | 
 | 1138 |  * than the max stuffed file size. In order to prevent this from | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1139 |  * occurring, such files are unstuffed, but in other cases we can | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1140 |  * just update the inode size directly. | 
 | 1141 |  * | 
 | 1142 |  * Returns: 0 on success, or -ve on error | 
 | 1143 |  */ | 
 | 1144 |  | 
 | 1145 | static int do_grow(struct inode *inode, u64 size) | 
 | 1146 | { | 
 | 1147 | 	struct gfs2_inode *ip = GFS2_I(inode); | 
 | 1148 | 	struct gfs2_sbd *sdp = GFS2_SB(inode); | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1149 | 	struct buffer_head *dibh; | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1150 | 	struct gfs2_alloc *al = NULL; | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1151 | 	int error; | 
 | 1152 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1153 | 	if (gfs2_is_stuffed(ip) && | 
 | 1154 | 	    (size > (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)))) { | 
 | 1155 | 		al = gfs2_alloc_get(ip); | 
 | 1156 | 		if (al == NULL) | 
 | 1157 | 			return -ENOMEM; | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1158 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1159 | 		error = gfs2_quota_lock_check(ip); | 
 | 1160 | 		if (error) | 
 | 1161 | 			goto do_grow_alloc_put; | 
 | 1162 |  | 
 | 1163 | 		al->al_requested = 1; | 
 | 1164 | 		error = gfs2_inplace_reserve(ip); | 
 | 1165 | 		if (error) | 
 | 1166 | 			goto do_grow_qunlock; | 
 | 1167 | 	} | 
 | 1168 |  | 
| Benjamin Marzinski | bf97b67 | 2010-09-27 16:00:04 -0500 | [diff] [blame] | 1169 | 	error = gfs2_trans_begin(sdp, RES_DINODE + RES_STATFS + RES_RG_BIT, 0); | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1170 | 	if (error) | 
 | 1171 | 		goto do_grow_release; | 
 | 1172 |  | 
 | 1173 | 	if (al) { | 
 | 1174 | 		error = gfs2_unstuff_dinode(ip, NULL); | 
 | 1175 | 		if (error) | 
 | 1176 | 			goto do_end_trans; | 
 | 1177 | 	} | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1178 |  | 
 | 1179 | 	error = gfs2_meta_inode_buffer(ip, &dibh); | 
 | 1180 | 	if (error) | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1181 | 		goto do_end_trans; | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1182 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1183 | 	i_size_write(inode, size); | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1184 | 	ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME; | 
 | 1185 | 	gfs2_trans_add_bh(ip->i_gl, dibh, 1); | 
 | 1186 | 	gfs2_dinode_out(ip, dibh->b_data); | 
 | 1187 | 	brelse(dibh); | 
 | 1188 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1189 | do_end_trans: | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1190 | 	gfs2_trans_end(sdp); | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1191 | do_grow_release: | 
 | 1192 | 	if (al) { | 
 | 1193 | 		gfs2_inplace_release(ip); | 
 | 1194 | do_grow_qunlock: | 
 | 1195 | 		gfs2_quota_unlock(ip); | 
 | 1196 | do_grow_alloc_put: | 
 | 1197 | 		gfs2_alloc_put(ip); | 
 | 1198 | 	} | 
| Wendy Cheng | a13b8c5 | 2007-08-20 09:29:53 -0400 | [diff] [blame] | 1199 | 	return error; | 
 | 1200 | } | 
 | 1201 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1202 | /** | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1203 |  * gfs2_setattr_size - make a file a given size | 
 | 1204 |  * @inode: the inode | 
 | 1205 |  * @newsize: the size to make the file | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1206 |  * | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1207 |  * The file size can grow, shrink, or stay the same size. This | 
 | 1208 |  * is called holding i_mutex and an exclusive glock on the inode | 
 | 1209 |  * in question. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1210 |  * | 
 | 1211 |  * Returns: errno | 
 | 1212 |  */ | 
 | 1213 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1214 | int gfs2_setattr_size(struct inode *inode, u64 newsize) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1215 | { | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1216 | 	int ret; | 
 | 1217 | 	u64 oldsize; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1218 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1219 | 	BUG_ON(!S_ISREG(inode->i_mode)); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1220 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1221 | 	ret = inode_newsize_ok(inode, newsize); | 
 | 1222 | 	if (ret) | 
 | 1223 | 		return ret; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1224 |  | 
| Steven Whitehouse | ff8f33c | 2010-08-11 09:37:53 +0100 | [diff] [blame] | 1225 | 	oldsize = inode->i_size; | 
 | 1226 | 	if (newsize >= oldsize) | 
 | 1227 | 		return do_grow(inode, newsize); | 
 | 1228 |  | 
 | 1229 | 	return do_shrink(inode, oldsize, newsize); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1230 | } | 
 | 1231 |  | 
 | 1232 | int gfs2_truncatei_resume(struct gfs2_inode *ip) | 
 | 1233 | { | 
 | 1234 | 	int error; | 
| Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 1235 | 	error = trunc_dealloc(ip, i_size_read(&ip->i_inode)); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1236 | 	if (!error) | 
 | 1237 | 		error = trunc_end(ip); | 
 | 1238 | 	return error; | 
 | 1239 | } | 
 | 1240 |  | 
 | 1241 | int gfs2_file_dealloc(struct gfs2_inode *ip) | 
 | 1242 | { | 
 | 1243 | 	return trunc_dealloc(ip, 0); | 
 | 1244 | } | 
 | 1245 |  | 
 | 1246 | /** | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1247 |  * gfs2_write_alloc_required - figure out if a write will require an allocation | 
 | 1248 |  * @ip: the file being written to | 
 | 1249 |  * @offset: the offset to write to | 
 | 1250 |  * @len: the number of bytes being written | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1251 |  * | 
| Bob Peterson | 461cb41 | 2010-06-24 19:21:20 -0400 | [diff] [blame] | 1252 |  * Returns: 1 if an alloc is required, 0 otherwise | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1253 |  */ | 
 | 1254 |  | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 1255 | int gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset, | 
| Bob Peterson | 461cb41 | 2010-06-24 19:21:20 -0400 | [diff] [blame] | 1256 | 			      unsigned int len) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1257 | { | 
| Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 1258 | 	struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode); | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1259 | 	struct buffer_head bh; | 
 | 1260 | 	unsigned int shift; | 
 | 1261 | 	u64 lblock, lblock_stop, size; | 
| Steven Whitehouse | 7ed122e | 2008-12-10 10:28:10 +0000 | [diff] [blame] | 1262 | 	u64 end_of_file; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1263 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1264 | 	if (!len) | 
 | 1265 | 		return 0; | 
 | 1266 |  | 
 | 1267 | 	if (gfs2_is_stuffed(ip)) { | 
 | 1268 | 		if (offset + len > | 
 | 1269 | 		    sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) | 
| Bob Peterson | 461cb41 | 2010-06-24 19:21:20 -0400 | [diff] [blame] | 1270 | 			return 1; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1271 | 		return 0; | 
 | 1272 | 	} | 
 | 1273 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1274 | 	shift = sdp->sd_sb.sb_bsize_shift; | 
| Steven Whitehouse | 7ed122e | 2008-12-10 10:28:10 +0000 | [diff] [blame] | 1275 | 	BUG_ON(gfs2_is_dir(ip)); | 
| Steven Whitehouse | a2e0f79 | 2010-08-11 09:53:11 +0100 | [diff] [blame] | 1276 | 	end_of_file = (i_size_read(&ip->i_inode) + sdp->sd_sb.sb_bsize - 1) >> shift; | 
| Steven Whitehouse | 7ed122e | 2008-12-10 10:28:10 +0000 | [diff] [blame] | 1277 | 	lblock = offset >> shift; | 
 | 1278 | 	lblock_stop = (offset + len + sdp->sd_sb.sb_bsize - 1) >> shift; | 
 | 1279 | 	if (lblock_stop > end_of_file) | 
| Bob Peterson | 461cb41 | 2010-06-24 19:21:20 -0400 | [diff] [blame] | 1280 | 		return 1; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1281 |  | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1282 | 	size = (lblock_stop - lblock) << shift; | 
 | 1283 | 	do { | 
 | 1284 | 		bh.b_state = 0; | 
 | 1285 | 		bh.b_size = size; | 
 | 1286 | 		gfs2_block_map(&ip->i_inode, lblock, &bh, 0); | 
 | 1287 | 		if (!buffer_mapped(&bh)) | 
| Bob Peterson | 461cb41 | 2010-06-24 19:21:20 -0400 | [diff] [blame] | 1288 | 			return 1; | 
| Steven Whitehouse | 941e6d7 | 2008-01-28 08:47:38 +0000 | [diff] [blame] | 1289 | 		size -= bh.b_size; | 
 | 1290 | 		lblock += (bh.b_size >> ip->i_inode.i_blkbits); | 
 | 1291 | 	} while(size > 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1292 |  | 
 | 1293 | 	return 0; | 
 | 1294 | } | 
 | 1295 |  |