blob: 834cd9442a1d08a96b1298a565b297643609fb9b [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
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 Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/spinlock.h>
11#include <linux/completion.h>
12#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050013#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050014#include <linux/crc32.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000015
16#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000018#include "bmap.h"
19#include "glock.h"
20#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000022#include "quota.h"
23#include "rgrp.h"
Bob Peterson4c16c362011-02-23 16:11:33 -050024#include "super.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000026#include "dir.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050027#include "util.h"
Steven Whitehouse63997772009-06-12 08:49:20 +010028#include "trace_gfs2.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000029
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 */
34struct metapath {
Steven Whitehousedbac6712008-01-29 09:12:55 +000035 struct buffer_head *mp_bh[GFS2_MAX_META_HEIGHT];
David Teiglandb3b94fa2006-01-16 16:50:04 +000036 __u16 mp_list[GFS2_MAX_META_HEIGHT];
37};
38
David Teiglandb3b94fa2006-01-16 16:50:04 +000039struct strip_mine {
40 int sm_first;
41 unsigned int sm_height;
42};
43
44/**
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040045 * gfs2_unstuffer_page - unstuff a stuffed inode into a block cached by a page
46 * @ip: the inode
47 * @dibh: the dinode buffer
48 * @block: the block number that was allocated
Steven Whitehouseff8f33c2010-08-11 09:37:53 +010049 * @page: The (optional) page. This is looked up if @page is NULL
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040050 *
51 * Returns: errno
52 */
53
54static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh,
Steven Whitehousecd915492006-09-04 12:49:07 -040055 u64 block, struct page *page)
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040056{
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040057 struct inode *inode = &ip->i_inode;
58 struct buffer_head *bh;
59 int release = 0;
60
61 if (!page || page->index) {
62 page = grab_cache_page(inode->i_mapping, 0);
63 if (!page)
64 return -ENOMEM;
65 release = 1;
66 }
67
68 if (!PageUptodate(page)) {
69 void *kaddr = kmap(page);
Steven Whitehouse602c89d2010-03-25 14:32:43 +000070 u64 dsize = i_size_read(inode);
71
72 if (dsize > (dibh->b_size - sizeof(struct gfs2_dinode)))
73 dsize = dibh->b_size - sizeof(struct gfs2_dinode);
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040074
Steven Whitehouse602c89d2010-03-25 14:32:43 +000075 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode), dsize);
76 memset(kaddr + dsize, 0, PAGE_CACHE_SIZE - dsize);
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040077 kunmap(page);
78
79 SetPageUptodate(page);
80 }
81
82 if (!page_has_buffers(page))
83 create_empty_buffers(page, 1 << inode->i_blkbits,
84 (1 << BH_Uptodate));
85
86 bh = page_buffers(page);
87
88 if (!buffer_mapped(bh))
89 map_bh(bh, inode->i_sb, block);
90
91 set_buffer_uptodate(bh);
Steven Whitehouseeaf96522007-08-27 09:49:37 +010092 if (!gfs2_is_jdata(ip))
93 mark_buffer_dirty(bh);
Steven Whitehousebf36a712007-10-17 08:35:19 +010094 if (!gfs2_is_writeback(ip))
Bob Peterson84754872007-09-02 10:55:29 +010095 gfs2_trans_add_bh(ip->i_gl, bh, 0);
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040096
97 if (release) {
98 unlock_page(page);
99 page_cache_release(page);
100 }
101
102 return 0;
103}
104
105/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106 * gfs2_unstuff_dinode - Unstuff a dinode when the data has grown too big
107 * @ip: The GFS2 inode to unstuff
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100108 * @page: The (optional) page. This is looked up if the @page is NULL
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 *
110 * This routine unstuffs a dinode and returns it to a "normal" state such
111 * that the height can be grown in the traditional way.
112 *
113 * Returns: errno
114 */
115
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400116int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117{
118 struct buffer_head *bh, *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400119 struct gfs2_dinode *di;
Steven Whitehousecd915492006-09-04 12:49:07 -0400120 u64 block = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000121 int isdir = gfs2_is_dir(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122 int error;
123
124 down_write(&ip->i_rw_mutex);
125
126 error = gfs2_meta_inode_buffer(ip, &dibh);
127 if (error)
128 goto out;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400129
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100130 if (i_size_read(&ip->i_inode)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000131 /* Get a free block, fill it with the stuffed data,
132 and write it out to disk */
133
Steven Whitehouseb45e41d2008-02-06 10:11:15 +0000134 unsigned int n = 1;
Steven Whitehouse09010972009-05-20 10:48:47 +0100135 error = gfs2_alloc_block(ip, &block, &n);
136 if (error)
137 goto out_brelse;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000138 if (isdir) {
Steven Whitehouse5731be52008-02-01 13:16:55 +0000139 gfs2_trans_add_unrevoke(GFS2_SB(&ip->i_inode), block, 1);
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400140 error = gfs2_dir_get_new_buffer(ip, block, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141 if (error)
142 goto out_brelse;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400143 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000144 dibh, sizeof(struct gfs2_dinode));
145 brelse(bh);
146 } else {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400147 error = gfs2_unstuffer_page(ip, dibh, block, page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000148 if (error)
149 goto out_brelse;
150 }
151 }
152
153 /* Set up the pointer to the new block */
154
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000155 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400156 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
158
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100159 if (i_size_read(&ip->i_inode)) {
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400160 *(__be64 *)(di + 1) = cpu_to_be64(block);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000161 gfs2_add_inode_blocks(&ip->i_inode, 1);
162 di->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000163 }
164
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000165 ip->i_height = 1;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400166 di->di_height = cpu_to_be16(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167
Steven Whitehousea91ea692006-09-04 12:04:26 -0400168out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169 brelse(dibh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400170out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 up_write(&ip->i_rw_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000172 return error;
173}
174
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175
176/**
177 * find_metapath - Find path through the metadata tree
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000178 * @sdp: The superblock
David Teiglandb3b94fa2006-01-16 16:50:04 +0000179 * @mp: The metapath to return the result in
180 * @block: The disk block to look up
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000181 * @height: The pre-calculated height of the metadata tree
David Teiglandb3b94fa2006-01-16 16:50:04 +0000182 *
183 * This routine returns a struct metapath structure that defines a path
184 * through the metadata of inode "ip" to get to block "block".
185 *
186 * Example:
187 * Given: "ip" is a height 3 file, "offset" is 101342453, and this is a
188 * filesystem with a blocksize of 4096.
189 *
190 * find_metapath() would return a struct metapath structure set to:
191 * mp_offset = 101342453, mp_height = 3, mp_list[0] = 0, mp_list[1] = 48,
192 * and mp_list[2] = 165.
193 *
194 * That means that in order to get to the block containing the byte at
195 * offset 101342453, we would load the indirect block pointed to by pointer
196 * 0 in the dinode. We would then load the indirect block pointed to by
197 * pointer 48 in that indirect block. We would then load the data block
198 * pointed to by pointer 165 in that indirect block.
199 *
200 * ----------------------------------------
201 * | Dinode | |
202 * | | 4|
203 * | |0 1 2 3 4 5 9|
204 * | | 6|
205 * ----------------------------------------
206 * |
207 * |
208 * V
209 * ----------------------------------------
210 * | Indirect Block |
211 * | 5|
212 * | 4 4 4 4 4 5 5 1|
213 * |0 5 6 7 8 9 0 1 2|
214 * ----------------------------------------
215 * |
216 * |
217 * V
218 * ----------------------------------------
219 * | Indirect Block |
220 * | 1 1 1 1 1 5|
221 * | 6 6 6 6 6 1|
222 * |0 3 4 5 6 7 2|
223 * ----------------------------------------
224 * |
225 * |
226 * V
227 * ----------------------------------------
228 * | Data block containing offset |
229 * | 101342453 |
230 * | |
231 * | |
232 * ----------------------------------------
233 *
234 */
235
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000236static void find_metapath(const struct gfs2_sbd *sdp, u64 block,
237 struct metapath *mp, unsigned int height)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000238{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 unsigned int i;
240
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000241 for (i = height; i--;)
Bob Peterson7eabb772008-01-28 11:24:35 -0600242 mp->mp_list[i] = do_div(block, sdp->sd_inptrs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000243
244}
245
Benjamin Marzinski5af4e7a2008-06-24 12:53:38 -0500246static inline unsigned int metapath_branch_start(const struct metapath *mp)
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000247{
Benjamin Marzinski5af4e7a2008-06-24 12:53:38 -0500248 if (mp->mp_list[0] == 0)
249 return 2;
250 return 1;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000251}
252
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253/**
254 * metapointer - Return pointer to start of metadata in a buffer
David Teiglandb3b94fa2006-01-16 16:50:04 +0000255 * @height: The metadata height (0 = dinode)
256 * @mp: The metapath
257 *
258 * Return a pointer to the block number of the next height of the metadata
259 * tree given a buffer containing the pointer to the current height of the
260 * metadata tree.
261 */
262
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000263static inline __be64 *metapointer(unsigned int height, const struct metapath *mp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000264{
Steven Whitehousedbac6712008-01-29 09:12:55 +0000265 struct buffer_head *bh = mp->mp_bh[height];
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 unsigned int head_size = (height > 0) ?
267 sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode);
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000268 return ((__be64 *)(bh->b_data + head_size)) + mp->mp_list[height];
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269}
270
271/**
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000272 * lookup_metapath - Walk the metadata tree to a specific point
273 * @ip: The inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000274 * @mp: The metapath
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 *
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000276 * Assumes that the inode's buffer has already been looked up and
277 * hooked onto mp->mp_bh[0] and that the metapath has been initialised
278 * by find_metapath().
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 *
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000280 * If this function encounters part of the tree which has not been
281 * allocated, it returns the current height of the tree at the point
282 * at which it found the unallocated block. Blocks which are found are
283 * added to the mp->mp_bh[] list.
284 *
285 * Returns: error or height of metadata tree
David Teiglandb3b94fa2006-01-16 16:50:04 +0000286 */
287
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000288static int lookup_metapath(struct gfs2_inode *ip, struct metapath *mp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000289{
Steven Whitehouse11707ea2008-01-28 15:10:29 +0000290 unsigned int end_of_metadata = ip->i_height - 1;
291 unsigned int x;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000292 __be64 *ptr;
293 u64 dblock;
Steven Whitehousee23159d2008-02-12 14:48:39 +0000294 int ret;
Steven Whitehouse11707ea2008-01-28 15:10:29 +0000295
296 for (x = 0; x < end_of_metadata; x++) {
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000297 ptr = metapointer(x, mp);
298 dblock = be64_to_cpu(*ptr);
299 if (!dblock)
300 return x + 1;
Steven Whitehouse11707ea2008-01-28 15:10:29 +0000301
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000302 ret = gfs2_meta_indirect_buffer(ip, x+1, dblock, 0, &mp->mp_bh[x+1]);
Steven Whitehouse11707ea2008-01-28 15:10:29 +0000303 if (ret)
304 return ret;
305 }
306
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000307 return ip->i_height;
Steven Whitehousedbac6712008-01-29 09:12:55 +0000308}
309
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000310static inline void release_metapath(struct metapath *mp)
Steven Whitehousedbac6712008-01-29 09:12:55 +0000311{
312 int i;
313
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000314 for (i = 0; i < GFS2_MAX_META_HEIGHT; i++) {
315 if (mp->mp_bh[i] == NULL)
316 break;
317 brelse(mp->mp_bh[i]);
318 }
Steven Whitehouse11707ea2008-01-28 15:10:29 +0000319}
320
Steven Whitehouse30cbf182008-02-08 13:18:11 +0000321/**
322 * gfs2_extent_length - Returns length of an extent of blocks
323 * @start: Start of the buffer
324 * @len: Length of the buffer in bytes
325 * @ptr: Current position in the buffer
326 * @limit: Max extent length to return (0 = unlimited)
327 * @eob: Set to 1 if we hit "end of block"
328 *
329 * If the first block is zero (unallocated) it will return the number of
330 * unallocated blocks in the extent, otherwise it will return the number
331 * of contiguous blocks in the extent.
332 *
333 * Returns: The length of the extent (minimum of one block)
334 */
335
336static inline unsigned int gfs2_extent_length(void *start, unsigned int len, __be64 *ptr, unsigned limit, int *eob)
337{
338 const __be64 *end = (start + len);
339 const __be64 *first = ptr;
340 u64 d = be64_to_cpu(*ptr);
341
342 *eob = 0;
343 do {
344 ptr++;
345 if (ptr >= end)
346 break;
347 if (limit && --limit == 0)
348 break;
349 if (d)
350 d++;
351 } while(be64_to_cpu(*ptr) == d);
352 if (ptr >= end)
353 *eob = 1;
354 return (ptr - first);
355}
356
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000357static inline void bmap_lock(struct gfs2_inode *ip, int create)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400358{
Steven Whitehousefd88de562006-05-05 16:59:11 -0400359 if (create)
360 down_write(&ip->i_rw_mutex);
361 else
362 down_read(&ip->i_rw_mutex);
363}
364
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000365static inline void bmap_unlock(struct gfs2_inode *ip, int create)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400366{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367 if (create)
368 up_write(&ip->i_rw_mutex);
369 else
370 up_read(&ip->i_rw_mutex);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400371}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000373static inline __be64 *gfs2_indirect_init(struct metapath *mp,
374 struct gfs2_glock *gl, unsigned int i,
375 unsigned offset, u64 bn)
376{
377 __be64 *ptr = (__be64 *)(mp->mp_bh[i - 1]->b_data +
378 ((i > 1) ? sizeof(struct gfs2_meta_header) :
379 sizeof(struct gfs2_dinode)));
380 BUG_ON(i < 1);
381 BUG_ON(mp->mp_bh[i] != NULL);
382 mp->mp_bh[i] = gfs2_meta_new(gl, bn);
383 gfs2_trans_add_bh(gl, mp->mp_bh[i], 1);
384 gfs2_metatype_set(mp->mp_bh[i], GFS2_METATYPE_IN, GFS2_FORMAT_IN);
385 gfs2_buffer_clear_tail(mp->mp_bh[i], sizeof(struct gfs2_meta_header));
386 ptr += offset;
387 *ptr = cpu_to_be64(bn);
388 return ptr;
389}
390
391enum alloc_state {
392 ALLOC_DATA = 0,
393 ALLOC_GROW_DEPTH = 1,
394 ALLOC_GROW_HEIGHT = 2,
395 /* ALLOC_UNSTUFF = 3, TBD and rather complicated */
396};
397
398/**
399 * gfs2_bmap_alloc - Build a metadata tree of the requested height
400 * @inode: The GFS2 inode
401 * @lblock: The logical starting block of the extent
402 * @bh_map: This is used to return the mapping details
403 * @mp: The metapath
404 * @sheight: The starting height (i.e. whats already mapped)
405 * @height: The height to build to
406 * @maxlen: The max number of data blocks to alloc
407 *
408 * In this routine we may have to alloc:
409 * i) Indirect blocks to grow the metadata tree height
410 * ii) Indirect blocks to fill in lower part of the metadata tree
411 * iii) Data blocks
412 *
413 * The function is in two parts. The first part works out the total
414 * number of blocks which we need. The second part does the actual
415 * allocation asking for an extent at a time (if enough contiguous free
416 * blocks are available, there will only be one request per bmap call)
417 * and uses the state machine to initialise the blocks in order.
418 *
419 * Returns: errno on error
420 */
421
422static int gfs2_bmap_alloc(struct inode *inode, const sector_t lblock,
423 struct buffer_head *bh_map, struct metapath *mp,
424 const unsigned int sheight,
425 const unsigned int height,
426 const unsigned int maxlen)
427{
428 struct gfs2_inode *ip = GFS2_I(inode);
429 struct gfs2_sbd *sdp = GFS2_SB(inode);
430 struct buffer_head *dibh = mp->mp_bh[0];
431 u64 bn, dblock = 0;
Benjamin Marzinski5af4e7a2008-06-24 12:53:38 -0500432 unsigned n, i, blks, alloced = 0, iblks = 0, branch_start = 0;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000433 unsigned dblks = 0;
434 unsigned ptrs_per_blk;
435 const unsigned end_of_metadata = height - 1;
436 int eob = 0;
437 enum alloc_state state;
438 __be64 *ptr;
439 __be64 zero_bn = 0;
440
441 BUG_ON(sheight < 1);
442 BUG_ON(dibh == NULL);
443
444 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
445
446 if (height == sheight) {
447 struct buffer_head *bh;
448 /* Bottom indirect block exists, find unalloced extent size */
449 ptr = metapointer(end_of_metadata, mp);
450 bh = mp->mp_bh[end_of_metadata];
451 dblks = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen,
452 &eob);
453 BUG_ON(dblks < 1);
454 state = ALLOC_DATA;
455 } else {
456 /* Need to allocate indirect blocks */
457 ptrs_per_blk = height > 1 ? sdp->sd_inptrs : sdp->sd_diptrs;
458 dblks = min(maxlen, ptrs_per_blk - mp->mp_list[end_of_metadata]);
459 if (height == ip->i_height) {
460 /* Writing into existing tree, extend tree down */
461 iblks = height - sheight;
462 state = ALLOC_GROW_DEPTH;
463 } else {
464 /* Building up tree height */
465 state = ALLOC_GROW_HEIGHT;
466 iblks = height - ip->i_height;
Benjamin Marzinski5af4e7a2008-06-24 12:53:38 -0500467 branch_start = metapath_branch_start(mp);
468 iblks += (height - branch_start);
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000469 }
470 }
471
472 /* start of the second part of the function (state machine) */
473
474 blks = dblks + iblks;
475 i = sheight;
476 do {
Steven Whitehouse09010972009-05-20 10:48:47 +0100477 int error;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000478 n = blks - alloced;
Steven Whitehouse09010972009-05-20 10:48:47 +0100479 error = gfs2_alloc_block(ip, &bn, &n);
480 if (error)
481 return error;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000482 alloced += n;
483 if (state != ALLOC_DATA || gfs2_is_jdata(ip))
484 gfs2_trans_add_unrevoke(sdp, bn, n);
485 switch (state) {
486 /* Growing height of tree */
487 case ALLOC_GROW_HEIGHT:
488 if (i == 1) {
489 ptr = (__be64 *)(dibh->b_data +
490 sizeof(struct gfs2_dinode));
491 zero_bn = *ptr;
492 }
493 for (; i - 1 < height - ip->i_height && n > 0; i++, n--)
494 gfs2_indirect_init(mp, ip->i_gl, i, 0, bn++);
495 if (i - 1 == height - ip->i_height) {
496 i--;
497 gfs2_buffer_copy_tail(mp->mp_bh[i],
498 sizeof(struct gfs2_meta_header),
499 dibh, sizeof(struct gfs2_dinode));
500 gfs2_buffer_clear_tail(dibh,
501 sizeof(struct gfs2_dinode) +
502 sizeof(__be64));
503 ptr = (__be64 *)(mp->mp_bh[i]->b_data +
504 sizeof(struct gfs2_meta_header));
505 *ptr = zero_bn;
506 state = ALLOC_GROW_DEPTH;
Benjamin Marzinski5af4e7a2008-06-24 12:53:38 -0500507 for(i = branch_start; i < height; i++) {
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000508 if (mp->mp_bh[i] == NULL)
509 break;
510 brelse(mp->mp_bh[i]);
511 mp->mp_bh[i] = NULL;
512 }
Benjamin Marzinski5af4e7a2008-06-24 12:53:38 -0500513 i = branch_start;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000514 }
515 if (n == 0)
516 break;
517 /* Branching from existing tree */
518 case ALLOC_GROW_DEPTH:
519 if (i > 1 && i < height)
520 gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[i-1], 1);
521 for (; i < height && n > 0; i++, n--)
522 gfs2_indirect_init(mp, ip->i_gl, i,
523 mp->mp_list[i-1], bn++);
524 if (i == height)
525 state = ALLOC_DATA;
526 if (n == 0)
527 break;
528 /* Tree complete, adding data blocks */
529 case ALLOC_DATA:
530 BUG_ON(n > dblks);
531 BUG_ON(mp->mp_bh[end_of_metadata] == NULL);
532 gfs2_trans_add_bh(ip->i_gl, mp->mp_bh[end_of_metadata], 1);
533 dblks = n;
534 ptr = metapointer(end_of_metadata, mp);
535 dblock = bn;
536 while (n-- > 0)
537 *ptr++ = cpu_to_be64(bn++);
538 break;
539 }
Steven Whitehouse07ccb7b2010-02-12 10:10:55 +0000540 } while ((state != ALLOC_DATA) || !dblock);
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000541
542 ip->i_height = height;
543 gfs2_add_inode_blocks(&ip->i_inode, alloced);
544 gfs2_dinode_out(ip, mp->mp_bh[0]->b_data);
545 map_bh(bh_map, inode->i_sb, dblock);
546 bh_map->b_size = dblks << inode->i_blkbits;
547 set_buffer_new(bh_map);
548 return 0;
549}
550
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500551/**
552 * gfs2_block_map - Map a block from an inode to a disk block
553 * @inode: The inode
554 * @lblock: The logical block number
555 * @bh_map: The bh to be mapped
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000556 * @create: True if its ok to alloc blocks to satify the request
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500557 *
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000558 * Sets buffer_mapped() if successful, sets buffer_boundary() if a
559 * read of metadata will be required before the next block can be
560 * mapped. Sets buffer_new() if new blocks were allocated.
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500561 *
562 * Returns: errno
563 */
564
Bob Petersone9e1ef22007-12-10 14:13:27 -0600565int gfs2_block_map(struct inode *inode, sector_t lblock,
566 struct buffer_head *bh_map, int create)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400567{
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500568 struct gfs2_inode *ip = GFS2_I(inode);
569 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000570 unsigned int bsize = sdp->sd_sb.sb_bsize;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000571 const unsigned int maxlen = bh_map->b_size >> inode->i_blkbits;
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000572 const u64 *arr = sdp->sd_heightsize;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000573 __be64 *ptr;
574 u64 size;
575 struct metapath mp;
576 int ret;
577 int eob;
578 unsigned int len;
579 struct buffer_head *bh;
580 u8 height;
581
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500582 BUG_ON(maxlen == 0);
583
Steven Whitehousedbac6712008-01-29 09:12:55 +0000584 memset(mp.mp_bh, 0, sizeof(mp.mp_bh));
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000585 bmap_lock(ip, create);
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500586 clear_buffer_mapped(bh_map);
587 clear_buffer_new(bh_map);
588 clear_buffer_boundary(bh_map);
Steven Whitehouse63997772009-06-12 08:49:20 +0100589 trace_gfs2_bmap(ip, bh_map, lblock, create, 1);
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000590 if (gfs2_is_dir(ip)) {
591 bsize = sdp->sd_jbsize;
592 arr = sdp->sd_jheightsize;
593 }
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000594
595 ret = gfs2_meta_inode_buffer(ip, &mp.mp_bh[0]);
596 if (ret)
597 goto out;
598
599 height = ip->i_height;
Steven Whitehouse4cf1ed82006-11-15 15:21:06 -0500600 size = (lblock + 1) * bsize;
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000601 while (size > arr[height])
602 height++;
603 find_metapath(sdp, lblock, &mp, height);
604 ret = 1;
605 if (height > ip->i_height || gfs2_is_stuffed(ip))
606 goto do_alloc;
607 ret = lookup_metapath(ip, &mp);
608 if (ret < 0)
609 goto out;
610 if (ret != ip->i_height)
611 goto do_alloc;
612 ptr = metapointer(ip->i_height - 1, &mp);
613 if (*ptr == 0)
614 goto do_alloc;
615 map_bh(bh_map, inode->i_sb, be64_to_cpu(*ptr));
616 bh = mp.mp_bh[ip->i_height - 1];
617 len = gfs2_extent_length(bh->b_data, bh->b_size, ptr, maxlen, &eob);
618 bh_map->b_size = (len << inode->i_blkbits);
619 if (eob)
620 set_buffer_boundary(bh_map);
621 ret = 0;
622out:
Steven Whitehousedbac6712008-01-29 09:12:55 +0000623 release_metapath(&mp);
Steven Whitehouse63997772009-06-12 08:49:20 +0100624 trace_gfs2_bmap(ip, bh_map, lblock, create, ret);
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000625 bmap_unlock(ip, create);
626 return ret;
627
628do_alloc:
629 /* All allocations are done here, firstly check create flag */
630 if (!create) {
631 BUG_ON(gfs2_is_stuffed(ip));
632 ret = 0;
633 goto out;
634 }
635
636 /* At this point ret is the tree depth of already allocated blocks */
637 ret = gfs2_bmap_alloc(inode, lblock, bh_map, &mp, ret, height, maxlen);
638 goto out;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400639}
640
Steven Whitehouse941e6d72008-01-28 08:47:38 +0000641/*
642 * Deprecated: do not use in new code
643 */
Steven Whitehousefd88de562006-05-05 16:59:11 -0400644int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen)
645{
Steven Whitehouse23591252006-10-13 17:25:45 -0400646 struct buffer_head bh = { .b_state = 0, .b_blocknr = 0 };
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400647 int ret;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400648 int create = *new;
649
650 BUG_ON(!extlen);
651 BUG_ON(!dblock);
652 BUG_ON(!new);
653
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +0000654 bh.b_size = 1 << (inode->i_blkbits + (create ? 0 : 5));
Bob Petersone9e1ef22007-12-10 14:13:27 -0600655 ret = gfs2_block_map(inode, lblock, &bh, create);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400656 *extlen = bh.b_size >> inode->i_blkbits;
657 *dblock = bh.b_blocknr;
658 if (buffer_new(&bh))
659 *new = 1;
660 else
661 *new = 0;
662 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000663}
664
665/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000666 * do_strip - Look for a layer a particular layer of the file and strip it off
667 * @ip: the inode
668 * @dibh: the dinode buffer
669 * @bh: A buffer of pointers
670 * @top: The first pointer in the buffer
671 * @bottom: One more than the last pointer
672 * @height: the height this buffer is at
673 * @data: a pointer to a struct strip_mine
674 *
675 * Returns: errno
676 */
677
678static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh,
Al Virob44b84d2006-10-14 10:46:30 -0400679 struct buffer_head *bh, __be64 *top, __be64 *bottom,
Steven Whitehoused56fa8a2011-09-02 12:43:41 +0100680 unsigned int height, struct strip_mine *sm)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000681{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400682 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683 struct gfs2_rgrp_list rlist;
Steven Whitehousecd915492006-09-04 12:49:07 -0400684 u64 bn, bstart;
Bob Peterson4c16c362011-02-23 16:11:33 -0500685 u32 blen, btotal;
Al Virob44b84d2006-10-14 10:46:30 -0400686 __be64 *p;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687 unsigned int rg_blocks = 0;
688 int metadata;
689 unsigned int revokes = 0;
690 int x;
Steven Whitehousee06dfc42010-11-30 15:46:02 +0000691 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000692
693 if (!*top)
694 sm->sm_first = 0;
695
696 if (height != sm->sm_height)
697 return 0;
698
699 if (sm->sm_first) {
700 top++;
701 sm->sm_first = 0;
702 }
703
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000704 metadata = (height != ip->i_height - 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000705 if (metadata)
706 revokes = (height) ? sdp->sd_inptrs : sdp->sd_diptrs;
Steven Whitehouse6d3117b2011-05-21 14:05:58 +0100707 else if (ip->i_depth)
708 revokes = sdp->sd_inptrs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000709
David Teiglandb3b94fa2006-01-16 16:50:04 +0000710 if (error)
711 return error;
712
713 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
714 bstart = 0;
715 blen = 0;
716
717 for (p = top; p < bottom; p++) {
718 if (!*p)
719 continue;
720
721 bn = be64_to_cpu(*p);
722
723 if (bstart + blen == bn)
724 blen++;
725 else {
726 if (bstart)
Steven Whitehouse70b0c362011-09-02 16:08:09 +0100727 gfs2_rlist_add(ip, &rlist, bstart);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000728
729 bstart = bn;
730 blen = 1;
731 }
732 }
733
734 if (bstart)
Steven Whitehouse70b0c362011-09-02 16:08:09 +0100735 gfs2_rlist_add(ip, &rlist, bstart);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000736 else
737 goto out; /* Nothing to do */
738
Bob Petersonfe6c9912008-01-28 11:13:02 -0600739 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000740
741 for (x = 0; x < rlist.rl_rgrps; x++) {
742 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500743 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100744 rg_blocks += rgd->rd_length;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000745 }
746
747 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
748 if (error)
749 goto out_rlist;
750
751 error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE +
752 RES_INDIRECT + RES_STATFS + RES_QUOTA,
753 revokes);
754 if (error)
755 goto out_rg_gunlock;
756
757 down_write(&ip->i_rw_mutex);
758
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000759 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
760 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000761
762 bstart = 0;
763 blen = 0;
Bob Peterson4c16c362011-02-23 16:11:33 -0500764 btotal = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765
766 for (p = top; p < bottom; p++) {
767 if (!*p)
768 continue;
769
770 bn = be64_to_cpu(*p);
771
772 if (bstart + blen == bn)
773 blen++;
774 else {
775 if (bstart) {
Eric Sandeen46fcb2e2011-06-23 10:39:34 -0500776 __gfs2_free_blocks(ip, bstart, blen, metadata);
Bob Peterson4c16c362011-02-23 16:11:33 -0500777 btotal += blen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 }
779
780 bstart = bn;
781 blen = 1;
782 }
783
784 *p = 0;
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000785 gfs2_add_inode_blocks(&ip->i_inode, -1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786 }
787 if (bstart) {
Eric Sandeen46fcb2e2011-06-23 10:39:34 -0500788 __gfs2_free_blocks(ip, bstart, blen, metadata);
Bob Peterson4c16c362011-02-23 16:11:33 -0500789 btotal += blen;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 }
791
Bob Peterson4c16c362011-02-23 16:11:33 -0500792 gfs2_statfs_change(sdp, 0, +btotal, 0);
793 gfs2_quota_change(ip, -(s64)btotal, ip->i_inode.i_uid,
794 ip->i_inode.i_gid);
795
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100796 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000797
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500798 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799
800 up_write(&ip->i_rw_mutex);
801
802 gfs2_trans_end(sdp);
803
Steven Whitehousea91ea692006-09-04 12:04:26 -0400804out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400806out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807 gfs2_rlist_free(&rlist);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400808out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000809 return error;
810}
811
812/**
Steven Whitehoused56fa8a2011-09-02 12:43:41 +0100813 * recursive_scan - recursively scan through the end of a file
814 * @ip: the inode
815 * @dibh: the dinode buffer
816 * @mp: the path through the metadata to the point to start
817 * @height: the height the recursion is at
818 * @block: the indirect block to look at
819 * @first: 1 if this is the first block
820 * @sm: data opaque to this function to pass to @bc
821 *
822 * When this is first called @height and @block should be zero and
823 * @first should be 1.
824 *
825 * Returns: errno
826 */
827
828static int recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh,
829 struct metapath *mp, unsigned int height,
830 u64 block, int first, struct strip_mine *sm)
831{
832 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
833 struct buffer_head *bh = NULL;
Bob Petersonbd5437a2011-09-15 09:59:56 -0400834 __be64 *top, *bottom, *t2;
Steven Whitehoused56fa8a2011-09-02 12:43:41 +0100835 u64 bn;
836 int error;
837 int mh_size = sizeof(struct gfs2_meta_header);
838
839 if (!height) {
840 error = gfs2_meta_inode_buffer(ip, &bh);
841 if (error)
842 return error;
843 dibh = bh;
844
845 top = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + mp->mp_list[0];
846 bottom = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + sdp->sd_diptrs;
847 } else {
848 error = gfs2_meta_indirect_buffer(ip, height, block, 0, &bh);
849 if (error)
850 return error;
851
852 top = (__be64 *)(bh->b_data + mh_size) +
853 (first ? mp->mp_list[height] : 0);
854
855 bottom = (__be64 *)(bh->b_data + mh_size) + sdp->sd_inptrs;
856 }
857
858 error = do_strip(ip, dibh, bh, top, bottom, height, sm);
859 if (error)
860 goto out;
861
Bob Petersonbd5437a2011-09-15 09:59:56 -0400862 if (height < ip->i_height - 1) {
863 struct buffer_head *rabh;
864
865 for (t2 = top; t2 < bottom; t2++, first = 0) {
866 if (!*t2)
867 continue;
868
869 bn = be64_to_cpu(*t2);
870 rabh = gfs2_getbuf(ip->i_gl, bn, CREATE);
871 if (trylock_buffer(rabh)) {
872 if (buffer_uptodate(rabh)) {
873 unlock_buffer(rabh);
874 brelse(rabh);
875 continue;
876 }
877 rabh->b_end_io = end_buffer_read_sync;
878 submit_bh(READA | REQ_META, rabh);
879 continue;
880 }
881 brelse(rabh);
882 }
Steven Whitehoused56fa8a2011-09-02 12:43:41 +0100883 for (; top < bottom; top++, first = 0) {
884 if (!*top)
885 continue;
886
887 bn = be64_to_cpu(*top);
888
889 error = recursive_scan(ip, dibh, mp, height + 1, bn,
890 first, sm);
891 if (error)
892 break;
893 }
Bob Petersonbd5437a2011-09-15 09:59:56 -0400894 }
Steven Whitehoused56fa8a2011-09-02 12:43:41 +0100895out:
896 brelse(bh);
897 return error;
898}
899
900
901/**
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400902 * gfs2_block_truncate_page - Deal with zeroing out data for truncate
903 *
904 * This is partly borrowed from ext3.
905 */
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100906static int gfs2_block_truncate_page(struct address_space *mapping, loff_t from)
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400907{
908 struct inode *inode = mapping->host;
909 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400910 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 Whitehouseba7f7292006-07-26 11:27:10 -0400915 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 Petersone9e1ef22007-12-10 14:13:27 -0600940 gfs2_block_map(inode, iblock, bh, 0);
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400941 /* 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 Cheng1875f2f2007-06-25 21:14:31 -0400957 err = 0;
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400958 }
959
Steven Whitehousebf36a712007-10-17 08:35:19 +0100960 if (!gfs2_is_writeback(ip))
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400961 gfs2_trans_add_bh(ip->i_gl, bh, 0);
962
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800963 zero_user(page, offset, length);
Steven Whitehouse40bc9a22009-06-10 09:09:40 +0100964 mark_buffer_dirty(bh);
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400965unlock:
966 unlock_page(page);
967 page_cache_release(page);
968 return err;
969}
970
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100971static int trunc_start(struct inode *inode, u64 oldsize, u64 newsize)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000972{
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100973 struct gfs2_inode *ip = GFS2_I(inode);
974 struct gfs2_sbd *sdp = GFS2_SB(inode);
975 struct address_space *mapping = inode->i_mapping;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000976 struct buffer_head *dibh;
977 int journaled = gfs2_is_jdata(ip);
978 int error;
979
980 error = gfs2_trans_begin(sdp,
Jan Engelhardtc5392122006-09-05 14:30:40 +0200981 RES_DINODE + (journaled ? RES_JDATA : 0), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000982 if (error)
983 return error;
984
985 error = gfs2_meta_inode_buffer(ip, &dibh);
986 if (error)
987 goto out;
988
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100989 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100991 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 Teiglandb3b94fa2006-01-16 16:50:04 +0000998 }
Steven Whitehouseff8f33c2010-08-11 09:37:53 +0100999 ip->i_diskflags |= GFS2_DIF_TRUNC_IN_PROG;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000 }
1001
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001002 i_size_write(inode, newsize);
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001003 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
1004 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001006 truncate_pagecache(inode, oldsize, newsize);
1007out_brelse:
1008 brelse(dibh);
Steven Whitehousea91ea692006-09-04 12:04:26 -04001009out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001011 return error;
1012}
1013
Steven Whitehousecd915492006-09-04 12:49:07 -04001014static int trunc_dealloc(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001015{
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +00001016 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouseecc30c72008-01-28 10:37:35 +00001017 unsigned int height = ip->i_height;
Steven Whitehousecd915492006-09-04 12:49:07 -04001018 u64 lblock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001019 struct metapath mp;
1020 int error;
1021
1022 if (!size)
1023 lblock = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +00001024 else
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +00001025 lblock = (size - 1) >> sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026
Steven Whitehouse9b8c81d2008-02-22 16:09:31 +00001027 find_metapath(sdp, lblock, &mp, ip->i_height);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +03001028 if (!gfs2_alloc_get(ip))
1029 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001030
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
Steven Whitehoused56fa8a2011-09-02 12:43:41 +01001040 error = recursive_scan(ip, NULL, &mp, 0, 0, 1, &sm);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041 if (error)
1042 break;
1043 }
1044
1045 gfs2_quota_unhold(ip);
1046
Steven Whitehousea91ea692006-09-04 12:04:26 -04001047out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 gfs2_alloc_put(ip);
1049 return error;
1050}
1051
1052static int trunc_end(struct gfs2_inode *ip)
1053{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001054 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001055 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 Whitehousea2e0f792010-08-11 09:53:11 +01001068 if (!i_size_read(&ip->i_inode)) {
Steven Whitehouseecc30c72008-01-28 10:37:35 +00001069 ip->i_height = 0;
Steven Whitehousece276b02008-02-06 09:25:45 +00001070 ip->i_goal = ip->i_no_addr;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001071 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
1072 }
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001073 ip->i_inode.i_mtime = ip->i_inode.i_ctime = CURRENT_TIME;
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001074 ip->i_diskflags &= ~GFS2_DIF_TRUNC_IN_PROG;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001075
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001076 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001077 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001078 brelse(dibh);
1079
Steven Whitehousea91ea692006-09-04 12:04:26 -04001080out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001081 up_write(&ip->i_rw_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001083 return error;
1084}
1085
1086/**
1087 * do_shrink - make a file smaller
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001088 * @inode: the inode
1089 * @oldsize: the current inode size
1090 * @newsize: the size to make the file
David Teiglandb3b94fa2006-01-16 16:50:04 +00001091 *
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001092 * Called with an exclusive lock on @inode. The @size must
1093 * be equal to or smaller than the current inode size.
David Teiglandb3b94fa2006-01-16 16:50:04 +00001094 *
1095 * Returns: errno
1096 */
1097
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001098static int do_shrink(struct inode *inode, u64 oldsize, u64 newsize)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001099{
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001100 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101 int error;
1102
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001103 error = trunc_start(inode, oldsize, newsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001104 if (error < 0)
1105 return error;
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001106 if (gfs2_is_stuffed(ip))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107 return 0;
1108
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001109 error = trunc_dealloc(ip, newsize);
1110 if (error == 0)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001111 error = trunc_end(ip);
1112
1113 return error;
1114}
1115
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001116void gfs2_trim_blocks(struct inode *inode)
Wendy Chenga13b8c52007-08-20 09:29:53 -04001117{
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001118 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 Marchi25985ed2011-03-30 22:57:33 -03001139 * occurring, such files are unstuffed, but in other cases we can
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001140 * just update the inode size directly.
1141 *
1142 * Returns: 0 on success, or -ve on error
1143 */
1144
1145static 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 Chenga13b8c52007-08-20 09:29:53 -04001149 struct buffer_head *dibh;
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001150 struct gfs2_alloc *al = NULL;
Wendy Chenga13b8c52007-08-20 09:29:53 -04001151 int error;
1152
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001153 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 Chenga13b8c52007-08-20 09:29:53 -04001158
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001159 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 Marzinskibf97b672010-09-27 16:00:04 -05001169 error = gfs2_trans_begin(sdp, RES_DINODE + RES_STATFS + RES_RG_BIT, 0);
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001170 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 Chenga13b8c52007-08-20 09:29:53 -04001178
1179 error = gfs2_meta_inode_buffer(ip, &dibh);
1180 if (error)
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001181 goto do_end_trans;
Wendy Chenga13b8c52007-08-20 09:29:53 -04001182
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001183 i_size_write(inode, size);
Wendy Chenga13b8c52007-08-20 09:29:53 -04001184 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 Whitehouseff8f33c2010-08-11 09:37:53 +01001189do_end_trans:
Wendy Chenga13b8c52007-08-20 09:29:53 -04001190 gfs2_trans_end(sdp);
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001191do_grow_release:
1192 if (al) {
1193 gfs2_inplace_release(ip);
1194do_grow_qunlock:
1195 gfs2_quota_unlock(ip);
1196do_grow_alloc_put:
1197 gfs2_alloc_put(ip);
1198 }
Wendy Chenga13b8c52007-08-20 09:29:53 -04001199 return error;
1200}
1201
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202/**
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001203 * gfs2_setattr_size - make a file a given size
1204 * @inode: the inode
1205 * @newsize: the size to make the file
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 *
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001207 * 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 Teiglandb3b94fa2006-01-16 16:50:04 +00001210 *
1211 * Returns: errno
1212 */
1213
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001214int gfs2_setattr_size(struct inode *inode, u64 newsize)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001215{
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001216 int ret;
1217 u64 oldsize;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001219 BUG_ON(!S_ISREG(inode->i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001220
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001221 ret = inode_newsize_ok(inode, newsize);
1222 if (ret)
1223 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001224
Christoph Hellwig562c72a2011-06-24 14:29:45 -04001225 inode_dio_wait(inode);
1226
Steven Whitehouseff8f33c2010-08-11 09:37:53 +01001227 oldsize = inode->i_size;
1228 if (newsize >= oldsize)
1229 return do_grow(inode, newsize);
1230
1231 return do_shrink(inode, oldsize, newsize);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001232}
1233
1234int gfs2_truncatei_resume(struct gfs2_inode *ip)
1235{
1236 int error;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001237 error = trunc_dealloc(ip, i_size_read(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001238 if (!error)
1239 error = trunc_end(ip);
1240 return error;
1241}
1242
1243int gfs2_file_dealloc(struct gfs2_inode *ip)
1244{
1245 return trunc_dealloc(ip, 0);
1246}
1247
1248/**
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249 * gfs2_write_alloc_required - figure out if a write will require an allocation
1250 * @ip: the file being written to
1251 * @offset: the offset to write to
1252 * @len: the number of bytes being written
David Teiglandb3b94fa2006-01-16 16:50:04 +00001253 *
Bob Peterson461cb412010-06-24 19:21:20 -04001254 * Returns: 1 if an alloc is required, 0 otherwise
David Teiglandb3b94fa2006-01-16 16:50:04 +00001255 */
1256
Steven Whitehousecd915492006-09-04 12:49:07 -04001257int gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset,
Bob Peterson461cb412010-06-24 19:21:20 -04001258 unsigned int len)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001260 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehouse941e6d72008-01-28 08:47:38 +00001261 struct buffer_head bh;
1262 unsigned int shift;
1263 u64 lblock, lblock_stop, size;
Steven Whitehouse7ed122e2008-12-10 10:28:10 +00001264 u64 end_of_file;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001265
David Teiglandb3b94fa2006-01-16 16:50:04 +00001266 if (!len)
1267 return 0;
1268
1269 if (gfs2_is_stuffed(ip)) {
1270 if (offset + len >
1271 sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
Bob Peterson461cb412010-06-24 19:21:20 -04001272 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001273 return 0;
1274 }
1275
Steven Whitehouse941e6d72008-01-28 08:47:38 +00001276 shift = sdp->sd_sb.sb_bsize_shift;
Steven Whitehouse7ed122e2008-12-10 10:28:10 +00001277 BUG_ON(gfs2_is_dir(ip));
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001278 end_of_file = (i_size_read(&ip->i_inode) + sdp->sd_sb.sb_bsize - 1) >> shift;
Steven Whitehouse7ed122e2008-12-10 10:28:10 +00001279 lblock = offset >> shift;
1280 lblock_stop = (offset + len + sdp->sd_sb.sb_bsize - 1) >> shift;
1281 if (lblock_stop > end_of_file)
Bob Peterson461cb412010-06-24 19:21:20 -04001282 return 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001283
Steven Whitehouse941e6d72008-01-28 08:47:38 +00001284 size = (lblock_stop - lblock) << shift;
1285 do {
1286 bh.b_state = 0;
1287 bh.b_size = size;
1288 gfs2_block_map(&ip->i_inode, lblock, &bh, 0);
1289 if (!buffer_mapped(&bh))
Bob Peterson461cb412010-06-24 19:21:20 -04001290 return 1;
Steven Whitehouse941e6d72008-01-28 08:47:38 +00001291 size -= bh.b_size;
1292 lblock += (bh.b_size >> ip->i_inode.i_blkbits);
1293 } while(size > 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294
1295 return 0;
1296}
1297