Fedora kernel-2.6.17-1.2142_FC4 patched with stable patch-2.6.17.4-vs2.0.2-rc26.diff
[linux-2.6.git] / fs / jfs / inode.c
1 /*
2  *   Copyright (C) International Business Machines Corp., 2000-2004
3  *   Portions Copyright (C) Christoph Hellwig, 2001-2002
4  *
5  *   This program is free software;  you can redistribute it and/or modify
6  *   it under the terms of the GNU General Public License as published by
7  *   the Free Software Foundation; either version 2 of the License, or 
8  *   (at your option) any later version.
9  * 
10  *   This program is distributed in the hope that it will be useful,
11  *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
13  *   the GNU General Public License for more details.
14  *
15  *   You should have received a copy of the GNU General Public License
16  *   along with this program;  if not, write to the Free Software 
17  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  */
19
20 #include <linux/fs.h>
21 #include <linux/mpage.h>
22 #include <linux/buffer_head.h>
23 #include <linux/pagemap.h>
24 #include <linux/quotaops.h>
25 #include <linux/vs_dlimit.h>
26 #include "jfs_incore.h"
27 #include "jfs_inode.h"
28 #include "jfs_filsys.h"
29 #include "jfs_imap.h"
30 #include "jfs_extent.h"
31 #include "jfs_unicode.h"
32 #include "jfs_debug.h"
33
34
35 void jfs_read_inode(struct inode *inode)
36 {
37         if (diRead(inode)) { 
38                 make_bad_inode(inode);
39                 return;
40         }
41
42         if (S_ISREG(inode->i_mode)) {
43                 inode->i_op = &jfs_file_inode_operations;
44                 inode->i_fop = &jfs_file_operations;
45                 inode->i_mapping->a_ops = &jfs_aops;
46         } else if (S_ISDIR(inode->i_mode)) {
47                 inode->i_op = &jfs_dir_inode_operations;
48                 inode->i_fop = &jfs_dir_operations;
49         } else if (S_ISLNK(inode->i_mode)) {
50                 if (inode->i_size >= IDATASIZE) {
51                         inode->i_op = &page_symlink_inode_operations;
52                         inode->i_mapping->a_ops = &jfs_aops;
53                 } else
54                         inode->i_op = &jfs_symlink_inode_operations;
55         } else {
56                 inode->i_op = &jfs_file_inode_operations;
57                 init_special_inode(inode, inode->i_mode, inode->i_rdev);
58         }
59         jfs_set_inode_flags(inode);
60 }
61
62 /*
63  * Workhorse of both fsync & write_inode
64  */
65 int jfs_commit_inode(struct inode *inode, int wait)
66 {
67         int rc = 0;
68         tid_t tid;
69         static int noisy = 5;
70
71         jfs_info("In jfs_commit_inode, inode = 0x%p", inode);
72
73         /*
74          * Don't commit if inode has been committed since last being
75          * marked dirty, or if it has been deleted.
76          */
77         if (inode->i_nlink == 0 || !test_cflag(COMMIT_Dirty, inode))
78                 return 0;
79
80         if (isReadOnly(inode)) {
81                 /* kernel allows writes to devices on read-only
82                  * partitions and may think inode is dirty
83                  */
84                 if (!special_file(inode->i_mode) && noisy) {
85                         jfs_err("jfs_commit_inode(0x%p) called on "
86                                    "read-only volume", inode);
87                         jfs_err("Is remount racy?");
88                         noisy--;
89                 }
90                 return 0;
91         }
92
93         tid = txBegin(inode->i_sb, COMMIT_INODE);
94         mutex_lock(&JFS_IP(inode)->commit_mutex);
95
96         /*
97          * Retest inode state after taking commit_mutex
98          */
99         if (inode->i_nlink && test_cflag(COMMIT_Dirty, inode))
100                 rc = txCommit(tid, 1, &inode, wait ? COMMIT_SYNC : 0);
101
102         txEnd(tid);
103         mutex_unlock(&JFS_IP(inode)->commit_mutex);
104         return rc;
105 }
106
107 int jfs_write_inode(struct inode *inode, int wait)
108 {
109         if (test_cflag(COMMIT_Nolink, inode))
110                 return 0;
111         /*
112          * If COMMIT_DIRTY is not set, the inode isn't really dirty.
113          * It has been committed since the last change, but was still
114          * on the dirty inode list.
115          */
116          if (!test_cflag(COMMIT_Dirty, inode)) {
117                 /* Make sure committed changes hit the disk */
118                 jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait);
119                 return 0;
120          }
121
122         if (jfs_commit_inode(inode, wait)) {
123                 jfs_err("jfs_write_inode: jfs_commit_inode failed!");
124                 return -EIO;
125         } else
126                 return 0;
127 }
128
129 void jfs_delete_inode(struct inode *inode)
130 {
131         jfs_info("In jfs_delete_inode, inode = 0x%p", inode);
132
133         if (!is_bad_inode(inode) &&
134             (JFS_IP(inode)->fileset == FILESYSTEM_I)) {
135                 truncate_inode_pages(&inode->i_data, 0);
136
137                 if (test_cflag(COMMIT_Freewmap, inode))
138                         jfs_free_zero_link(inode);
139
140                 diFree(inode);
141
142                 /*
143                  * Free the inode from the quota allocation.
144                  */
145                 DQUOT_INIT(inode);
146                 DQUOT_FREE_INODE(inode);
147                 DQUOT_DROP(inode);
148                 DLIMIT_FREE_INODE(inode);
149         }
150
151         clear_inode(inode);
152 }
153
154 void jfs_dirty_inode(struct inode *inode)
155 {
156         static int noisy = 5;
157
158         if (isReadOnly(inode)) {
159                 if (!special_file(inode->i_mode) && noisy) {
160                         /* kernel allows writes to devices on read-only
161                          * partitions and may try to mark inode dirty
162                          */
163                         jfs_err("jfs_dirty_inode called on read-only volume");
164                         jfs_err("Is remount racy?");
165                         noisy--;
166                 }
167                 return;
168         }
169
170         set_cflag(COMMIT_Dirty, inode);
171 }
172
173 static int
174 jfs_get_blocks(struct inode *ip, sector_t lblock, unsigned long max_blocks,
175                         struct buffer_head *bh_result, int create)
176 {
177         s64 lblock64 = lblock;
178         int rc = 0;
179         xad_t xad;
180         s64 xaddr;
181         int xflag;
182         s32 xlen = max_blocks;
183
184         /*
185          * Take appropriate lock on inode
186          */
187         if (create)
188                 IWRITE_LOCK(ip);
189         else
190                 IREAD_LOCK(ip);
191
192         if (((lblock64 << ip->i_sb->s_blocksize_bits) < ip->i_size) &&
193             (!xtLookup(ip, lblock64, max_blocks, &xflag, &xaddr, &xlen, 0)) &&
194             xaddr) {
195                 if (xflag & XAD_NOTRECORDED) {
196                         if (!create)
197                                 /*
198                                  * Allocated but not recorded, read treats
199                                  * this as a hole
200                                  */
201                                 goto unlock;
202 #ifdef _JFS_4K
203                         XADoffset(&xad, lblock64);
204                         XADlength(&xad, xlen);
205                         XADaddress(&xad, xaddr);
206 #else                           /* _JFS_4K */
207                         /*
208                          * As long as block size = 4K, this isn't a problem.
209                          * We should mark the whole page not ABNR, but how
210                          * will we know to mark the other blocks BH_New?
211                          */
212                         BUG();
213 #endif                          /* _JFS_4K */
214                         rc = extRecord(ip, &xad);
215                         if (rc)
216                                 goto unlock;
217                         set_buffer_new(bh_result);
218                 }
219
220                 map_bh(bh_result, ip->i_sb, xaddr);
221                 bh_result->b_size = xlen << ip->i_blkbits;
222                 goto unlock;
223         }
224         if (!create)
225                 goto unlock;
226
227         /*
228          * Allocate a new block
229          */
230 #ifdef _JFS_4K
231         if ((rc = extHint(ip, lblock64 << ip->i_sb->s_blocksize_bits, &xad)))
232                 goto unlock;
233         rc = extAlloc(ip, xlen, lblock64, &xad, FALSE);
234         if (rc)
235                 goto unlock;
236
237         set_buffer_new(bh_result);
238         map_bh(bh_result, ip->i_sb, addressXAD(&xad));
239         bh_result->b_size = lengthXAD(&xad) << ip->i_blkbits;
240
241 #else                           /* _JFS_4K */
242         /*
243          * We need to do whatever it takes to keep all but the last buffers
244          * in 4K pages - see jfs_write.c
245          */
246         BUG();
247 #endif                          /* _JFS_4K */
248
249       unlock:
250         /*
251          * Release lock on inode
252          */
253         if (create)
254                 IWRITE_UNLOCK(ip);
255         else
256                 IREAD_UNLOCK(ip);
257         return rc;
258 }
259
260 static int jfs_get_block(struct inode *ip, sector_t lblock,
261                          struct buffer_head *bh_result, int create)
262 {
263         return jfs_get_blocks(ip, lblock, bh_result->b_size >> ip->i_blkbits,
264                         bh_result, create);
265 }
266
267 static int jfs_writepage(struct page *page, struct writeback_control *wbc)
268 {
269         return nobh_writepage(page, jfs_get_block, wbc);
270 }
271
272 static int jfs_writepages(struct address_space *mapping,
273                         struct writeback_control *wbc)
274 {
275         return mpage_writepages(mapping, wbc, jfs_get_block);
276 }
277
278 static int jfs_readpage(struct file *file, struct page *page)
279 {
280         return mpage_readpage(page, jfs_get_block);
281 }
282
283 static int jfs_readpages(struct file *file, struct address_space *mapping,
284                 struct list_head *pages, unsigned nr_pages)
285 {
286         return mpage_readpages(mapping, pages, nr_pages, jfs_get_block);
287 }
288
289 static int jfs_prepare_write(struct file *file,
290                              struct page *page, unsigned from, unsigned to)
291 {
292         return nobh_prepare_write(page, from, to, jfs_get_block);
293 }
294
295 static sector_t jfs_bmap(struct address_space *mapping, sector_t block)
296 {
297         return generic_block_bmap(mapping, block, jfs_get_block);
298 }
299
300 static ssize_t jfs_direct_IO(int rw, struct kiocb *iocb,
301         const struct iovec *iov, loff_t offset, unsigned long nr_segs)
302 {
303         struct file *file = iocb->ki_filp;
304         struct inode *inode = file->f_mapping->host;
305
306         return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
307                                 offset, nr_segs, jfs_get_block, NULL);
308 }
309
310 struct address_space_operations jfs_aops = {
311         .readpage       = jfs_readpage,
312         .readpages      = jfs_readpages,
313         .writepage      = jfs_writepage,
314         .writepages     = jfs_writepages,
315         .sync_page      = block_sync_page,
316         .prepare_write  = jfs_prepare_write,
317         .commit_write   = nobh_commit_write,
318         .bmap           = jfs_bmap,
319         .direct_IO      = jfs_direct_IO,
320 };
321
322 /*
323  * Guts of jfs_truncate.  Called with locks already held.  Can be called
324  * with directory for truncating directory index table.
325  */
326 void jfs_truncate_nolock(struct inode *ip, loff_t length)
327 {
328         loff_t newsize;
329         tid_t tid;
330
331         ASSERT(length >= 0);
332
333         if (test_cflag(COMMIT_Nolink, ip)) {
334                 xtTruncate(0, ip, length, COMMIT_WMAP);
335                 return;
336         }
337
338         do {
339                 tid = txBegin(ip->i_sb, 0);
340
341                 /*
342                  * The commit_mutex cannot be taken before txBegin.
343                  * txBegin may block and there is a chance the inode
344                  * could be marked dirty and need to be committed
345                  * before txBegin unblocks
346                  */
347                 mutex_lock(&JFS_IP(ip)->commit_mutex);
348
349                 newsize = xtTruncate(tid, ip, length,
350                                      COMMIT_TRUNCATE | COMMIT_PWMAP);
351                 if (newsize < 0) {
352                         txEnd(tid);
353                         mutex_unlock(&JFS_IP(ip)->commit_mutex);
354                         break;
355                 }
356
357                 ip->i_mtime = ip->i_ctime = CURRENT_TIME;
358                 mark_inode_dirty(ip);
359
360                 txCommit(tid, 1, &ip, 0);
361                 txEnd(tid);
362                 mutex_unlock(&JFS_IP(ip)->commit_mutex);
363         } while (newsize > length);     /* Truncate isn't always atomic */
364 }
365
366 void jfs_truncate(struct inode *ip)
367 {
368         jfs_info("jfs_truncate: size = 0x%lx", (ulong) ip->i_size);
369
370         nobh_truncate_page(ip->i_mapping, ip->i_size);
371
372         IWRITE_LOCK(ip);
373         jfs_truncate_nolock(ip, ip->i_size);
374         IWRITE_UNLOCK(ip);
375 }