blob: fca69f12e4de8b8c7ea601eec4dd6c8c861cd23b [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
7 * of the GNU General Public License v.2.
8 */
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>
15#include <linux/pagemap.h>
Steven Whitehousefd88de562006-05-05 16:59:11 -040016#include <linux/pagevec.h>
Steven Whitehouse9b124fb2006-01-30 11:55:32 +000017#include <linux/mpage.h>
Steven Whitehoused1665e42006-02-14 11:54:42 +000018#include <linux/fs.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include <linux/gfs2_ondisk.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000020
21#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050022#include "lm_interface.h"
23#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "bmap.h"
25#include "glock.h"
26#include "inode.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000027#include "log.h"
28#include "meta_io.h"
29#include "ops_address.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000030#include "quota.h"
31#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000032#include "rgrp.h"
Steven Whitehouse61a30dc2006-02-15 10:15:18 +000033#include "ops_file.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050034#include "util.h"
Steven Whitehouse4340fe62006-07-11 09:46:33 -040035#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000036
Steven Whitehouseba7f7292006-07-26 11:27:10 -040037
38static void gfs2_page_add_databufs(struct gfs2_inode *ip, struct page *page,
39 unsigned int from, unsigned int to)
40{
41 struct buffer_head *head = page_buffers(page);
42 unsigned int bsize = head->b_size;
43 struct buffer_head *bh;
44 unsigned int start, end;
45
46 for (bh = head, start = 0; bh != head || !start;
47 bh = bh->b_this_page, start = end) {
48 end = start + bsize;
49 if (end <= from || start >= to)
50 continue;
51 gfs2_trans_add_bh(ip->i_gl, bh, 0);
52 }
53}
54
David Teiglandb3b94fa2006-01-16 16:50:04 +000055/**
Steven Whitehouse4ff14672006-01-30 09:39:10 +000056 * gfs2_get_block - Fills in a buffer head with details about a block
David Teiglandb3b94fa2006-01-16 16:50:04 +000057 * @inode: The inode
58 * @lblock: The block number to look up
59 * @bh_result: The buffer head to return the result in
60 * @create: Non-zero if we may add block to the file
61 *
62 * Returns: errno
63 */
64
Steven Whitehouse4ff14672006-01-30 09:39:10 +000065int gfs2_get_block(struct inode *inode, sector_t lblock,
66 struct buffer_head *bh_result, int create)
David Teiglandb3b94fa2006-01-16 16:50:04 +000067{
David Teiglandb3b94fa2006-01-16 16:50:04 +000068 int new = create;
69 uint64_t dblock;
70 int error;
Steven Whitehousefd88de562006-05-05 16:59:11 -040071 int boundary;
David Teiglandb3b94fa2006-01-16 16:50:04 +000072
Steven Whitehousefd88de562006-05-05 16:59:11 -040073 error = gfs2_block_map(inode, lblock, &new, &dblock, &boundary);
David Teiglandb3b94fa2006-01-16 16:50:04 +000074 if (error)
75 return error;
76
77 if (!dblock)
78 return 0;
79
80 map_bh(bh_result, inode->i_sb, dblock);
81 if (new)
82 set_buffer_new(bh_result);
Steven Whitehousefd88de562006-05-05 16:59:11 -040083 if (boundary)
84 set_buffer_boundary(bh_result);
David Teiglandb3b94fa2006-01-16 16:50:04 +000085
86 return 0;
87}
88
89/**
90 * get_block_noalloc - Fills in a buffer head with details about a block
91 * @inode: The inode
92 * @lblock: The block number to look up
93 * @bh_result: The buffer head to return the result in
94 * @create: Non-zero if we may add block to the file
95 *
96 * Returns: errno
97 */
98
99static int get_block_noalloc(struct inode *inode, sector_t lblock,
100 struct buffer_head *bh_result, int create)
101{
David Teiglandb3b94fa2006-01-16 16:50:04 +0000102 int new = 0;
103 uint64_t dblock;
104 int error;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400105 int boundary;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106
Steven Whitehousefd88de562006-05-05 16:59:11 -0400107 error = gfs2_block_map(inode, lblock, &new, &dblock, &boundary);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108 if (error)
109 return error;
110
111 if (dblock)
112 map_bh(bh_result, inode->i_sb, dblock);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400113 else if (gfs2_assert_withdraw(GFS2_SB(inode), !create))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114 error = -EIO;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400115 if (boundary)
116 set_buffer_boundary(bh_result);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117
118 return error;
119}
120
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121/**
122 * gfs2_writepage - Write complete page
123 * @page: Page to write
124 *
125 * Returns: errno
126 *
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000127 * Some of this is copied from block_write_full_page() although we still
128 * call it to do most of the work.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000129 */
130
131static int gfs2_writepage(struct page *page, struct writeback_control *wbc)
132{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000133 struct inode *inode = page->mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400134 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
135 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000136 loff_t i_size = i_size_read(inode);
137 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
138 unsigned offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139 int error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000140 int done_trans = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_held_excl(ip->i_gl))) {
143 unlock_page(page);
144 return -EIO;
145 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500146 if (current->journal_info)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000147 goto out_ignore;
148
149 /* Is the page fully outside i_size? (truncate in progress) */
150 offset = i_size & (PAGE_CACHE_SIZE-1);
Steven Whitehoused2d7b8a2006-05-02 12:09:42 -0400151 if (page->index > end_index || (page->index == end_index && !offset)) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000152 page->mapping->a_ops->invalidatepage(page, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153 unlock_page(page);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000154 return 0; /* don't care */
155 }
156
157 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip)) {
158 error = gfs2_trans_begin(sdp, RES_DINODE + 1, 0);
159 if (error)
160 goto out_ignore;
161 gfs2_page_add_databufs(ip, page, 0, sdp->sd_vfs->s_blocksize-1);
162 done_trans = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000163 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000164 error = block_write_full_page(page, get_block_noalloc, wbc);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000165 if (done_trans)
166 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167 gfs2_meta_cache_flush(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000168 return error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000169
170out_ignore:
171 redirty_page_for_writepage(wbc, page);
172 unlock_page(page);
173 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000174}
175
Steven Whitehousefd88de562006-05-05 16:59:11 -0400176static int zero_readpage(struct page *page)
177{
178 void *kaddr;
179
180 kaddr = kmap_atomic(page, KM_USER0);
181 memset(kaddr, 0, PAGE_CACHE_SIZE);
182 kunmap_atomic(page, KM_USER0);
183
184 SetPageUptodate(page);
185
186 return 0;
187}
188
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189/**
190 * stuffed_readpage - Fill in a Linux page with stuffed file data
191 * @ip: the inode
192 * @page: the page
193 *
194 * Returns: errno
195 */
196
197static int stuffed_readpage(struct gfs2_inode *ip, struct page *page)
198{
199 struct buffer_head *dibh;
200 void *kaddr;
201 int error;
202
Steven Whitehousefd88de562006-05-05 16:59:11 -0400203 /* Only the first page of a stuffed file might contain data */
204 if (unlikely(page->index))
205 return zero_readpage(page);
206
David Teiglandb3b94fa2006-01-16 16:50:04 +0000207 error = gfs2_meta_inode_buffer(ip, &dibh);
208 if (error)
209 return error;
210
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000211 kaddr = kmap_atomic(page, KM_USER0);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400212 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000213 ip->i_di.di_size);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400214 memset(kaddr + ip->i_di.di_size, 0, PAGE_CACHE_SIZE - ip->i_di.di_size);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000215 kunmap_atomic(page, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000216
217 brelse(dibh);
218
219 SetPageUptodate(page);
220
221 return 0;
222}
223
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224
225/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 * gfs2_readpage - readpage with locking
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000227 * @file: The file to read a page for. N.B. This may be NULL if we are
228 * reading an internal file.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229 * @page: The page to read
230 *
231 * Returns: errno
232 */
233
234static int gfs2_readpage(struct file *file, struct page *page)
235{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400236 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
237 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000238 struct gfs2_holder gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 int error;
240
Steven Whitehousefd88de562006-05-05 16:59:11 -0400241 if (likely(file != &gfs2_internal_file_sentinal)) {
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400242 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME|GL_AOP, &gh);
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000243 error = gfs2_glock_nq_m_atime(1, &gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400244 if (unlikely(error))
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000245 goto out_unlock;
246 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000247
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000248 if (gfs2_is_stuffed(ip)) {
Steven Whitehousefd88de562006-05-05 16:59:11 -0400249 error = stuffed_readpage(ip, page);
250 unlock_page(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000251 } else
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000252 error = mpage_readpage(page, gfs2_get_block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253
254 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
255 error = -EIO;
256
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000257 if (file != &gfs2_internal_file_sentinal) {
258 gfs2_glock_dq_m(1, &gh);
259 gfs2_holder_uninit(&gh);
260 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000261out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 return error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000263out_unlock:
264 unlock_page(page);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400265 if (file != &gfs2_internal_file_sentinal)
266 gfs2_holder_uninit(&gh);
267 goto out;
268}
269
Steven Whitehousefd88de562006-05-05 16:59:11 -0400270/**
271 * gfs2_readpages - Read a bunch of pages at once
272 *
273 * Some notes:
274 * 1. This is only for readahead, so we can simply ignore any things
275 * which are slightly inconvenient (such as locking conflicts between
276 * the page lock and the glock) and return having done no I/O. Its
277 * obviously not something we'd want to do on too regular a basis.
278 * Any I/O we ignore at this time will be done via readpage later.
279 * 2. We have to handle stuffed files here too.
280 * 3. mpage_readpages() does most of the heavy lifting in the common case.
281 * 4. gfs2_get_block() is relied upon to set BH_Boundary in the right places.
282 * 5. We use LM_FLAG_TRY_1CB here, effectively we then have lock-ahead as
283 * well as read-ahead.
284 */
285static int gfs2_readpages(struct file *file, struct address_space *mapping,
286 struct list_head *pages, unsigned nr_pages)
287{
288 struct inode *inode = mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400289 struct gfs2_inode *ip = GFS2_I(inode);
290 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400291 struct gfs2_holder gh;
292 unsigned page_idx;
293 int ret;
294
295 if (likely(file != &gfs2_internal_file_sentinal)) {
296 gfs2_holder_init(ip->i_gl, LM_ST_SHARED,
297 LM_FLAG_TRY_1CB|GL_ATIME|GL_AOP, &gh);
298 ret = gfs2_glock_nq_m_atime(1, &gh);
299 if (ret == GLR_TRYFAILED)
300 goto out_noerror;
301 if (unlikely(ret))
302 goto out_unlock;
303 }
304
305 if (gfs2_is_stuffed(ip)) {
306 struct pagevec lru_pvec;
307 pagevec_init(&lru_pvec, 0);
308 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Steven Whitehouseffeb8742006-07-10 15:47:01 -0400309 struct page *page = list_entry(pages->prev, struct page, lru);
310 prefetchw(&page->flags);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400311 list_del(&page->lru);
312 if (!add_to_page_cache(page, mapping,
313 page->index, GFP_KERNEL)) {
314 ret = stuffed_readpage(ip, page);
315 unlock_page(page);
316 if (!pagevec_add(&lru_pvec, page))
317 __pagevec_lru_add(&lru_pvec);
Steven Whitehouseffeb8742006-07-10 15:47:01 -0400318 } else {
319 page_cache_release(page);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400320 }
Steven Whitehousefd88de562006-05-05 16:59:11 -0400321 }
322 pagevec_lru_add(&lru_pvec);
323 ret = 0;
324 } else {
325 /* What we really want to do .... */
326 ret = mpage_readpages(mapping, pages, nr_pages, gfs2_get_block);
327 }
328
329 if (likely(file != &gfs2_internal_file_sentinal)) {
330 gfs2_glock_dq_m(1, &gh);
331 gfs2_holder_uninit(&gh);
332 }
333out:
334 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
335 ret = -EIO;
336 return ret;
337out_noerror:
338 ret = 0;
339out_unlock:
340 /* unlock all pages, we can't do any I/O right now */
341 for (page_idx = 0; page_idx < nr_pages; page_idx++) {
Steven Whitehouseffeb8742006-07-10 15:47:01 -0400342 struct page *page = list_entry(pages->prev, struct page, lru);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400343 list_del(&page->lru);
344 unlock_page(page);
345 page_cache_release(page);
346 }
347 if (likely(file != &gfs2_internal_file_sentinal))
348 gfs2_holder_uninit(&gh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000349 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000350}
351
352/**
353 * gfs2_prepare_write - Prepare to write a page to a file
354 * @file: The file to write to
355 * @page: The page which is to be prepared for writing
356 * @from: From (byte range within page)
357 * @to: To (byte range within page)
358 *
359 * Returns: errno
360 */
361
362static int gfs2_prepare_write(struct file *file, struct page *page,
363 unsigned from, unsigned to)
364{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400365 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
366 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000367 unsigned int data_blocks, ind_blocks, rblocks;
368 int alloc_required;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369 int error = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000370 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + from;
371 loff_t end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
372 struct gfs2_alloc *al;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373
Steven Whitehousefe1bded2006-04-18 10:09:15 -0400374 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|GL_AOP, &ip->i_gh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000375 error = gfs2_glock_nq_m_atime(1, &ip->i_gh);
376 if (error)
377 goto out_uninit;
378
379 gfs2_write_calc_reserv(ip, to - from, &data_blocks, &ind_blocks);
380
381 error = gfs2_write_alloc_required(ip, pos, from - to, &alloc_required);
382 if (error)
383 goto out_unlock;
384
385
386 if (alloc_required) {
387 al = gfs2_alloc_get(ip);
388
389 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
390 if (error)
391 goto out_alloc_put;
392
393 error = gfs2_quota_check(ip, ip->i_di.di_uid, ip->i_di.di_gid);
394 if (error)
395 goto out_qunlock;
396
397 al->al_requested = data_blocks + ind_blocks;
398 error = gfs2_inplace_reserve(ip);
399 if (error)
400 goto out_qunlock;
401 }
402
403 rblocks = RES_DINODE + ind_blocks;
404 if (gfs2_is_jdata(ip))
405 rblocks += data_blocks ? data_blocks : 1;
406 if (ind_blocks || data_blocks)
407 rblocks += RES_STATFS + RES_QUOTA;
408
409 error = gfs2_trans_begin(sdp, rblocks, 0);
410 if (error)
411 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000412
413 if (gfs2_is_stuffed(ip)) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000414 if (end > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400415 error = gfs2_unstuff_dinode(ip, page);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000416 if (error == 0)
417 goto prepare_write;
418 } else if (!PageUptodate(page))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419 error = stuffed_readpage(ip, page);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000420 goto out;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000421 }
422
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000423prepare_write:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000424 error = block_prepare_write(page, from, to, gfs2_get_block);
425
426out:
427 if (error) {
428 gfs2_trans_end(sdp);
429 if (alloc_required) {
430 gfs2_inplace_release(ip);
431out_qunlock:
432 gfs2_quota_unlock(ip);
433out_alloc_put:
434 gfs2_alloc_put(ip);
435 }
436out_unlock:
437 gfs2_glock_dq_m(1, &ip->i_gh);
438out_uninit:
439 gfs2_holder_uninit(&ip->i_gh);
440 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441
442 return error;
443}
444
445/**
446 * gfs2_commit_write - Commit write to a file
447 * @file: The file to write to
448 * @page: The page containing the data
449 * @from: From (byte range within page)
450 * @to: To (byte range within page)
451 *
452 * Returns: errno
453 */
454
455static int gfs2_commit_write(struct file *file, struct page *page,
456 unsigned from, unsigned to)
457{
458 struct inode *inode = page->mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400459 struct gfs2_inode *ip = GFS2_I(inode);
460 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000461 int error = -EOPNOTSUPP;
462 struct buffer_head *dibh;
463 struct gfs2_alloc *al = &ip->i_alloc;;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000464
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000465 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_locked_by_me(ip->i_gl)))
466 goto fail_nounlock;
467
468 error = gfs2_meta_inode_buffer(ip, &dibh);
469 if (error)
470 goto fail_endtrans;
471
472 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
473
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 if (gfs2_is_stuffed(ip)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 uint64_t file_size;
476 void *kaddr;
477
478 file_size = ((uint64_t)page->index << PAGE_CACHE_SHIFT) + to;
479
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000480 kaddr = kmap_atomic(page, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 memcpy(dibh->b_data + sizeof(struct gfs2_dinode) + from,
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000482 (char *)kaddr + from, to - from);
483 kunmap_atomic(page, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000484
485 SetPageUptodate(page);
486
487 if (inode->i_size < file_size)
488 i_size_write(inode, file_size);
489 } else {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500490 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED ||
491 gfs2_is_jdata(ip))
Steven Whitehouse257f9b42006-01-31 10:00:25 +0000492 gfs2_page_add_databufs(ip, page, from, to);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000493 error = generic_commit_write(file, page, from, to);
494 if (error)
495 goto fail;
496 }
497
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000498 if (ip->i_di.di_size < inode->i_size)
499 ip->i_di.di_size = inode->i_size;
500
501 gfs2_dinode_out(&ip->i_di, dibh->b_data);
502 brelse(dibh);
503 gfs2_trans_end(sdp);
504 if (al->al_requested) {
505 gfs2_inplace_release(ip);
506 gfs2_quota_unlock(ip);
507 gfs2_alloc_put(ip);
508 }
509 gfs2_glock_dq_m(1, &ip->i_gh);
510 gfs2_holder_uninit(&ip->i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000511 return 0;
512
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000513fail:
514 brelse(dibh);
515fail_endtrans:
516 gfs2_trans_end(sdp);
517 if (al->al_requested) {
518 gfs2_inplace_release(ip);
519 gfs2_quota_unlock(ip);
520 gfs2_alloc_put(ip);
521 }
522 gfs2_glock_dq_m(1, &ip->i_gh);
523 gfs2_holder_uninit(&ip->i_gh);
524fail_nounlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000525 ClearPageUptodate(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000526 return error;
527}
528
529/**
530 * gfs2_bmap - Block map function
531 * @mapping: Address space info
532 * @lblock: The block to map
533 *
534 * Returns: The disk address for the block or 0 on hole or error
535 */
536
537static sector_t gfs2_bmap(struct address_space *mapping, sector_t lblock)
538{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400539 struct gfs2_inode *ip = GFS2_I(mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 struct gfs2_holder i_gh;
541 sector_t dblock = 0;
542 int error;
543
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
545 if (error)
546 return 0;
547
548 if (!gfs2_is_stuffed(ip))
Steven Whitehouse4ff14672006-01-30 09:39:10 +0000549 dblock = generic_block_bmap(mapping, lblock, gfs2_get_block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000550
551 gfs2_glock_dq_uninit(&i_gh);
552
553 return dblock;
554}
555
556static void discard_buffer(struct gfs2_sbd *sdp, struct buffer_head *bh)
557{
Steven Whitehouse64fb4eb2006-01-18 13:14:40 +0000558 struct gfs2_bufdata *bd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559
560 gfs2_log_lock(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500561 bd = bh->b_private;
Steven Whitehouse64fb4eb2006-01-18 13:14:40 +0000562 if (bd) {
563 bd->bd_bh = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500564 bh->b_private = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 gfs2_log_unlock(sdp);
566 brelse(bh);
567 } else
568 gfs2_log_unlock(sdp);
569
570 lock_buffer(bh);
571 clear_buffer_dirty(bh);
572 bh->b_bdev = NULL;
573 clear_buffer_mapped(bh);
574 clear_buffer_req(bh);
575 clear_buffer_new(bh);
576 clear_buffer_delay(bh);
577 unlock_buffer(bh);
578}
579
Steven Whitehouse8628de02006-03-31 16:48:41 -0500580static void gfs2_invalidatepage(struct page *page, unsigned long offset)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500582 struct gfs2_sbd *sdp = page->mapping->host->i_sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 struct buffer_head *head, *bh, *next;
584 unsigned int curr_off = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000585
586 BUG_ON(!PageLocked(page));
587 if (!page_has_buffers(page))
Steven Whitehouse8628de02006-03-31 16:48:41 -0500588 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589
590 bh = head = page_buffers(page);
591 do {
592 unsigned int next_off = curr_off + bh->b_size;
593 next = bh->b_this_page;
594
595 if (offset <= curr_off)
596 discard_buffer(sdp, bh);
597
598 curr_off = next_off;
599 bh = next;
600 } while (bh != head);
601
602 if (!offset)
Steven Whitehouse8628de02006-03-31 16:48:41 -0500603 try_to_release_page(page, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604
Steven Whitehouse8628de02006-03-31 16:48:41 -0500605 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606}
607
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400608static ssize_t gfs2_direct_IO(int rw, struct kiocb *iocb,
609 const struct iovec *iov, loff_t offset,
610 unsigned long nr_segs)
Steven Whitehoused1665e42006-02-14 11:54:42 +0000611{
612 struct file *file = iocb->ki_filp;
613 struct inode *inode = file->f_mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400614 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000615 struct gfs2_holder gh;
616 int rv;
617
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400618 if (rw == READ)
619 mutex_lock(&inode->i_mutex);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000620 /*
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400621 * Shared lock, even if its a write, since we do no allocation
Steven Whitehoused1665e42006-02-14 11:54:42 +0000622 * on this path. All we need change is atime.
623 */
624 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &gh);
625 rv = gfs2_glock_nq_m_atime(1, &gh);
626 if (rv)
627 goto out;
628
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400629 if (offset > i_size_read(inode))
630 goto out;
631
Steven Whitehoused1665e42006-02-14 11:54:42 +0000632 /*
633 * Should we return an error here? I can't see that O_DIRECT for
634 * a journaled file makes any sense. For now we'll silently fall
635 * back to buffered I/O, likewise we do the same for stuffed
636 * files since they are (a) small and (b) unaligned.
637 */
638 if (gfs2_is_jdata(ip))
639 goto out;
640
641 if (gfs2_is_stuffed(ip))
642 goto out;
643
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400644 rv = blockdev_direct_IO_own_locking(rw, iocb, inode,
645 inode->i_sb->s_bdev,
646 iov, offset, nr_segs,
647 gfs2_get_block, NULL);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000648out:
649 gfs2_glock_dq_m(1, &gh);
650 gfs2_holder_uninit(&gh);
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400651 if (rw == READ)
652 mutex_unlock(&inode->i_mutex);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000653
654 return rv;
655}
656
657/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400658 * stuck_releasepage - We're stuck in gfs2_releasepage(). Print stuff out.
659 * @bh: the buffer we're stuck on
660 *
661 */
662
663static void stuck_releasepage(struct buffer_head *bh)
664{
665 struct inode *inode = bh->b_page->mapping->host;
666 struct gfs2_sbd *sdp = inode->i_sb->s_fs_info;
667 struct gfs2_bufdata *bd = bh->b_private;
668 struct gfs2_glock *gl;
669
670 fs_warn(sdp, "stuck in gfs2_releasepage() %p\n", inode);
671 fs_warn(sdp, "blkno = %llu, bh->b_count = %d\n",
672 (unsigned long long)bh->b_blocknr, atomic_read(&bh->b_count));
673 fs_warn(sdp, "pinned = %u\n", buffer_pinned(bh));
674 fs_warn(sdp, "bh->b_private = %s\n", (bd) ? "!NULL" : "NULL");
675
676 if (!bd)
677 return;
678
679 gl = bd->bd_gl;
680
681 fs_warn(sdp, "gl = (%u, %llu)\n",
682 gl->gl_name.ln_type, (unsigned long long)gl->gl_name.ln_number);
683
684 fs_warn(sdp, "bd_list_tr = %s, bd_le.le_list = %s\n",
685 (list_empty(&bd->bd_list_tr)) ? "no" : "yes",
686 (list_empty(&bd->bd_le.le_list)) ? "no" : "yes");
687
688 if (gl->gl_ops == &gfs2_inode_glops) {
689 struct gfs2_inode *ip = gl->gl_object;
690 unsigned int x;
691
692 if (!ip)
693 return;
694
695 fs_warn(sdp, "ip = %llu %llu\n",
696 (unsigned long long)ip->i_num.no_formal_ino,
697 (unsigned long long)ip->i_num.no_addr);
698
699 for (x = 0; x < GFS2_MAX_META_HEIGHT; x++)
700 fs_warn(sdp, "ip->i_cache[%u] = %s\n",
701 x, (ip->i_cache[x]) ? "!NULL" : "NULL");
702 }
703}
704
705/**
706 * gfs2_aspace_releasepage - free the metadata associated with a page
707 * @page: the page that's being released
708 * @gfp_mask: passed from Linux VFS, ignored by us
709 *
710 * Call try_to_free_buffers() if the buffers in this page can be
711 * released.
712 *
713 * Returns: 0
714 */
715
716int gfs2_releasepage(struct page *page, gfp_t gfp_mask)
717{
718 struct inode *aspace = page->mapping->host;
719 struct gfs2_sbd *sdp = aspace->i_sb->s_fs_info;
720 struct buffer_head *bh, *head;
721 struct gfs2_bufdata *bd;
722 unsigned long t;
723
724 if (!page_has_buffers(page))
725 goto out;
726
727 head = bh = page_buffers(page);
728 do {
729 t = jiffies;
730
731 while (atomic_read(&bh->b_count)) {
732 if (atomic_read(&aspace->i_writecount)) {
733 if (time_after_eq(jiffies, t +
734 gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
735 stuck_releasepage(bh);
736 t = jiffies;
737 }
738
739 yield();
740 continue;
741 }
742
743 return 0;
744 }
745
746 gfs2_assert_warn(sdp, !buffer_pinned(bh));
747
748 bd = bh->b_private;
749 if (bd) {
750 gfs2_assert_warn(sdp, bd->bd_bh == bh);
751 gfs2_assert_warn(sdp, list_empty(&bd->bd_list_tr));
752 gfs2_assert_warn(sdp, list_empty(&bd->bd_le.le_list));
753 gfs2_assert_warn(sdp, !bd->bd_ail);
754 kmem_cache_free(gfs2_bufdata_cachep, bd);
755 bh->b_private = NULL;
756 }
757
758 bh = bh->b_this_page;
759 }
760 while (bh != head);
761
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400762out:
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400763 return try_to_free_buffers(page);
764}
765
Steven Whitehouse66de0452006-07-03 13:37:30 -0400766const struct address_space_operations gfs2_file_aops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000767 .writepage = gfs2_writepage,
768 .readpage = gfs2_readpage,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400769 .readpages = gfs2_readpages,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000770 .sync_page = block_sync_page,
771 .prepare_write = gfs2_prepare_write,
772 .commit_write = gfs2_commit_write,
773 .bmap = gfs2_bmap,
774 .invalidatepage = gfs2_invalidatepage,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400775 .releasepage = gfs2_releasepage,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000776 .direct_IO = gfs2_direct_IO,
777};
778