blob: 37bfeb961eb367507511cbd9eac4760db2a71d52 [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>
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>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020020#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#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{
Steven Whitehouse23591252006-10-13 17:25:45 -040068 return gfs2_block_map(inode, lblock, create, bh_result);
David Teiglandb3b94fa2006-01-16 16:50:04 +000069}
70
71/**
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040072 * gfs2_get_block_noalloc - Fills in a buffer head with details about a block
David Teiglandb3b94fa2006-01-16 16:50:04 +000073 * @inode: The inode
74 * @lblock: The block number to look up
75 * @bh_result: The buffer head to return the result in
76 * @create: Non-zero if we may add block to the file
77 *
78 * Returns: errno
79 */
80
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040081static int gfs2_get_block_noalloc(struct inode *inode, sector_t lblock,
82 struct buffer_head *bh_result, int create)
David Teiglandb3b94fa2006-01-16 16:50:04 +000083{
David Teiglandb3b94fa2006-01-16 16:50:04 +000084 int error;
85
Steven Whitehouse23591252006-10-13 17:25:45 -040086 error = gfs2_block_map(inode, lblock, 0, bh_result);
David Teiglandb3b94fa2006-01-16 16:50:04 +000087 if (error)
88 return error;
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040089 if (bh_result->b_blocknr == 0)
90 return -EIO;
Steven Whitehouse623d9352006-08-31 12:14:44 -040091 return 0;
92}
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040093
94static int gfs2_get_block_direct(struct inode *inode, sector_t lblock,
95 struct buffer_head *bh_result, int create)
96{
Steven Whitehouse23591252006-10-13 17:25:45 -040097 return gfs2_block_map(inode, lblock, 0, bh_result);
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -040098}
99
David Teiglandb3b94fa2006-01-16 16:50:04 +0000100/**
101 * gfs2_writepage - Write complete page
102 * @page: Page to write
103 *
104 * Returns: errno
105 *
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000106 * Some of this is copied from block_write_full_page() although we still
107 * call it to do most of the work.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000108 */
109
110static int gfs2_writepage(struct page *page, struct writeback_control *wbc)
111{
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000112 struct inode *inode = page->mapping->host;
Steven Whitehousef4387142006-08-08 13:23:19 -0400113 struct gfs2_inode *ip = GFS2_I(inode);
114 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000115 loff_t i_size = i_size_read(inode);
116 pgoff_t end_index = i_size >> PAGE_CACHE_SHIFT;
117 unsigned offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000118 int error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000119 int done_trans = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000120
David Teiglandb3b94fa2006-01-16 16:50:04 +0000121 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_held_excl(ip->i_gl))) {
122 unlock_page(page);
123 return -EIO;
124 }
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500125 if (current->journal_info)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000126 goto out_ignore;
127
128 /* Is the page fully outside i_size? (truncate in progress) */
129 offset = i_size & (PAGE_CACHE_SIZE-1);
Steven Whitehoused2d7b8a2006-05-02 12:09:42 -0400130 if (page->index > end_index || (page->index == end_index && !offset)) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000131 page->mapping->a_ops->invalidatepage(page, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132 unlock_page(page);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000133 return 0; /* don't care */
134 }
135
136 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED || gfs2_is_jdata(ip)) {
137 error = gfs2_trans_begin(sdp, RES_DINODE + 1, 0);
138 if (error)
139 goto out_ignore;
Steven Whitehousef4387142006-08-08 13:23:19 -0400140 if (!page_has_buffers(page)) {
141 create_empty_buffers(page, inode->i_sb->s_blocksize,
142 (1 << BH_Dirty)|(1 << BH_Uptodate));
143 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000144 gfs2_page_add_databufs(ip, page, 0, sdp->sd_vfs->s_blocksize-1);
145 done_trans = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000146 }
Steven Whitehouse7a6bbac2006-09-18 17:18:23 -0400147 error = block_write_full_page(page, gfs2_get_block_noalloc, wbc);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000148 if (done_trans)
149 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000150 gfs2_meta_cache_flush(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000151 return error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000152
153out_ignore:
154 redirty_page_for_writepage(wbc, page);
155 unlock_page(page);
156 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157}
158
159/**
160 * stuffed_readpage - Fill in a Linux page with stuffed file data
161 * @ip: the inode
162 * @page: the page
163 *
164 * Returns: errno
165 */
166
167static int stuffed_readpage(struct gfs2_inode *ip, struct page *page)
168{
169 struct buffer_head *dibh;
170 void *kaddr;
171 int error;
172
Russell Cattelan61057c62006-11-09 11:42:33 -0500173 BUG_ON(page->index);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400174
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175 error = gfs2_meta_inode_buffer(ip, &dibh);
176 if (error)
177 return error;
178
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000179 kaddr = kmap_atomic(page, KM_USER0);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400180 memcpy(kaddr, dibh->b_data + sizeof(struct gfs2_dinode),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 ip->i_di.di_size);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400182 memset(kaddr + ip->i_di.di_size, 0, PAGE_CACHE_SIZE - ip->i_di.di_size);
Russell Cattelanc312c4f2006-10-12 09:23:41 -0400183 kunmap_atomic(kaddr, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000184
185 brelse(dibh);
186
187 SetPageUptodate(page);
188
189 return 0;
190}
191
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192
193/**
David Teiglandb3b94fa2006-01-16 16:50:04 +0000194 * gfs2_readpage - readpage with locking
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000195 * @file: The file to read a page for. N.B. This may be NULL if we are
196 * reading an internal file.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 * @page: The page to read
198 *
199 * Returns: errno
200 */
201
202static int gfs2_readpage(struct file *file, struct page *page)
203{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400204 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
205 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Russell Cattelandc41aee2006-09-18 17:26:48 -0400206 struct gfs2_file *gf = NULL;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000207 struct gfs2_holder gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000208 int error;
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400209 int do_unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000210
Steven Whitehousedd538c82006-09-04 14:53:30 -0400211 if (likely(file != &gfs2_internal_file_sentinel)) {
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400212 if (file) {
Russell Cattelandc41aee2006-09-18 17:26:48 -0400213 gf = file->private_data;
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400214 if (test_bit(GFF_EXLOCK, &gf->f_flags))
Russell Cattelandc41aee2006-09-18 17:26:48 -0400215 /* gfs2_sharewrite_nopage has grabbed the ip->i_gl already */
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400216 goto skip_lock;
217 }
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500218 gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME|LM_FLAG_TRY_1CB, &gh);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400219 do_unlock = 1;
Steven Whitehousedcd24792006-11-16 11:08:16 -0500220 error = gfs2_glock_nq_atime(&gh);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400221 if (unlikely(error))
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000222 goto out_unlock;
223 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400225skip_lock:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000226 if (gfs2_is_stuffed(ip)) {
Steven Whitehousefd88de562006-05-05 16:59:11 -0400227 error = stuffed_readpage(ip, page);
228 unlock_page(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229 } else
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000230 error = mpage_readpage(page, gfs2_get_block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000231
232 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
233 error = -EIO;
234
Steven Whitehouse07903c02006-09-18 17:30:05 -0400235 if (do_unlock) {
Steven Whitehouse61a30dc2006-02-15 10:15:18 +0000236 gfs2_glock_dq_m(1, &gh);
237 gfs2_holder_uninit(&gh);
238 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000239out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 return error;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000241out_unlock:
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500242 if (error == GLR_TRYFAILED)
243 error = AOP_TRUNCATED_PAGE;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000244 unlock_page(page);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400245 if (do_unlock)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400246 gfs2_holder_uninit(&gh);
247 goto out;
248}
249
Steven Whitehousefd88de562006-05-05 16:59:11 -0400250/**
251 * gfs2_readpages - Read a bunch of pages at once
252 *
253 * Some notes:
254 * 1. This is only for readahead, so we can simply ignore any things
255 * which are slightly inconvenient (such as locking conflicts between
256 * the page lock and the glock) and return having done no I/O. Its
257 * obviously not something we'd want to do on too regular a basis.
258 * Any I/O we ignore at this time will be done via readpage later.
Steven Whitehousee1d5b182006-12-15 16:49:51 -0500259 * 2. We don't handle stuffed files here we let readpage do the honours.
Steven Whitehousefd88de562006-05-05 16:59:11 -0400260 * 3. mpage_readpages() does most of the heavy lifting in the common case.
261 * 4. gfs2_get_block() is relied upon to set BH_Boundary in the right places.
262 * 5. We use LM_FLAG_TRY_1CB here, effectively we then have lock-ahead as
263 * well as read-ahead.
264 */
265static int gfs2_readpages(struct file *file, struct address_space *mapping,
266 struct list_head *pages, unsigned nr_pages)
267{
268 struct inode *inode = mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400269 struct gfs2_inode *ip = GFS2_I(inode);
270 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400271 struct gfs2_holder gh;
Steven Whitehousee1d5b182006-12-15 16:49:51 -0500272 int ret = 0;
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400273 int do_unlock = 0;
Steven Whitehousefd88de562006-05-05 16:59:11 -0400274
Steven Whitehousedd538c82006-09-04 14:53:30 -0400275 if (likely(file != &gfs2_internal_file_sentinel)) {
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400276 if (file) {
277 struct gfs2_file *gf = file->private_data;
278 if (test_bit(GFF_EXLOCK, &gf->f_flags))
279 goto skip_lock;
280 }
Steven Whitehousefd88de562006-05-05 16:59:11 -0400281 gfs2_holder_init(ip->i_gl, LM_ST_SHARED,
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500282 LM_FLAG_TRY_1CB|GL_ATIME, &gh);
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400283 do_unlock = 1;
Steven Whitehousedcd24792006-11-16 11:08:16 -0500284 ret = gfs2_glock_nq_atime(&gh);
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400285 if (ret == GLR_TRYFAILED)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400286 goto out_noerror;
287 if (unlikely(ret))
288 goto out_unlock;
289 }
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400290skip_lock:
Steven Whitehousee1d5b182006-12-15 16:49:51 -0500291 if (!gfs2_is_stuffed(ip))
Steven Whitehousefd88de562006-05-05 16:59:11 -0400292 ret = mpage_readpages(mapping, pages, nr_pages, gfs2_get_block);
Steven Whitehousefd88de562006-05-05 16:59:11 -0400293
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400294 if (do_unlock) {
Steven Whitehousefd88de562006-05-05 16:59:11 -0400295 gfs2_glock_dq_m(1, &gh);
296 gfs2_holder_uninit(&gh);
297 }
298out:
299 if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
300 ret = -EIO;
301 return ret;
302out_noerror:
303 ret = 0;
304out_unlock:
Steven Whitehouse59a1cc62006-08-04 15:41:22 -0400305 if (do_unlock)
Steven Whitehousefd88de562006-05-05 16:59:11 -0400306 gfs2_holder_uninit(&gh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000307 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000308}
309
310/**
311 * gfs2_prepare_write - Prepare to write a page to a file
312 * @file: The file to write to
313 * @page: The page which is to be prepared for writing
314 * @from: From (byte range within page)
315 * @to: To (byte range within page)
316 *
317 * Returns: errno
318 */
319
320static int gfs2_prepare_write(struct file *file, struct page *page,
321 unsigned from, unsigned to)
322{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400323 struct gfs2_inode *ip = GFS2_I(page->mapping->host);
324 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000325 unsigned int data_blocks, ind_blocks, rblocks;
326 int alloc_required;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000327 int error = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000328 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + from;
329 loff_t end = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
330 struct gfs2_alloc *al;
Russell Cattelan52ae7b72006-10-09 12:11:54 -0500331 unsigned int write_len = to - from;
332
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500334 gfs2_holder_init(ip->i_gl, LM_ST_EXCLUSIVE, GL_ATIME|LM_FLAG_TRY_1CB, &ip->i_gh);
Steven Whitehousedcd24792006-11-16 11:08:16 -0500335 error = gfs2_glock_nq_atime(&ip->i_gh);
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500336 if (unlikely(error)) {
337 if (error == GLR_TRYFAILED)
338 error = AOP_TRUNCATED_PAGE;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000339 goto out_uninit;
Steven Whitehouse2ca99502006-11-08 10:26:54 -0500340 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000341
Russell Cattelan52ae7b72006-10-09 12:11:54 -0500342 gfs2_write_calc_reserv(ip, write_len, &data_blocks, &ind_blocks);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000343
Russell Cattelan52ae7b72006-10-09 12:11:54 -0500344 error = gfs2_write_alloc_required(ip, pos, write_len, &alloc_required);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000345 if (error)
346 goto out_unlock;
347
348
Steven Whitehousef5c54802006-10-10 13:45:15 -0400349 ip->i_alloc.al_requested = 0;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000350 if (alloc_required) {
351 al = gfs2_alloc_get(ip);
352
353 error = gfs2_quota_lock(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
354 if (error)
355 goto out_alloc_put;
356
Steven Whitehouse2933f922006-11-01 13:23:29 -0500357 error = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000358 if (error)
359 goto out_qunlock;
360
361 al->al_requested = data_blocks + ind_blocks;
362 error = gfs2_inplace_reserve(ip);
363 if (error)
364 goto out_qunlock;
365 }
366
367 rblocks = RES_DINODE + ind_blocks;
368 if (gfs2_is_jdata(ip))
369 rblocks += data_blocks ? data_blocks : 1;
370 if (ind_blocks || data_blocks)
371 rblocks += RES_STATFS + RES_QUOTA;
372
373 error = gfs2_trans_begin(sdp, rblocks, 0);
374 if (error)
375 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376
377 if (gfs2_is_stuffed(ip)) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000378 if (end > sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode)) {
Steven Whitehousef25ef0c2006-07-26 10:51:20 -0400379 error = gfs2_unstuff_dinode(ip, page);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000380 if (error == 0)
381 goto prepare_write;
382 } else if (!PageUptodate(page))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000383 error = stuffed_readpage(ip, page);
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000384 goto out;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000385 }
386
Steven Whitehouse5c4e9e02006-02-15 12:26:19 +0000387prepare_write:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000388 error = block_prepare_write(page, from, to, gfs2_get_block);
389
390out:
391 if (error) {
392 gfs2_trans_end(sdp);
393 if (alloc_required) {
394 gfs2_inplace_release(ip);
395out_qunlock:
396 gfs2_quota_unlock(ip);
397out_alloc_put:
398 gfs2_alloc_put(ip);
399 }
400out_unlock:
401 gfs2_glock_dq_m(1, &ip->i_gh);
402out_uninit:
403 gfs2_holder_uninit(&ip->i_gh);
404 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405
406 return error;
407}
408
409/**
410 * gfs2_commit_write - Commit write to a file
411 * @file: The file to write to
412 * @page: The page containing the data
413 * @from: From (byte range within page)
414 * @to: To (byte range within page)
415 *
416 * Returns: errno
417 */
418
419static int gfs2_commit_write(struct file *file, struct page *page,
420 unsigned from, unsigned to)
421{
422 struct inode *inode = page->mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400423 struct gfs2_inode *ip = GFS2_I(inode);
424 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000425 int error = -EOPNOTSUPP;
426 struct buffer_head *dibh;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400427 struct gfs2_alloc *al = &ip->i_alloc;
428 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000429
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000430 if (gfs2_assert_withdraw(sdp, gfs2_glock_is_locked_by_me(ip->i_gl)))
431 goto fail_nounlock;
432
433 error = gfs2_meta_inode_buffer(ip, &dibh);
434 if (error)
435 goto fail_endtrans;
436
437 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400438 di = (struct gfs2_dinode *)dibh->b_data;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000439
David Teiglandb3b94fa2006-01-16 16:50:04 +0000440 if (gfs2_is_stuffed(ip)) {
Steven Whitehousecd915492006-09-04 12:49:07 -0400441 u64 file_size;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000442 void *kaddr;
443
Steven Whitehousecd915492006-09-04 12:49:07 -0400444 file_size = ((u64)page->index << PAGE_CACHE_SHIFT) + to;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000446 kaddr = kmap_atomic(page, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447 memcpy(dibh->b_data + sizeof(struct gfs2_dinode) + from,
Steven Whitehouse0bd59962006-09-04 14:59:35 -0400448 kaddr + from, to - from);
Russell Cattelanc312c4f2006-10-12 09:23:41 -0400449 kunmap_atomic(kaddr, KM_USER0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000450
451 SetPageUptodate(page);
452
Steven Whitehouseae619322006-11-22 11:28:47 -0500453 if (inode->i_size < file_size) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000454 i_size_write(inode, file_size);
Steven Whitehouseae619322006-11-22 11:28:47 -0500455 mark_inode_dirty(inode);
456 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000457 } else {
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500458 if (sdp->sd_args.ar_data == GFS2_DATA_ORDERED ||
459 gfs2_is_jdata(ip))
Steven Whitehouse257f9b42006-01-31 10:00:25 +0000460 gfs2_page_add_databufs(ip, page, from, to);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461 error = generic_commit_write(file, page, from, to);
462 if (error)
463 goto fail;
464 }
465
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400466 if (ip->i_di.di_size < inode->i_size) {
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000467 ip->i_di.di_size = inode->i_size;
Steven Whitehouse48516ce2006-10-02 12:39:19 -0400468 di->di_size = cpu_to_be64(inode->i_size);
469 }
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000470
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000471 brelse(dibh);
472 gfs2_trans_end(sdp);
473 if (al->al_requested) {
474 gfs2_inplace_release(ip);
475 gfs2_quota_unlock(ip);
476 gfs2_alloc_put(ip);
477 }
478 gfs2_glock_dq_m(1, &ip->i_gh);
479 gfs2_holder_uninit(&ip->i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000480 return 0;
481
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000482fail:
483 brelse(dibh);
484fail_endtrans:
485 gfs2_trans_end(sdp);
486 if (al->al_requested) {
487 gfs2_inplace_release(ip);
488 gfs2_quota_unlock(ip);
489 gfs2_alloc_put(ip);
490 }
491 gfs2_glock_dq_m(1, &ip->i_gh);
492 gfs2_holder_uninit(&ip->i_gh);
493fail_nounlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000494 ClearPageUptodate(page);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495 return error;
496}
497
498/**
499 * gfs2_bmap - Block map function
500 * @mapping: Address space info
501 * @lblock: The block to map
502 *
503 * Returns: The disk address for the block or 0 on hole or error
504 */
505
506static sector_t gfs2_bmap(struct address_space *mapping, sector_t lblock)
507{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400508 struct gfs2_inode *ip = GFS2_I(mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000509 struct gfs2_holder i_gh;
510 sector_t dblock = 0;
511 int error;
512
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
514 if (error)
515 return 0;
516
517 if (!gfs2_is_stuffed(ip))
Steven Whitehouse4ff14672006-01-30 09:39:10 +0000518 dblock = generic_block_bmap(mapping, lblock, gfs2_get_block);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519
520 gfs2_glock_dq_uninit(&i_gh);
521
522 return dblock;
523}
524
525static void discard_buffer(struct gfs2_sbd *sdp, struct buffer_head *bh)
526{
Steven Whitehouse64fb4eb2006-01-18 13:14:40 +0000527 struct gfs2_bufdata *bd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000528
529 gfs2_log_lock(sdp);
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500530 bd = bh->b_private;
Steven Whitehouse64fb4eb2006-01-18 13:14:40 +0000531 if (bd) {
532 bd->bd_bh = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500533 bh->b_private = NULL;
Steven Whitehouse15d00c02006-08-18 15:51:09 -0400534 }
535 gfs2_log_unlock(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000536
537 lock_buffer(bh);
538 clear_buffer_dirty(bh);
539 bh->b_bdev = NULL;
540 clear_buffer_mapped(bh);
541 clear_buffer_req(bh);
542 clear_buffer_new(bh);
543 clear_buffer_delay(bh);
544 unlock_buffer(bh);
545}
546
Steven Whitehouse8628de02006-03-31 16:48:41 -0500547static void gfs2_invalidatepage(struct page *page, unsigned long offset)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000548{
Steven Whitehouse15d00c02006-08-18 15:51:09 -0400549 struct gfs2_sbd *sdp = GFS2_SB(page->mapping->host);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000550 struct buffer_head *head, *bh, *next;
551 unsigned int curr_off = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000552
553 BUG_ON(!PageLocked(page));
554 if (!page_has_buffers(page))
Steven Whitehouse8628de02006-03-31 16:48:41 -0500555 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000556
557 bh = head = page_buffers(page);
558 do {
559 unsigned int next_off = curr_off + bh->b_size;
560 next = bh->b_this_page;
561
562 if (offset <= curr_off)
563 discard_buffer(sdp, bh);
564
565 curr_off = next_off;
566 bh = next;
567 } while (bh != head);
568
569 if (!offset)
Steven Whitehouse8628de02006-03-31 16:48:41 -0500570 try_to_release_page(page, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571
Steven Whitehouse8628de02006-03-31 16:48:41 -0500572 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000573}
574
Steven Whitehousec7b33832006-12-14 18:24:26 +0000575/**
576 * gfs2_ok_for_dio - check that dio is valid on this file
577 * @ip: The inode
578 * @rw: READ or WRITE
579 * @offset: The offset at which we are reading or writing
580 *
581 * Returns: 0 (to ignore the i/o request and thus fall back to buffered i/o)
582 * 1 (to accept the i/o request)
583 */
584static int gfs2_ok_for_dio(struct gfs2_inode *ip, int rw, loff_t offset)
585{
586 /*
587 * Should we return an error here? I can't see that O_DIRECT for
588 * a journaled file makes any sense. For now we'll silently fall
589 * back to buffered I/O, likewise we do the same for stuffed
590 * files since they are (a) small and (b) unaligned.
591 */
592 if (gfs2_is_jdata(ip))
593 return 0;
594
595 if (gfs2_is_stuffed(ip))
596 return 0;
597
598 if (offset > i_size_read(&ip->i_inode))
599 return 0;
600 return 1;
601}
602
603
604
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400605static ssize_t gfs2_direct_IO(int rw, struct kiocb *iocb,
606 const struct iovec *iov, loff_t offset,
607 unsigned long nr_segs)
Steven Whitehoused1665e42006-02-14 11:54:42 +0000608{
609 struct file *file = iocb->ki_filp;
610 struct inode *inode = file->f_mapping->host;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400611 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000612 struct gfs2_holder gh;
613 int rv;
614
615 /*
Steven Whitehousec7b33832006-12-14 18:24:26 +0000616 * Deferred lock, even if its a write, since we do no allocation
617 * on this path. All we need change is atime, and this lock mode
618 * ensures that other nodes have flushed their buffered read caches
619 * (i.e. their page cache entries for this inode). We do not,
620 * unfortunately have the option of only flushing a range like
621 * the VFS does.
Steven Whitehoused1665e42006-02-14 11:54:42 +0000622 */
Steven Whitehousec7b33832006-12-14 18:24:26 +0000623 gfs2_holder_init(ip->i_gl, LM_ST_DEFERRED, GL_ATIME, &gh);
Steven Whitehousedcd24792006-11-16 11:08:16 -0500624 rv = gfs2_glock_nq_atime(&gh);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000625 if (rv)
Steven Whitehousec7b33832006-12-14 18:24:26 +0000626 return rv;
627 rv = gfs2_ok_for_dio(ip, rw, offset);
628 if (rv != 1)
629 goto out; /* dio not valid, fall back to buffered i/o */
Steven Whitehoused1665e42006-02-14 11:54:42 +0000630
Steven Whitehousec7b33832006-12-14 18:24:26 +0000631 rv = blockdev_direct_IO_no_locking(rw, iocb, inode, inode->i_sb->s_bdev,
632 iov, offset, nr_segs,
633 gfs2_get_block_direct, NULL);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000634out:
635 gfs2_glock_dq_m(1, &gh);
636 gfs2_holder_uninit(&gh);
Steven Whitehoused1665e42006-02-14 11:54:42 +0000637 return rv;
638}
639
640/**
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400641 * stuck_releasepage - We're stuck in gfs2_releasepage(). Print stuff out.
642 * @bh: the buffer we're stuck on
643 *
644 */
645
646static void stuck_releasepage(struct buffer_head *bh)
647{
648 struct inode *inode = bh->b_page->mapping->host;
649 struct gfs2_sbd *sdp = inode->i_sb->s_fs_info;
650 struct gfs2_bufdata *bd = bh->b_private;
651 struct gfs2_glock *gl;
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400652static unsigned limit = 0;
653
Steven Whitehouse0bd59962006-09-04 14:59:35 -0400654 if (limit > 3)
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400655 return;
Steven Whitehouse0bd59962006-09-04 14:59:35 -0400656 limit++;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400657
658 fs_warn(sdp, "stuck in gfs2_releasepage() %p\n", inode);
659 fs_warn(sdp, "blkno = %llu, bh->b_count = %d\n",
660 (unsigned long long)bh->b_blocknr, atomic_read(&bh->b_count));
661 fs_warn(sdp, "pinned = %u\n", buffer_pinned(bh));
662 fs_warn(sdp, "bh->b_private = %s\n", (bd) ? "!NULL" : "NULL");
663
664 if (!bd)
665 return;
666
667 gl = bd->bd_gl;
668
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400669 fs_warn(sdp, "gl = (%u, %llu)\n",
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400670 gl->gl_name.ln_type, (unsigned long long)gl->gl_name.ln_number);
671
672 fs_warn(sdp, "bd_list_tr = %s, bd_le.le_list = %s\n",
673 (list_empty(&bd->bd_list_tr)) ? "no" : "yes",
674 (list_empty(&bd->bd_le.le_list)) ? "no" : "yes");
675
676 if (gl->gl_ops == &gfs2_inode_glops) {
677 struct gfs2_inode *ip = gl->gl_object;
678 unsigned int x;
679
680 if (!ip)
681 return;
682
683 fs_warn(sdp, "ip = %llu %llu\n",
684 (unsigned long long)ip->i_num.no_formal_ino,
685 (unsigned long long)ip->i_num.no_addr);
686
687 for (x = 0; x < GFS2_MAX_META_HEIGHT; x++)
688 fs_warn(sdp, "ip->i_cache[%u] = %s\n",
689 x, (ip->i_cache[x]) ? "!NULL" : "NULL");
690 }
691}
692
693/**
Steven Whitehouse623d9352006-08-31 12:14:44 -0400694 * gfs2_releasepage - free the metadata associated with a page
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400695 * @page: the page that's being released
696 * @gfp_mask: passed from Linux VFS, ignored by us
697 *
698 * Call try_to_free_buffers() if the buffers in this page can be
699 * released.
700 *
701 * Returns: 0
702 */
703
704int gfs2_releasepage(struct page *page, gfp_t gfp_mask)
705{
706 struct inode *aspace = page->mapping->host;
707 struct gfs2_sbd *sdp = aspace->i_sb->s_fs_info;
708 struct buffer_head *bh, *head;
709 struct gfs2_bufdata *bd;
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400710 unsigned long t = jiffies + gfs2_tune_get(sdp, gt_stall_secs) * HZ;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400711
712 if (!page_has_buffers(page))
713 goto out;
714
715 head = bh = page_buffers(page);
716 do {
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400717 while (atomic_read(&bh->b_count)) {
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400718 if (!atomic_read(&aspace->i_writecount))
719 return 0;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400720
Russell Cattelan61057c62006-11-09 11:42:33 -0500721 if (!(gfp_mask & __GFP_WAIT))
722 return 0;
723
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400724 if (time_after_eq(jiffies, t)) {
725 stuck_releasepage(bh);
726 /* should we withdraw here? */
727 return 0;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400728 }
729
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400730 yield();
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400731 }
732
733 gfs2_assert_warn(sdp, !buffer_pinned(bh));
Steven Whitehouse623d9352006-08-31 12:14:44 -0400734 gfs2_assert_warn(sdp, !buffer_dirty(bh));
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400735
Steven Whitehouse623d9352006-08-31 12:14:44 -0400736 gfs2_log_lock(sdp);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400737 bd = bh->b_private;
738 if (bd) {
739 gfs2_assert_warn(sdp, bd->bd_bh == bh);
740 gfs2_assert_warn(sdp, list_empty(&bd->bd_list_tr));
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400741 gfs2_assert_warn(sdp, !bd->bd_ail);
Steven Whitehouse623d9352006-08-31 12:14:44 -0400742 bd->bd_bh = NULL;
743 if (!list_empty(&bd->bd_le.le_list))
744 bd = NULL;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400745 bh->b_private = NULL;
746 }
Steven Whitehouse623d9352006-08-31 12:14:44 -0400747 gfs2_log_unlock(sdp);
748 if (bd)
749 kmem_cache_free(gfs2_bufdata_cachep, bd);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400750
751 bh = bh->b_this_page;
Steven Whitehouse166afcc2006-08-24 15:59:40 -0400752 } while (bh != head);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400753
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -0400754out:
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400755 return try_to_free_buffers(page);
756}
757
Steven Whitehouse66de0452006-07-03 13:37:30 -0400758const struct address_space_operations gfs2_file_aops = {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000759 .writepage = gfs2_writepage,
760 .readpage = gfs2_readpage,
Steven Whitehousefd88de562006-05-05 16:59:11 -0400761 .readpages = gfs2_readpages,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000762 .sync_page = block_sync_page,
763 .prepare_write = gfs2_prepare_write,
764 .commit_write = gfs2_commit_write,
765 .bmap = gfs2_bmap,
766 .invalidatepage = gfs2_invalidatepage,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400767 .releasepage = gfs2_releasepage,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000768 .direct_IO = gfs2_direct_IO,
769};
770