blob: 06e3447ea1326e901f4f96e4c08bfa6b06d8eca2 [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
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050016#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020017#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "bmap.h"
22#include "glock.h"
23#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#include "quota.h"
26#include "rgrp.h"
27#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000028#include "dir.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050029#include "util.h"
Steven Whitehouseba7f7292006-07-26 11:27:10 -040030#include "ops_address.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000031
32/* This doesn't need to be that large as max 64 bit pointers in a 4k
33 * block is 512, so __u16 is fine for that. It saves stack space to
34 * keep it small.
35 */
36struct metapath {
37 __u16 mp_list[GFS2_MAX_META_HEIGHT];
38};
39
40typedef int (*block_call_t) (struct gfs2_inode *ip, struct buffer_head *dibh,
Al Virob44b84d2006-10-14 10:46:30 -040041 struct buffer_head *bh, __be64 *top,
42 __be64 *bottom, unsigned int height,
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 void *data);
44
45struct strip_mine {
46 int sm_first;
47 unsigned int sm_height;
48};
49
50/**
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040051 * gfs2_unstuffer_page - unstuff a stuffed inode into a block cached by a page
52 * @ip: the inode
53 * @dibh: the dinode buffer
54 * @block: the block number that was allocated
55 * @private: any locked page held by the caller process
56 *
57 * Returns: errno
58 */
59
60static int gfs2_unstuffer_page(struct gfs2_inode *ip, struct buffer_head *dibh,
Steven Whitehousecd915492006-09-04 12:49:07 -040061 u64 block, struct page *page)
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040062{
63 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
64 struct inode *inode = &ip->i_inode;
65 struct buffer_head *bh;
66 int release = 0;
67
68 if (!page || page->index) {
69 page = grab_cache_page(inode->i_mapping, 0);
70 if (!page)
71 return -ENOMEM;
72 release = 1;
73 }
74
75 if (!PageUptodate(page)) {
76 void *kaddr = kmap(page);
77
78 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode),
79 ip->i_di.di_size);
80 memset(kaddr + ip->i_di.di_size, 0,
81 PAGE_CACHE_SIZE - ip->i_di.di_size);
82 kunmap(page);
83
84 SetPageUptodate(page);
85 }
86
87 if (!page_has_buffers(page))
88 create_empty_buffers(page, 1 << inode->i_blkbits,
89 (1 << BH_Uptodate));
90
91 bh = page_buffers(page);
92
93 if (!buffer_mapped(bh))
94 map_bh(bh, inode->i_sb, block);
95
96 set_buffer_uptodate(bh);
Steven Whitehouse75d3b812006-09-04 11:41:31 -040097 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip))
Steven Whitehousef25ef0c2006-07-26 10:51:20 -040098 gfs2_trans_add_bh(ip->i_gl, bh, 0);
99 mark_buffer_dirty(bh);
100
101 if (release) {
102 unlock_page(page);
103 page_cache_release(page);
104 }
105
106 return 0;
107}
108
109/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110 * gfs2_unstuff_dinode - Unstuff a dinode when the data has grown too big
111 * @ip: The GFS2 inode to unstuff
112 * @unstuffer: the routine that handles unstuffing a non-zero length file
113 * @private: private data for the unstuffer
114 *
115 * This routine unstuffs a dinode and returns it to a "normal" state such
116 * that the height can be grown in the traditional way.
117 *
118 * Returns: errno
119 */
120
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400121int gfs2_unstuff_dinode(struct gfs2_inode *ip, struct page *page)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000122{
123 struct buffer_head *bh, *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400124 struct gfs2_dinode *di;
Steven Whitehousecd915492006-09-04 12:49:07 -0400125 u64 block = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000126 int isdir = gfs2_is_dir(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000127 int error;
128
129 down_write(&ip->i_rw_mutex);
130
131 error = gfs2_meta_inode_buffer(ip, &dibh);
132 if (error)
133 goto out;
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400134
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135 if (ip->i_di.di_size) {
136 /* Get a free block, fill it with the stuffed data,
137 and write it out to disk */
138
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000139 if (isdir) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 block = gfs2_alloc_meta(ip);
141
Steven Whitehouse61e085a2006-04-24 10:07:13 -0400142 error = gfs2_dir_get_new_buffer(ip, block, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143 if (error)
144 goto out_brelse;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400145 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_meta_header),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146 dibh, sizeof(struct gfs2_dinode));
147 brelse(bh);
148 } else {
149 block = gfs2_alloc_data(ip);
150
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400151 error = gfs2_unstuffer_page(ip, dibh, block, page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152 if (error)
153 goto out_brelse;
154 }
155 }
156
157 /* Set up the pointer to the new block */
158
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000159 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400160 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
162
163 if (ip->i_di.di_size) {
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400164 *(__be64 *)(di + 1) = cpu_to_be64(block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165 ip->i_di.di_blocks++;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500166 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400167 di->di_blocks = cpu_to_be64(ip->i_di.di_blocks);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000168 }
169
170 ip->i_di.di_height = 1;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400171 di->di_height = cpu_to_be16(1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000172
Steven Whitehousea91ea692006-09-04 12:04:26 -0400173out_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000174 brelse(dibh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400175out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000176 up_write(&ip->i_rw_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000177 return error;
178}
179
180/**
181 * calc_tree_height - Calculate the height of a metadata tree
182 * @ip: The GFS2 inode
183 * @size: The proposed size of the file
184 *
185 * Work out how tall a metadata tree needs to be in order to accommodate a
186 * file of a particular size. If size is less than the current size of
187 * the inode, then the current size of the inode is used instead of the
188 * supplied one.
189 *
190 * Returns: the height the tree should be
191 */
192
Steven Whitehousecd915492006-09-04 12:49:07 -0400193static unsigned int calc_tree_height(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400195 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400196 u64 *arr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 unsigned int max, height;
198
199 if (ip->i_di.di_size > size)
200 size = ip->i_di.di_size;
201
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000202 if (gfs2_is_dir(ip)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000203 arr = sdp->sd_jheightsize;
204 max = sdp->sd_max_jheight;
205 } else {
206 arr = sdp->sd_heightsize;
207 max = sdp->sd_max_height;
208 }
209
210 for (height = 0; height < max; height++)
211 if (arr[height] >= size)
212 break;
213
214 return height;
215}
216
217/**
218 * build_height - Build a metadata tree of the requested height
219 * @ip: The GFS2 inode
220 * @height: The height to build to
221 *
David Teiglandb3b94fa2006-01-16 16:50:04 +0000222 *
223 * Returns: errno
224 */
225
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400226static int build_height(struct inode *inode, unsigned height)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400228 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400229 unsigned new_height = height - ip->i_di.di_height;
230 struct buffer_head *dibh;
231 struct buffer_head *blocks[GFS2_MAX_META_HEIGHT];
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400232 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000233 int error;
Al Virob44b84d2006-10-14 10:46:30 -0400234 __be64 *bp;
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400235 u64 bn;
236 unsigned n;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400238 if (height <= ip->i_di.di_height)
239 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400241 error = gfs2_meta_inode_buffer(ip, &dibh);
242 if (error)
243 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400245 for(n = 0; n < new_height; n++) {
246 bn = gfs2_alloc_meta(ip);
247 blocks[n] = gfs2_meta_new(ip->i_gl, bn);
248 gfs2_trans_add_bh(ip->i_gl, blocks[n], 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400250
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400251 n = 0;
252 bn = blocks[0]->b_blocknr;
253 if (new_height > 1) {
254 for(; n < new_height-1; n++) {
255 gfs2_metatype_set(blocks[n], GFS2_METATYPE_IN,
256 GFS2_FORMAT_IN);
257 gfs2_buffer_clear_tail(blocks[n],
258 sizeof(struct gfs2_meta_header));
Al Virob44b84d2006-10-14 10:46:30 -0400259 bp = (__be64 *)(blocks[n]->b_data +
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400260 sizeof(struct gfs2_meta_header));
261 *bp = cpu_to_be64(blocks[n+1]->b_blocknr);
262 brelse(blocks[n]);
263 blocks[n] = NULL;
264 }
265 }
266 gfs2_metatype_set(blocks[n], GFS2_METATYPE_IN, GFS2_FORMAT_IN);
267 gfs2_buffer_copy_tail(blocks[n], sizeof(struct gfs2_meta_header),
268 dibh, sizeof(struct gfs2_dinode));
269 brelse(blocks[n]);
270 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400271 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400272 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400273 *(__be64 *)(di + 1) = cpu_to_be64(bn);
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400274 ip->i_di.di_height += new_height;
275 ip->i_di.di_blocks += new_height;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500276 gfs2_set_inode_blocks(&ip->i_inode);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400277 di->di_height = cpu_to_be16(ip->i_di.di_height);
278 di->di_blocks = cpu_to_be64(ip->i_di.di_blocks);
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400279 brelse(dibh);
280 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281}
282
283/**
284 * find_metapath - Find path through the metadata tree
285 * @ip: The inode pointer
286 * @mp: The metapath to return the result in
287 * @block: The disk block to look up
288 *
289 * This routine returns a struct metapath structure that defines a path
290 * through the metadata of inode "ip" to get to block "block".
291 *
292 * Example:
293 * Given: "ip" is a height 3 file, "offset" is 101342453, and this is a
294 * filesystem with a blocksize of 4096.
295 *
296 * find_metapath() would return a struct metapath structure set to:
297 * mp_offset = 101342453, mp_height = 3, mp_list[0] = 0, mp_list[1] = 48,
298 * and mp_list[2] = 165.
299 *
300 * That means that in order to get to the block containing the byte at
301 * offset 101342453, we would load the indirect block pointed to by pointer
302 * 0 in the dinode. We would then load the indirect block pointed to by
303 * pointer 48 in that indirect block. We would then load the data block
304 * pointed to by pointer 165 in that indirect block.
305 *
306 * ----------------------------------------
307 * | Dinode | |
308 * | | 4|
309 * | |0 1 2 3 4 5 9|
310 * | | 6|
311 * ----------------------------------------
312 * |
313 * |
314 * V
315 * ----------------------------------------
316 * | Indirect Block |
317 * | 5|
318 * | 4 4 4 4 4 5 5 1|
319 * |0 5 6 7 8 9 0 1 2|
320 * ----------------------------------------
321 * |
322 * |
323 * V
324 * ----------------------------------------
325 * | Indirect Block |
326 * | 1 1 1 1 1 5|
327 * | 6 6 6 6 6 1|
328 * |0 3 4 5 6 7 2|
329 * ----------------------------------------
330 * |
331 * |
332 * V
333 * ----------------------------------------
334 * | Data block containing offset |
335 * | 101342453 |
336 * | |
337 * | |
338 * ----------------------------------------
339 *
340 */
341
Steven Whitehousecd915492006-09-04 12:49:07 -0400342static void find_metapath(struct gfs2_inode *ip, u64 block,
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500343 struct metapath *mp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000344{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400345 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -0400346 u64 b = block;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347 unsigned int i;
348
349 for (i = ip->i_di.di_height; i--;)
Steven Whitehousec2668712006-09-04 13:55:48 -0400350 mp->mp_list[i] = do_div(b, sdp->sd_inptrs);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000351
352}
353
354/**
355 * metapointer - Return pointer to start of metadata in a buffer
356 * @bh: The buffer
357 * @height: The metadata height (0 = dinode)
358 * @mp: The metapath
359 *
360 * Return a pointer to the block number of the next height of the metadata
361 * tree given a buffer containing the pointer to the current height of the
362 * metadata tree.
363 */
364
Al Virob44b84d2006-10-14 10:46:30 -0400365static inline __be64 *metapointer(struct buffer_head *bh, int *boundary,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400366 unsigned int height, const struct metapath *mp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367{
368 unsigned int head_size = (height > 0) ?
369 sizeof(struct gfs2_meta_header) : sizeof(struct gfs2_dinode);
Al Virob44b84d2006-10-14 10:46:30 -0400370 __be64 *ptr;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400371 *boundary = 0;
Al Virob44b84d2006-10-14 10:46:30 -0400372 ptr = ((__be64 *)(bh->b_data + head_size)) + mp->mp_list[height];
373 if (ptr + 1 == (__be64 *)(bh->b_data + bh->b_size))
Steven Whitehousefd88de562006-05-05 16:59:11 -0400374 *boundary = 1;
375 return ptr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376}
377
378/**
379 * lookup_block - Get the next metadata block in metadata tree
380 * @ip: The GFS2 inode
381 * @bh: Buffer containing the pointers to metadata blocks
382 * @height: The height of the tree (0 = dinode)
383 * @mp: The metapath
384 * @create: Non-zero if we may create a new meatdata block
385 * @new: Used to indicate if we did create a new metadata block
386 * @block: the returned disk block number
387 *
388 * Given a metatree, complete to a particular height, checks to see if the next
389 * height of the tree exists. If not the next height of the tree is created.
390 * The block number of the next height of the metadata tree is returned.
391 *
392 */
393
Steven Whitehousefd88de562006-05-05 16:59:11 -0400394static int lookup_block(struct gfs2_inode *ip, struct buffer_head *bh,
395 unsigned int height, struct metapath *mp, int create,
Steven Whitehousecd915492006-09-04 12:49:07 -0400396 int *new, u64 *block)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397{
Steven Whitehousefd88de562006-05-05 16:59:11 -0400398 int boundary;
Al Virob44b84d2006-10-14 10:46:30 -0400399 __be64 *ptr = metapointer(bh, &boundary, height, mp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000400
401 if (*ptr) {
402 *block = be64_to_cpu(*ptr);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400403 return boundary;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000404 }
405
406 *block = 0;
407
408 if (!create)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400409 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000410
Steven Whitehousefd88de562006-05-05 16:59:11 -0400411 if (height == ip->i_di.di_height - 1 && !gfs2_is_dir(ip))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412 *block = gfs2_alloc_data(ip);
413 else
414 *block = gfs2_alloc_meta(ip);
415
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000416 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417
418 *ptr = cpu_to_be64(*block);
419 ip->i_di.di_blocks++;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500420 gfs2_set_inode_blocks(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421
422 *new = 1;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400423 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000424}
425
426/**
Steven Whitehousefd88de562006-05-05 16:59:11 -0400427 * gfs2_block_pointers - Map a block from an inode to a disk block
428 * @inode: The inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429 * @lblock: The logical block number
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400430 * @map_bh: The bh to be mapped
Steven Whitehousefd88de562006-05-05 16:59:11 -0400431 * @mp: metapath to use
David Teiglandb3b94fa2006-01-16 16:50:04 +0000432 *
433 * Find the block number on the current device which corresponds to an
434 * inode's block. If the block had to be created, "new" will be set.
435 *
436 * Returns: errno
437 */
438
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400439static int gfs2_block_pointers(struct inode *inode, u64 lblock, int create,
Steven Whitehouse23591252006-10-13 17:25:45 -0400440 struct buffer_head *bh_map, struct metapath *mp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400442 struct gfs2_inode *ip = GFS2_I(inode);
443 struct gfs2_sbd *sdp = GFS2_SB(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000444 struct buffer_head *bh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445 unsigned int bsize;
446 unsigned int height;
447 unsigned int end_of_metadata;
448 unsigned int x;
449 int error = 0;
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400450 int new = 0;
451 u64 dblock = 0;
452 int boundary;
Steven Whitehouse23591252006-10-13 17:25:45 -0400453 unsigned int maxlen = bh_map->b_size >> inode->i_blkbits;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400455 BUG_ON(maxlen == 0);
456
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457 if (gfs2_assert_warn(sdp, !gfs2_is_stuffed(ip)))
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400458 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000459
Steven Whitehouse75d3b812006-09-04 11:41:31 -0400460 bsize = gfs2_is_dir(ip) ? sdp->sd_jbsize : sdp->sd_sb.sb_bsize;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461
462 height = calc_tree_height(ip, (lblock + 1) * bsize);
463 if (ip->i_di.di_height < height) {
464 if (!create)
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400465 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000466
Steven Whitehousee90c01e2006-05-12 12:09:15 -0400467 error = build_height(inode, height);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468 if (error)
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400469 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000470 }
471
Steven Whitehousefd88de562006-05-05 16:59:11 -0400472 find_metapath(ip, lblock, mp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000473 end_of_metadata = ip->i_di.di_height - 1;
474
475 error = gfs2_meta_inode_buffer(ip, &bh);
476 if (error)
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400477 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478
479 for (x = 0; x < end_of_metadata; x++) {
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400480 lookup_block(ip, bh, x, mp, create, &new, &dblock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 brelse(bh);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400482 if (!dblock)
483 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400485 error = gfs2_meta_indirect_buffer(ip, x+1, dblock, new, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 if (error)
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400487 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000488 }
489
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400490 boundary = lookup_block(ip, bh, end_of_metadata, mp, create, &new, &dblock);
491 clear_buffer_mapped(bh_map);
492 clear_buffer_new(bh_map);
493 clear_buffer_boundary(bh_map);
494
495 if (dblock) {
496 map_bh(bh_map, inode->i_sb, dblock);
497 if (boundary)
498 set_buffer_boundary(bh);
499 if (new) {
500 struct buffer_head *dibh;
501 error = gfs2_meta_inode_buffer(ip, &dibh);
502 if (!error) {
503 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500504 gfs2_dinode_out(ip, dibh->b_data);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400505 brelse(dibh);
506 }
507 set_buffer_new(bh_map);
508 goto out_brelse;
509 }
510 while(--maxlen && !buffer_boundary(bh_map)) {
511 u64 eblock;
512
513 mp->mp_list[end_of_metadata]++;
514 boundary = lookup_block(ip, bh, end_of_metadata, mp, 0, &new, &eblock);
515 if (eblock != ++dblock)
516 break;
akpm@osdl.orgf3b30912006-09-18 22:16:03 -0700517 bh_map->b_size += (1 << inode->i_blkbits);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400518 if (boundary)
519 set_buffer_boundary(bh_map);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000520 }
521 }
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400522out_brelse:
523 brelse(bh);
524 return 0;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400525}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526
Steven Whitehousefd88de562006-05-05 16:59:11 -0400527
528static inline void bmap_lock(struct inode *inode, int create)
529{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400530 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400531 if (create)
532 down_write(&ip->i_rw_mutex);
533 else
534 down_read(&ip->i_rw_mutex);
535}
536
537static inline void bmap_unlock(struct inode *inode, int create)
538{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400539 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 if (create)
541 up_write(&ip->i_rw_mutex);
542 else
543 up_read(&ip->i_rw_mutex);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400544}
David Teiglandb3b94fa2006-01-16 16:50:04 +0000545
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400546int gfs2_block_map(struct inode *inode, u64 lblock, int create,
Steven Whitehouse23591252006-10-13 17:25:45 -0400547 struct buffer_head *bh)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400548{
549 struct metapath mp;
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400550 int ret;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400551
552 bmap_lock(inode, create);
Steven Whitehouse23591252006-10-13 17:25:45 -0400553 ret = gfs2_block_pointers(inode, lblock, create, bh, &mp);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400554 bmap_unlock(inode, create);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400555 return ret;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400556}
557
558int gfs2_extent_map(struct inode *inode, u64 lblock, int *new, u64 *dblock, unsigned *extlen)
559{
Steven Whitehousefd88de562006-05-05 16:59:11 -0400560 struct metapath mp;
Steven Whitehouse23591252006-10-13 17:25:45 -0400561 struct buffer_head bh = { .b_state = 0, .b_blocknr = 0 };
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400562 int ret;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400563 int create = *new;
564
565 BUG_ON(!extlen);
566 BUG_ON(!dblock);
567 BUG_ON(!new);
568
Steven Whitehouse23591252006-10-13 17:25:45 -0400569 bh.b_size = 1 << (inode->i_blkbits + 5);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400570 bmap_lock(inode, create);
Steven Whitehouse23591252006-10-13 17:25:45 -0400571 ret = gfs2_block_pointers(inode, lblock, create, &bh, &mp);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400572 bmap_unlock(inode, create);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400573 *extlen = bh.b_size >> inode->i_blkbits;
574 *dblock = bh.b_blocknr;
575 if (buffer_new(&bh))
576 *new = 1;
577 else
578 *new = 0;
579 return ret;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000580}
581
582/**
583 * recursive_scan - recursively scan through the end of a file
584 * @ip: the inode
585 * @dibh: the dinode buffer
586 * @mp: the path through the metadata to the point to start
587 * @height: the height the recursion is at
588 * @block: the indirect block to look at
589 * @first: 1 if this is the first block
590 * @bc: the call to make for each piece of metadata
591 * @data: data opaque to this function to pass to @bc
592 *
593 * When this is first called @height and @block should be zero and
594 * @first should be 1.
595 *
596 * Returns: errno
597 */
598
599static int recursive_scan(struct gfs2_inode *ip, struct buffer_head *dibh,
600 struct metapath *mp, unsigned int height,
Steven Whitehousecd915492006-09-04 12:49:07 -0400601 u64 block, int first, block_call_t bc,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000602 void *data)
603{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400604 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605 struct buffer_head *bh = NULL;
Al Virob44b84d2006-10-14 10:46:30 -0400606 __be64 *top, *bottom;
Steven Whitehousecd915492006-09-04 12:49:07 -0400607 u64 bn;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000608 int error;
609 int mh_size = sizeof(struct gfs2_meta_header);
610
611 if (!height) {
612 error = gfs2_meta_inode_buffer(ip, &bh);
613 if (error)
614 return error;
615 dibh = bh;
616
Al Virob44b84d2006-10-14 10:46:30 -0400617 top = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + mp->mp_list[0];
618 bottom = (__be64 *)(bh->b_data + sizeof(struct gfs2_dinode)) + sdp->sd_diptrs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619 } else {
620 error = gfs2_meta_indirect_buffer(ip, height, block, 0, &bh);
621 if (error)
622 return error;
623
Al Virob44b84d2006-10-14 10:46:30 -0400624 top = (__be64 *)(bh->b_data + mh_size) +
Jan Engelhardtc53921242006-09-05 14:30:40 +0200625 (first ? mp->mp_list[height] : 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000626
Al Virob44b84d2006-10-14 10:46:30 -0400627 bottom = (__be64 *)(bh->b_data + mh_size) + sdp->sd_inptrs;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628 }
629
630 error = bc(ip, dibh, bh, top, bottom, height, data);
631 if (error)
632 goto out;
633
634 if (height < ip->i_di.di_height - 1)
635 for (; top < bottom; top++, first = 0) {
636 if (!*top)
637 continue;
638
639 bn = be64_to_cpu(*top);
640
641 error = recursive_scan(ip, dibh, mp, height + 1, bn,
642 first, bc, data);
643 if (error)
644 break;
645 }
646
Steven Whitehousea91ea692006-09-04 12:04:26 -0400647out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000648 brelse(bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000649 return error;
650}
651
652/**
653 * do_strip - Look for a layer a particular layer of the file and strip it off
654 * @ip: the inode
655 * @dibh: the dinode buffer
656 * @bh: A buffer of pointers
657 * @top: The first pointer in the buffer
658 * @bottom: One more than the last pointer
659 * @height: the height this buffer is at
660 * @data: a pointer to a struct strip_mine
661 *
662 * Returns: errno
663 */
664
665static int do_strip(struct gfs2_inode *ip, struct buffer_head *dibh,
Al Virob44b84d2006-10-14 10:46:30 -0400666 struct buffer_head *bh, __be64 *top, __be64 *bottom,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667 unsigned int height, void *data)
668{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400669 struct strip_mine *sm = data;
670 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000671 struct gfs2_rgrp_list rlist;
Steven Whitehousecd915492006-09-04 12:49:07 -0400672 u64 bn, bstart;
673 u32 blen;
Al Virob44b84d2006-10-14 10:46:30 -0400674 __be64 *p;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000675 unsigned int rg_blocks = 0;
676 int metadata;
677 unsigned int revokes = 0;
678 int x;
679 int error;
680
681 if (!*top)
682 sm->sm_first = 0;
683
684 if (height != sm->sm_height)
685 return 0;
686
687 if (sm->sm_first) {
688 top++;
689 sm->sm_first = 0;
690 }
691
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000692 metadata = (height != ip->i_di.di_height - 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 if (metadata)
694 revokes = (height) ? sdp->sd_inptrs : sdp->sd_diptrs;
695
696 error = gfs2_rindex_hold(sdp, &ip->i_alloc.al_ri_gh);
697 if (error)
698 return error;
699
700 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
701 bstart = 0;
702 blen = 0;
703
704 for (p = top; p < bottom; p++) {
705 if (!*p)
706 continue;
707
708 bn = be64_to_cpu(*p);
709
710 if (bstart + blen == bn)
711 blen++;
712 else {
713 if (bstart)
714 gfs2_rlist_add(sdp, &rlist, bstart);
715
716 bstart = bn;
717 blen = 1;
718 }
719 }
720
721 if (bstart)
722 gfs2_rlist_add(sdp, &rlist, bstart);
723 else
724 goto out; /* Nothing to do */
725
726 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0);
727
728 for (x = 0; x < rlist.rl_rgrps; x++) {
729 struct gfs2_rgrpd *rgd;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500730 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000731 rg_blocks += rgd->rd_ri.ri_length;
732 }
733
734 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
735 if (error)
736 goto out_rlist;
737
738 error = gfs2_trans_begin(sdp, rg_blocks + RES_DINODE +
739 RES_INDIRECT + RES_STATFS + RES_QUOTA,
740 revokes);
741 if (error)
742 goto out_rg_gunlock;
743
744 down_write(&ip->i_rw_mutex);
745
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000746 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
747 gfs2_trans_add_bh(ip->i_gl, bh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000748
749 bstart = 0;
750 blen = 0;
751
752 for (p = top; p < bottom; p++) {
753 if (!*p)
754 continue;
755
756 bn = be64_to_cpu(*p);
757
758 if (bstart + blen == bn)
759 blen++;
760 else {
761 if (bstart) {
762 if (metadata)
763 gfs2_free_meta(ip, bstart, blen);
764 else
765 gfs2_free_data(ip, bstart, blen);
766 }
767
768 bstart = bn;
769 blen = 1;
770 }
771
772 *p = 0;
773 if (!ip->i_di.di_blocks)
774 gfs2_consist_inode(ip);
775 ip->i_di.di_blocks--;
Steven Whitehouse9e2dbda2006-11-08 15:45:46 -0500776 gfs2_set_inode_blocks(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000777 }
778 if (bstart) {
779 if (metadata)
780 gfs2_free_meta(ip, bstart, blen);
781 else
782 gfs2_free_data(ip, bstart, blen);
783 }
784
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500785 ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000786
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500787 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788
789 up_write(&ip->i_rw_mutex);
790
791 gfs2_trans_end(sdp);
792
Steven Whitehousea91ea692006-09-04 12:04:26 -0400793out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000794 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400795out_rlist:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 gfs2_rlist_free(&rlist);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400797out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798 gfs2_glock_dq_uninit(&ip->i_alloc.al_ri_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 return error;
800}
801
802/**
803 * do_grow - Make a file look bigger than it is
804 * @ip: the inode
805 * @size: the size to set the file to
806 *
807 * Called with an exclusive lock on @ip.
808 *
809 * Returns: errno
810 */
811
Steven Whitehousecd915492006-09-04 12:49:07 -0400812static int do_grow(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000813{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400814 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000815 struct gfs2_alloc *al;
816 struct buffer_head *dibh;
817 unsigned int h;
818 int error;
819
820 al = gfs2_alloc_get(ip);
821
822 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
823 if (error)
824 goto out;
825
Steven Whitehouse2933f922006-11-01 13:23:29 -0500826 error = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827 if (error)
828 goto out_gunlock_q;
829
830 al->al_requested = sdp->sd_max_height + RES_DATA;
831
832 error = gfs2_inplace_reserve(ip);
833 if (error)
834 goto out_gunlock_q;
835
836 error = gfs2_trans_begin(sdp,
837 sdp->sd_max_height + al->al_rgd->rd_ri.ri_length +
838 RES_JDATA + RES_DINODE + RES_STATFS + RES_QUOTA, 0);
839 if (error)
840 goto out_ipres;
841
842 if (size > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) {
843 if (gfs2_is_stuffed(ip)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400844 error = gfs2_unstuff_dinode(ip, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845 if (error)
846 goto out_end_trans;
847 }
848
849 h = calc_tree_height(ip, size);
850 if (ip->i_di.di_height < h) {
851 down_write(&ip->i_rw_mutex);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400852 error = build_height(&ip->i_inode, h);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000853 up_write(&ip->i_rw_mutex);
854 if (error)
855 goto out_end_trans;
856 }
857 }
858
859 ip->i_di.di_size = size;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500860 ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861
862 error = gfs2_meta_inode_buffer(ip, &dibh);
863 if (error)
864 goto out_end_trans;
865
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000866 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500867 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000868 brelse(dibh);
869
Steven Whitehousea91ea692006-09-04 12:04:26 -0400870out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000871 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400872out_ipres:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400874out_gunlock_q:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000875 gfs2_quota_unlock(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400876out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000878 return error;
879}
880
Steven Whitehouseba7f7292006-07-26 11:27:10 -0400881
882/**
883 * gfs2_block_truncate_page - Deal with zeroing out data for truncate
884 *
885 * This is partly borrowed from ext3.
886 */
887static int gfs2_block_truncate_page(struct address_space *mapping)
888{
889 struct inode *inode = mapping->host;
890 struct gfs2_inode *ip = GFS2_I(inode);
891 struct gfs2_sbd *sdp = GFS2_SB(inode);
892 loff_t from = inode->i_size;
893 unsigned long index = from >> PAGE_CACHE_SHIFT;
894 unsigned offset = from & (PAGE_CACHE_SIZE-1);
895 unsigned blocksize, iblock, length, pos;
896 struct buffer_head *bh;
897 struct page *page;
898 void *kaddr;
899 int err;
900
901 page = grab_cache_page(mapping, index);
902 if (!page)
903 return 0;
904
905 blocksize = inode->i_sb->s_blocksize;
906 length = blocksize - (offset & (blocksize - 1));
907 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
908
909 if (!page_has_buffers(page))
910 create_empty_buffers(page, blocksize, 0);
911
912 /* Find the buffer that contains "offset" */
913 bh = page_buffers(page);
914 pos = blocksize;
915 while (offset >= pos) {
916 bh = bh->b_this_page;
917 iblock++;
918 pos += blocksize;
919 }
920
921 err = 0;
922
923 if (!buffer_mapped(bh)) {
924 gfs2_get_block(inode, iblock, bh, 0);
925 /* unmapped? It's a hole - nothing to do */
926 if (!buffer_mapped(bh))
927 goto unlock;
928 }
929
930 /* Ok, it's mapped. Make sure it's up-to-date */
931 if (PageUptodate(page))
932 set_buffer_uptodate(bh);
933
934 if (!buffer_uptodate(bh)) {
935 err = -EIO;
936 ll_rw_block(READ, 1, &bh);
937 wait_on_buffer(bh);
938 /* Uhhuh. Read error. Complain and punt. */
939 if (!buffer_uptodate(bh))
940 goto unlock;
941 }
942
943 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip))
944 gfs2_trans_add_bh(ip->i_gl, bh, 0);
945
946 kaddr = kmap_atomic(page, KM_USER0);
947 memset(kaddr + offset, 0, length);
948 flush_dcache_page(page);
949 kunmap_atomic(kaddr, KM_USER0);
950
951unlock:
952 unlock_page(page);
953 page_cache_release(page);
954 return err;
955}
956
Steven Whitehousecd915492006-09-04 12:49:07 -0400957static int trunc_start(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400959 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000960 struct buffer_head *dibh;
961 int journaled = gfs2_is_jdata(ip);
962 int error;
963
964 error = gfs2_trans_begin(sdp,
Jan Engelhardtc53921242006-09-05 14:30:40 +0200965 RES_DINODE + (journaled ? RES_JDATA : 0), 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000966 if (error)
967 return error;
968
969 error = gfs2_meta_inode_buffer(ip, &dibh);
970 if (error)
971 goto out;
972
973 if (gfs2_is_stuffed(ip)) {
974 ip->i_di.di_size = size;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500975 ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds();
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000976 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500977 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode) + size);
979 error = 1;
980
981 } else {
Steven Whitehousecd915492006-09-04 12:49:07 -0400982 if (size & (u64)(sdp->sd_sb.sb_bsize - 1))
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400983 error = gfs2_block_truncate_page(ip->i_inode.i_mapping);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000984
985 if (!error) {
986 ip->i_di.di_size = size;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500987 ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000988 ip->i_di.di_flags |= GFS2_DIF_TRUNC_IN_PROG;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000989 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500990 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000991 }
992 }
993
994 brelse(dibh);
995
Steven Whitehousea91ea692006-09-04 12:04:26 -0400996out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000997 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998 return error;
999}
1000
Steven Whitehousecd915492006-09-04 12:49:07 -04001001static int trunc_dealloc(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001002{
1003 unsigned int height = ip->i_di.di_height;
Steven Whitehousecd915492006-09-04 12:49:07 -04001004 u64 lblock;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 struct metapath mp;
1006 int error;
1007
1008 if (!size)
1009 lblock = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +00001010 else
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001011 lblock = (size - 1) >> GFS2_SB(&ip->i_inode)->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001012
1013 find_metapath(ip, lblock, &mp);
1014 gfs2_alloc_get(ip);
1015
1016 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1017 if (error)
1018 goto out;
1019
1020 while (height--) {
1021 struct strip_mine sm;
1022 sm.sm_first = !!size;
1023 sm.sm_height = height;
1024
1025 error = recursive_scan(ip, NULL, &mp, 0, 0, 1, do_strip, &sm);
1026 if (error)
1027 break;
1028 }
1029
1030 gfs2_quota_unhold(ip);
1031
Steven Whitehousea91ea692006-09-04 12:04:26 -04001032out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001033 gfs2_alloc_put(ip);
1034 return error;
1035}
1036
1037static int trunc_end(struct gfs2_inode *ip)
1038{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001039 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040 struct buffer_head *dibh;
1041 int error;
1042
1043 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1044 if (error)
1045 return error;
1046
1047 down_write(&ip->i_rw_mutex);
1048
1049 error = gfs2_meta_inode_buffer(ip, &dibh);
1050 if (error)
1051 goto out;
1052
1053 if (!ip->i_di.di_size) {
1054 ip->i_di.di_height = 0;
1055 ip->i_di.di_goal_meta =
1056 ip->i_di.di_goal_data =
1057 ip->i_num.no_addr;
1058 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
1059 }
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -05001060 ip->i_inode.i_mtime.tv_sec = ip->i_inode.i_ctime.tv_sec = get_seconds();
David Teiglandb3b94fa2006-01-16 16:50:04 +00001061 ip->i_di.di_flags &= ~GFS2_DIF_TRUNC_IN_PROG;
1062
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +00001063 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -05001064 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001065 brelse(dibh);
1066
Steven Whitehousea91ea692006-09-04 12:04:26 -04001067out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001068 up_write(&ip->i_rw_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001069 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001070 return error;
1071}
1072
1073/**
1074 * do_shrink - make a file smaller
1075 * @ip: the inode
1076 * @size: the size to make the file
1077 * @truncator: function to truncate the last partial block
1078 *
1079 * Called with an exclusive lock on @ip.
1080 *
1081 * Returns: errno
1082 */
1083
Steven Whitehousecd915492006-09-04 12:49:07 -04001084static int do_shrink(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085{
1086 int error;
1087
Steven Whitehouseaa6a85a2006-01-24 10:37:06 +00001088 error = trunc_start(ip, size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001089 if (error < 0)
1090 return error;
1091 if (error > 0)
1092 return 0;
1093
1094 error = trunc_dealloc(ip, size);
1095 if (!error)
1096 error = trunc_end(ip);
1097
1098 return error;
1099}
1100
1101/**
Steven Whitehouse666a2c52006-01-18 10:29:04 +00001102 * gfs2_truncatei - make a file a given size
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103 * @ip: the inode
1104 * @size: the size to make the file
1105 * @truncator: function to truncate the last partial block
1106 *
1107 * The file size can grow, shrink, or stay the same size.
1108 *
1109 * Returns: errno
1110 */
1111
Steven Whitehousecd915492006-09-04 12:49:07 -04001112int gfs2_truncatei(struct gfs2_inode *ip, u64 size)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001113{
1114 int error;
1115
Steven Whitehouseb60623c2006-11-01 12:22:46 -05001116 if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), S_ISREG(ip->i_inode.i_mode)))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001117 return -EINVAL;
1118
1119 if (size > ip->i_di.di_size)
1120 error = do_grow(ip, size);
1121 else
Steven Whitehouseaa6a85a2006-01-24 10:37:06 +00001122 error = do_shrink(ip, size);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001123
1124 return error;
1125}
1126
1127int gfs2_truncatei_resume(struct gfs2_inode *ip)
1128{
1129 int error;
1130 error = trunc_dealloc(ip, ip->i_di.di_size);
1131 if (!error)
1132 error = trunc_end(ip);
1133 return error;
1134}
1135
1136int gfs2_file_dealloc(struct gfs2_inode *ip)
1137{
1138 return trunc_dealloc(ip, 0);
1139}
1140
1141/**
1142 * gfs2_write_calc_reserv - calculate number of blocks needed to write to a file
1143 * @ip: the file
1144 * @len: the number of bytes to be written to the file
1145 * @data_blocks: returns the number of data blocks required
1146 * @ind_blocks: returns the number of indirect blocks required
1147 *
1148 */
1149
1150void gfs2_write_calc_reserv(struct gfs2_inode *ip, unsigned int len,
1151 unsigned int *data_blocks, unsigned int *ind_blocks)
1152{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001153 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154 unsigned int tmp;
1155
Steven Whitehouse18ec7d52006-02-08 11:50:51 +00001156 if (gfs2_is_dir(ip)) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001157 *data_blocks = DIV_ROUND_UP(len, sdp->sd_jbsize) + 2;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001158 *ind_blocks = 3 * (sdp->sd_max_jheight - 1);
1159 } else {
1160 *data_blocks = (len >> sdp->sd_sb.sb_bsize_shift) + 3;
1161 *ind_blocks = 3 * (sdp->sd_max_height - 1);
1162 }
1163
1164 for (tmp = *data_blocks; tmp > sdp->sd_diptrs;) {
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001165 tmp = DIV_ROUND_UP(tmp, sdp->sd_inptrs);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166 *ind_blocks += tmp;
1167 }
1168}
1169
1170/**
1171 * gfs2_write_alloc_required - figure out if a write will require an allocation
1172 * @ip: the file being written to
1173 * @offset: the offset to write to
1174 * @len: the number of bytes being written
1175 * @alloc_required: set to 1 if an alloc is required, 0 otherwise
1176 *
1177 * Returns: errno
1178 */
1179
Steven Whitehousecd915492006-09-04 12:49:07 -04001180int gfs2_write_alloc_required(struct gfs2_inode *ip, u64 offset,
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181 unsigned int len, int *alloc_required)
1182{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001183 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Steven Whitehousecd915492006-09-04 12:49:07 -04001184 u64 lblock, lblock_stop, dblock;
1185 u32 extlen;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001186 int new = 0;
1187 int error = 0;
1188
1189 *alloc_required = 0;
1190
1191 if (!len)
1192 return 0;
1193
1194 if (gfs2_is_stuffed(ip)) {
1195 if (offset + len >
1196 sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
1197 *alloc_required = 1;
1198 return 0;
1199 }
1200
Steven Whitehouse18ec7d52006-02-08 11:50:51 +00001201 if (gfs2_is_dir(ip)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001202 unsigned int bsize = sdp->sd_jbsize;
1203 lblock = offset;
1204 do_div(lblock, bsize);
1205 lblock_stop = offset + len + bsize - 1;
1206 do_div(lblock_stop, bsize);
1207 } else {
1208 unsigned int shift = sdp->sd_sb.sb_bsize_shift;
1209 lblock = offset >> shift;
1210 lblock_stop = (offset + len + sdp->sd_sb.sb_bsize - 1) >> shift;
1211 }
1212
1213 for (; lblock < lblock_stop; lblock += extlen) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001214 error = gfs2_extent_map(&ip->i_inode, lblock, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001215 if (error)
1216 return error;
1217
1218 if (!dblock) {
1219 *alloc_required = 1;
1220 return 0;
1221 }
1222 }
1223
1224 return 0;
1225}
1226