]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/gfs2/bmap.c
scsi: lpfc: Fix issue_lip if link is disabled
[mirror_ubuntu-bionic-kernel.git] / fs / gfs2 / bmap.c
CommitLineData
b3b94faa
DT
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3a8a9a10 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
b3b94faa
DT
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
e9fc2aa0 7 * of the GNU General Public License version 2.
b3b94faa
DT
8 */
9
b3b94faa
DT
10#include <linux/spinlock.h>
11#include <linux/completion.h>
12#include <linux/buffer_head.h>
64dd153c 13#include <linux/blkdev.h>
5c676f6d 14#include <linux/gfs2_ondisk.h>
71b86f56 15#include <linux/crc32.h>
3974320c 16#include <linux/iomap.h>
b3b94faa
DT
17
18#include "gfs2.h"
5c676f6d 19#include "incore.h"
b3b94faa
DT
20#include "bmap.h"
21#include "glock.h"
22#include "inode.h"
b3b94faa 23#include "meta_io.h"
b3b94faa
DT
24#include "quota.h"
25#include "rgrp.h"
45138990 26#include "log.h"
4c16c36a 27#include "super.h"
b3b94faa 28#include "trans.h"
18ec7d5c 29#include "dir.h"
5c676f6d 30#include "util.h"
63997775 31#include "trace_gfs2.h"
b3b94faa
DT
32
33/* This doesn't need to be that large as max 64 bit pointers in a 4k
34 * block is 512, so __u16 is fine for that. It saves stack space to
35 * keep it small.
36 */
37struct metapath {
dbac6710 38 struct buffer_head *mp_bh[GFS2_MAX_META_HEIGHT];
b3b94faa 39 __u16 mp_list[GFS2_MAX_META_HEIGHT];
5f8bd444
BP
40 int mp_fheight; /* find_metapath height */
41 int mp_aheight; /* actual height (lookup height) */
b3b94faa
DT
42};
43
f25ef0c1
SW
44/**
45 * 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
ff8f33c8 49 * @page: The (optional) page. This is looked up if @page is NULL
f25ef0c1
SW
50 *
51 * Returns: errno
52 */
53
54static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh,
cd915493 55 u64 block, struct page *page)
f25ef0c1 56{
f25ef0c1
SW
57 struct inode *inode = &ip->i_inode;
58 struct buffer_head *bh;
59 int release = 0;
60
61 if (!page || page->index) {
220cca2a 62 page = find_or_create_page(inode->i_mapping, 0, GFP_NOFS);
f25ef0c1
SW
63 if (!page)
64 return -ENOMEM;
65 release = 1;
66 }
67
68 if (!PageUptodate(page)) {
69 void *kaddr = kmap(page);
602c89d2
SW
70 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);
f25ef0c1 74
602c89d2 75 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode), dsize);
09cbfeaf 76 memset(kaddr + dsize, 0, PAGE_SIZE - dsize);
f25ef0c1
SW
77 kunmap(page);
78
79 SetPageUptodate(page);
80 }
81
82 if (!page_has_buffers(page))
47a9a527
FF
83 create_empty_buffers(page, BIT(inode->i_blkbits),
84 BIT(BH_Uptodate));
f25ef0c1
SW
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);
eaf96527
SW
92 if (!gfs2_is_jdata(ip))
93 mark_buffer_dirty(bh);
bf36a713 94 if (!gfs2_is_writeback(ip))
350a9b0a 95 gfs2_trans_add_data(ip->i_gl, bh);
f25ef0c1
SW
96
97 if (release) {
98 unlock_page(page);
09cbfeaf 99 put_page(page);
f25ef0c1
SW
100 }
101
102 return 0;
103}
104
b3b94faa
DT
105/**
106 * gfs2_unstuff_dinode - Unstuff a dinode when the data has grown too big
107 * @ip: The GFS2 inode to unstuff
ff8f33c8 108 * @page: The (optional) page. This is looked up if the @page is NULL
b3b94faa
DT
109 *
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
f25ef0c1 116int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
b3b94faa
DT
117{
118 struct buffer_head *bh, *dibh;
48516ced 119 struct gfs2_dinode *di;
cd915493 120 u64 block = 0;
18ec7d5c 121 int isdir = gfs2_is_dir(ip);
b3b94faa
DT
122 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;
907b9bce 129
a2e0f799 130 if (i_size_read(&ip->i_inode)) {
b3b94faa
DT
131 /* Get a free block, fill it with the stuffed data,
132 and write it out to disk */
133
b45e41d7 134 unsigned int n = 1;
6e87ed0f 135 error = gfs2_alloc_blocks(ip, &block, &n, 0, NULL);
09010978
SW
136 if (error)
137 goto out_brelse;
18ec7d5c 138 if (isdir) {
5731be53 139 gfs2_trans_add_unrevoke(GFS2_SB(&ip->i_inode), block, 1);
61e085a8 140 error = gfs2_dir_get_new_buffer(ip, block, &bh);
b3b94faa
DT
141 if (error)
142 goto out_brelse;
48516ced 143 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header),
b3b94faa
DT
144 dibh, sizeof(struct gfs2_dinode));
145 brelse(bh);
146 } else {
f25ef0c1 147 error = gfs2_unstuffer_page(ip, dibh, block, page);
b3b94faa
DT
148 if (error)
149 goto out_brelse;
150 }
151 }
152
153 /* Set up the pointer to the new block */
154
350a9b0a 155 gfs2_trans_add_meta(ip->i_gl, dibh);
48516ced 156 di = (struct gfs2_dinode *)dibh->b_data;
b3b94faa
DT
157 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
158
a2e0f799 159 if (i_size_read(&ip->i_inode)) {
48516ced 160 *(__be64 *)(di + 1) = cpu_to_be64(block);
77658aad
SW
161 gfs2_add_inode_blocks(&ip->i_inode, 1);
162 di->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
b3b94faa
DT
163 }
164
ecc30c79 165 ip->i_height = 1;
48516ced 166 di->di_height = cpu_to_be16(1);
b3b94faa 167
a91ea69f 168out_brelse:
b3b94faa 169 brelse(dibh);
a91ea69f 170out:
b3b94faa 171 up_write(&ip->i_rw_mutex);
b3b94faa
DT
172 return error;
173}
174
b3b94faa
DT
175
176/**
177 * find_metapath - Find path through the metadata tree
9b8c81d1 178 * @sdp: The superblock
b3b94faa
DT
179 * @mp: The metapath to return the result in
180 * @block: The disk block to look up
9b8c81d1 181 * @height: The pre-calculated height of the metadata tree
b3b94faa
DT
182 *
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
9b8c81d1
SW
236static void find_metapath(const struct gfs2_sbd *sdp, u64 block,
237 struct metapath *mp, unsigned int height)
b3b94faa 238{
b3b94faa
DT
239 unsigned int i;
240
5f8bd444 241 mp->mp_fheight = height;
9b8c81d1 242 for (i = height; i--;)
7eabb77e 243 mp->mp_list[i] = do_div(block, sdp->sd_inptrs);
b3b94faa
DT
244}
245
5af4e7a0 246static inline unsigned int metapath_branch_start(const struct metapath *mp)
9b8c81d1 247{
5af4e7a0
BM
248 if (mp->mp_list[0] == 0)
249 return 2;
250 return 1;
9b8c81d1
SW
251}
252
d552a2b9 253/**
20cdc193 254 * metaptr1 - Return the first possible metadata pointer in a metapath buffer
d552a2b9
BP
255 * @height: The metadata height (0 = dinode)
256 * @mp: The metapath
257 */
258static inline __be64 *metaptr1(unsigned int height, const struct metapath *mp)
259{
260 struct buffer_head *bh = mp->mp_bh[height];
261 if (height == 0)
262 return ((__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)));
263 return ((__be64 *)(bh->b_data + sizeof(struct gfs2_meta_header)));
264}
265
b3b94faa
DT
266/**
267 * metapointer - Return pointer to start of metadata in a buffer
b3b94faa
DT
268 * @height: The metadata height (0 = dinode)
269 * @mp: The metapath
270 *
271 * Return a pointer to the block number of the next height of the metadata
272 * tree given a buffer containing the pointer to the current height of the
273 * metadata tree.
274 */
275
9b8c81d1 276static inline __be64 *metapointer(unsigned int height, const struct metapath *mp)
b3b94faa 277{
d552a2b9
BP
278 __be64 *p = metaptr1(height, mp);
279 return p + mp->mp_list[height];
b3b94faa
DT
280}
281
b99b98dc
SW
282static void gfs2_metapath_ra(struct gfs2_glock *gl,
283 const struct buffer_head *bh, const __be64 *pos)
284{
285 struct buffer_head *rabh;
286 const __be64 *endp = (const __be64 *)(bh->b_data + bh->b_size);
287 const __be64 *t;
288
289 for (t = pos; t < endp; t++) {
290 if (!*t)
291 continue;
292
293 rabh = gfs2_getbuf(gl, be64_to_cpu(*t), CREATE);
294 if (trylock_buffer(rabh)) {
295 if (!buffer_uptodate(rabh)) {
296 rabh->b_end_io = end_buffer_read_sync;
e477b24b
CL
297 submit_bh(REQ_OP_READ,
298 REQ_RAHEAD | REQ_META | REQ_PRIO,
299 rabh);
b99b98dc
SW
300 continue;
301 }
302 unlock_buffer(rabh);
303 }
304 brelse(rabh);
305 }
306}
307
d552a2b9
BP
308/**
309 * lookup_mp_height - helper function for lookup_metapath
310 * @ip: the inode
311 * @mp: the metapath
312 * @h: the height which needs looking up
313 */
314static int lookup_mp_height(struct gfs2_inode *ip, struct metapath *mp, int h)
315{
316 __be64 *ptr = metapointer(h, mp);
317 u64 dblock = be64_to_cpu(*ptr);
318
319 if (!dblock)
320 return h + 1;
321
322 return gfs2_meta_indirect_buffer(ip, h + 1, dblock, &mp->mp_bh[h + 1]);
323}
324
b3b94faa 325/**
9b8c81d1
SW
326 * lookup_metapath - Walk the metadata tree to a specific point
327 * @ip: The inode
b3b94faa 328 * @mp: The metapath
b3b94faa 329 *
9b8c81d1
SW
330 * Assumes that the inode's buffer has already been looked up and
331 * hooked onto mp->mp_bh[0] and that the metapath has been initialised
332 * by find_metapath().
333 *
334 * If this function encounters part of the tree which has not been
335 * allocated, it returns the current height of the tree at the point
336 * at which it found the unallocated block. Blocks which are found are
337 * added to the mp->mp_bh[] list.
b3b94faa 338 *
9b8c81d1 339 * Returns: error or height of metadata tree
b3b94faa
DT
340 */
341
9b8c81d1 342static int lookup_metapath(struct gfs2_inode *ip, struct metapath *mp)
11707ea0 343{
11707ea0
SW
344 unsigned int end_of_metadata = ip->i_height - 1;
345 unsigned int x;
e23159d2 346 int ret;
11707ea0
SW
347
348 for (x = 0; x < end_of_metadata; x++) {
d552a2b9 349 ret = lookup_mp_height(ip, mp, x);
11707ea0 350 if (ret)
5f8bd444 351 goto out;
11707ea0
SW
352 }
353
5f8bd444
BP
354 ret = ip->i_height;
355out:
356 mp->mp_aheight = ret;
357 return ret;
dbac6710
SW
358}
359
d552a2b9
BP
360/**
361 * fillup_metapath - fill up buffers for the metadata path to a specific height
362 * @ip: The inode
363 * @mp: The metapath
364 * @h: The height to which it should be mapped
365 *
366 * Similar to lookup_metapath, but does lookups for a range of heights
367 *
368 * Returns: error or height of metadata tree
369 */
370
371static int fillup_metapath(struct gfs2_inode *ip, struct metapath *mp, int h)
372{
373 unsigned int start_h = h - 1;
374 int ret;
375
376 if (h) {
377 /* find the first buffer we need to look up. */
378 while (start_h > 0 && mp->mp_bh[start_h] == NULL)
379 start_h--;
380 for (; start_h < h; start_h++) {
381 ret = lookup_mp_height(ip, mp, start_h);
382 if (ret)
383 return ret;
384 }
385 }
386 return ip->i_height;
387}
388
9b8c81d1 389static inline void release_metapath(struct metapath *mp)
dbac6710
SW
390{
391 int i;
392
9b8c81d1
SW
393 for (i = 0; i < GFS2_MAX_META_HEIGHT; i++) {
394 if (mp->mp_bh[i] == NULL)
395 break;
396 brelse(mp->mp_bh[i]);
397 }
11707ea0
SW
398}
399
30cbf189
SW
400/**
401 * gfs2_extent_length - Returns length of an extent of blocks
402 * @start: Start of the buffer
403 * @len: Length of the buffer in bytes
404 * @ptr: Current position in the buffer
405 * @limit: Max extent length to return (0 = unlimited)
406 * @eob: Set to 1 if we hit "end of block"
407 *
408 * If the first block is zero (unallocated) it will return the number of
409 * unallocated blocks in the extent, otherwise it will return the number
410 * of contiguous blocks in the extent.
411 *
412 * Returns: The length of the extent (minimum of one block)
413 */
414
b650738c 415static inline unsigned int gfs2_extent_length(void *start, unsigned int len, __be64 *ptr, size_t limit, int *eob)
30cbf189
SW
416{
417 const __be64 *end = (start + len);
418 const __be64 *first = ptr;
419 u64 d = be64_to_cpu(*ptr);
420
421 *eob = 0;
422 do {
423 ptr++;
424 if (ptr >= end)
425 break;
426 if (limit && --limit == 0)
427 break;
428 if (d)
429 d++;
430 } while(be64_to_cpu(*ptr) == d);
431 if (ptr >= end)
432 *eob = 1;
433 return (ptr - first);
434}
435
9b8c81d1 436static inline void bmap_lock(struct gfs2_inode *ip, int create)
4cf1ed81 437{
4cf1ed81
SW
438 if (create)
439 down_write(&ip->i_rw_mutex);
440 else
441 down_read(&ip->i_rw_mutex);
442}
443
9b8c81d1 444static inline void bmap_unlock(struct gfs2_inode *ip, int create)
4cf1ed81 445{
4cf1ed81
SW
446 if (create)
447 up_write(&ip->i_rw_mutex);
448 else
449 up_read(&ip->i_rw_mutex);
450}
451
9b8c81d1
SW
452static inline __be64 *gfs2_indirect_init(struct metapath *mp,
453 struct gfs2_glock *gl, unsigned int i,
454 unsigned offset, u64 bn)
455{
456 __be64 *ptr = (__be64 *)(mp->mp_bh[i - 1]->b_data +
457 ((i > 1) ? sizeof(struct gfs2_meta_header) :
458 sizeof(struct gfs2_dinode)));
459 BUG_ON(i < 1);
460 BUG_ON(mp->mp_bh[i] != NULL);
461 mp->mp_bh[i] = gfs2_meta_new(gl, bn);
350a9b0a 462 gfs2_trans_add_meta(gl, mp->mp_bh[i]);
9b8c81d1
SW
463 gfs2_metatype_set(mp->mp_bh[i], GFS2_METATYPE_IN, GFS2_FORMAT_IN);
464 gfs2_buffer_clear_tail(mp->mp_bh[i], sizeof(struct gfs2_meta_header));
465 ptr += offset;
466 *ptr = cpu_to_be64(bn);
467 return ptr;
468}
469
470enum alloc_state {
471 ALLOC_DATA = 0,
472 ALLOC_GROW_DEPTH = 1,
473 ALLOC_GROW_HEIGHT = 2,
474 /* ALLOC_UNSTUFF = 3, TBD and rather complicated */
475};
476
d552a2b9
BP
477static inline unsigned int hptrs(struct gfs2_sbd *sdp, const unsigned int hgt)
478{
479 if (hgt)
480 return sdp->sd_inptrs;
481 return sdp->sd_diptrs;
482}
483
9b8c81d1
SW
484/**
485 * gfs2_bmap_alloc - Build a metadata tree of the requested height
486 * @inode: The GFS2 inode
487 * @lblock: The logical starting block of the extent
488 * @bh_map: This is used to return the mapping details
5f8bd444
BP
489 * @zero_new: True if newly allocated blocks should be zeroed
490 * @mp: The metapath, with proper height information calculated
9b8c81d1 491 * @maxlen: The max number of data blocks to alloc
5f8bd444
BP
492 * @dblock: Pointer to return the resulting new block
493 * @dblks: Pointer to return the number of blocks allocated
9b8c81d1
SW
494 *
495 * In this routine we may have to alloc:
496 * i) Indirect blocks to grow the metadata tree height
497 * ii) Indirect blocks to fill in lower part of the metadata tree
498 * iii) Data blocks
499 *
500 * The function is in two parts. The first part works out the total
501 * number of blocks which we need. The second part does the actual
502 * allocation asking for an extent at a time (if enough contiguous free
503 * blocks are available, there will only be one request per bmap call)
504 * and uses the state machine to initialise the blocks in order.
505 *
506 * Returns: errno on error
507 */
508
3974320c
BP
509static int gfs2_iomap_alloc(struct inode *inode, struct iomap *iomap,
510 unsigned flags, struct metapath *mp)
9b8c81d1
SW
511{
512 struct gfs2_inode *ip = GFS2_I(inode);
513 struct gfs2_sbd *sdp = GFS2_SB(inode);
64dd153c 514 struct super_block *sb = sdp->sd_vfs;
9b8c81d1 515 struct buffer_head *dibh = mp->mp_bh[0];
5f8bd444 516 u64 bn;
5af4e7a0 517 unsigned n, i, blks, alloced = 0, iblks = 0, branch_start = 0;
3974320c 518 unsigned dblks = 0;
9b8c81d1 519 unsigned ptrs_per_blk;
5f8bd444 520 const unsigned end_of_metadata = mp->mp_fheight - 1;
64dd153c 521 int ret;
9b8c81d1
SW
522 enum alloc_state state;
523 __be64 *ptr;
524 __be64 zero_bn = 0;
3974320c 525 size_t maxlen = iomap->length >> inode->i_blkbits;
9b8c81d1 526
5f8bd444 527 BUG_ON(mp->mp_aheight < 1);
9b8c81d1
SW
528 BUG_ON(dibh == NULL);
529
350a9b0a 530 gfs2_trans_add_meta(ip->i_gl, dibh);
9b8c81d1 531
5f8bd444 532 if (mp->mp_fheight == mp->mp_aheight) {
9b8c81d1 533 struct buffer_head *bh;
3974320c
BP
534 int eob;
535
9b8c81d1
SW
536 /* Bottom indirect block exists, find unalloced extent size */
537 ptr = metapointer(end_of_metadata, mp);
538 bh = mp->mp_bh[end_of_metadata];
3974320c
BP
539 dblks = gfs2_extent_length(bh->b_data, bh->b_size, ptr,
540 maxlen, &eob);
541 BUG_ON(dblks < 1);
9b8c81d1
SW
542 state = ALLOC_DATA;
543 } else {
544 /* Need to allocate indirect blocks */
5f8bd444
BP
545 ptrs_per_blk = mp->mp_fheight > 1 ? sdp->sd_inptrs :
546 sdp->sd_diptrs;
3974320c
BP
547 dblks = min(maxlen, (size_t)(ptrs_per_blk -
548 mp->mp_list[end_of_metadata]));
5f8bd444 549 if (mp->mp_fheight == ip->i_height) {
9b8c81d1 550 /* Writing into existing tree, extend tree down */
5f8bd444 551 iblks = mp->mp_fheight - mp->mp_aheight;
9b8c81d1
SW
552 state = ALLOC_GROW_DEPTH;
553 } else {
554 /* Building up tree height */
555 state = ALLOC_GROW_HEIGHT;
5f8bd444 556 iblks = mp->mp_fheight - ip->i_height;
5af4e7a0 557 branch_start = metapath_branch_start(mp);
5f8bd444 558 iblks += (mp->mp_fheight - branch_start);
9b8c81d1
SW
559 }
560 }
561
562 /* start of the second part of the function (state machine) */
563
3974320c 564 blks = dblks + iblks;
5f8bd444 565 i = mp->mp_aheight;
9b8c81d1 566 do {
09010978 567 int error;
9b8c81d1 568 n = blks - alloced;
6e87ed0f 569 error = gfs2_alloc_blocks(ip, &bn, &n, 0, NULL);
09010978
SW
570 if (error)
571 return error;
9b8c81d1
SW
572 alloced += n;
573 if (state != ALLOC_DATA || gfs2_is_jdata(ip))
574 gfs2_trans_add_unrevoke(sdp, bn, n);
575 switch (state) {
576 /* Growing height of tree */
577 case ALLOC_GROW_HEIGHT:
578 if (i == 1) {
579 ptr = (__be64 *)(dibh->b_data +
580 sizeof(struct gfs2_dinode));
581 zero_bn = *ptr;
582 }
5f8bd444
BP
583 for (; i - 1 < mp->mp_fheight - ip->i_height && n > 0;
584 i++, n--)
9b8c81d1 585 gfs2_indirect_init(mp, ip->i_gl, i, 0, bn++);
5f8bd444 586 if (i - 1 == mp->mp_fheight - ip->i_height) {
9b8c81d1
SW
587 i--;
588 gfs2_buffer_copy_tail(mp->mp_bh[i],
589 sizeof(struct gfs2_meta_header),
590 dibh, sizeof(struct gfs2_dinode));
591 gfs2_buffer_clear_tail(dibh,
592 sizeof(struct gfs2_dinode) +
593 sizeof(__be64));
594 ptr = (__be64 *)(mp->mp_bh[i]->b_data +
595 sizeof(struct gfs2_meta_header));
596 *ptr = zero_bn;
597 state = ALLOC_GROW_DEPTH;
5f8bd444 598 for(i = branch_start; i < mp->mp_fheight; i++) {
9b8c81d1
SW
599 if (mp->mp_bh[i] == NULL)
600 break;
601 brelse(mp->mp_bh[i]);
602 mp->mp_bh[i] = NULL;
603 }
5af4e7a0 604 i = branch_start;
9b8c81d1
SW
605 }
606 if (n == 0)
607 break;
608 /* Branching from existing tree */
609 case ALLOC_GROW_DEPTH:
5f8bd444 610 if (i > 1 && i < mp->mp_fheight)
350a9b0a 611 gfs2_trans_add_meta(ip->i_gl, mp->mp_bh[i-1]);
5f8bd444 612 for (; i < mp->mp_fheight && n > 0; i++, n--)
9b8c81d1
SW
613 gfs2_indirect_init(mp, ip->i_gl, i,
614 mp->mp_list[i-1], bn++);
5f8bd444 615 if (i == mp->mp_fheight)
9b8c81d1
SW
616 state = ALLOC_DATA;
617 if (n == 0)
618 break;
619 /* Tree complete, adding data blocks */
620 case ALLOC_DATA:
3974320c 621 BUG_ON(n > dblks);
9b8c81d1 622 BUG_ON(mp->mp_bh[end_of_metadata] == NULL);
350a9b0a 623 gfs2_trans_add_meta(ip->i_gl, mp->mp_bh[end_of_metadata]);
3974320c 624 dblks = n;
9b8c81d1 625 ptr = metapointer(end_of_metadata, mp);
3974320c
BP
626 iomap->addr = bn << inode->i_blkbits;
627 iomap->flags |= IOMAP_F_NEW;
9b8c81d1
SW
628 while (n-- > 0)
629 *ptr++ = cpu_to_be64(bn++);
3974320c
BP
630 if (flags & IOMAP_ZERO) {
631 ret = sb_issue_zeroout(sb, iomap->addr >> inode->i_blkbits,
632 dblks, GFP_NOFS);
64dd153c
BM
633 if (ret) {
634 fs_err(sdp,
635 "Failed to zero data buffers\n");
3974320c 636 flags &= ~IOMAP_ZERO;
64dd153c
BM
637 }
638 }
9b8c81d1
SW
639 break;
640 }
3974320c 641 } while (iomap->addr == IOMAP_NULL_ADDR);
9b8c81d1 642
3974320c 643 iomap->length = (u64)dblks << inode->i_blkbits;
5f8bd444 644 ip->i_height = mp->mp_fheight;
9b8c81d1
SW
645 gfs2_add_inode_blocks(&ip->i_inode, alloced);
646 gfs2_dinode_out(ip, mp->mp_bh[0]->b_data);
9b8c81d1
SW
647 return 0;
648}
649
b3b94faa 650/**
3974320c 651 * hole_size - figure out the size of a hole
fd88de56 652 * @inode: The inode
3974320c
BP
653 * @lblock: The logical starting block number
654 * @mp: The metapath
b3b94faa 655 *
3974320c 656 * Returns: The hole size in bytes
b3b94faa 657 *
b3b94faa 658 */
3974320c
BP
659static u64 hole_size(struct inode *inode, sector_t lblock, struct metapath *mp)
660{
661 struct gfs2_inode *ip = GFS2_I(inode);
662 struct gfs2_sbd *sdp = GFS2_SB(inode);
663 struct metapath mp_eof;
664 u64 factor = 1;
665 int hgt;
666 u64 holesz = 0;
667 const __be64 *first, *end, *ptr;
668 const struct buffer_head *bh;
669 u64 lblock_stop = (i_size_read(inode) - 1) >> inode->i_blkbits;
670 int zeroptrs;
671 bool done = false;
672
673 /* Get another metapath, to the very last byte */
674 find_metapath(sdp, lblock_stop, &mp_eof, ip->i_height);
675 for (hgt = ip->i_height - 1; hgt >= 0 && !done; hgt--) {
676 bh = mp->mp_bh[hgt];
677 if (bh) {
678 zeroptrs = 0;
679 first = metapointer(hgt, mp);
680 end = (const __be64 *)(bh->b_data + bh->b_size);
681
682 for (ptr = first; ptr < end; ptr++) {
683 if (*ptr) {
684 done = true;
685 break;
686 } else {
687 zeroptrs++;
688 }
689 }
690 } else {
691 zeroptrs = sdp->sd_inptrs;
692 }
693 if (factor * zeroptrs >= lblock_stop - lblock + 1) {
694 holesz = lblock_stop - lblock + 1;
695 break;
696 }
697 holesz += factor * zeroptrs;
b3b94faa 698
3974320c
BP
699 factor *= sdp->sd_inptrs;
700 if (hgt && (mp->mp_list[hgt - 1] < mp_eof.mp_list[hgt - 1]))
701 (mp->mp_list[hgt - 1])++;
702 }
703 return holesz << inode->i_blkbits;
704}
705
706static void gfs2_stuffed_iomap(struct inode *inode, struct iomap *iomap)
707{
708 struct gfs2_inode *ip = GFS2_I(inode);
709
710 iomap->addr = (ip->i_no_addr << inode->i_blkbits) +
711 sizeof(struct gfs2_dinode);
712 iomap->offset = 0;
713 iomap->length = i_size_read(inode);
714 iomap->type = IOMAP_MAPPED;
715 iomap->flags = IOMAP_F_DATA_INLINE;
716}
717
718/**
719 * gfs2_iomap_begin - Map blocks from an inode to disk blocks
720 * @inode: The inode
721 * @pos: Starting position in bytes
722 * @length: Length to map, in bytes
723 * @flags: iomap flags
724 * @iomap: The iomap structure
725 *
726 * Returns: errno
727 */
728int gfs2_iomap_begin(struct inode *inode, loff_t pos, loff_t length,
729 unsigned flags, struct iomap *iomap)
b3b94faa 730{
feaa7bba
SW
731 struct gfs2_inode *ip = GFS2_I(inode);
732 struct gfs2_sbd *sdp = GFS2_SB(inode);
3974320c 733 struct metapath mp = { .mp_aheight = 1, };
20cdc193 734 unsigned int factor = sdp->sd_sb.sb_bsize;
ecc30c79 735 const u64 *arr = sdp->sd_heightsize;
9b8c81d1 736 __be64 *ptr;
3974320c
BP
737 sector_t lblock;
738 sector_t lend;
b7bf5bfc 739 int ret = 0;
9b8c81d1
SW
740 int eob;
741 unsigned int len;
742 struct buffer_head *bh;
743 u8 height;
7276b3b0 744
3974320c
BP
745 trace_gfs2_iomap_start(ip, pos, length, flags);
746 if (!length) {
747 ret = -EINVAL;
748 goto out;
749 }
b3b94faa 750
b7bf5bfc
AG
751 if (gfs2_is_stuffed(ip)) {
752 if (flags & IOMAP_REPORT) {
753 gfs2_stuffed_iomap(inode, iomap);
754 if (pos >= iomap->length)
755 ret = -ENOENT;
756 goto out;
757 }
758 BUG_ON(!(flags & IOMAP_WRITE));
3974320c
BP
759 }
760
761 lblock = pos >> inode->i_blkbits;
762 lend = (pos + length + sdp->sd_sb.sb_bsize - 1) >> inode->i_blkbits;
763
764 iomap->offset = lblock << inode->i_blkbits;
765 iomap->addr = IOMAP_NULL_ADDR;
766 iomap->type = IOMAP_HOLE;
767 iomap->length = (u64)(lend - lblock) << inode->i_blkbits;
768 iomap->flags = IOMAP_F_MERGED;
b7bf5bfc 769 bmap_lock(ip, flags & IOMAP_WRITE);
20cdc193
AG
770
771 /*
772 * Directory data blocks have a struct gfs2_meta_header header, so the
773 * remaining size is smaller than the filesystem block size. Logical
774 * block numbers for directories are in units of this remaining size!
775 */
ecc30c79 776 if (gfs2_is_dir(ip)) {
20cdc193 777 factor = sdp->sd_jbsize;
ecc30c79
SW
778 arr = sdp->sd_jheightsize;
779 }
4cf1ed81 780
9b8c81d1
SW
781 ret = gfs2_meta_inode_buffer(ip, &mp.mp_bh[0]);
782 if (ret)
3974320c 783 goto out_release;
b3b94faa 784
9b8c81d1 785 height = ip->i_height;
3974320c 786 while ((lblock + 1) * factor > arr[height])
9b8c81d1
SW
787 height++;
788 find_metapath(sdp, lblock, &mp, height);
9b8c81d1
SW
789 if (height > ip->i_height || gfs2_is_stuffed(ip))
790 goto do_alloc;
3974320c 791
9b8c81d1
SW
792 ret = lookup_metapath(ip, &mp);
793 if (ret < 0)
3974320c
BP
794 goto out_release;
795
5f8bd444 796 if (mp.mp_aheight != ip->i_height)
9b8c81d1 797 goto do_alloc;
3974320c 798
9b8c81d1
SW
799 ptr = metapointer(ip->i_height - 1, &mp);
800 if (*ptr == 0)
801 goto do_alloc;
3974320c
BP
802
803 iomap->type = IOMAP_MAPPED;
804 iomap->addr = be64_to_cpu(*ptr) << inode->i_blkbits;
805
9b8c81d1 806 bh = mp.mp_bh[ip->i_height - 1];
3974320c 807 len = gfs2_extent_length(bh->b_data, bh->b_size, ptr, lend - lblock, &eob);
9b8c81d1 808 if (eob)
3974320c
BP
809 iomap->flags |= IOMAP_F_BOUNDARY;
810 iomap->length = (u64)len << inode->i_blkbits;
811
3974320c 812out_release:
9b8c81d1 813 release_metapath(&mp);
b7bf5bfc 814 bmap_unlock(ip, flags & IOMAP_WRITE);
3974320c
BP
815out:
816 trace_gfs2_iomap_end(ip, iomap, ret);
9b8c81d1 817 return ret;
30cbf189 818
9b8c81d1 819do_alloc:
b7bf5bfc
AG
820 if (flags & IOMAP_WRITE) {
821 ret = gfs2_iomap_alloc(inode, iomap, flags, &mp);
822 } else if (flags & IOMAP_REPORT) {
823 loff_t size = i_size_read(inode);
824 if (pos >= size)
3974320c 825 ret = -ENOENT;
b7bf5bfc
AG
826 else if (height <= ip->i_height)
827 iomap->length = hole_size(inode, lblock, &mp);
828 else
829 iomap->length = size - pos;
830 } else {
831 if (height <= ip->i_height)
832 iomap->length = hole_size(inode, lblock, &mp);
b3b94faa 833 }
3974320c
BP
834 goto out_release;
835}
836
837/**
838 * gfs2_block_map - Map a block from an inode to a disk block
839 * @inode: The inode
840 * @lblock: The logical block number
841 * @bh_map: The bh to be mapped
842 * @create: True if its ok to alloc blocks to satify the request
843 *
844 * Sets buffer_mapped() if successful, sets buffer_boundary() if a
845 * read of metadata will be required before the next block can be
846 * mapped. Sets buffer_new() if new blocks were allocated.
847 *
848 * Returns: errno
849 */
850
851int gfs2_block_map(struct inode *inode, sector_t lblock,
852 struct buffer_head *bh_map, int create)
853{
854 struct gfs2_inode *ip = GFS2_I(inode);
855 struct iomap iomap;
856 int ret, flags = 0;
857
858 clear_buffer_mapped(bh_map);
859 clear_buffer_new(bh_map);
860 clear_buffer_boundary(bh_map);
861 trace_gfs2_bmap(ip, bh_map, lblock, create, 1);
862
863 if (create)
864 flags |= IOMAP_WRITE;
5f8bd444 865 if (buffer_zeronew(bh_map))
3974320c
BP
866 flags |= IOMAP_ZERO;
867 ret = gfs2_iomap_begin(inode, (loff_t)lblock << inode->i_blkbits,
868 bh_map->b_size, flags, &iomap);
869 if (ret) {
870 if (!create && ret == -ENOENT) {
871 /* Return unmapped buffer beyond the end of file. */
872 ret = 0;
873 }
874 goto out;
875 }
876
877 if (iomap.length > bh_map->b_size) {
878 iomap.length = bh_map->b_size;
879 iomap.flags &= ~IOMAP_F_BOUNDARY;
5f8bd444 880 }
3974320c
BP
881 if (iomap.addr != IOMAP_NULL_ADDR)
882 map_bh(bh_map, inode->i_sb, iomap.addr >> inode->i_blkbits);
883 bh_map->b_size = iomap.length;
884 if (iomap.flags & IOMAP_F_BOUNDARY)
885 set_buffer_boundary(bh_map);
886 if (iomap.flags & IOMAP_F_NEW)
887 set_buffer_new(bh_map);
888
889out:
890 trace_gfs2_bmap(ip, bh_map, lblock, create, ret);
891 return ret;
fd88de56
SW
892}
893
941e6d7d
SW
894/*
895 * Deprecated: do not use in new code
896 */
fd88de56
SW
897int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen)
898{
23591256 899 struct buffer_head bh = { .b_state = 0, .b_blocknr = 0 };
7a6bbacb 900 int ret;
fd88de56
SW
901 int create = *new;
902
903 BUG_ON(!extlen);
904 BUG_ON(!dblock);
905 BUG_ON(!new);
906
47a9a527 907 bh.b_size = BIT(inode->i_blkbits + (create ? 0 : 5));
e9e1ef2b 908 ret = gfs2_block_map(inode, lblock, &bh, create);
7a6bbacb
SW
909 *extlen = bh.b_size >> inode->i_blkbits;
910 *dblock = bh.b_blocknr;
911 if (buffer_new(&bh))
912 *new = 1;
913 else
914 *new = 0;
915 return ret;
b3b94faa
DT
916}
917
ba7f7290
SW
918/**
919 * gfs2_block_truncate_page - Deal with zeroing out data for truncate
920 *
921 * This is partly borrowed from ext3.
922 */
ff8f33c8 923static int gfs2_block_truncate_page(struct address_space *mapping, loff_t from)
ba7f7290
SW
924{
925 struct inode *inode = mapping->host;
926 struct gfs2_inode *ip = GFS2_I(inode);
09cbfeaf
KS
927 unsigned long index = from >> PAGE_SHIFT;
928 unsigned offset = from & (PAGE_SIZE-1);
ba7f7290
SW
929 unsigned blocksize, iblock, length, pos;
930 struct buffer_head *bh;
931 struct page *page;
ba7f7290
SW
932 int err;
933
220cca2a 934 page = find_or_create_page(mapping, index, GFP_NOFS);
ba7f7290
SW
935 if (!page)
936 return 0;
937
938 blocksize = inode->i_sb->s_blocksize;
939 length = blocksize - (offset & (blocksize - 1));
09cbfeaf 940 iblock = index << (PAGE_SHIFT - inode->i_sb->s_blocksize_bits);
ba7f7290
SW
941
942 if (!page_has_buffers(page))
943 create_empty_buffers(page, blocksize, 0);
944
945 /* Find the buffer that contains "offset" */
946 bh = page_buffers(page);
947 pos = blocksize;
948 while (offset >= pos) {
949 bh = bh->b_this_page;
950 iblock++;
951 pos += blocksize;
952 }
953
954 err = 0;
955
956 if (!buffer_mapped(bh)) {
e9e1ef2b 957 gfs2_block_map(inode, iblock, bh, 0);
ba7f7290
SW
958 /* unmapped? It's a hole - nothing to do */
959 if (!buffer_mapped(bh))
960 goto unlock;
961 }
962
963 /* Ok, it's mapped. Make sure it's up-to-date */
964 if (PageUptodate(page))
965 set_buffer_uptodate(bh);
966
967 if (!buffer_uptodate(bh)) {
968 err = -EIO;
dfec8a14 969 ll_rw_block(REQ_OP_READ, 0, 1, &bh);
ba7f7290
SW
970 wait_on_buffer(bh);
971 /* Uhhuh. Read error. Complain and punt. */
972 if (!buffer_uptodate(bh))
973 goto unlock;
1875f2f3 974 err = 0;
ba7f7290
SW
975 }
976
bf36a713 977 if (!gfs2_is_writeback(ip))
350a9b0a 978 gfs2_trans_add_data(ip->i_gl, bh);
ba7f7290 979
eebd2aa3 980 zero_user(page, offset, length);
40bc9a27 981 mark_buffer_dirty(bh);
ba7f7290
SW
982unlock:
983 unlock_page(page);
09cbfeaf 984 put_page(page);
ba7f7290
SW
985 return err;
986}
987
c62baf65
FF
988#define GFS2_JTRUNC_REVOKES 8192
989
fa731fc4
SW
990/**
991 * gfs2_journaled_truncate - Wrapper for truncate_pagecache for jdata files
992 * @inode: The inode being truncated
993 * @oldsize: The original (larger) size
994 * @newsize: The new smaller size
995 *
996 * With jdata files, we have to journal a revoke for each block which is
997 * truncated. As a result, we need to split this into separate transactions
998 * if the number of pages being truncated gets too large.
999 */
1000
fa731fc4
SW
1001static int gfs2_journaled_truncate(struct inode *inode, u64 oldsize, u64 newsize)
1002{
1003 struct gfs2_sbd *sdp = GFS2_SB(inode);
1004 u64 max_chunk = GFS2_JTRUNC_REVOKES * sdp->sd_vfs->s_blocksize;
1005 u64 chunk;
1006 int error;
1007
1008 while (oldsize != newsize) {
1009 chunk = oldsize - newsize;
1010 if (chunk > max_chunk)
1011 chunk = max_chunk;
7caef267 1012 truncate_pagecache(inode, oldsize - chunk);
fa731fc4
SW
1013 oldsize -= chunk;
1014 gfs2_trans_end(sdp);
1015 error = gfs2_trans_begin(sdp, RES_DINODE, GFS2_JTRUNC_REVOKES);
1016 if (error)
1017 return error;
1018 }
1019
1020 return 0;
1021}
1022
ff8f33c8 1023static int trunc_start(struct inode *inode, u64 oldsize, u64 newsize)
b3b94faa 1024{
ff8f33c8
SW
1025 struct gfs2_inode *ip = GFS2_I(inode);
1026 struct gfs2_sbd *sdp = GFS2_SB(inode);
1027 struct address_space *mapping = inode->i_mapping;
b3b94faa
DT
1028 struct buffer_head *dibh;
1029 int journaled = gfs2_is_jdata(ip);
1030 int error;
1031
fa731fc4
SW
1032 if (journaled)
1033 error = gfs2_trans_begin(sdp, RES_DINODE + RES_JDATA, GFS2_JTRUNC_REVOKES);
1034 else
1035 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
b3b94faa
DT
1036 if (error)
1037 return error;
1038
1039 error = gfs2_meta_inode_buffer(ip, &dibh);
1040 if (error)
1041 goto out;
1042
350a9b0a 1043 gfs2_trans_add_meta(ip->i_gl, dibh);
ff8f33c8 1044
b3b94faa 1045 if (gfs2_is_stuffed(ip)) {
ff8f33c8 1046 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode) + newsize);
b3b94faa 1047 } else {
ff8f33c8
SW
1048 if (newsize & (u64)(sdp->sd_sb.sb_bsize - 1)) {
1049 error = gfs2_block_truncate_page(mapping, newsize);
1050 if (error)
1051 goto out_brelse;
b3b94faa 1052 }
ff8f33c8 1053 ip->i_diskflags |= GFS2_DIF_TRUNC_IN_PROG;
b3b94faa
DT
1054 }
1055
ff8f33c8 1056 i_size_write(inode, newsize);
078cd827 1057 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
ff8f33c8 1058 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa 1059
fa731fc4
SW
1060 if (journaled)
1061 error = gfs2_journaled_truncate(inode, oldsize, newsize);
1062 else
7caef267 1063 truncate_pagecache(inode, newsize);
fa731fc4
SW
1064
1065 if (error) {
1066 brelse(dibh);
1067 return error;
1068 }
1069
ff8f33c8
SW
1070out_brelse:
1071 brelse(dibh);
a91ea69f 1072out:
b3b94faa 1073 gfs2_trans_end(sdp);
b3b94faa
DT
1074 return error;
1075}
1076
d552a2b9
BP
1077/**
1078 * sweep_bh_for_rgrps - find an rgrp in a meta buffer and free blocks therein
1079 * @ip: inode
1080 * @rg_gh: holder of resource group glock
1081 * @mp: current metapath fully populated with buffers
1082 * @btotal: place to keep count of total blocks freed
1083 * @hgt: height we're processing
1084 * @first: true if this is the first call to this function for this height
1085 *
1086 * We sweep a metadata buffer (provided by the metapath) for blocks we need to
1087 * free, and free them all. However, we do it one rgrp at a time. If this
1088 * block has references to multiple rgrps, we break it into individual
1089 * transactions. This allows other processes to use the rgrps while we're
1090 * focused on a single one, for better concurrency / performance.
1091 * At every transaction boundary, we rewrite the inode into the journal.
1092 * That way the bitmaps are kept consistent with the inode and we can recover
1093 * if we're interrupted by power-outages.
1094 *
1095 * Returns: 0, or return code if an error occurred.
1096 * *btotal has the total number of blocks freed
1097 */
1098static int sweep_bh_for_rgrps(struct gfs2_inode *ip, struct gfs2_holder *rd_gh,
1099 const struct metapath *mp, u32 *btotal, int hgt,
1100 bool preserve1)
b3b94faa 1101{
9b8c81d1 1102 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
d552a2b9
BP
1103 struct gfs2_rgrpd *rgd;
1104 struct gfs2_trans *tr;
1105 struct buffer_head *bh = mp->mp_bh[hgt];
1106 __be64 *top, *bottom, *p;
1107 int blks_outside_rgrp;
1108 u64 bn, bstart, isize_blks;
1109 s64 blen; /* needs to be s64 or gfs2_add_inode_blocks breaks */
1110 int meta = ((hgt != ip->i_height - 1) ? 1 : 0);
1111 int ret = 0;
1112 bool buf_in_tr = false; /* buffer was added to transaction */
1113
1114 if (gfs2_metatype_check(sdp, bh,
1115 (hgt ? GFS2_METATYPE_IN : GFS2_METATYPE_DI)))
1116 return -EIO;
1117
1118more_rgrps:
1119 blks_outside_rgrp = 0;
1120 bstart = 0;
1121 blen = 0;
1122 top = metapointer(hgt, mp); /* first ptr from metapath */
1123 /* If we're keeping some data at the truncation point, we've got to
1124 preserve the metadata tree by adding 1 to the starting metapath. */
1125 if (preserve1)
1126 top++;
1127
1128 bottom = (__be64 *)(bh->b_data + bh->b_size);
1129
1130 for (p = top; p < bottom; p++) {
1131 if (!*p)
1132 continue;
1133 bn = be64_to_cpu(*p);
1134 if (gfs2_holder_initialized(rd_gh)) {
6f6597ba 1135 rgd = gfs2_glock2rgrp(rd_gh->gh_gl);
d552a2b9
BP
1136 gfs2_assert_withdraw(sdp,
1137 gfs2_glock_is_locked_by_me(rd_gh->gh_gl));
1138 } else {
1139 rgd = gfs2_blk2rgrpd(sdp, bn, false);
1140 ret = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
1141 0, rd_gh);
1142 if (ret)
1143 goto out;
1144
1145 /* Must be done with the rgrp glock held: */
1146 if (gfs2_rs_active(&ip->i_res) &&
1147 rgd == ip->i_res.rs_rbm.rgd)
1148 gfs2_rs_deltree(&ip->i_res);
1149 }
1150
1151 if (!rgrp_contains_block(rgd, bn)) {
1152 blks_outside_rgrp++;
1153 continue;
1154 }
1155
1156 /* The size of our transactions will be unknown until we
1157 actually process all the metadata blocks that relate to
1158 the rgrp. So we estimate. We know it can't be more than
1159 the dinode's i_blocks and we don't want to exceed the
1160 journal flush threshold, sd_log_thresh2. */
1161 if (current->journal_info == NULL) {
1162 unsigned int jblocks_rqsted, revokes;
1163
1164 jblocks_rqsted = rgd->rd_length + RES_DINODE +
1165 RES_INDIRECT;
1166 isize_blks = gfs2_get_inode_blocks(&ip->i_inode);
1167 if (isize_blks > atomic_read(&sdp->sd_log_thresh2))
1168 jblocks_rqsted +=
1169 atomic_read(&sdp->sd_log_thresh2);
1170 else
1171 jblocks_rqsted += isize_blks;
1172 revokes = jblocks_rqsted;
1173 if (meta)
1174 revokes += hptrs(sdp, hgt);
1175 else if (ip->i_depth)
1176 revokes += sdp->sd_inptrs;
1177 ret = gfs2_trans_begin(sdp, jblocks_rqsted, revokes);
1178 if (ret)
1179 goto out_unlock;
1180 down_write(&ip->i_rw_mutex);
1181 }
1182 /* check if we will exceed the transaction blocks requested */
1183 tr = current->journal_info;
1184 if (tr->tr_num_buf_new + RES_STATFS +
1185 RES_QUOTA >= atomic_read(&sdp->sd_log_thresh2)) {
1186 /* We set blks_outside_rgrp to ensure the loop will
1187 be repeated for the same rgrp, but with a new
1188 transaction. */
1189 blks_outside_rgrp++;
1190 /* This next part is tricky. If the buffer was added
1191 to the transaction, we've already set some block
1192 pointers to 0, so we better follow through and free
1193 them, or we will introduce corruption (so break).
1194 This may be impossible, or at least rare, but I
1195 decided to cover the case regardless.
1196
1197 If the buffer was not added to the transaction
1198 (this call), doing so would exceed our transaction
1199 size, so we need to end the transaction and start a
1200 new one (so goto). */
1201
1202 if (buf_in_tr)
1203 break;
1204 goto out_unlock;
1205 }
1206
1207 gfs2_trans_add_meta(ip->i_gl, bh);
1208 buf_in_tr = true;
1209 *p = 0;
1210 if (bstart + blen == bn) {
1211 blen++;
1212 continue;
1213 }
1214 if (bstart) {
1215 __gfs2_free_blocks(ip, bstart, (u32)blen, meta);
1216 (*btotal) += blen;
1217 gfs2_add_inode_blocks(&ip->i_inode, -blen);
1218 }
1219 bstart = bn;
1220 blen = 1;
1221 }
1222 if (bstart) {
1223 __gfs2_free_blocks(ip, bstart, (u32)blen, meta);
1224 (*btotal) += blen;
1225 gfs2_add_inode_blocks(&ip->i_inode, -blen);
1226 }
1227out_unlock:
1228 if (!ret && blks_outside_rgrp) { /* If buffer still has non-zero blocks
1229 outside the rgrp we just processed,
1230 do it all over again. */
1231 if (current->journal_info) {
1232 struct buffer_head *dibh = mp->mp_bh[0];
1233
1234 /* Every transaction boundary, we rewrite the dinode
1235 to keep its di_blocks current in case of failure. */
1236 ip->i_inode.i_mtime = ip->i_inode.i_ctime =
b32c8c76 1237 current_time(&ip->i_inode);
d552a2b9
BP
1238 gfs2_trans_add_meta(ip->i_gl, dibh);
1239 gfs2_dinode_out(ip, dibh->b_data);
1240 up_write(&ip->i_rw_mutex);
1241 gfs2_trans_end(sdp);
1242 }
1243 gfs2_glock_dq_uninit(rd_gh);
1244 cond_resched();
1245 goto more_rgrps;
1246 }
1247out:
1248 return ret;
1249}
1250
1251/**
1252 * find_nonnull_ptr - find a non-null pointer given a metapath and height
1253 * assumes the metapath is valid (with buffers) out to height h
1254 * @mp: starting metapath
1255 * @h: desired height to search
1256 *
1257 * Returns: true if a non-null pointer was found in the metapath buffer
1258 * false if all remaining pointers are NULL in the buffer
1259 */
1260static bool find_nonnull_ptr(struct gfs2_sbd *sdp, struct metapath *mp,
1261 unsigned int h)
1262{
1263 __be64 *ptr;
1264 unsigned int ptrs = hptrs(sdp, h) - 1;
1265
1266 while (true) {
1267 ptr = metapointer(h, mp);
c4a9d189
BP
1268 if (*ptr) { /* if we have a non-null pointer */
1269 /* Now zero the metapath after the current height. */
1270 h++;
1271 if (h < GFS2_MAX_META_HEIGHT)
1272 memset(&mp->mp_list[h], 0,
1273 (GFS2_MAX_META_HEIGHT - h) *
1274 sizeof(mp->mp_list[0]));
d552a2b9 1275 return true;
c4a9d189 1276 }
d552a2b9
BP
1277
1278 if (mp->mp_list[h] < ptrs)
1279 mp->mp_list[h]++;
1280 else
1281 return false; /* no more pointers in this buffer */
1282 }
1283}
1284
1285enum dealloc_states {
1286 DEALLOC_MP_FULL = 0, /* Strip a metapath with all buffers read in */
1287 DEALLOC_MP_LOWER = 1, /* lower the metapath strip height */
1288 DEALLOC_FILL_MP = 2, /* Fill in the metapath to the given height. */
1289 DEALLOC_DONE = 3, /* process complete */
1290};
b3b94faa 1291
c4a9d189
BP
1292static bool mp_eq_to_hgt(struct metapath *mp, __u16 *nbof, unsigned int h)
1293{
1294 if (memcmp(mp->mp_list, nbof, h * sizeof(mp->mp_list[0])))
1295 return false;
1296 return true;
1297}
1298
d552a2b9
BP
1299/**
1300 * trunc_dealloc - truncate a file down to a desired size
1301 * @ip: inode to truncate
1302 * @newsize: The desired size of the file
1303 *
1304 * This function truncates a file to newsize. It works from the
1305 * bottom up, and from the right to the left. In other words, it strips off
1306 * the highest layer (data) before stripping any of the metadata. Doing it
1307 * this way is best in case the operation is interrupted by power failure, etc.
1308 * The dinode is rewritten in every transaction to guarantee integrity.
1309 */
1310static int trunc_dealloc(struct gfs2_inode *ip, u64 newsize)
1311{
1312 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
1313 struct metapath mp;
1314 struct buffer_head *dibh, *bh;
1315 struct gfs2_holder rd_gh;
1316 u64 lblock;
1317 __u16 nbof[GFS2_MAX_META_HEIGHT]; /* new beginning of truncation */
1318 unsigned int strip_h = ip->i_height - 1;
1319 u32 btotal = 0;
1320 int ret, state;
1321 int mp_h; /* metapath buffers are read in to this height */
1322 sector_t last_ra = 0;
1323 u64 prev_bnr = 0;
1324 bool preserve1; /* need to preserve the first meta pointer? */
1325
1326 if (!newsize)
b3b94faa 1327 lblock = 0;
18ec7d5c 1328 else
d552a2b9 1329 lblock = (newsize - 1) >> sdp->sd_sb.sb_bsize_shift;
b3b94faa 1330
d552a2b9 1331 memset(&mp, 0, sizeof(mp));
9b8c81d1 1332 find_metapath(sdp, lblock, &mp, ip->i_height);
b3b94faa 1333
d552a2b9
BP
1334 memcpy(&nbof, &mp.mp_list, sizeof(nbof));
1335
1336 ret = gfs2_meta_inode_buffer(ip, &dibh);
1337 if (ret)
1338 return ret;
b3b94faa 1339
d552a2b9
BP
1340 mp.mp_bh[0] = dibh;
1341 ret = lookup_metapath(ip, &mp);
1342 if (ret == ip->i_height)
1343 state = DEALLOC_MP_FULL; /* We have a complete metapath */
1344 else
1345 state = DEALLOC_FILL_MP; /* deal with partial metapath */
b3b94faa 1346
d552a2b9
BP
1347 ret = gfs2_rindex_update(sdp);
1348 if (ret)
1349 goto out_metapath;
1350
1351 ret = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
1352 if (ret)
1353 goto out_metapath;
1354 gfs2_holder_mark_uninitialized(&rd_gh);
1355
1356 mp_h = strip_h;
1357
1358 while (state != DEALLOC_DONE) {
1359 switch (state) {
1360 /* Truncate a full metapath at the given strip height.
1361 * Note that strip_h == mp_h in order to be in this state. */
1362 case DEALLOC_MP_FULL:
1363 if (mp_h > 0) { /* issue read-ahead on metadata */
1364 __be64 *top;
1365
1366 bh = mp.mp_bh[mp_h - 1];
1367 if (bh->b_blocknr != last_ra) {
1368 last_ra = bh->b_blocknr;
1369 top = metaptr1(mp_h - 1, &mp);
1370 gfs2_metapath_ra(ip->i_gl, bh, top);
1371 }
1372 }
1373 /* If we're truncating to a non-zero size and the mp is
1374 at the beginning of file for the strip height, we
1375 need to preserve the first metadata pointer. */
c4a9d189 1376 preserve1 = (newsize && mp_eq_to_hgt(&mp, nbof, mp_h));
d552a2b9
BP
1377 bh = mp.mp_bh[mp_h];
1378 gfs2_assert_withdraw(sdp, bh);
1379 if (gfs2_assert_withdraw(sdp,
1380 prev_bnr != bh->b_blocknr)) {
1381 printk(KERN_EMERG "GFS2: fsid=%s:inode %llu, "
1382 "block:%llu, i_h:%u, s_h:%u, mp_h:%u\n",
1383 sdp->sd_fsname,
1384 (unsigned long long)ip->i_no_addr,
1385 prev_bnr, ip->i_height, strip_h, mp_h);
1386 }
1387 prev_bnr = bh->b_blocknr;
1388 ret = sweep_bh_for_rgrps(ip, &rd_gh, &mp, &btotal,
1389 mp_h, preserve1);
1390 /* If we hit an error or just swept dinode buffer,
1391 just exit. */
1392 if (ret || !mp_h) {
1393 state = DEALLOC_DONE;
1394 break;
1395 }
1396 state = DEALLOC_MP_LOWER;
1397 break;
1398
1399 /* lower the metapath strip height */
1400 case DEALLOC_MP_LOWER:
1401 /* We're done with the current buffer, so release it,
1402 unless it's the dinode buffer. Then back up to the
1403 previous pointer. */
1404 if (mp_h) {
1405 brelse(mp.mp_bh[mp_h]);
1406 mp.mp_bh[mp_h] = NULL;
1407 }
1408 /* If we can't get any lower in height, we've stripped
1409 off all we can. Next step is to back up and start
1410 stripping the previous level of metadata. */
1411 if (mp_h == 0) {
1412 strip_h--;
1413 memcpy(&mp.mp_list, &nbof, sizeof(nbof));
1414 mp_h = strip_h;
1415 state = DEALLOC_FILL_MP;
1416 break;
1417 }
1418 mp.mp_list[mp_h] = 0;
1419 mp_h--; /* search one metadata height down */
1420 if (mp.mp_list[mp_h] >= hptrs(sdp, mp_h) - 1)
1421 break; /* loop around in the same state */
1422 mp.mp_list[mp_h]++;
1423 /* Here we've found a part of the metapath that is not
1424 * allocated. We need to search at that height for the
1425 * next non-null pointer. */
1426 if (find_nonnull_ptr(sdp, &mp, mp_h)) {
1427 state = DEALLOC_FILL_MP;
1428 mp_h++;
1429 }
1430 /* No more non-null pointers at this height. Back up
1431 to the previous height and try again. */
1432 break; /* loop around in the same state */
1433
1434 /* Fill the metapath with buffers to the given height. */
1435 case DEALLOC_FILL_MP:
1436 /* Fill the buffers out to the current height. */
1437 ret = fillup_metapath(ip, &mp, mp_h);
1438 if (ret < 0)
1439 goto out;
1440
1441 /* If buffers found for the entire strip height */
1442 if ((ret == ip->i_height) && (mp_h == strip_h)) {
1443 state = DEALLOC_MP_FULL;
1444 break;
1445 }
1446 if (ret < ip->i_height) /* We have a partial height */
1447 mp_h = ret - 1;
1448
1449 /* If we find a non-null block pointer, crawl a bit
1450 higher up in the metapath and try again, otherwise
1451 we need to look lower for a new starting point. */
1452 if (find_nonnull_ptr(sdp, &mp, mp_h))
1453 mp_h++;
1454 else
1455 state = DEALLOC_MP_LOWER;
b3b94faa 1456 break;
d552a2b9 1457 }
b3b94faa
DT
1458 }
1459
d552a2b9
BP
1460 if (btotal) {
1461 if (current->journal_info == NULL) {
1462 ret = gfs2_trans_begin(sdp, RES_DINODE + RES_STATFS +
1463 RES_QUOTA, 0);
1464 if (ret)
1465 goto out;
1466 down_write(&ip->i_rw_mutex);
1467 }
1468 gfs2_statfs_change(sdp, 0, +btotal, 0);
1469 gfs2_quota_change(ip, -(s64)btotal, ip->i_inode.i_uid,
1470 ip->i_inode.i_gid);
b32c8c76 1471 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
d552a2b9
BP
1472 gfs2_trans_add_meta(ip->i_gl, dibh);
1473 gfs2_dinode_out(ip, dibh->b_data);
1474 up_write(&ip->i_rw_mutex);
1475 gfs2_trans_end(sdp);
1476 }
b3b94faa 1477
d552a2b9
BP
1478out:
1479 if (gfs2_holder_initialized(&rd_gh))
1480 gfs2_glock_dq_uninit(&rd_gh);
1481 if (current->journal_info) {
1482 up_write(&ip->i_rw_mutex);
1483 gfs2_trans_end(sdp);
1484 cond_resched();
1485 }
1486 gfs2_quota_unhold(ip);
1487out_metapath:
1488 release_metapath(&mp);
1489 return ret;
b3b94faa
DT
1490}
1491
1492static int trunc_end(struct gfs2_inode *ip)
1493{
feaa7bba 1494 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
b3b94faa
DT
1495 struct buffer_head *dibh;
1496 int error;
1497
1498 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1499 if (error)
1500 return error;
1501
1502 down_write(&ip->i_rw_mutex);
1503
1504 error = gfs2_meta_inode_buffer(ip, &dibh);
1505 if (error)
1506 goto out;
1507
a2e0f799 1508 if (!i_size_read(&ip->i_inode)) {
ecc30c79 1509 ip->i_height = 0;
ce276b06 1510 ip->i_goal = ip->i_no_addr;
b3b94faa 1511 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
45138990 1512 gfs2_ordered_del_inode(ip);
b3b94faa 1513 }
078cd827 1514 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
383f01fb 1515 ip->i_diskflags &= ~GFS2_DIF_TRUNC_IN_PROG;
b3b94faa 1516
350a9b0a 1517 gfs2_trans_add_meta(ip->i_gl, dibh);
539e5d6b 1518 gfs2_dinode_out(ip, dibh->b_data);
b3b94faa
DT
1519 brelse(dibh);
1520
a91ea69f 1521out:
b3b94faa 1522 up_write(&ip->i_rw_mutex);
b3b94faa 1523 gfs2_trans_end(sdp);
b3b94faa
DT
1524 return error;
1525}
1526
1527/**
1528 * do_shrink - make a file smaller
ff8f33c8
SW
1529 * @inode: the inode
1530 * @oldsize: the current inode size
1531 * @newsize: the size to make the file
b3b94faa 1532 *
ff8f33c8
SW
1533 * Called with an exclusive lock on @inode. The @size must
1534 * be equal to or smaller than the current inode size.
b3b94faa
DT
1535 *
1536 * Returns: errno
1537 */
1538
ff8f33c8 1539static int do_shrink(struct inode *inode, u64 oldsize, u64 newsize)
b3b94faa 1540{
ff8f33c8 1541 struct gfs2_inode *ip = GFS2_I(inode);
b3b94faa
DT
1542 int error;
1543
ff8f33c8 1544 error = trunc_start(inode, oldsize, newsize);
b3b94faa
DT
1545 if (error < 0)
1546 return error;
ff8f33c8 1547 if (gfs2_is_stuffed(ip))
b3b94faa
DT
1548 return 0;
1549
ff8f33c8
SW
1550 error = trunc_dealloc(ip, newsize);
1551 if (error == 0)
b3b94faa
DT
1552 error = trunc_end(ip);
1553
1554 return error;
1555}
1556
ff8f33c8 1557void gfs2_trim_blocks(struct inode *inode)
a13b8c5f 1558{
ff8f33c8
SW
1559 u64 size = inode->i_size;
1560 int ret;
1561
1562 ret = do_shrink(inode, size, size);
1563 WARN_ON(ret != 0);
1564}
1565
1566/**
1567 * do_grow - Touch and update inode size
1568 * @inode: The inode
1569 * @size: The new size
1570 *
1571 * This function updates the timestamps on the inode and
1572 * may also increase the size of the inode. This function
1573 * must not be called with @size any smaller than the current
1574 * inode size.
1575 *
1576 * Although it is not strictly required to unstuff files here,
1577 * earlier versions of GFS2 have a bug in the stuffed file reading
1578 * code which will result in a buffer overrun if the size is larger
1579 * than the max stuffed file size. In order to prevent this from
25985edc 1580 * occurring, such files are unstuffed, but in other cases we can
ff8f33c8
SW
1581 * just update the inode size directly.
1582 *
1583 * Returns: 0 on success, or -ve on error
1584 */
1585
1586static int do_grow(struct inode *inode, u64 size)
1587{
1588 struct gfs2_inode *ip = GFS2_I(inode);
1589 struct gfs2_sbd *sdp = GFS2_SB(inode);
7b9cff46 1590 struct gfs2_alloc_parms ap = { .target = 1, };
a13b8c5f
WC
1591 struct buffer_head *dibh;
1592 int error;
2f7ee358 1593 int unstuff = 0;
a13b8c5f 1594
ff8f33c8
SW
1595 if (gfs2_is_stuffed(ip) &&
1596 (size > (sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)))) {
b8fbf471 1597 error = gfs2_quota_lock_check(ip, &ap);
ff8f33c8 1598 if (error)
5407e242 1599 return error;
ff8f33c8 1600
7b9cff46 1601 error = gfs2_inplace_reserve(ip, &ap);
ff8f33c8
SW
1602 if (error)
1603 goto do_grow_qunlock;
2f7ee358 1604 unstuff = 1;
ff8f33c8
SW
1605 }
1606
a01aedfe
BP
1607 error = gfs2_trans_begin(sdp, RES_DINODE + RES_STATFS + RES_RG_BIT +
1608 (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF ?
1609 0 : RES_QUOTA), 0);
a13b8c5f 1610 if (error)
ff8f33c8 1611 goto do_grow_release;
a13b8c5f 1612
2f7ee358 1613 if (unstuff) {
ff8f33c8
SW
1614 error = gfs2_unstuff_dinode(ip, NULL);
1615 if (error)
1616 goto do_end_trans;
1617 }
a13b8c5f
WC
1618
1619 error = gfs2_meta_inode_buffer(ip, &dibh);
1620 if (error)
ff8f33c8 1621 goto do_end_trans;
a13b8c5f 1622
ff8f33c8 1623 i_size_write(inode, size);
078cd827 1624 ip->i_inode.i_mtime = ip->i_inode.i_ctime = current_time(&ip->i_inode);
350a9b0a 1625 gfs2_trans_add_meta(ip->i_gl, dibh);
a13b8c5f
WC
1626 gfs2_dinode_out(ip, dibh->b_data);
1627 brelse(dibh);
1628
ff8f33c8 1629do_end_trans:
a13b8c5f 1630 gfs2_trans_end(sdp);
ff8f33c8 1631do_grow_release:
2f7ee358 1632 if (unstuff) {
ff8f33c8
SW
1633 gfs2_inplace_release(ip);
1634do_grow_qunlock:
1635 gfs2_quota_unlock(ip);
ff8f33c8 1636 }
a13b8c5f
WC
1637 return error;
1638}
1639
b3b94faa 1640/**
ff8f33c8
SW
1641 * gfs2_setattr_size - make a file a given size
1642 * @inode: the inode
1643 * @newsize: the size to make the file
b3b94faa 1644 *
ff8f33c8
SW
1645 * The file size can grow, shrink, or stay the same size. This
1646 * is called holding i_mutex and an exclusive glock on the inode
1647 * in question.
b3b94faa
DT
1648 *
1649 * Returns: errno
1650 */
1651
ff8f33c8 1652int gfs2_setattr_size(struct inode *inode, u64 newsize)
b3b94faa 1653{
af5c2697 1654 struct gfs2_inode *ip = GFS2_I(inode);
ff8f33c8
SW
1655 int ret;
1656 u64 oldsize;
b3b94faa 1657
ff8f33c8 1658 BUG_ON(!S_ISREG(inode->i_mode));
b3b94faa 1659
ff8f33c8
SW
1660 ret = inode_newsize_ok(inode, newsize);
1661 if (ret)
1662 return ret;
b3b94faa 1663
562c72aa
CH
1664 inode_dio_wait(inode);
1665
b54e9a0b 1666 ret = gfs2_rsqa_alloc(ip);
d2b47cfb 1667 if (ret)
2b3dcf35 1668 goto out;
d2b47cfb 1669
ff8f33c8 1670 oldsize = inode->i_size;
2b3dcf35
BP
1671 if (newsize >= oldsize) {
1672 ret = do_grow(inode, newsize);
1673 goto out;
1674 }
ff8f33c8 1675
2b3dcf35
BP
1676 ret = do_shrink(inode, oldsize, newsize);
1677out:
a097dc7e 1678 gfs2_rsqa_delete(ip, NULL);
2b3dcf35 1679 return ret;
b3b94faa
DT
1680}
1681
1682int gfs2_truncatei_resume(struct gfs2_inode *ip)
1683{
1684 int error;
a2e0f799 1685 error = trunc_dealloc(ip, i_size_read(&ip->i_inode));
b3b94faa
DT
1686 if (!error)
1687 error = trunc_end(ip);
1688 return error;
1689}
1690
1691int gfs2_file_dealloc(struct gfs2_inode *ip)
1692{
1693 return trunc_dealloc(ip, 0);
1694}
1695
b50f227b
SW
1696/**
1697 * gfs2_free_journal_extents - Free cached journal bmap info
1698 * @jd: The journal
1699 *
1700 */
1701
1702void gfs2_free_journal_extents(struct gfs2_jdesc *jd)
1703{
1704 struct gfs2_journal_extent *jext;
1705
1706 while(!list_empty(&jd->extent_list)) {
1707 jext = list_entry(jd->extent_list.next, struct gfs2_journal_extent, list);
1708 list_del(&jext->list);
1709 kfree(jext);
1710 }
1711}
1712
1713/**
1714 * gfs2_add_jextent - Add or merge a new extent to extent cache
1715 * @jd: The journal descriptor
1716 * @lblock: The logical block at start of new extent
c62baf65 1717 * @dblock: The physical block at start of new extent
b50f227b
SW
1718 * @blocks: Size of extent in fs blocks
1719 *
1720 * Returns: 0 on success or -ENOMEM
1721 */
1722
1723static int gfs2_add_jextent(struct gfs2_jdesc *jd, u64 lblock, u64 dblock, u64 blocks)
1724{
1725 struct gfs2_journal_extent *jext;
1726
1727 if (!list_empty(&jd->extent_list)) {
1728 jext = list_entry(jd->extent_list.prev, struct gfs2_journal_extent, list);
1729 if ((jext->dblock + jext->blocks) == dblock) {
1730 jext->blocks += blocks;
1731 return 0;
1732 }
1733 }
1734
1735 jext = kzalloc(sizeof(struct gfs2_journal_extent), GFP_NOFS);
1736 if (jext == NULL)
1737 return -ENOMEM;
1738 jext->dblock = dblock;
1739 jext->lblock = lblock;
1740 jext->blocks = blocks;
1741 list_add_tail(&jext->list, &jd->extent_list);
1742 jd->nr_extents++;
1743 return 0;
1744}
1745
1746/**
1747 * gfs2_map_journal_extents - Cache journal bmap info
1748 * @sdp: The super block
1749 * @jd: The journal to map
1750 *
1751 * Create a reusable "extent" mapping from all logical
1752 * blocks to all physical blocks for the given journal. This will save
1753 * us time when writing journal blocks. Most journals will have only one
1754 * extent that maps all their logical blocks. That's because gfs2.mkfs
1755 * arranges the journal blocks sequentially to maximize performance.
1756 * So the extent would map the first block for the entire file length.
1757 * However, gfs2_jadd can happen while file activity is happening, so
1758 * those journals may not be sequential. Less likely is the case where
1759 * the users created their own journals by mounting the metafs and
1760 * laying it out. But it's still possible. These journals might have
1761 * several extents.
1762 *
1763 * Returns: 0 on success, or error on failure
1764 */
1765
1766int gfs2_map_journal_extents(struct gfs2_sbd *sdp, struct gfs2_jdesc *jd)
1767{
1768 u64 lblock = 0;
1769 u64 lblock_stop;
1770 struct gfs2_inode *ip = GFS2_I(jd->jd_inode);
1771 struct buffer_head bh;
1772 unsigned int shift = sdp->sd_sb.sb_bsize_shift;
1773 u64 size;
1774 int rc;
1775
1776 lblock_stop = i_size_read(jd->jd_inode) >> shift;
1777 size = (lblock_stop - lblock) << shift;
1778 jd->nr_extents = 0;
1779 WARN_ON(!list_empty(&jd->extent_list));
1780
1781 do {
1782 bh.b_state = 0;
1783 bh.b_blocknr = 0;
1784 bh.b_size = size;
1785 rc = gfs2_block_map(jd->jd_inode, lblock, &bh, 0);
1786 if (rc || !buffer_mapped(&bh))
1787 goto fail;
1788 rc = gfs2_add_jextent(jd, lblock, bh.b_blocknr, bh.b_size >> shift);
1789 if (rc)
1790 goto fail;
1791 size -= bh.b_size;
1792 lblock += (bh.b_size >> ip->i_inode.i_blkbits);
1793 } while(size > 0);
1794
1795 fs_info(sdp, "journal %d mapped with %u extents\n", jd->jd_jid,
1796 jd->nr_extents);
1797 return 0;
1798
1799fail:
1800 fs_warn(sdp, "error %d mapping journal %u at offset %llu (extent %u)\n",
1801 rc, jd->jd_jid,
1802 (unsigned long long)(i_size_read(jd->jd_inode) - size),
1803 jd->nr_extents);
1804 fs_warn(sdp, "bmap=%d lblock=%llu block=%llu, state=0x%08lx, size=%llu\n",
1805 rc, (unsigned long long)lblock, (unsigned long long)bh.b_blocknr,
1806 bh.b_state, (unsigned long long)bh.b_size);
1807 gfs2_free_journal_extents(jd);
1808 return rc;
1809}
1810
b3b94faa
DT
1811/**
1812 * gfs2_write_alloc_required - figure out if a write will require an allocation
1813 * @ip: the file being written to
1814 * @offset: the offset to write to
1815 * @len: the number of bytes being written
b3b94faa 1816 *
461cb419 1817 * Returns: 1 if an alloc is required, 0 otherwise
b3b94faa
DT
1818 */
1819
cd915493 1820int gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset,
461cb419 1821 unsigned int len)
b3b94faa 1822{
feaa7bba 1823 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
941e6d7d
SW
1824 struct buffer_head bh;
1825 unsigned int shift;
1826 u64 lblock, lblock_stop, size;
7ed122e4 1827 u64 end_of_file;
b3b94faa 1828
b3b94faa
DT
1829 if (!len)
1830 return 0;
1831
1832 if (gfs2_is_stuffed(ip)) {
1833 if (offset + len >
1834 sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
461cb419 1835 return 1;
b3b94faa
DT
1836 return 0;
1837 }
1838
941e6d7d 1839 shift = sdp->sd_sb.sb_bsize_shift;
7ed122e4 1840 BUG_ON(gfs2_is_dir(ip));
a2e0f799 1841 end_of_file = (i_size_read(&ip->i_inode) + sdp->sd_sb.sb_bsize - 1) >> shift;
7ed122e4
SW
1842 lblock = offset >> shift;
1843 lblock_stop = (offset + len + sdp->sd_sb.sb_bsize - 1) >> shift;
1844 if (lblock_stop > end_of_file)
461cb419 1845 return 1;
b3b94faa 1846
941e6d7d
SW
1847 size = (lblock_stop - lblock) << shift;
1848 do {
1849 bh.b_state = 0;
1850 bh.b_size = size;
1851 gfs2_block_map(&ip->i_inode, lblock, &bh, 0);
1852 if (!buffer_mapped(&bh))
461cb419 1853 return 1;
941e6d7d
SW
1854 size -= bh.b_size;
1855 lblock += (bh.b_size >> ip->i_inode.i_blkbits);
1856 } while(size > 0);
b3b94faa
DT
1857
1858 return 0;
1859}
1860