blob: 9531b6c18ac7bf4b944e75bd58a0c0ecbb40783a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/time.h>
6#include <linux/fs.h>
Al Virof466c6f2012-03-17 01:16:43 -04007#include "reiserfs.h"
Al Viroa3063ab2012-03-17 01:03:10 -04008#include "acl.h"
Al Viroc45ac882012-03-17 00:59:06 -04009#include "xattr.h"
Christoph Hellwiga5694252007-07-17 04:04:28 -070010#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/pagemap.h>
12#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Fabian Frederick17093992014-08-08 14:21:12 -070014#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/unaligned.h>
16#include <linux/buffer_head.h>
17#include <linux/mpage.h>
18#include <linux/writeback.h>
19#include <linux/quotaops.h>
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -070020#include <linux/swap.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080021#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -070023int reiserfs_commit_write(struct file *f, struct page *page,
24 unsigned from, unsigned to);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Al Viro845a2cc2010-06-07 11:37:37 -040026void reiserfs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Jeff Mahoney098297b2014-04-23 10:00:36 -040028 /*
29 * We need blocks for transaction + (user+group) quota
30 * update (possibly delete)
31 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070032 int jbegin_count =
33 JOURNAL_PER_BALANCE_CNT * 2 +
34 2 * REISERFS_QUOTA_INIT_BLOCKS(inode->i_sb);
35 struct reiserfs_transaction_handle th;
Jeff Mahoney24996042005-12-14 14:38:05 -050036 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Al Viro845a2cc2010-06-07 11:37:37 -040038 if (!inode->i_nlink && !is_bad_inode(inode))
Christoph Hellwig871a2932010-03-03 09:05:07 -050039 dquot_initialize(inode);
Christoph Hellwig907f4552010-03-03 09:05:06 -050040
Johannes Weiner91b0abe2014-04-03 14:47:49 -070041 truncate_inode_pages_final(&inode->i_data);
Al Viro845a2cc2010-06-07 11:37:37 -040042 if (inode->i_nlink)
43 goto no_delete;
Mark Fashehfef26652005-09-09 13:01:31 -070044
Jeff Mahoney098297b2014-04-23 10:00:36 -040045 /*
46 * The = 0 happens when we abort creating a new inode
47 * for some reason like lack of space..
48 * also handles bad_inode case
49 */
50 if (!(inode->i_state & I_NEW) && INODE_PKEY(inode)->k_objectid != 0) {
Jeff Mahoney4c051412013-08-08 17:27:19 -040051
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070052 reiserfs_delete_xattrs(inode);
53
Jeff Mahoney278f6672013-08-08 17:34:46 -040054 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney4c051412013-08-08 17:27:19 -040055
Alexander Zarochentsevb0b33de2006-08-05 12:14:01 -070056 if (journal_begin(&th, inode->i_sb, jbegin_count))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070057 goto out;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070058 reiserfs_update_inode_transaction(inode);
59
Jeff Mahoneyeb35c212008-07-08 14:37:06 -040060 reiserfs_discard_prealloc(&th, inode);
61
Jeff Mahoney24996042005-12-14 14:38:05 -050062 err = reiserfs_delete_object(&th, inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070063
Jeff Mahoney098297b2014-04-23 10:00:36 -040064 /*
65 * Do quota update inside a transaction for journaled quotas.
66 * We must do that after delete_object so that quota updates
67 * go into the same transaction as stat data deletion
68 */
Jeff Mahoneyd2d03952013-08-08 17:34:47 -040069 if (!err) {
70 int depth = reiserfs_write_unlock_nested(inode->i_sb);
Christoph Hellwig63936dd2010-03-03 09:05:01 -050071 dquot_free_inode(inode);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -040072 reiserfs_write_lock_nested(inode->i_sb, depth);
73 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070074
Jeff Mahoney58d85422014-04-23 10:00:38 -040075 if (journal_end(&th))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070076 goto out;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070077
Jeff Mahoney098297b2014-04-23 10:00:36 -040078 /*
79 * check return value from reiserfs_delete_object after
Jeff Mahoney24996042005-12-14 14:38:05 -050080 * ending the transaction
81 */
82 if (err)
83 goto out;
84
Jeff Mahoney098297b2014-04-23 10:00:36 -040085 /*
86 * all items of file are deleted, so we can remove
87 * "save" link
88 * we can't do anything about an error here
89 */
90 remove_save_link(inode, 0 /* not truncate */);
Jeff Mahoney4c051412013-08-08 17:27:19 -040091out:
Jeff Mahoney278f6672013-08-08 17:34:46 -040092 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070093 } else {
94 /* no object items are in the tree */
95 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Jeff Mahoney098297b2014-04-23 10:00:36 -040097
98 /* note this must go after the journal_end to prevent deadlock */
99 clear_inode(inode);
100
Al Viro845a2cc2010-06-07 11:37:37 -0400101 dquot_drop(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700102 inode->i_blocks = 0;
Sergey Senozhatskyf4ae2fa2010-08-11 14:07:01 +0300103 return;
Al Viro845a2cc2010-06-07 11:37:37 -0400104
105no_delete:
Jan Karadbd57682012-05-03 14:48:02 +0200106 clear_inode(inode);
Al Viro845a2cc2010-06-07 11:37:37 -0400107 dquot_drop(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700110static void _make_cpu_key(struct cpu_key *key, int version, __u32 dirid,
111 __u32 objectid, loff_t offset, int type, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700113 key->version = version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700115 key->on_disk_key.k_dir_id = dirid;
116 key->on_disk_key.k_objectid = objectid;
117 set_cpu_key_k_offset(key, offset);
118 set_cpu_key_k_type(key, type);
119 key->key_length = length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Jeff Mahoney098297b2014-04-23 10:00:36 -0400122/*
123 * take base of inode_key (it comes from inode always) (dirid, objectid)
124 * and version from an inode, set offset and type of key
125 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700126void make_cpu_key(struct cpu_key *key, struct inode *inode, loff_t offset,
127 int type, int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700129 _make_cpu_key(key, get_inode_item_key_version(inode),
130 le32_to_cpu(INODE_PKEY(inode)->k_dir_id),
131 le32_to_cpu(INODE_PKEY(inode)->k_objectid), offset, type,
132 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
Jeff Mahoney098297b2014-04-23 10:00:36 -0400135/* when key is 0, do not set version and short key */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700136inline void make_le_item_head(struct item_head *ih, const struct cpu_key *key,
137 int version,
138 loff_t offset, int type, int length,
139 int entry_count /*or ih_free_space */ )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700141 if (key) {
142 ih->ih_key.k_dir_id = cpu_to_le32(key->on_disk_key.k_dir_id);
143 ih->ih_key.k_objectid =
144 cpu_to_le32(key->on_disk_key.k_objectid);
145 }
146 put_ih_version(ih, version);
147 set_le_ih_k_offset(ih, offset);
148 set_le_ih_k_type(ih, type);
149 put_ih_item_len(ih, length);
150 /* set_ih_free_space (ih, 0); */
Jeff Mahoney098297b2014-04-23 10:00:36 -0400151 /*
152 * for directory items it is entry count, for directs and stat
153 * datas - 0xffff, for indirects - 0
154 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 put_ih_entry_count(ih, entry_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Jeff Mahoney098297b2014-04-23 10:00:36 -0400158/*
159 * FIXME: we might cache recently accessed indirect item
160 * Ugh. Not too eager for that....
161 * I cut the code until such time as I see a convincing argument (benchmark).
162 * I don't want a bloated inode struct..., and I don't like code complexity....
163 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jeff Mahoney098297b2014-04-23 10:00:36 -0400165/*
166 * cutting the code is fine, since it really isn't in use yet and is easy
167 * to add back in. But, Vladimir has a really good idea here. Think
168 * about what happens for reading a file. For each page,
169 * The VFS layer calls reiserfs_readpage, who searches the tree to find
170 * an indirect item. This indirect item has X number of pointers, where
171 * X is a big number if we've done the block allocation right. But,
172 * we only use one or two of these pointers during each call to readpage,
173 * needlessly researching again later on.
174 *
175 * The size of the cache could be dynamic based on the size of the file.
176 *
177 * I'd also like to see us cache the location the stat data item, since
178 * we are needlessly researching for that frequently.
179 *
180 * --chris
181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Jeff Mahoney098297b2014-04-23 10:00:36 -0400183/*
184 * If this page has a file tail in it, and
185 * it was read in by get_block_create_0, the page data is valid,
186 * but tail is still sitting in a direct item, and we can't write to
187 * it. So, look through this page, and check all the mapped buffers
188 * to make sure they have valid block numbers. Any that don't need
189 * to be unmapped, so that __block_write_begin will correctly call
190 * reiserfs_get_block to convert the tail into an unformatted node
191 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700192static inline void fix_tail_page_for_writing(struct page *page)
193{
194 struct buffer_head *head, *next, *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700196 if (page && page_has_buffers(page)) {
197 head = page_buffers(page);
198 bh = head;
199 do {
200 next = bh->b_this_page;
201 if (buffer_mapped(bh) && bh->b_blocknr == 0) {
202 reiserfs_unmap_buffer(bh);
203 }
204 bh = next;
205 } while (bh != head);
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Jeff Mahoney098297b2014-04-23 10:00:36 -0400209/*
210 * reiserfs_get_block does not need to allocate a block only if it has been
211 * done already or non-hole position has been found in the indirect item
212 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700213static inline int allocation_needed(int retval, b_blocknr_t allocated,
214 struct item_head *ih,
215 __le32 * item, int pos_in_item)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700217 if (allocated)
218 return 0;
219 if (retval == POSITION_FOUND && is_indirect_le_ih(ih) &&
220 get_block_num(item, pos_in_item))
221 return 0;
222 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700225static inline int indirect_item_found(int retval, struct item_head *ih)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227 return (retval == POSITION_FOUND) && is_indirect_le_ih(ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700230static inline void set_block_dev_mapped(struct buffer_head *bh,
231 b_blocknr_t block, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 map_bh(bh, inode->i_sb, block);
234}
235
Jeff Mahoney098297b2014-04-23 10:00:36 -0400236/*
237 * files which were created in the earlier version can not be longer,
238 * than 2 gb
239 */
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700240static int file_capable(struct inode *inode, sector_t block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Jeff Mahoney098297b2014-04-23 10:00:36 -0400242 /* it is new file. */
243 if (get_inode_item_key_version(inode) != KEY_FORMAT_3_5 ||
244 /* old file, but 'block' is inside of 2gb */
245 block < (1 << (31 - inode->i_sb->s_blocksize_bits)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700246 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700248 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Adrian Bunkdeba0f42007-10-16 23:26:03 -0700251static int restart_transaction(struct reiserfs_transaction_handle *th,
252 struct inode *inode, struct treepath *path)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700253{
254 struct super_block *s = th->t_super;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700255 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700257 BUG_ON(!th->t_trans_id);
258 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Suzuki K P87b41262006-12-06 20:36:10 -0800260 pathrelse(path);
261
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700262 /* we cannot restart while nested */
263 if (th->t_refcount > 1) {
264 return 0;
265 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700266 reiserfs_update_sd(th, inode);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400267 err = journal_end(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700268 if (!err) {
269 err = journal_begin(th, s, JOURNAL_PER_BALANCE_CNT * 6);
270 if (!err)
271 reiserfs_update_inode_transaction(inode);
272 }
273 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Jeff Mahoney098297b2014-04-23 10:00:36 -0400276/*
277 * it is called by get_block when create == 0. Returns block number
278 * for 'block'-th logical block of file. When it hits direct item it
279 * returns 0 (being called from bmap) or read direct item into piece
280 * of page (bh_result)
281 * Please improve the english/clarity in the comment above, as it is
282 * hard to understand.
283 */
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700284static int _get_block_create_0(struct inode *inode, sector_t block,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700285 struct buffer_head *bh_result, int args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700287 INITIALIZE_PATH(path);
288 struct cpu_key key;
289 struct buffer_head *bh;
290 struct item_head *ih, tmp_ih;
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700291 b_blocknr_t blocknr;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700292 char *p = NULL;
293 int chars;
294 int ret;
295 int result;
296 int done = 0;
297 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Jeff Mahoney098297b2014-04-23 10:00:36 -0400299 /* prepare the key to look for the 'block'-th block of file */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700300 make_cpu_key(&key, inode,
301 (loff_t) block * inode->i_sb->s_blocksize + 1, TYPE_ANY,
302 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700304 result = search_for_position_by_key(inode->i_sb, &key, &path);
305 if (result != POSITION_FOUND) {
306 pathrelse(&path);
307 if (p)
308 kunmap(bh_result->b_page);
309 if (result == IO_ERROR)
310 return -EIO;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400311 /*
312 * We do not return -ENOENT if there is a hole but page is
313 * uptodate, because it means that there is some MMAPED data
314 * associated with it that is yet to be written to disk.
315 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700316 if ((args & GET_BLOCK_NO_HOLE)
317 && !PageUptodate(bh_result->b_page)) {
318 return -ENOENT;
319 }
320 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400322
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700323 bh = get_last_bh(&path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400324 ih = tp_item_head(&path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700325 if (is_indirect_le_ih(ih)) {
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400326 __le32 *ind_item = (__le32 *) ih_item_body(bh, ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Jeff Mahoney098297b2014-04-23 10:00:36 -0400328 /*
329 * FIXME: here we could cache indirect item or part of it in
330 * the inode to avoid search_by_key in case of subsequent
331 * access to file
332 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700333 blocknr = get_block_num(ind_item, path.pos_in_item);
334 ret = 0;
335 if (blocknr) {
336 map_bh(bh_result, inode->i_sb, blocknr);
337 if (path.pos_in_item ==
338 ((ih_item_len(ih) / UNFM_P_SIZE) - 1)) {
339 set_buffer_boundary(bh_result);
340 }
341 } else
Jeff Mahoney098297b2014-04-23 10:00:36 -0400342 /*
343 * We do not return -ENOENT if there is a hole but
344 * page is uptodate, because it means that there is
345 * some MMAPED data associated with it that is
346 * yet to be written to disk.
347 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700348 if ((args & GET_BLOCK_NO_HOLE)
349 && !PageUptodate(bh_result->b_page)) {
350 ret = -ENOENT;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700353 pathrelse(&path);
354 if (p)
355 kunmap(bh_result->b_page);
356 return ret;
357 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400358 /* requested data are in direct item(s) */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700359 if (!(args & GET_BLOCK_READ_DIRECT)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400360 /*
361 * we are called by bmap. FIXME: we can not map block of file
362 * when it is stored in direct item(s)
363 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700364 pathrelse(&path);
365 if (p)
366 kunmap(bh_result->b_page);
367 return -ENOENT;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Jeff Mahoney098297b2014-04-23 10:00:36 -0400370 /*
371 * if we've got a direct item, and the buffer or page was uptodate,
372 * we don't want to pull data off disk again. skip to the
373 * end, where we map the buffer and return
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700374 */
375 if (buffer_uptodate(bh_result)) {
376 goto finished;
377 } else
378 /*
Jeff Mahoney098297b2014-04-23 10:00:36 -0400379 * grab_tail_page can trigger calls to reiserfs_get_block on
380 * up to date pages without any buffers. If the page is up
381 * to date, we don't want read old data off disk. Set the up
382 * to date bit on the buffer instead and jump to the end
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700383 */
384 if (!bh_result->b_page || PageUptodate(bh_result->b_page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 set_buffer_uptodate(bh_result);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700386 goto finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400388 /* read file tail into part of page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300389 offset = (cpu_key_k_offset(&key) - 1) & (PAGE_SIZE - 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700390 copy_item_head(&tmp_ih, ih);
391
Jeff Mahoney098297b2014-04-23 10:00:36 -0400392 /*
393 * we only want to kmap if we are reading the tail into the page.
394 * this is not the common case, so we don't kmap until we are
395 * sure we need to. But, this means the item might move if
396 * kmap schedules
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700397 */
Frederic Weisbecker27b3a5c2009-10-14 23:34:31 +0200398 if (!p)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700399 p = (char *)kmap(bh_result->b_page);
Frederic Weisbecker27b3a5c2009-10-14 23:34:31 +0200400
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700401 p += offset;
402 memset(p, 0, inode->i_sb->s_blocksize);
403 do {
404 if (!is_direct_le_ih(ih)) {
405 BUG();
406 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400407 /*
408 * make sure we don't read more bytes than actually exist in
409 * the file. This can happen in odd cases where i_size isn't
410 * correct, and when direct item padding results in a few
411 * extra bytes at the end of the direct item
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700412 */
413 if ((le_ih_k_offset(ih) + path.pos_in_item) > inode->i_size)
414 break;
415 if ((le_ih_k_offset(ih) - 1 + ih_item_len(ih)) > inode->i_size) {
416 chars =
417 inode->i_size - (le_ih_k_offset(ih) - 1) -
418 path.pos_in_item;
419 done = 1;
420 } else {
421 chars = ih_item_len(ih) - path.pos_in_item;
422 }
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400423 memcpy(p, ih_item_body(bh, ih) + path.pos_in_item, chars);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700425 if (done)
426 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700428 p += chars;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Jeff Mahoney098297b2014-04-23 10:00:36 -0400430 /*
431 * we done, if read direct item is not the last item of
432 * node FIXME: we could try to check right delimiting key
433 * to see whether direct item continues in the right
434 * neighbor or rely on i_size
435 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700436 if (PATH_LAST_POSITION(&path) != (B_NR_ITEMS(bh) - 1))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Jeff Mahoney098297b2014-04-23 10:00:36 -0400439 /* update key to look for the next piece */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700440 set_cpu_key_k_offset(&key, cpu_key_k_offset(&key) + chars);
441 result = search_for_position_by_key(inode->i_sb, &key, &path);
442 if (result != POSITION_FOUND)
Jeff Mahoney098297b2014-04-23 10:00:36 -0400443 /* i/o error most likely */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700444 break;
445 bh = get_last_bh(&path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400446 ih = tp_item_head(&path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700447 } while (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700449 flush_dcache_page(bh_result->b_page);
450 kunmap(bh_result->b_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400452finished:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700453 pathrelse(&path);
Qu Fuping6283d582005-06-25 14:55:44 -0700454
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700455 if (result == IO_ERROR)
456 return -EIO;
Qu Fuping6283d582005-06-25 14:55:44 -0700457
Jeff Mahoney098297b2014-04-23 10:00:36 -0400458 /*
459 * this buffer has valid data, but isn't valid for io. mapping it to
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700460 * block #0 tells the rest of reiserfs it just has a tail in it
461 */
462 map_bh(bh_result, inode->i_sb, 0);
463 set_buffer_uptodate(bh_result);
464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Jeff Mahoney098297b2014-04-23 10:00:36 -0400467/*
468 * this is called to create file map. So, _get_block_create_0 will not
469 * read direct item
470 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700471static int reiserfs_bmap(struct inode *inode, sector_t block,
472 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700474 if (!file_capable(inode, block))
475 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700477 reiserfs_write_lock(inode->i_sb);
478 /* do not read the direct item */
479 _get_block_create_0(inode, block, bh_result, 0);
480 reiserfs_write_unlock(inode->i_sb);
481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Jeff Mahoney098297b2014-04-23 10:00:36 -0400484/*
485 * special version of get_block that is only used by grab_tail_page right
486 * now. It is sent to __block_write_begin, and when you try to get a
487 * block past the end of the file (or a block from a hole) it returns
488 * -ENOENT instead of a valid buffer. __block_write_begin expects to
489 * be able to do i/o on the buffers returned, unless an error value
490 * is also returned.
491 *
492 * So, this allows __block_write_begin to be used for reading a single block
493 * in a page. Where it does not produce a valid page for holes, or past the
494 * end of the file. This turns out to be exactly what we need for reading
495 * tails for conversion.
496 *
497 * The point of the wrapper is forcing a certain value for create, even
498 * though the VFS layer is calling this function with create==1. If you
499 * don't want to send create == GET_BLOCK_NO_HOLE to reiserfs_get_block,
500 * don't use this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700502static int reiserfs_get_block_create_0(struct inode *inode, sector_t block,
503 struct buffer_head *bh_result,
504 int create)
505{
506 return reiserfs_get_block(inode, block, bh_result, GET_BLOCK_NO_HOLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Jeff Mahoney098297b2014-04-23 10:00:36 -0400509/*
510 * This is special helper for reiserfs_get_block in case we are executing
511 * direct_IO request.
512 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513static int reiserfs_get_blocks_direct_io(struct inode *inode,
514 sector_t iblock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 struct buffer_head *bh_result,
516 int create)
517{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700518 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700520 bh_result->b_page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Jeff Mahoney098297b2014-04-23 10:00:36 -0400522 /*
523 * We set the b_size before reiserfs_get_block call since it is
524 * referenced in convert_tail_for_hole() that may be called from
525 * reiserfs_get_block()
526 */
Fabian Frederick61604a22017-02-27 14:28:32 -0800527 bh_result->b_size = i_blocksize(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700529 ret = reiserfs_get_block(inode, iblock, bh_result,
530 create | GET_BLOCK_NO_DANGLE);
531 if (ret)
532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700534 /* don't allow direct io onto tail pages */
535 if (buffer_mapped(bh_result) && bh_result->b_blocknr == 0) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400536 /*
537 * make sure future calls to the direct io funcs for this
538 * offset in the file fail by unmapping the buffer
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700539 */
540 clear_buffer_mapped(bh_result);
541 ret = -EINVAL;
542 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400543
544 /*
545 * Possible unpacked tail. Flush the data before pages have
546 * disappeared
547 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700548 if (REISERFS_I(inode)->i_flags & i_pack_on_close_mask) {
549 int err;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200550
551 reiserfs_write_lock(inode->i_sb);
552
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700553 err = reiserfs_commit_for_inode(inode);
554 REISERFS_I(inode)->i_flags &= ~i_pack_on_close_mask;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200555
556 reiserfs_write_unlock(inode->i_sb);
557
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700558 if (err < 0)
559 ret = err;
560 }
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400561out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700562 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/*
Jeff Mahoney098297b2014-04-23 10:00:36 -0400566 * helper function for when reiserfs_get_block is called for a hole
567 * but the file tail is still in a direct item
568 * bh_result is the buffer head for the hole
569 * tail_offset is the offset of the start of the tail in the file
570 *
571 * This calls prepare_write, which will start a new transaction
572 * you should not be in a transaction, or have any paths held when you
573 * call this.
574 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700575static int convert_tail_for_hole(struct inode *inode,
576 struct buffer_head *bh_result,
577 loff_t tail_offset)
578{
579 unsigned long index;
580 unsigned long tail_end;
581 unsigned long tail_start;
582 struct page *tail_page;
583 struct page *hole_page = bh_result->b_page;
584 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700586 if ((tail_offset & (bh_result->b_size - 1)) != 1)
587 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700589 /* always try to read until the end of the block */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300590 tail_start = tail_offset & (PAGE_SIZE - 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700591 tail_end = (tail_start | (bh_result->b_size - 1)) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300593 index = tail_offset >> PAGE_SHIFT;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400594 /*
595 * hole_page can be zero in case of direct_io, we are sure
596 * that we cannot get here if we write with O_DIRECT into tail page
597 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700598 if (!hole_page || index != hole_page->index) {
599 tail_page = grab_cache_page(inode->i_mapping, index);
600 retval = -ENOMEM;
601 if (!tail_page) {
602 goto out;
603 }
604 } else {
605 tail_page = hole_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Jeff Mahoney098297b2014-04-23 10:00:36 -0400608 /*
609 * we don't have to make sure the conversion did not happen while
610 * we were locking the page because anyone that could convert
611 * must first take i_mutex.
612 *
613 * We must fix the tail page for writing because it might have buffers
614 * that are mapped, but have a block number of 0. This indicates tail
615 * data that has been read directly into the page, and
616 * __block_write_begin won't trigger a get_block in this case.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700617 */
618 fix_tail_page_for_writing(tail_page);
Christoph Hellwigebdec242010-10-06 10:47:23 +0200619 retval = __reiserfs_write_begin(tail_page, tail_start,
620 tail_end - tail_start);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700621 if (retval)
622 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700624 /* tail conversion might change the data in the page */
625 flush_dcache_page(tail_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700627 retval = reiserfs_commit_write(NULL, tail_page, tail_start, tail_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400629unlock:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700630 if (tail_page != hole_page) {
631 unlock_page(tail_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300632 put_page(tail_page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700633 }
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400634out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700635 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638static inline int _allocate_block(struct reiserfs_transaction_handle *th,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700639 sector_t block,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700640 struct inode *inode,
641 b_blocknr_t * allocated_block_nr,
Josef "Jeff" Sipekfec6d052006-12-08 02:36:32 -0800642 struct treepath *path, int flags)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700643{
644 BUG_ON(!th->t_trans_id);
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646#ifdef REISERFS_PREALLOCATE
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800647 if (!(flags & GET_BLOCK_NO_IMUX)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700648 return reiserfs_new_unf_blocknrs2(th, inode, allocated_block_nr,
649 path, block);
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700652 return reiserfs_new_unf_blocknrs(th, inode, allocated_block_nr, path,
653 block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700656int reiserfs_get_block(struct inode *inode, sector_t block,
657 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700659 int repeat, retval = 0;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400660 /* b_blocknr_t is (unsigned) 32 bit int*/
661 b_blocknr_t allocated_block_nr = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700662 INITIALIZE_PATH(path);
663 int pos_in_item;
664 struct cpu_key key;
665 struct buffer_head *bh, *unbh = NULL;
666 struct item_head *ih, tmp_ih;
667 __le32 *item;
668 int done;
669 int fs_gen;
670 struct reiserfs_transaction_handle *th = NULL;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400671 /*
672 * space reserved in transaction batch:
673 * . 3 balancings in direct->indirect conversion
674 * . 1 block involved into reiserfs_update_sd()
675 * XXX in practically impossible worst case direct2indirect()
676 * can incur (much) more than 3 balancings.
677 * quota update for user, group
678 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700679 int jbegin_count =
680 JOURNAL_PER_BALANCE_CNT * 3 + 1 +
681 2 * REISERFS_QUOTA_TRANS_BLOCKS(inode->i_sb);
682 int version;
683 int dangle = 1;
684 loff_t new_offset =
685 (((loff_t) block) << inode->i_sb->s_blocksize_bits) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Jeff Mahoney278f6672013-08-08 17:34:46 -0400687 reiserfs_write_lock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700688 version = get_inode_item_key_version(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700690 if (!file_capable(inode, block)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -0400691 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700692 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
Jeff Mahoney098297b2014-04-23 10:00:36 -0400695 /*
696 * if !create, we aren't changing the FS, so we don't need to
697 * log anything, so we don't need to start a transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700698 */
699 if (!(create & GET_BLOCK_CREATE)) {
700 int ret;
701 /* find number of block-th logical block of the file */
702 ret = _get_block_create_0(inode, block, bh_result,
703 create | GET_BLOCK_READ_DIRECT);
Jeff Mahoney278f6672013-08-08 17:34:46 -0400704 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700705 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400707
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700708 /*
709 * if we're already in a transaction, make sure to close
710 * any new transactions we start in this func
711 */
712 if ((create & GET_BLOCK_NO_DANGLE) ||
713 reiserfs_transaction_running(inode->i_sb))
714 dangle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Jeff Mahoney098297b2014-04-23 10:00:36 -0400716 /*
717 * If file is of such a size, that it might have a tail and
718 * tails are enabled we should mark it as possibly needing
719 * tail packing on close
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700720 */
721 if ((have_large_tails(inode->i_sb)
722 && inode->i_size < i_block_size(inode) * 4)
723 || (have_small_tails(inode->i_sb)
724 && inode->i_size < i_block_size(inode)))
725 REISERFS_I(inode)->i_flags |= i_pack_on_close_mask;
726
727 /* set the key of the first byte in the 'block'-th block of file */
728 make_cpu_key(&key, inode, new_offset, TYPE_ANY, 3 /*key length */ );
729 if ((new_offset + inode->i_sb->s_blocksize - 1) > inode->i_size) {
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400730start_trans:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700731 th = reiserfs_persistent_transaction(inode->i_sb, jbegin_count);
732 if (!th) {
733 retval = -ENOMEM;
734 goto failure;
735 }
736 reiserfs_update_inode_transaction(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Jeff Mahoneycf776a72014-04-23 10:00:41 -0400738research:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700740 retval = search_for_position_by_key(inode->i_sb, &key, &path);
741 if (retval == IO_ERROR) {
742 retval = -EIO;
743 goto failure;
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700746 bh = get_last_bh(&path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400747 ih = tp_item_head(&path);
748 item = tp_item_body(&path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700749 pos_in_item = path.pos_in_item;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700751 fs_gen = get_generation(inode->i_sb);
752 copy_item_head(&tmp_ih, ih);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700754 if (allocation_needed
755 (retval, allocated_block_nr, ih, item, pos_in_item)) {
756 /* we have to allocate block for the unformatted node */
757 if (!th) {
758 pathrelse(&path);
759 goto start_trans;
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700762 repeat =
763 _allocate_block(th, block, inode, &allocated_block_nr,
764 &path, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Jeff Mahoney098297b2014-04-23 10:00:36 -0400766 /*
767 * restart the transaction to give the journal a chance to free
768 * some blocks. releases the path, so we have to go back to
769 * research if we succeed on the second try
770 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700771 if (repeat == NO_DISK_SPACE || repeat == QUOTA_EXCEEDED) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700772 SB_JOURNAL(inode->i_sb)->j_next_async_flush = 1;
773 retval = restart_transaction(th, inode, &path);
774 if (retval)
775 goto failure;
776 repeat =
777 _allocate_block(th, block, inode,
778 &allocated_block_nr, NULL, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700780 if (repeat != NO_DISK_SPACE && repeat != QUOTA_EXCEEDED) {
781 goto research;
782 }
783 if (repeat == QUOTA_EXCEEDED)
784 retval = -EDQUOT;
785 else
786 retval = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 goto failure;
788 }
789
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700790 if (fs_changed(fs_gen, inode->i_sb)
791 && item_moved(&tmp_ih, &path)) {
792 goto research;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700796 if (indirect_item_found(retval, ih)) {
797 b_blocknr_t unfm_ptr;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400798 /*
799 * 'block'-th block is in the file already (there is
800 * corresponding cell in some indirect item). But it may be
801 * zero unformatted node pointer (hole)
802 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700803 unfm_ptr = get_block_num(item, pos_in_item);
804 if (unfm_ptr == 0) {
805 /* use allocated block to plug the hole */
806 reiserfs_prepare_for_journal(inode->i_sb, bh, 1);
807 if (fs_changed(fs_gen, inode->i_sb)
808 && item_moved(&tmp_ih, &path)) {
809 reiserfs_restore_prepared_buffer(inode->i_sb,
810 bh);
811 goto research;
812 }
813 set_buffer_new(bh_result);
814 if (buffer_dirty(bh_result)
815 && reiserfs_data_ordered(inode->i_sb))
816 reiserfs_add_ordered_list(inode, bh_result);
817 put_block_num(item, pos_in_item, allocated_block_nr);
818 unfm_ptr = allocated_block_nr;
Jeff Mahoney09f1b802014-04-23 10:00:39 -0400819 journal_mark_dirty(th, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700820 reiserfs_update_sd(th, inode);
821 }
822 set_block_dev_mapped(bh_result, unfm_ptr, inode);
823 pathrelse(&path);
824 retval = 0;
825 if (!dangle && th)
826 retval = reiserfs_end_persistent_transaction(th);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Jeff Mahoney278f6672013-08-08 17:34:46 -0400828 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700829
Jeff Mahoney098297b2014-04-23 10:00:36 -0400830 /*
831 * the item was found, so new blocks were not added to the file
832 * there is no need to make sure the inode is updated with this
833 * transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700835 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700838 if (!th) {
839 pathrelse(&path);
840 goto start_trans;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Jeff Mahoney098297b2014-04-23 10:00:36 -0400843 /*
844 * desired position is not found or is in the direct item. We have
845 * to append file with holes up to 'block'-th block converting
846 * direct items to indirect one if necessary
847 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700848 done = 0;
849 do {
850 if (is_statdata_le_ih(ih)) {
851 __le32 unp = 0;
852 struct cpu_key tmp_key;
853
854 /* indirect item has to be inserted */
855 make_le_item_head(&tmp_ih, &key, version, 1,
856 TYPE_INDIRECT, UNFM_P_SIZE,
857 0 /* free_space */ );
858
Jeff Mahoney098297b2014-04-23 10:00:36 -0400859 /*
860 * we are going to add 'block'-th block to the file.
861 * Use allocated block for that
862 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700863 if (cpu_key_k_offset(&key) == 1) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700864 unp = cpu_to_le32(allocated_block_nr);
865 set_block_dev_mapped(bh_result,
866 allocated_block_nr, inode);
867 set_buffer_new(bh_result);
868 done = 1;
869 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400870 tmp_key = key; /* ;) */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700871 set_cpu_key_k_offset(&tmp_key, 1);
872 PATH_LAST_POSITION(&path)++;
873
874 retval =
875 reiserfs_insert_item(th, &path, &tmp_key, &tmp_ih,
876 inode, (char *)&unp);
877 if (retval) {
878 reiserfs_free_block(th, inode,
879 allocated_block_nr, 1);
Jeff Mahoney098297b2014-04-23 10:00:36 -0400880 /*
881 * retval == -ENOSPC, -EDQUOT or -EIO
882 * or -EEXIST
883 */
884 goto failure;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700885 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700886 } else if (is_direct_le_ih(ih)) {
887 /* direct item has to be converted */
888 loff_t tail_offset;
889
890 tail_offset =
891 ((le_ih_k_offset(ih) -
892 1) & ~(inode->i_sb->s_blocksize - 1)) + 1;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400893
894 /*
895 * direct item we just found fits into block we have
896 * to map. Convert it into unformatted node: use
897 * bh_result for the conversion
898 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700899 if (tail_offset == cpu_key_k_offset(&key)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700900 set_block_dev_mapped(bh_result,
901 allocated_block_nr, inode);
902 unbh = bh_result;
903 done = 1;
904 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400905 /*
906 * we have to pad file tail stored in direct
907 * item(s) up to block size and convert it
908 * to unformatted node. FIXME: this should
909 * also get into page cache
910 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700911
912 pathrelse(&path);
913 /*
914 * ugly, but we can only end the transaction if
915 * we aren't nested
916 */
917 BUG_ON(!th->t_refcount);
918 if (th->t_refcount == 1) {
919 retval =
920 reiserfs_end_persistent_transaction
921 (th);
922 th = NULL;
923 if (retval)
924 goto failure;
925 }
926
927 retval =
928 convert_tail_for_hole(inode, bh_result,
929 tail_offset);
930 if (retval) {
931 if (retval != -ENOSPC)
Jeff Mahoney0030b642009-03-30 14:02:28 -0400932 reiserfs_error(inode->i_sb,
933 "clm-6004",
934 "convert tail failed "
935 "inode %lu, error %d",
936 inode->i_ino,
937 retval);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700938 if (allocated_block_nr) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400939 /*
940 * the bitmap, the super,
941 * and the stat data == 3
942 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700943 if (!th)
944 th = reiserfs_persistent_transaction(inode->i_sb, 3);
945 if (th)
946 reiserfs_free_block(th,
947 inode,
948 allocated_block_nr,
949 1);
950 }
951 goto failure;
952 }
953 goto research;
954 }
955 retval =
956 direct2indirect(th, inode, &path, unbh,
957 tail_offset);
958 if (retval) {
959 reiserfs_unmap_buffer(unbh);
960 reiserfs_free_block(th, inode,
961 allocated_block_nr, 1);
962 goto failure;
963 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400964 /*
965 * it is important the set_buffer_uptodate is done
966 * after the direct2indirect. The buffer might
967 * contain valid data newer than the data on disk
968 * (read by readpage, changed, and then sent here by
969 * writepage). direct2indirect needs to know if unbh
970 * was already up to date, so it can decide if the
971 * data in unbh needs to be replaced with data from
972 * the disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700973 */
974 set_buffer_uptodate(unbh);
975
Jeff Mahoney098297b2014-04-23 10:00:36 -0400976 /*
977 * unbh->b_page == NULL in case of DIRECT_IO request,
978 * this means buffer will disappear shortly, so it
979 * should not be added to
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700980 */
981 if (unbh->b_page) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400982 /*
983 * we've converted the tail, so we must
984 * flush unbh before the transaction commits
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700985 */
986 reiserfs_add_tail_list(inode, unbh);
987
Jeff Mahoney098297b2014-04-23 10:00:36 -0400988 /*
989 * mark it dirty now to prevent commit_write
990 * from adding this buffer to the inode's
991 * dirty buffer list
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700992 */
993 /*
Jeff Mahoney098297b2014-04-23 10:00:36 -0400994 * AKPM: changed __mark_buffer_dirty to
995 * mark_buffer_dirty(). It's still atomic,
996 * but it sets the page dirty too, which makes
997 * it eligible for writeback at any time by the
998 * VM (which was also the case with
999 * __mark_buffer_dirty())
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001000 */
1001 mark_buffer_dirty(unbh);
1002 }
1003 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001004 /*
1005 * append indirect item with holes if needed, when
1006 * appending pointer to 'block'-th block use block,
1007 * which is already allocated
1008 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001009 struct cpu_key tmp_key;
Jeff Mahoney098297b2014-04-23 10:00:36 -04001010 /*
1011 * We use this in case we need to allocate
1012 * only one block which is a fastpath
1013 */
1014 unp_t unf_single = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001015 unp_t *un;
1016 __u64 max_to_insert =
1017 MAX_ITEM_LEN(inode->i_sb->s_blocksize) /
1018 UNFM_P_SIZE;
1019 __u64 blocks_needed;
1020
1021 RFALSE(pos_in_item != ih_item_len(ih) / UNFM_P_SIZE,
1022 "vs-804: invalid position for append");
Jeff Mahoney098297b2014-04-23 10:00:36 -04001023 /*
1024 * indirect item has to be appended,
1025 * set up key of that position
1026 * (key type is unimportant)
1027 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001028 make_cpu_key(&tmp_key, inode,
1029 le_key_k_offset(version,
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001030 &ih->ih_key) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001031 op_bytes_number(ih,
1032 inode->i_sb->s_blocksize),
Jeff Mahoney098297b2014-04-23 10:00:36 -04001033 TYPE_INDIRECT, 3);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001034
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08001035 RFALSE(cpu_key_k_offset(&tmp_key) > cpu_key_k_offset(&key),
1036 "green-805: invalid offset");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001037 blocks_needed =
1038 1 +
1039 ((cpu_key_k_offset(&key) -
1040 cpu_key_k_offset(&tmp_key)) >> inode->i_sb->
1041 s_blocksize_bits);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001042
1043 if (blocks_needed == 1) {
1044 un = &unf_single;
1045 } else {
Frederic Weisbecker1d2c6cf2009-11-20 04:11:30 +01001046 un = kzalloc(min(blocks_needed, max_to_insert) * UNFM_P_SIZE, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001047 if (!un) {
1048 un = &unf_single;
1049 blocks_needed = 1;
1050 max_to_insert = 0;
Yan Burman01afb212006-12-06 20:39:01 -08001051 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001052 }
1053 if (blocks_needed <= max_to_insert) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001054 /*
1055 * we are going to add target block to
1056 * the file. Use allocated block for that
1057 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001058 un[blocks_needed - 1] =
1059 cpu_to_le32(allocated_block_nr);
1060 set_block_dev_mapped(bh_result,
1061 allocated_block_nr, inode);
1062 set_buffer_new(bh_result);
1063 done = 1;
1064 } else {
1065 /* paste hole to the indirect item */
Jeff Mahoney098297b2014-04-23 10:00:36 -04001066 /*
1067 * If kmalloc failed, max_to_insert becomes
1068 * zero and it means we only have space for
1069 * one block
1070 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001071 blocks_needed =
1072 max_to_insert ? max_to_insert : 1;
1073 }
1074 retval =
1075 reiserfs_paste_into_item(th, &path, &tmp_key, inode,
1076 (char *)un,
1077 UNFM_P_SIZE *
1078 blocks_needed);
1079
1080 if (blocks_needed != 1)
1081 kfree(un);
1082
1083 if (retval) {
1084 reiserfs_free_block(th, inode,
1085 allocated_block_nr, 1);
1086 goto failure;
1087 }
1088 if (!done) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001089 /*
1090 * We need to mark new file size in case
1091 * this function will be interrupted/aborted
1092 * later on. And we may do this only for
1093 * holes.
1094 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001095 inode->i_size +=
1096 inode->i_sb->s_blocksize * blocks_needed;
1097 }
1098 }
1099
1100 if (done == 1)
1101 break;
1102
Jeff Mahoney098297b2014-04-23 10:00:36 -04001103 /*
1104 * this loop could log more blocks than we had originally
1105 * asked for. So, we have to allow the transaction to end
1106 * if it is too big or too full. Update the inode so things
1107 * are consistent if we crash before the function returns
1108 * release the path so that anybody waiting on the path before
1109 * ending their transaction will be able to continue.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001110 */
1111 if (journal_transaction_should_end(th, th->t_blocks_allocated)) {
1112 retval = restart_transaction(th, inode, &path);
1113 if (retval)
1114 goto failure;
1115 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001116 /*
1117 * inserting indirect pointers for a hole can take a
1118 * long time. reschedule if needed and also release the write
1119 * lock for others.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001120 */
Jeff Mahoney278f6672013-08-08 17:34:46 -04001121 reiserfs_cond_resched(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001122
1123 retval = search_for_position_by_key(inode->i_sb, &key, &path);
1124 if (retval == IO_ERROR) {
1125 retval = -EIO;
1126 goto failure;
1127 }
1128 if (retval == POSITION_FOUND) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001129 reiserfs_warning(inode->i_sb, "vs-825",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001130 "%K should not be found", &key);
1131 retval = -EEXIST;
1132 if (allocated_block_nr)
1133 reiserfs_free_block(th, inode,
1134 allocated_block_nr, 1);
1135 pathrelse(&path);
1136 goto failure;
1137 }
1138 bh = get_last_bh(&path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001139 ih = tp_item_head(&path);
1140 item = tp_item_body(&path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001141 pos_in_item = path.pos_in_item;
1142 } while (1);
1143
1144 retval = 0;
1145
Jeff Mahoneycf776a72014-04-23 10:00:41 -04001146failure:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001147 if (th && (!dangle || (retval && !th->t_trans_id))) {
1148 int err;
1149 if (th->t_trans_id)
1150 reiserfs_update_sd(th, inode);
1151 err = reiserfs_end_persistent_transaction(th);
1152 if (err)
1153 retval = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Jeff Mahoney278f6672013-08-08 17:34:46 -04001156 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001157 reiserfs_check_path(&path);
1158 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161static int
1162reiserfs_readpages(struct file *file, struct address_space *mapping,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001163 struct list_head *pages, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001165 return mpage_readpages(mapping, pages, nr_pages, reiserfs_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
1167
Jeff Mahoney098297b2014-04-23 10:00:36 -04001168/*
1169 * Compute real number of used bytes by file
1170 * Following three functions can go away when we'll have enough space in
1171 * stat item
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 */
1173static int real_space_diff(struct inode *inode, int sd_size)
1174{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001175 int bytes;
1176 loff_t blocksize = inode->i_sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001178 if (S_ISLNK(inode->i_mode) || S_ISDIR(inode->i_mode))
1179 return sd_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Jeff Mahoney098297b2014-04-23 10:00:36 -04001181 /*
1182 * End of file is also in full block with indirect reference, so round
1183 * up to the next block.
1184 *
1185 * there is just no way to know if the tail is actually packed
1186 * on the file, so we have to assume it isn't. When we pack the
1187 * tail, we add 4 bytes to pretend there really is an unformatted
1188 * node pointer
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001189 */
1190 bytes =
1191 ((inode->i_size +
1192 (blocksize - 1)) >> inode->i_sb->s_blocksize_bits) * UNFM_P_SIZE +
1193 sd_size;
1194 return bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197static inline loff_t to_real_used_space(struct inode *inode, ulong blocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001198 int sd_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001200 if (S_ISLNK(inode->i_mode) || S_ISDIR(inode->i_mode)) {
1201 return inode->i_size +
1202 (loff_t) (real_space_diff(inode, sd_size));
1203 }
1204 return ((loff_t) real_space_diff(inode, sd_size)) +
1205 (((loff_t) blocks) << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208/* Compute number of blocks used by file in ReiserFS counting */
1209static inline ulong to_fake_used_blocks(struct inode *inode, int sd_size)
1210{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001211 loff_t bytes = inode_get_bytes(inode);
1212 loff_t real_space = real_space_diff(inode, sd_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001214 /* keeps fsck and non-quota versions of reiserfs happy */
1215 if (S_ISLNK(inode->i_mode) || S_ISDIR(inode->i_mode)) {
1216 bytes += (loff_t) 511;
1217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Jeff Mahoney098297b2014-04-23 10:00:36 -04001219 /*
1220 * files from before the quota patch might i_blocks such that
1221 * bytes < real_space. Deal with that here to prevent it from
1222 * going negative.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001223 */
1224 if (bytes < real_space)
1225 return 0;
1226 return (bytes - real_space) >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Jeff Mahoney098297b2014-04-23 10:00:36 -04001229/*
1230 * BAD: new directories have stat data of new type and all other items
1231 * of old type. Version stored in the inode says about body items, so
1232 * in update_stat_data we can not rely on inode, but have to check
1233 * item version directly
1234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jeff Mahoney098297b2014-04-23 10:00:36 -04001236/* called by read_locked_inode */
Josef "Jeff" Sipekfec6d052006-12-08 02:36:32 -08001237static void init_inode(struct inode *inode, struct treepath *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001239 struct buffer_head *bh;
1240 struct item_head *ih;
1241 __u32 rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001243 bh = PATH_PLAST_BUFFER(path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001244 ih = tp_item_head(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001246 copy_key(INODE_PKEY(inode), &ih->ih_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001248 INIT_LIST_HEAD(&REISERFS_I(inode)->i_prealloc_list);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001249 REISERFS_I(inode)->i_flags = 0;
1250 REISERFS_I(inode)->i_prealloc_block = 0;
1251 REISERFS_I(inode)->i_prealloc_count = 0;
1252 REISERFS_I(inode)->i_trans_id = 0;
1253 REISERFS_I(inode)->i_jl = NULL;
Alexey Dobriyan068fbb32006-09-29 01:59:58 -07001254 reiserfs_init_xattr_rwsem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001256 if (stat_data_v1(ih)) {
1257 struct stat_data_v1 *sd =
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001258 (struct stat_data_v1 *)ih_item_body(bh, ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001259 unsigned long blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001261 set_inode_item_key_version(inode, KEY_FORMAT_3_5);
1262 set_inode_sd_version(inode, STAT_DATA_V1);
1263 inode->i_mode = sd_v1_mode(sd);
Miklos Szeredibfe86842011-10-28 14:13:29 +02001264 set_nlink(inode, sd_v1_nlink(sd));
Eric W. Biedermandf814652012-02-07 16:30:06 -08001265 i_uid_write(inode, sd_v1_uid(sd));
1266 i_gid_write(inode, sd_v1_gid(sd));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001267 inode->i_size = sd_v1_size(sd);
1268 inode->i_atime.tv_sec = sd_v1_atime(sd);
1269 inode->i_mtime.tv_sec = sd_v1_mtime(sd);
1270 inode->i_ctime.tv_sec = sd_v1_ctime(sd);
1271 inode->i_atime.tv_nsec = 0;
1272 inode->i_ctime.tv_nsec = 0;
1273 inode->i_mtime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001275 inode->i_blocks = sd_v1_blocks(sd);
1276 inode->i_generation = le32_to_cpu(INODE_PKEY(inode)->k_dir_id);
1277 blocks = (inode->i_size + 511) >> 9;
1278 blocks = _ROUND_UP(blocks, inode->i_sb->s_blocksize >> 9);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001279
1280 /*
1281 * there was a bug in <=3.5.23 when i_blocks could take
1282 * negative values. Starting from 3.5.17 this value could
1283 * even be stored in stat data. For such files we set
1284 * i_blocks based on file size. Just 2 notes: this can be
1285 * wrong for sparse files. On-disk value will be only
1286 * updated if file's inode will ever change
1287 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001288 if (inode->i_blocks > blocks) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001289 inode->i_blocks = blocks;
1290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001292 rdev = sd_v1_rdev(sd);
1293 REISERFS_I(inode)->i_first_direct_byte =
1294 sd_v1_first_direct_byte(sd);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001295
1296 /*
1297 * an early bug in the quota code can give us an odd
1298 * number for the block count. This is incorrect, fix it here.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001299 */
1300 if (inode->i_blocks & 1) {
1301 inode->i_blocks++;
1302 }
1303 inode_set_bytes(inode,
1304 to_real_used_space(inode, inode->i_blocks,
1305 SD_V1_SIZE));
Jeff Mahoney098297b2014-04-23 10:00:36 -04001306 /*
1307 * nopack is initially zero for v1 objects. For v2 objects,
1308 * nopack is initialised from sd_attrs
1309 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001310 REISERFS_I(inode)->i_flags &= ~i_nopack_mask;
1311 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001312 /*
1313 * new stat data found, but object may have old items
1314 * (directories and symlinks)
1315 */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001316 struct stat_data *sd = (struct stat_data *)ih_item_body(bh, ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001317
1318 inode->i_mode = sd_v2_mode(sd);
Miklos Szeredibfe86842011-10-28 14:13:29 +02001319 set_nlink(inode, sd_v2_nlink(sd));
Eric W. Biedermandf814652012-02-07 16:30:06 -08001320 i_uid_write(inode, sd_v2_uid(sd));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001321 inode->i_size = sd_v2_size(sd);
Eric W. Biedermandf814652012-02-07 16:30:06 -08001322 i_gid_write(inode, sd_v2_gid(sd));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001323 inode->i_mtime.tv_sec = sd_v2_mtime(sd);
1324 inode->i_atime.tv_sec = sd_v2_atime(sd);
1325 inode->i_ctime.tv_sec = sd_v2_ctime(sd);
1326 inode->i_ctime.tv_nsec = 0;
1327 inode->i_mtime.tv_nsec = 0;
1328 inode->i_atime.tv_nsec = 0;
1329 inode->i_blocks = sd_v2_blocks(sd);
1330 rdev = sd_v2_rdev(sd);
1331 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
1332 inode->i_generation =
1333 le32_to_cpu(INODE_PKEY(inode)->k_dir_id);
1334 else
1335 inode->i_generation = sd_v2_generation(sd);
1336
1337 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
1338 set_inode_item_key_version(inode, KEY_FORMAT_3_5);
1339 else
1340 set_inode_item_key_version(inode, KEY_FORMAT_3_6);
1341 REISERFS_I(inode)->i_first_direct_byte = 0;
1342 set_inode_sd_version(inode, STAT_DATA_V2);
1343 inode_set_bytes(inode,
1344 to_real_used_space(inode, inode->i_blocks,
1345 SD_V2_SIZE));
Jeff Mahoney098297b2014-04-23 10:00:36 -04001346 /*
1347 * read persistent inode attributes from sd and initialise
1348 * generic inode flags from them
1349 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001350 REISERFS_I(inode)->i_attrs = sd_v2_attrs(sd);
1351 sd_attrs_to_i_attrs(sd_v2_attrs(sd), inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
1353
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001354 pathrelse(path);
1355 if (S_ISREG(inode->i_mode)) {
1356 inode->i_op = &reiserfs_file_inode_operations;
1357 inode->i_fop = &reiserfs_file_operations;
1358 inode->i_mapping->a_ops = &reiserfs_address_space_operations;
1359 } else if (S_ISDIR(inode->i_mode)) {
1360 inode->i_op = &reiserfs_dir_inode_operations;
1361 inode->i_fop = &reiserfs_dir_operations;
1362 } else if (S_ISLNK(inode->i_mode)) {
1363 inode->i_op = &reiserfs_symlink_inode_operations;
Al Viro21fc61c2015-11-17 01:07:57 -05001364 inode_nohighmem(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001365 inode->i_mapping->a_ops = &reiserfs_address_space_operations;
1366 } else {
1367 inode->i_blocks = 0;
1368 inode->i_op = &reiserfs_special_inode_operations;
1369 init_special_inode(inode, inode->i_mode, new_decode_dev(rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371}
1372
Jeff Mahoney098297b2014-04-23 10:00:36 -04001373/* update new stat data with inode fields */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001374static void inode2sd(void *sd, struct inode *inode, loff_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001376 struct stat_data *sd_v2 = (struct stat_data *)sd;
1377 __u16 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001379 set_sd_v2_mode(sd_v2, inode->i_mode);
1380 set_sd_v2_nlink(sd_v2, inode->i_nlink);
Eric W. Biedermandf814652012-02-07 16:30:06 -08001381 set_sd_v2_uid(sd_v2, i_uid_read(inode));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001382 set_sd_v2_size(sd_v2, size);
Eric W. Biedermandf814652012-02-07 16:30:06 -08001383 set_sd_v2_gid(sd_v2, i_gid_read(inode));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001384 set_sd_v2_mtime(sd_v2, inode->i_mtime.tv_sec);
1385 set_sd_v2_atime(sd_v2, inode->i_atime.tv_sec);
1386 set_sd_v2_ctime(sd_v2, inode->i_ctime.tv_sec);
1387 set_sd_v2_blocks(sd_v2, to_fake_used_blocks(inode, SD_V2_SIZE));
1388 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
1389 set_sd_v2_rdev(sd_v2, new_encode_dev(inode->i_rdev));
1390 else
1391 set_sd_v2_generation(sd_v2, inode->i_generation);
1392 flags = REISERFS_I(inode)->i_attrs;
1393 i_attrs_to_sd_attrs(inode, &flags);
1394 set_sd_v2_attrs(sd_v2, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
Jeff Mahoney098297b2014-04-23 10:00:36 -04001397/* used to copy inode's fields to old stat data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001398static void inode2sd_v1(void *sd, struct inode *inode, loff_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001400 struct stat_data_v1 *sd_v1 = (struct stat_data_v1 *)sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001402 set_sd_v1_mode(sd_v1, inode->i_mode);
Eric W. Biedermandf814652012-02-07 16:30:06 -08001403 set_sd_v1_uid(sd_v1, i_uid_read(inode));
1404 set_sd_v1_gid(sd_v1, i_gid_read(inode));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001405 set_sd_v1_nlink(sd_v1, inode->i_nlink);
1406 set_sd_v1_size(sd_v1, size);
1407 set_sd_v1_atime(sd_v1, inode->i_atime.tv_sec);
1408 set_sd_v1_ctime(sd_v1, inode->i_ctime.tv_sec);
1409 set_sd_v1_mtime(sd_v1, inode->i_mtime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001411 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode))
1412 set_sd_v1_rdev(sd_v1, new_encode_dev(inode->i_rdev));
1413 else
1414 set_sd_v1_blocks(sd_v1, to_fake_used_blocks(inode, SD_V1_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Jeff Mahoney098297b2014-04-23 10:00:36 -04001416 /* Sigh. i_first_direct_byte is back */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001417 set_sd_v1_first_direct_byte(sd_v1,
1418 REISERFS_I(inode)->i_first_direct_byte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Jeff Mahoney098297b2014-04-23 10:00:36 -04001421/*
1422 * NOTE, you must prepare the buffer head before sending it here,
1423 * and then log it after the call
1424 */
Josef "Jeff" Sipekfec6d052006-12-08 02:36:32 -08001425static void update_stat_data(struct treepath *path, struct inode *inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001426 loff_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001428 struct buffer_head *bh;
1429 struct item_head *ih;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001431 bh = PATH_PLAST_BUFFER(path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001432 ih = tp_item_head(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001434 if (!is_statdata_le_ih(ih))
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001435 reiserfs_panic(inode->i_sb, "vs-13065", "key %k, found item %h",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001436 INODE_PKEY(inode), ih);
1437
Jeff Mahoney098297b2014-04-23 10:00:36 -04001438 /* path points to old stat data */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001439 if (stat_data_v1(ih)) {
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001440 inode2sd_v1(ih_item_body(bh, ih), inode, size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001441 } else {
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001442 inode2sd(ih_item_body(bh, ih), inode, size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001443 }
1444
1445 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001448void reiserfs_update_sd_size(struct reiserfs_transaction_handle *th,
1449 struct inode *inode, loff_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001451 struct cpu_key key;
1452 INITIALIZE_PATH(path);
1453 struct buffer_head *bh;
1454 int fs_gen;
1455 struct item_head *ih, tmp_ih;
1456 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001458 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Jeff Mahoney098297b2014-04-23 10:00:36 -04001460 /* key type is unimportant */
1461 make_cpu_key(&key, inode, SD_OFFSET, TYPE_STAT_DATA, 3);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001462
1463 for (;;) {
1464 int pos;
1465 /* look for the object's stat data */
1466 retval = search_item(inode->i_sb, &key, &path);
1467 if (retval == IO_ERROR) {
Jeff Mahoney0030b642009-03-30 14:02:28 -04001468 reiserfs_error(inode->i_sb, "vs-13050",
1469 "i/o failure occurred trying to "
1470 "update %K stat data", &key);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001471 return;
1472 }
1473 if (retval == ITEM_NOT_FOUND) {
1474 pos = PATH_LAST_POSITION(&path);
1475 pathrelse(&path);
1476 if (inode->i_nlink == 0) {
1477 /*reiserfs_warning (inode->i_sb, "vs-13050: reiserfs_update_sd: i_nlink == 0, stat data not found"); */
1478 return;
1479 }
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001480 reiserfs_warning(inode->i_sb, "vs-13060",
1481 "stat data of object %k (nlink == %d) "
1482 "not found (pos %d)",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001483 INODE_PKEY(inode), inode->i_nlink,
1484 pos);
1485 reiserfs_check_path(&path);
1486 return;
1487 }
1488
Jeff Mahoney098297b2014-04-23 10:00:36 -04001489 /*
1490 * sigh, prepare_for_journal might schedule. When it
1491 * schedules the FS might change. We have to detect that,
1492 * and loop back to the search if the stat data item has moved
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001493 */
1494 bh = get_last_bh(&path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04001495 ih = tp_item_head(&path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001496 copy_item_head(&tmp_ih, ih);
1497 fs_gen = get_generation(inode->i_sb);
1498 reiserfs_prepare_for_journal(inode->i_sb, bh, 1);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001499
1500 /* Stat_data item has been moved after scheduling. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001501 if (fs_changed(fs_gen, inode->i_sb)
1502 && item_moved(&tmp_ih, &path)) {
1503 reiserfs_restore_prepared_buffer(inode->i_sb, bh);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001504 continue;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001505 }
1506 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001508 update_stat_data(&path, inode, size);
Jeff Mahoney09f1b802014-04-23 10:00:39 -04001509 journal_mark_dirty(th, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001510 pathrelse(&path);
1511 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512}
1513
Jeff Mahoney098297b2014-04-23 10:00:36 -04001514/*
1515 * reiserfs_read_locked_inode is called to read the inode off disk, and it
1516 * does a make_bad_inode when things go wrong. But, we need to make sure
1517 * and clear the key in the private portion of the inode, otherwise a
1518 * corresponding iput might try to delete whatever object the inode last
1519 * represented.
1520 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001521static void reiserfs_make_bad_inode(struct inode *inode)
1522{
1523 memset(INODE_PKEY(inode), 0, KEY_SIZE);
1524 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
Jeff Mahoney098297b2014-04-23 10:00:36 -04001527/*
1528 * initially this function was derived from minix or ext2's analog and
1529 * evolved as the prototype did
1530 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001531int reiserfs_init_locked_inode(struct inode *inode, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001533 struct reiserfs_iget_args *args = (struct reiserfs_iget_args *)p;
1534 inode->i_ino = args->objectid;
1535 INODE_PKEY(inode)->k_dir_id = cpu_to_le32(args->dirid);
1536 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538
Jeff Mahoney098297b2014-04-23 10:00:36 -04001539/*
1540 * looks for stat data in the tree, and fills up the fields of in-core
1541 * inode stat data fields
1542 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001543void reiserfs_read_locked_inode(struct inode *inode,
1544 struct reiserfs_iget_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001546 INITIALIZE_PATH(path_to_sd);
1547 struct cpu_key key;
1548 unsigned long dirino;
1549 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001551 dirino = args->dirid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Jeff Mahoney098297b2014-04-23 10:00:36 -04001553 /*
1554 * set version 1, version 2 could be used too, because stat data
1555 * key is the same in both versions
1556 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001557 key.version = KEY_FORMAT_3_5;
1558 key.on_disk_key.k_dir_id = dirino;
1559 key.on_disk_key.k_objectid = inode->i_ino;
1560 key.on_disk_key.k_offset = 0;
1561 key.on_disk_key.k_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001563 /* look for the object's stat data */
1564 retval = search_item(inode->i_sb, &key, &path_to_sd);
1565 if (retval == IO_ERROR) {
Jeff Mahoney0030b642009-03-30 14:02:28 -04001566 reiserfs_error(inode->i_sb, "vs-13070",
1567 "i/o failure occurred trying to find "
1568 "stat data of %K", &key);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001569 reiserfs_make_bad_inode(inode);
1570 return;
1571 }
Jeff Mahoney098297b2014-04-23 10:00:36 -04001572
1573 /* a stale NFS handle can trigger this without it being an error */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001574 if (retval != ITEM_FOUND) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001575 pathrelse(&path_to_sd);
1576 reiserfs_make_bad_inode(inode);
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001577 clear_nlink(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001578 return;
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001581 init_inode(inode, &path_to_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Jeff Mahoney098297b2014-04-23 10:00:36 -04001583 /*
1584 * It is possible that knfsd is trying to access inode of a file
1585 * that is being removed from the disk by some other thread. As we
1586 * update sd on unlink all that is required is to check for nlink
1587 * here. This bug was first found by Sizif when debugging
1588 * SquidNG/Butterfly, forgotten, and found again after Philippe
1589 * Gramoulle <philippe.gramoulle@mmania.com> reproduced it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Jeff Mahoney098297b2014-04-23 10:00:36 -04001591 * More logical fix would require changes in fs/inode.c:iput() to
1592 * remove inode from hash-table _after_ fs cleaned disk stuff up and
1593 * in iget() to return NULL if I_FREEING inode is found in
1594 * hash-table.
1595 */
1596
1597 /*
1598 * Currently there is one place where it's ok to meet inode with
1599 * nlink==0: processing of open-unlinked and half-truncated files
1600 * during mount (fs/reiserfs/super.c:finish_unfinished()).
1601 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001602 if ((inode->i_nlink == 0) &&
1603 !REISERFS_SB(inode->i_sb)->s_is_unlinked_ok) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001604 reiserfs_warning(inode->i_sb, "vs-13075",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001605 "dead inode read from disk %K. "
1606 "This is likely to be race with knfsd. Ignore",
1607 &key);
1608 reiserfs_make_bad_inode(inode);
1609 }
1610
Jeff Mahoney098297b2014-04-23 10:00:36 -04001611 /* init inode should be relsing */
1612 reiserfs_check_path(&path_to_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Christoph Hellwig4482a082011-07-23 17:37:03 +02001614 /*
1615 * Stat data v1 doesn't support ACLs.
1616 */
1617 if (get_inode_sd_version(inode) == STAT_DATA_V1)
1618 cache_no_acl(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Jeff Mahoney098297b2014-04-23 10:00:36 -04001621/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * reiserfs_find_actor() - "find actor" reiserfs supplies to iget5_locked().
1623 *
1624 * @inode: inode from hash table to check
1625 * @opaque: "cookie" passed to iget5_locked(). This is &reiserfs_iget_args.
1626 *
1627 * This function is called by iget5_locked() to distinguish reiserfs inodes
1628 * having the same inode numbers. Such inodes can only exist due to some
1629 * error condition. One of them should be bad. Inodes with identical
1630 * inode numbers (objectids) are distinguished by parent directory ids.
1631 *
1632 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001633int reiserfs_find_actor(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001635 struct reiserfs_iget_args *args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001637 args = opaque;
1638 /* args is already in CPU order */
1639 return (inode->i_ino == args->objectid) &&
1640 (le32_to_cpu(INODE_PKEY(inode)->k_dir_id) == args->dirid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641}
1642
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001643struct inode *reiserfs_iget(struct super_block *s, const struct cpu_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001645 struct inode *inode;
1646 struct reiserfs_iget_args args;
Jeff Mahoney278f6672013-08-08 17:34:46 -04001647 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001649 args.objectid = key->on_disk_key.k_objectid;
1650 args.dirid = key->on_disk_key.k_dir_id;
Jeff Mahoney278f6672013-08-08 17:34:46 -04001651 depth = reiserfs_write_unlock_nested(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001652 inode = iget5_locked(s, key->on_disk_key.k_objectid,
1653 reiserfs_find_actor, reiserfs_init_locked_inode,
1654 (void *)(&args));
Jeff Mahoney278f6672013-08-08 17:34:46 -04001655 reiserfs_write_lock_nested(s, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001656 if (!inode)
1657 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001659 if (inode->i_state & I_NEW) {
1660 reiserfs_read_locked_inode(inode, &args);
1661 unlock_new_inode(inode);
1662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001664 if (comp_short_keys(INODE_PKEY(inode), key) || is_bad_inode(inode)) {
1665 /* either due to i/o error or a stale NFS handle */
1666 iput(inode);
1667 inode = NULL;
1668 }
1669 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670}
1671
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001672static struct dentry *reiserfs_get_dentry(struct super_block *sb,
1673 u32 objectid, u32 dir_id, u32 generation)
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001676 struct cpu_key key;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001677 struct inode *inode;
1678
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001679 key.on_disk_key.k_objectid = objectid;
1680 key.on_disk_key.k_dir_id = dir_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001681 reiserfs_write_lock(sb);
1682 inode = reiserfs_iget(sb, &key);
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001683 if (inode && !IS_ERR(inode) && generation != 0 &&
1684 generation != inode->i_generation) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001685 iput(inode);
1686 inode = NULL;
1687 }
1688 reiserfs_write_unlock(sb);
Christoph Hellwig44003722008-08-11 15:49:04 +02001689
1690 return d_obtain_alias(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001693struct dentry *reiserfs_fh_to_dentry(struct super_block *sb, struct fid *fid,
1694 int fh_len, int fh_type)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001695{
Jeff Mahoney098297b2014-04-23 10:00:36 -04001696 /*
1697 * fhtype happens to reflect the number of u32s encoded.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001698 * due to a bug in earlier code, fhtype might indicate there
1699 * are more u32s then actually fitted.
1700 * so if fhtype seems to be more than len, reduce fhtype.
1701 * Valid types are:
1702 * 2 - objectid + dir_id - legacy support
1703 * 3 - objectid + dir_id + generation
1704 * 4 - objectid + dir_id + objectid and dirid of parent - legacy
1705 * 5 - objectid + dir_id + generation + objectid and dirid of parent
1706 * 6 - as above plus generation of directory
1707 * 6 does not fit in NFSv2 handles
1708 */
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001709 if (fh_type > fh_len) {
1710 if (fh_type != 6 || fh_len != 5)
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001711 reiserfs_warning(sb, "reiserfs-13077",
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001712 "nfsd/reiserfs, fhtype=%d, len=%d - odd",
1713 fh_type, fh_len);
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07001714 fh_type = fh_len;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001715 }
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07001716 if (fh_len < 2)
1717 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001719 return reiserfs_get_dentry(sb, fid->raw[0], fid->raw[1],
1720 (fh_type == 3 || fh_type >= 5) ? fid->raw[2] : 0);
1721}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001723struct dentry *reiserfs_fh_to_parent(struct super_block *sb, struct fid *fid,
1724 int fh_len, int fh_type)
1725{
Hugh Dickins35c2a7f2012-10-07 20:32:51 -07001726 if (fh_type > fh_len)
1727 fh_type = fh_len;
Christoph Hellwigbe55caf2007-10-21 16:42:13 -07001728 if (fh_type < 4)
1729 return NULL;
1730
1731 return reiserfs_get_dentry(sb,
1732 (fh_type >= 5) ? fid->raw[3] : fid->raw[2],
1733 (fh_type >= 5) ? fid->raw[4] : fid->raw[3],
1734 (fh_type == 6) ? fid->raw[5] : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
Al Virob0b03822012-04-02 14:34:06 -04001737int reiserfs_encode_fh(struct inode *inode, __u32 * data, int *lenp,
1738 struct inode *parent)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001739{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001740 int maxlen = *lenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Al Virob0b03822012-04-02 14:34:06 -04001742 if (parent && (maxlen < 5)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301743 *lenp = 5;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001744 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301745 } else if (maxlen < 3) {
1746 *lenp = 3;
Namjae Jeon94e07a752013-02-17 15:48:11 +09001747 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +05301748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001750 data[0] = inode->i_ino;
1751 data[1] = le32_to_cpu(INODE_PKEY(inode)->k_dir_id);
1752 data[2] = inode->i_generation;
1753 *lenp = 3;
Al Virob0b03822012-04-02 14:34:06 -04001754 if (parent) {
1755 data[3] = parent->i_ino;
1756 data[4] = le32_to_cpu(INODE_PKEY(parent)->k_dir_id);
1757 *lenp = 5;
1758 if (maxlen >= 6) {
1759 data[5] = parent->i_generation;
1760 *lenp = 6;
1761 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001762 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001763 return *lenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
Jeff Mahoney098297b2014-04-23 10:00:36 -04001766/*
1767 * looks for stat data, then copies fields to it, marks the buffer
1768 * containing stat data as dirty
1769 */
1770/*
1771 * reiserfs inodes are never really dirty, since the dirty inode call
1772 * always logs them. This call allows the VFS inode marking routines
1773 * to properly mark inodes for datasync and such, but only actually
1774 * does something when called for a synchronous update.
1775 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001776int reiserfs_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001777{
1778 struct reiserfs_transaction_handle th;
1779 int jbegin_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001781 if (inode->i_sb->s_flags & MS_RDONLY)
1782 return -EROFS;
Jeff Mahoney098297b2014-04-23 10:00:36 -04001783 /*
1784 * memory pressure can sometimes initiate write_inode calls with
1785 * sync == 1,
1786 * these cases are just when the system needs ram, not when the
1787 * inode needs to reach disk for safety, and they can safely be
1788 * ignored because the altered inode has already been logged.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001789 */
Christoph Hellwiga9185b42010-03-05 09:21:37 +01001790 if (wbc->sync_mode == WB_SYNC_ALL && !(current->flags & PF_MEMALLOC)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001791 reiserfs_write_lock(inode->i_sb);
1792 if (!journal_begin(&th, inode->i_sb, jbegin_count)) {
1793 reiserfs_update_sd(&th, inode);
Jeff Mahoney58d85422014-04-23 10:00:38 -04001794 journal_end_sync(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001795 }
1796 reiserfs_write_unlock(inode->i_sb);
1797 }
1798 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799}
1800
Jeff Mahoney098297b2014-04-23 10:00:36 -04001801/*
1802 * stat data of new object is inserted already, this inserts the item
1803 * containing "." and ".." entries
1804 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001805static int reiserfs_new_directory(struct reiserfs_transaction_handle *th,
1806 struct inode *inode,
Josef "Jeff" Sipekfec6d052006-12-08 02:36:32 -08001807 struct item_head *ih, struct treepath *path,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001808 struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001810 struct super_block *sb = th->t_super;
1811 char empty_dir[EMPTY_DIR_SIZE];
1812 char *body = empty_dir;
1813 struct cpu_key key;
1814 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001816 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001818 _make_cpu_key(&key, KEY_FORMAT_3_5, le32_to_cpu(ih->ih_key.k_dir_id),
1819 le32_to_cpu(ih->ih_key.k_objectid), DOT_OFFSET,
1820 TYPE_DIRENTRY, 3 /*key length */ );
1821
Jeff Mahoney098297b2014-04-23 10:00:36 -04001822 /*
1823 * compose item head for new item. Directories consist of items of
1824 * old type (ITEM_VERSION_1). Do not set key (second arg is 0), it
1825 * is done by reiserfs_new_inode
1826 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001827 if (old_format_only(sb)) {
1828 make_le_item_head(ih, NULL, KEY_FORMAT_3_5, DOT_OFFSET,
1829 TYPE_DIRENTRY, EMPTY_DIR_SIZE_V1, 2);
1830
1831 make_empty_dir_item_v1(body, ih->ih_key.k_dir_id,
1832 ih->ih_key.k_objectid,
1833 INODE_PKEY(dir)->k_dir_id,
1834 INODE_PKEY(dir)->k_objectid);
1835 } else {
1836 make_le_item_head(ih, NULL, KEY_FORMAT_3_5, DOT_OFFSET,
1837 TYPE_DIRENTRY, EMPTY_DIR_SIZE, 2);
1838
1839 make_empty_dir_item(body, ih->ih_key.k_dir_id,
1840 ih->ih_key.k_objectid,
1841 INODE_PKEY(dir)->k_dir_id,
1842 INODE_PKEY(dir)->k_objectid);
1843 }
1844
1845 /* look for place in the tree for new item */
1846 retval = search_item(sb, &key, path);
1847 if (retval == IO_ERROR) {
Jeff Mahoney0030b642009-03-30 14:02:28 -04001848 reiserfs_error(sb, "vs-13080",
1849 "i/o failure occurred creating new directory");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001850 return -EIO;
1851 }
1852 if (retval == ITEM_FOUND) {
1853 pathrelse(path);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001854 reiserfs_warning(sb, "vs-13070",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001855 "object with this key exists (%k)",
1856 &(ih->ih_key));
1857 return -EEXIST;
1858 }
1859
1860 /* insert item, that is empty directory item */
1861 return reiserfs_insert_item(th, path, &key, ih, inode, body);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Jeff Mahoney098297b2014-04-23 10:00:36 -04001864/*
1865 * stat data of object has been inserted, this inserts the item
1866 * containing the body of symlink
1867 */
1868static int reiserfs_new_symlink(struct reiserfs_transaction_handle *th,
1869 struct inode *inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001870 struct item_head *ih,
Josef "Jeff" Sipekfec6d052006-12-08 02:36:32 -08001871 struct treepath *path, const char *symname,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001872 int item_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001874 struct super_block *sb = th->t_super;
1875 struct cpu_key key;
1876 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001878 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001880 _make_cpu_key(&key, KEY_FORMAT_3_5,
1881 le32_to_cpu(ih->ih_key.k_dir_id),
1882 le32_to_cpu(ih->ih_key.k_objectid),
1883 1, TYPE_DIRECT, 3 /*key length */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001885 make_le_item_head(ih, NULL, KEY_FORMAT_3_5, 1, TYPE_DIRECT, item_len,
1886 0 /*free_space */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001888 /* look for place in the tree for new item */
1889 retval = search_item(sb, &key, path);
1890 if (retval == IO_ERROR) {
Jeff Mahoney0030b642009-03-30 14:02:28 -04001891 reiserfs_error(sb, "vs-13080",
1892 "i/o failure occurred creating new symlink");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001893 return -EIO;
1894 }
1895 if (retval == ITEM_FOUND) {
1896 pathrelse(path);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001897 reiserfs_warning(sb, "vs-13080",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001898 "object with this key exists (%k)",
1899 &(ih->ih_key));
1900 return -EEXIST;
1901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001903 /* insert item, that is body of symlink */
1904 return reiserfs_insert_item(th, path, &key, ih, inode, symname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
Jeff Mahoney098297b2014-04-23 10:00:36 -04001907/*
1908 * inserts the stat data into the tree, and then calls
1909 * reiserfs_new_directory (to insert ".", ".." item if new object is
1910 * directory) or reiserfs_new_symlink (to insert symlink body if new
1911 * object is symlink) or nothing (if new object is regular file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Jeff Mahoney098297b2014-04-23 10:00:36 -04001913 * NOTE! uid and gid must already be set in the inode. If we return
1914 * non-zero due to an error, we have to drop the quota previously allocated
1915 * for the fresh inode. This can only be done outside a transaction, so
1916 * if we return non-zero, we also end the transaction.
1917 *
1918 * @th: active transaction handle
1919 * @dir: parent directory for new inode
1920 * @mode: mode of new inode
1921 * @symname: symlink contents if inode is symlink
1922 * @isize: 0 for regular file, EMPTY_DIR_SIZE for dirs, strlen(symname) for
1923 * symlinks
1924 * @inode: inode to be filled
1925 * @security: optional security context to associate with this inode
1926 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001927int reiserfs_new_inode(struct reiserfs_transaction_handle *th,
Al Viro8e071892011-07-26 02:50:53 -04001928 struct inode *dir, umode_t mode, const char *symname,
Jeff Mahoney0222e652009-03-30 14:02:44 -04001929 /* 0 for regular, EMTRY_DIR_SIZE for dirs,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001930 strlen (symname) for symlinks) */
1931 loff_t i_size, struct dentry *dentry,
Jeff Mahoney57fe60d2009-03-30 14:02:41 -04001932 struct inode *inode,
1933 struct reiserfs_security_handle *security)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04001935 struct super_block *sb = dir->i_sb;
Al Viroc1eaa262008-12-30 02:03:58 -05001936 struct reiserfs_iget_args args;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001937 INITIALIZE_PATH(path_to_key);
1938 struct cpu_key key;
1939 struct item_head ih;
1940 struct stat_data sd;
1941 int retval;
1942 int err;
Jeff Mahoney278f6672013-08-08 17:34:46 -04001943 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001945 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04001947 depth = reiserfs_write_unlock_nested(sb);
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001948 err = dquot_alloc_inode(inode);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04001949 reiserfs_write_lock_nested(sb, depth);
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001950 if (err)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001951 goto out_end_trans;
Eric Sesterhenn585b7742006-10-04 02:15:30 -07001952 if (!dir->i_nlink) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001953 err = -EPERM;
1954 goto out_bad_inode;
1955 }
1956
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001957 /* item head of new item */
1958 ih.ih_key.k_dir_id = reiserfs_choose_packing(dir);
1959 ih.ih_key.k_objectid = cpu_to_le32(reiserfs_get_unused_objectid(th));
1960 if (!ih.ih_key.k_objectid) {
1961 err = -ENOMEM;
1962 goto out_bad_inode;
1963 }
Al Viroc1eaa262008-12-30 02:03:58 -05001964 args.objectid = inode->i_ino = le32_to_cpu(ih.ih_key.k_objectid);
Al Viro2f1169e2009-01-02 08:16:51 -05001965 if (old_format_only(sb))
1966 make_le_item_head(&ih, NULL, KEY_FORMAT_3_5, SD_OFFSET,
1967 TYPE_STAT_DATA, SD_V1_SIZE, MAX_US_INT);
1968 else
1969 make_le_item_head(&ih, NULL, KEY_FORMAT_3_6, SD_OFFSET,
1970 TYPE_STAT_DATA, SD_SIZE, MAX_US_INT);
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001971 memcpy(INODE_PKEY(inode), &ih.ih_key, KEY_SIZE);
Al Viroc1eaa262008-12-30 02:03:58 -05001972 args.dirid = le32_to_cpu(ih.ih_key.k_dir_id);
Jeff Mahoneya1457c02013-05-31 15:51:17 -04001973
Jeff Mahoney278f6672013-08-08 17:34:46 -04001974 depth = reiserfs_write_unlock_nested(inode->i_sb);
Jeff Mahoneya1457c02013-05-31 15:51:17 -04001975 err = insert_inode_locked4(inode, args.objectid,
1976 reiserfs_find_actor, &args);
Jeff Mahoney278f6672013-08-08 17:34:46 -04001977 reiserfs_write_lock_nested(inode->i_sb, depth);
Jeff Mahoneya1457c02013-05-31 15:51:17 -04001978 if (err) {
Al Viroc1eaa262008-12-30 02:03:58 -05001979 err = -EINVAL;
1980 goto out_bad_inode;
1981 }
Jeff Mahoneya1457c02013-05-31 15:51:17 -04001982
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001983 if (old_format_only(sb))
Jeff Mahoney098297b2014-04-23 10:00:36 -04001984 /*
1985 * not a perfect generation count, as object ids can be reused,
1986 * but this is as good as reiserfs can do right now.
1987 * note that the private part of inode isn't filled in yet,
1988 * we have to use the directory.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001989 */
1990 inode->i_generation = le32_to_cpu(INODE_PKEY(dir)->k_objectid);
1991 else
1992#if defined( USE_INODE_GENERATION_COUNTER )
1993 inode->i_generation =
1994 le32_to_cpu(REISERFS_SB(sb)->s_rs->s_inode_generation);
1995#else
1996 inode->i_generation = ++event;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001999 /* fill stat data */
Miklos Szeredibfe86842011-10-28 14:13:29 +02002000 set_nlink(inode, (S_ISDIR(mode) ? 2 : 1));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002001
2002 /* uid and gid must already be set by the caller for quota init */
2003
2004 /* symlink cannot be immutable or append only, right? */
2005 if (S_ISLNK(inode->i_mode))
2006 inode->i_flags &= ~(S_IMMUTABLE | S_APPEND);
2007
Deepa Dinamani02027d42016-09-14 07:48:05 -07002008 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002009 inode->i_size = i_size;
2010 inode->i_blocks = 0;
2011 inode->i_bytes = 0;
2012 REISERFS_I(inode)->i_first_direct_byte = S_ISLNK(mode) ? 1 :
2013 U32_MAX /*NO_BYTES_IN_DIRECT_ITEM */ ;
2014
Jeff Mahoneya228bf82014-04-23 10:00:42 -04002015 INIT_LIST_HEAD(&REISERFS_I(inode)->i_prealloc_list);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002016 REISERFS_I(inode)->i_flags = 0;
2017 REISERFS_I(inode)->i_prealloc_block = 0;
2018 REISERFS_I(inode)->i_prealloc_count = 0;
2019 REISERFS_I(inode)->i_trans_id = 0;
2020 REISERFS_I(inode)->i_jl = NULL;
2021 REISERFS_I(inode)->i_attrs =
2022 REISERFS_I(dir)->i_attrs & REISERFS_INHERIT_MASK;
2023 sd_attrs_to_i_attrs(REISERFS_I(inode)->i_attrs, inode);
Alexey Dobriyan068fbb32006-09-29 01:59:58 -07002024 reiserfs_init_xattr_rwsem(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002025
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002026 /* key to search for correct place for new stat data */
2027 _make_cpu_key(&key, KEY_FORMAT_3_6, le32_to_cpu(ih.ih_key.k_dir_id),
2028 le32_to_cpu(ih.ih_key.k_objectid), SD_OFFSET,
2029 TYPE_STAT_DATA, 3 /*key length */ );
2030
2031 /* find proper place for inserting of stat data */
2032 retval = search_item(sb, &key, &path_to_key);
2033 if (retval == IO_ERROR) {
2034 err = -EIO;
2035 goto out_bad_inode;
2036 }
2037 if (retval == ITEM_FOUND) {
2038 pathrelse(&path_to_key);
2039 err = -EEXIST;
2040 goto out_bad_inode;
2041 }
2042 if (old_format_only(sb)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002043 /* i_uid or i_gid is too big to be stored in stat data v3.5 */
Eric W. Biedermandf814652012-02-07 16:30:06 -08002044 if (i_uid_read(inode) & ~0xffff || i_gid_read(inode) & ~0xffff) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002045 pathrelse(&path_to_key);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002046 err = -EINVAL;
2047 goto out_bad_inode;
2048 }
2049 inode2sd_v1(&sd, inode, inode->i_size);
2050 } else {
2051 inode2sd(&sd, inode, inode->i_size);
2052 }
Jeff Mahoney098297b2014-04-23 10:00:36 -04002053 /*
2054 * store in in-core inode the key of stat data and version all
2055 * object items will have (directory items will have old offset
2056 * format, other new objects will consist of new items)
2057 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002058 if (old_format_only(sb) || S_ISDIR(mode) || S_ISLNK(mode))
2059 set_inode_item_key_version(inode, KEY_FORMAT_3_5);
2060 else
2061 set_inode_item_key_version(inode, KEY_FORMAT_3_6);
2062 if (old_format_only(sb))
2063 set_inode_sd_version(inode, STAT_DATA_V1);
2064 else
2065 set_inode_sd_version(inode, STAT_DATA_V2);
2066
2067 /* insert the stat data into the tree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068#ifdef DISPLACE_NEW_PACKING_LOCALITIES
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002069 if (REISERFS_I(dir)->new_packing_locality)
2070 th->displace_new_blocks = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002072 retval =
2073 reiserfs_insert_item(th, &path_to_key, &key, &ih, inode,
2074 (char *)(&sd));
2075 if (retval) {
2076 err = retval;
2077 reiserfs_check_path(&path_to_key);
2078 goto out_bad_inode;
2079 }
2080#ifdef DISPLACE_NEW_PACKING_LOCALITIES
2081 if (!th->displace_new_blocks)
2082 REISERFS_I(dir)->new_packing_locality = 0;
2083#endif
2084 if (S_ISDIR(mode)) {
2085 /* insert item with "." and ".." */
2086 retval =
2087 reiserfs_new_directory(th, inode, &ih, &path_to_key, dir);
2088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002090 if (S_ISLNK(mode)) {
2091 /* insert body of symlink */
2092 if (!old_format_only(sb))
2093 i_size = ROUND_UP(i_size);
2094 retval =
2095 reiserfs_new_symlink(th, inode, &ih, &path_to_key, symname,
2096 i_size);
2097 }
2098 if (retval) {
2099 err = retval;
2100 reiserfs_check_path(&path_to_key);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002101 journal_end(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002102 goto out_inserted_sd;
2103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Jeff Mahoney0243d182019-10-24 10:31:27 -04002105 /*
2106 * Mark it private if we're creating the privroot
2107 * or something under it.
2108 */
2109 if (IS_PRIVATE(dir) || dentry == REISERFS_SB(sb)->priv_root) {
2110 inode->i_flags |= S_PRIVATE;
2111 inode->i_opflags &= ~IOP_XATTR;
2112 }
2113
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002114 if (reiserfs_posixacl(inode->i_sb)) {
Jeff Mahoney4c051412013-08-08 17:27:19 -04002115 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney0ab26212009-03-30 14:02:39 -04002116 retval = reiserfs_inherit_default_acl(th, dir, dentry, inode);
Jeff Mahoney4c051412013-08-08 17:27:19 -04002117 reiserfs_write_lock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002118 if (retval) {
2119 err = retval;
2120 reiserfs_check_path(&path_to_key);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002121 journal_end(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002122 goto out_inserted_sd;
2123 }
2124 } else if (inode->i_sb->s_flags & MS_POSIXACL) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002125 reiserfs_warning(inode->i_sb, "jdm-13090",
2126 "ACLs aren't enabled in the fs, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002127 "but vfs thinks they are!");
Jeff Mahoney0243d182019-10-24 10:31:27 -04002128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Jeff Mahoney57fe60d2009-03-30 14:02:41 -04002130 if (security->name) {
Jeff Mahoney4c051412013-08-08 17:27:19 -04002131 reiserfs_write_unlock(inode->i_sb);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -04002132 retval = reiserfs_security_write(th, inode, security);
Jeff Mahoney4c051412013-08-08 17:27:19 -04002133 reiserfs_write_lock(inode->i_sb);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -04002134 if (retval) {
2135 err = retval;
2136 reiserfs_check_path(&path_to_key);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002137 retval = journal_end(th);
Jeff Mahoney57fe60d2009-03-30 14:02:41 -04002138 if (retval)
2139 err = retval;
2140 goto out_inserted_sd;
2141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002144 reiserfs_update_sd(th, inode);
2145 reiserfs_check_path(&path_to_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002149out_bad_inode:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002150 /* Invalidate the object, nothing was inserted yet */
2151 INODE_PKEY(inode)->k_objectid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002153 /* Quota change must be inside a transaction for journaling */
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002154 depth = reiserfs_write_unlock_nested(inode->i_sb);
Christoph Hellwig63936dd2010-03-03 09:05:01 -05002155 dquot_free_inode(inode);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002156 reiserfs_write_lock_nested(inode->i_sb, depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002158out_end_trans:
Jeff Mahoney58d85422014-04-23 10:00:38 -04002159 journal_end(th);
Jeff Mahoney098297b2014-04-23 10:00:36 -04002160 /*
2161 * Drop can be outside and it needs more credits so it's better
2162 * to have it outside
2163 */
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002164 depth = reiserfs_write_unlock_nested(inode->i_sb);
Christoph Hellwig9f754752010-03-03 09:05:05 -05002165 dquot_drop(inode);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002166 reiserfs_write_lock_nested(inode->i_sb, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002167 inode->i_flags |= S_NOQUOTA;
2168 make_bad_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002170out_inserted_sd:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02002171 clear_nlink(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002172 th->t_trans_id = 0; /* so the caller can't use this handle later */
Al Viroc1eaa262008-12-30 02:03:58 -05002173 unlock_new_inode(inode); /* OK to do even if we hadn't locked it */
Jeff Mahoneyd9845612009-03-30 14:02:35 -04002174 iput(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002175 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
2178/*
Jeff Mahoney098297b2014-04-23 10:00:36 -04002179 * finds the tail page in the page cache,
2180 * reads the last block in.
2181 *
2182 * On success, page_result is set to a locked, pinned page, and bh_result
2183 * is set to an up to date buffer for the last block in the file. returns 0.
2184 *
2185 * tail conversion is not done, so bh_result might not be valid for writing
2186 * check buffer_mapped(bh_result) and bh_result->b_blocknr != 0 before
2187 * trying to write the block.
2188 *
2189 * on failure, nonzero is returned, page_result and bh_result are untouched.
2190 */
Jeff Mahoney995c7622009-03-30 14:02:47 -04002191static int grab_tail_page(struct inode *inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002192 struct page **page_result,
2193 struct buffer_head **bh_result)
2194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Jeff Mahoney098297b2014-04-23 10:00:36 -04002196 /*
2197 * we want the page with the last byte in the file,
2198 * not the page that will hold the next byte for appending
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002199 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002200 unsigned long index = (inode->i_size - 1) >> PAGE_SHIFT;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002201 unsigned long pos = 0;
2202 unsigned long start = 0;
Jeff Mahoney995c7622009-03-30 14:02:47 -04002203 unsigned long blocksize = inode->i_sb->s_blocksize;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002204 unsigned long offset = (inode->i_size) & (PAGE_SIZE - 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002205 struct buffer_head *bh;
2206 struct buffer_head *head;
2207 struct page *page;
2208 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Jeff Mahoney098297b2014-04-23 10:00:36 -04002210 /*
2211 * we know that we are only called with inode->i_size > 0.
2212 * we also know that a file tail can never be as big as a block
2213 * If i_size % blocksize == 0, our file is currently block aligned
2214 * and it won't need converting or zeroing after a truncate.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002215 */
2216 if ((offset & (blocksize - 1)) == 0) {
2217 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 }
Jeff Mahoney995c7622009-03-30 14:02:47 -04002219 page = grab_cache_page(inode->i_mapping, index);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002220 error = -ENOMEM;
2221 if (!page) {
2222 goto out;
2223 }
2224 /* start within the page of the last block in the file */
2225 start = (offset / blocksize) * blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Christoph Hellwigebdec242010-10-06 10:47:23 +02002227 error = __block_write_begin(page, start, offset - start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002228 reiserfs_get_block_create_0);
2229 if (error)
2230 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002232 head = page_buffers(page);
2233 bh = head;
2234 do {
2235 if (pos >= start) {
2236 break;
2237 }
2238 bh = bh->b_this_page;
2239 pos += blocksize;
2240 } while (bh != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002242 if (!buffer_uptodate(bh)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002243 /*
2244 * note, this should never happen, prepare_write should be
2245 * taking care of this for us. If the buffer isn't up to
2246 * date, I've screwed up the code to find the buffer, or the
2247 * code to call prepare_write
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002248 */
Jeff Mahoney995c7622009-03-30 14:02:47 -04002249 reiserfs_error(inode->i_sb, "clm-6000",
Jeff Mahoney0030b642009-03-30 14:02:28 -04002250 "error reading block %lu", bh->b_blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002251 error = -EIO;
2252 goto unlock;
2253 }
2254 *bh_result = bh;
2255 *page_result = page;
2256
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002257out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002258 return error;
2259
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002260unlock:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002261 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002262 put_page(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002263 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264}
2265
2266/*
Jeff Mahoney098297b2014-04-23 10:00:36 -04002267 * vfs version of truncate file. Must NOT be called with
2268 * a transaction already started.
2269 *
2270 * some code taken from block_truncate_page
2271 */
Jeff Mahoney995c7622009-03-30 14:02:47 -04002272int reiserfs_truncate_file(struct inode *inode, int update_timestamps)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002273{
2274 struct reiserfs_transaction_handle th;
2275 /* we want the offset for the first byte after the end of the file */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002276 unsigned long offset = inode->i_size & (PAGE_SIZE - 1);
Jeff Mahoney995c7622009-03-30 14:02:47 -04002277 unsigned blocksize = inode->i_sb->s_blocksize;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002278 unsigned length;
2279 struct page *page = NULL;
2280 int error;
2281 struct buffer_head *bh = NULL;
Jeff Mahoney24996042005-12-14 14:38:05 -05002282 int err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Jeff Mahoney278f6672013-08-08 17:34:46 -04002284 reiserfs_write_lock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Jeff Mahoney995c7622009-03-30 14:02:47 -04002286 if (inode->i_size > 0) {
2287 error = grab_tail_page(inode, &page, &bh);
2288 if (error) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002289 /*
2290 * -ENOENT means we truncated past the end of the
2291 * file, and get_block_create_0 could not find a
2292 * block to read in, which is ok.
2293 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002294 if (error != -ENOENT)
Jeff Mahoney995c7622009-03-30 14:02:47 -04002295 reiserfs_error(inode->i_sb, "clm-6001",
Jeff Mahoney0030b642009-03-30 14:02:28 -04002296 "grab_tail_page failed %d",
2297 error);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002298 page = NULL;
2299 bh = NULL;
2300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Jeff Mahoney098297b2014-04-23 10:00:36 -04002303 /*
2304 * so, if page != NULL, we have a buffer head for the offset at
2305 * the end of the file. if the bh is mapped, and bh->b_blocknr != 0,
2306 * then we have an unformatted node. Otherwise, we have a direct item,
2307 * and no zeroing is required on disk. We zero after the truncate,
2308 * because the truncate might pack the item anyway
2309 * (it will unmap bh if it packs).
2310 *
2311 * it is enough to reserve space in transaction for 2 balancings:
2312 * one for "save" link adding and another for the first
2313 * cut_from_item. 1 is for update_sd
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002314 */
Jeff Mahoney995c7622009-03-30 14:02:47 -04002315 error = journal_begin(&th, inode->i_sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002316 JOURNAL_PER_BALANCE_CNT * 2 + 1);
2317 if (error)
2318 goto out;
Jeff Mahoney995c7622009-03-30 14:02:47 -04002319 reiserfs_update_inode_transaction(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002320 if (update_timestamps)
Jeff Mahoney098297b2014-04-23 10:00:36 -04002321 /*
2322 * we are doing real truncate: if the system crashes
2323 * before the last transaction of truncating gets committed
2324 * - on reboot the file either appears truncated properly
2325 * or not truncated at all
2326 */
Jeff Mahoney995c7622009-03-30 14:02:47 -04002327 add_save_link(&th, inode, 1);
2328 err2 = reiserfs_do_truncate(&th, inode, page, update_timestamps);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002329 error = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002330 if (error)
2331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Jeff Mahoney24996042005-12-14 14:38:05 -05002333 /* check reiserfs_do_truncate after ending the transaction */
2334 if (err2) {
2335 error = err2;
2336 goto out;
2337 }
2338
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002339 if (update_timestamps) {
Jeff Mahoney995c7622009-03-30 14:02:47 -04002340 error = remove_save_link(inode, 1 /* truncate */);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002341 if (error)
2342 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002345 if (page) {
2346 length = offset & (blocksize - 1);
2347 /* if we are not on a block boundary */
2348 if (length) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002349 length = blocksize - length;
Christoph Lametereebd2aa2008-02-04 22:28:29 -08002350 zero_user(page, offset, length);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002351 if (buffer_mapped(bh) && bh->b_blocknr != 0) {
2352 mark_buffer_dirty(bh);
2353 }
2354 }
2355 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002356 put_page(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002357 }
2358
Jeff Mahoney278f6672013-08-08 17:34:46 -04002359 reiserfs_write_unlock(inode->i_sb);
Frederic Weisbecker22c963a2009-04-14 05:34:24 +02002360
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002361 return 0;
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002362out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002363 if (page) {
2364 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002365 put_page(page);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002366 }
Frederic Weisbecker22c963a2009-04-14 05:34:24 +02002367
Jeff Mahoney278f6672013-08-08 17:34:46 -04002368 reiserfs_write_unlock(inode->i_sb);
Frederic Weisbecker22c963a2009-04-14 05:34:24 +02002369
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002370 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
2372
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002373static int map_block_for_writepage(struct inode *inode,
2374 struct buffer_head *bh_result,
2375 unsigned long block)
2376{
2377 struct reiserfs_transaction_handle th;
2378 int fs_gen;
2379 struct item_head tmp_ih;
2380 struct item_head *ih;
2381 struct buffer_head *bh;
2382 __le32 *item;
2383 struct cpu_key key;
2384 INITIALIZE_PATH(path);
2385 int pos_in_item;
2386 int jbegin_count = JOURNAL_PER_BALANCE_CNT;
Oleg Drokin7729ac52005-11-28 13:43:53 -08002387 loff_t byte_offset = ((loff_t)block << inode->i_sb->s_blocksize_bits)+1;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002388 int retval;
2389 int use_get_block = 0;
2390 int bytes_copied = 0;
2391 int copy_size;
2392 int trans_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Jeff Mahoney098297b2014-04-23 10:00:36 -04002394 /*
2395 * catch places below that try to log something without
2396 * starting a trans
2397 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002398 th.t_trans_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002400 if (!buffer_uptodate(bh_result)) {
2401 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002404 kmap(bh_result->b_page);
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002405start_over:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002406 reiserfs_write_lock(inode->i_sb);
2407 make_cpu_key(&key, inode, byte_offset, TYPE_ANY, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002409research:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002410 retval = search_for_position_by_key(inode->i_sb, &key, &path);
2411 if (retval != POSITION_FOUND) {
2412 use_get_block = 1;
2413 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 }
2415
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002416 bh = get_last_bh(&path);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04002417 ih = tp_item_head(&path);
2418 item = tp_item_body(&path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002419 pos_in_item = path.pos_in_item;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002421 /* we've found an unformatted node */
2422 if (indirect_item_found(retval, ih)) {
2423 if (bytes_copied > 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002424 reiserfs_warning(inode->i_sb, "clm-6002",
2425 "bytes_copied %d", bytes_copied);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002426 }
2427 if (!get_block_num(item, pos_in_item)) {
2428 /* crap, we are writing to a hole */
2429 use_get_block = 1;
2430 goto out;
2431 }
2432 set_block_dev_mapped(bh_result,
2433 get_block_num(item, pos_in_item), inode);
2434 } else if (is_direct_le_ih(ih)) {
2435 char *p;
2436 p = page_address(bh_result->b_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002437 p += (byte_offset - 1) & (PAGE_SIZE - 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002438 copy_size = ih_item_len(ih) - pos_in_item;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002440 fs_gen = get_generation(inode->i_sb);
2441 copy_item_head(&tmp_ih, ih);
2442
2443 if (!trans_running) {
2444 /* vs-3050 is gone, no need to drop the path */
2445 retval = journal_begin(&th, inode->i_sb, jbegin_count);
2446 if (retval)
2447 goto out;
2448 reiserfs_update_inode_transaction(inode);
2449 trans_running = 1;
2450 if (fs_changed(fs_gen, inode->i_sb)
2451 && item_moved(&tmp_ih, &path)) {
2452 reiserfs_restore_prepared_buffer(inode->i_sb,
2453 bh);
2454 goto research;
2455 }
2456 }
2457
2458 reiserfs_prepare_for_journal(inode->i_sb, bh, 1);
2459
2460 if (fs_changed(fs_gen, inode->i_sb)
2461 && item_moved(&tmp_ih, &path)) {
2462 reiserfs_restore_prepared_buffer(inode->i_sb, bh);
2463 goto research;
2464 }
2465
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -04002466 memcpy(ih_item_body(bh, ih) + pos_in_item, p + bytes_copied,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002467 copy_size);
2468
Jeff Mahoney09f1b802014-04-23 10:00:39 -04002469 journal_mark_dirty(&th, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002470 bytes_copied += copy_size;
2471 set_block_dev_mapped(bh_result, 0, inode);
2472
2473 /* are there still bytes left? */
2474 if (bytes_copied < bh_result->b_size &&
2475 (byte_offset + bytes_copied) < inode->i_size) {
2476 set_cpu_key_k_offset(&key,
2477 cpu_key_k_offset(&key) +
2478 copy_size);
2479 goto research;
2480 }
2481 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002482 reiserfs_warning(inode->i_sb, "clm-6003",
2483 "bad item inode %lu", inode->i_ino);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002484 retval = -EIO;
2485 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002487 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002489out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002490 pathrelse(&path);
2491 if (trans_running) {
Jeff Mahoney58d85422014-04-23 10:00:38 -04002492 int err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002493 if (err)
2494 retval = err;
2495 trans_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002497 reiserfs_write_unlock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002499 /* this is where we fill in holes in the file. */
2500 if (use_get_block) {
2501 retval = reiserfs_get_block(inode, block, bh_result,
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002502 GET_BLOCK_CREATE | GET_BLOCK_NO_IMUX
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002503 | GET_BLOCK_NO_DANGLE);
2504 if (!retval) {
2505 if (!buffer_mapped(bh_result)
2506 || bh_result->b_blocknr == 0) {
2507 /* get_block failed to find a mapped unformatted node. */
2508 use_get_block = 0;
2509 goto start_over;
2510 }
2511 }
2512 }
2513 kunmap(bh_result->b_page);
2514
2515 if (!retval && buffer_mapped(bh_result) && bh_result->b_blocknr == 0) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002516 /*
2517 * we've copied data from the page into the direct item, so the
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002518 * buffer in the page is now clean, mark it to reflect that.
2519 */
2520 lock_buffer(bh_result);
2521 clear_buffer_dirty(bh_result);
2522 unlock_buffer(bh_result);
2523 }
2524 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
Jeff Mahoney0222e652009-03-30 14:02:44 -04002527/*
2528 * mason@suse.com: updated in 2.5.54 to follow the same general io
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 * start/recovery path as __block_write_full_page, along with special
2530 * code to handle reiserfs tails.
2531 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002532static int reiserfs_write_full_page(struct page *page,
2533 struct writeback_control *wbc)
2534{
2535 struct inode *inode = page->mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002536 unsigned long end_index = inode->i_size >> PAGE_SHIFT;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002537 int error = 0;
2538 unsigned long block;
Chris Masonb4c76fa2006-08-05 12:15:10 -07002539 sector_t last_block;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002540 struct buffer_head *head, *bh;
2541 int partial = 0;
2542 int nr = 0;
2543 int checked = PageChecked(page);
2544 struct reiserfs_transaction_handle th;
2545 struct super_block *s = inode->i_sb;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002546 int bh_per_page = PAGE_SIZE / s->s_blocksize;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002547 th.t_trans_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Chris Masone0e851c2006-02-01 03:06:49 -08002549 /* no logging allowed when nonblocking or from PF_MEMALLOC */
2550 if (checked && (current->flags & PF_MEMALLOC)) {
2551 redirty_page_for_writepage(wbc, page);
2552 unlock_page(page);
2553 return 0;
2554 }
2555
Jeff Mahoney098297b2014-04-23 10:00:36 -04002556 /*
2557 * The page dirty bit is cleared before writepage is called, which
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002558 * means we have to tell create_empty_buffers to make dirty buffers
2559 * The page really should be up to date at this point, so tossing
2560 * in the BH_Uptodate is just a sanity check.
2561 */
2562 if (!page_has_buffers(page)) {
2563 create_empty_buffers(page, s->s_blocksize,
2564 (1 << BH_Dirty) | (1 << BH_Uptodate));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002566 head = page_buffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Jeff Mahoney098297b2014-04-23 10:00:36 -04002568 /*
2569 * last page in the file, zero out any contents past the
2570 * last byte in the file
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002571 */
2572 if (page->index >= end_index) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002573 unsigned last_offset;
2574
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002575 last_offset = inode->i_size & (PAGE_SIZE - 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002576 /* no file contents in this page */
2577 if (page->index >= end_index + 1 || !last_offset) {
2578 unlock_page(page);
2579 return 0;
2580 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002581 zero_user_segment(page, last_offset, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002583 bh = head;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002584 block = page->index << (PAGE_SHIFT - s->s_blocksize_bits);
Chris Masonb4c76fa2006-08-05 12:15:10 -07002585 last_block = (i_size_read(inode) - 1) >> inode->i_blkbits;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002586 /* first map all the buffers, logging any direct items we find */
2587 do {
Chris Masonb4c76fa2006-08-05 12:15:10 -07002588 if (block > last_block) {
2589 /*
2590 * This can happen when the block size is less than
2591 * the page size. The corresponding bytes in the page
2592 * were zero filled above
2593 */
2594 clear_buffer_dirty(bh);
2595 set_buffer_uptodate(bh);
2596 } else if ((checked || buffer_dirty(bh)) &&
2597 (!buffer_mapped(bh) || (buffer_mapped(bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002598 && bh->b_blocknr ==
2599 0))) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002600 /*
2601 * not mapped yet, or it points to a direct item, search
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002602 * the btree for the mapping info, and log any direct
2603 * items found
2604 */
2605 if ((error = map_block_for_writepage(inode, bh, block))) {
2606 goto fail;
2607 }
2608 }
2609 bh = bh->b_this_page;
2610 block++;
2611 } while (bh != head);
2612
2613 /*
2614 * we start the transaction after map_block_for_writepage,
2615 * because it can create holes in the file (an unbounded operation).
2616 * starting it here, we can make a reliable estimate for how many
2617 * blocks we're going to log
2618 */
2619 if (checked) {
2620 ClearPageChecked(page);
2621 reiserfs_write_lock(s);
2622 error = journal_begin(&th, s, bh_per_page + 1);
2623 if (error) {
2624 reiserfs_write_unlock(s);
2625 goto fail;
2626 }
2627 reiserfs_update_inode_transaction(inode);
2628 }
2629 /* now go through and lock any dirty buffers on the page */
2630 do {
2631 get_bh(bh);
2632 if (!buffer_mapped(bh))
2633 continue;
2634 if (buffer_mapped(bh) && bh->b_blocknr == 0)
2635 continue;
2636
2637 if (checked) {
2638 reiserfs_prepare_for_journal(s, bh, 1);
Jeff Mahoney09f1b802014-04-23 10:00:39 -04002639 journal_mark_dirty(&th, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002640 continue;
2641 }
Jeff Mahoney098297b2014-04-23 10:00:36 -04002642 /*
2643 * from this point on, we know the buffer is mapped to a
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002644 * real block and not a direct item
2645 */
Wu Fengguang1b430be2010-10-26 14:21:26 -07002646 if (wbc->sync_mode != WB_SYNC_NONE) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002647 lock_buffer(bh);
2648 } else {
Nick Pigginca5de402008-08-02 12:02:13 +02002649 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002650 redirty_page_for_writepage(wbc, page);
2651 continue;
2652 }
2653 }
2654 if (test_clear_buffer_dirty(bh)) {
2655 mark_buffer_async_write(bh);
2656 } else {
2657 unlock_buffer(bh);
2658 }
2659 } while ((bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
2661 if (checked) {
Jeff Mahoney58d85422014-04-23 10:00:38 -04002662 error = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002663 reiserfs_write_unlock(s);
2664 if (error)
2665 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002667 BUG_ON(PageWriteback(page));
2668 set_page_writeback(page);
2669 unlock_page(page);
2670
2671 /*
Jeff Mahoney0222e652009-03-30 14:02:44 -04002672 * since any buffer might be the only dirty buffer on the page,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002673 * the first submit_bh can bring the page out of writeback.
2674 * be careful with the buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 do {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002677 struct buffer_head *next = bh->b_this_page;
2678 if (buffer_async_write(bh)) {
Mike Christie2a222ca2016-06-05 14:31:43 -05002679 submit_bh(REQ_OP_WRITE, 0, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002680 nr++;
2681 }
2682 put_bh(bh);
2683 bh = next;
2684 } while (bh != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002686 error = 0;
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002687done:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002688 if (nr == 0) {
2689 /*
2690 * if this page only had a direct item, it is very possible for
Jeff Mahoney0222e652009-03-30 14:02:44 -04002691 * no io to be required without there being an error. Or,
2692 * someone else could have locked them and sent them down the
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002693 * pipe without locking the page
2694 */
2695 bh = head;
2696 do {
2697 if (!buffer_uptodate(bh)) {
2698 partial = 1;
2699 break;
2700 }
2701 bh = bh->b_this_page;
2702 } while (bh != head);
2703 if (!partial)
2704 SetPageUptodate(page);
2705 end_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002707 return error;
2708
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002709fail:
Jeff Mahoney098297b2014-04-23 10:00:36 -04002710 /*
2711 * catches various errors, we need to make sure any valid dirty blocks
Jeff Mahoney0222e652009-03-30 14:02:44 -04002712 * get to the media. The page is currently locked and not marked for
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002713 * writeback
2714 */
2715 ClearPageUptodate(page);
2716 bh = head;
2717 do {
2718 get_bh(bh);
2719 if (buffer_mapped(bh) && buffer_dirty(bh) && bh->b_blocknr) {
2720 lock_buffer(bh);
2721 mark_buffer_async_write(bh);
2722 } else {
2723 /*
Jeff Mahoney098297b2014-04-23 10:00:36 -04002724 * clear any dirty bits that might have come from
2725 * getting attached to a dirty page
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002726 */
2727 clear_buffer_dirty(bh);
2728 }
2729 bh = bh->b_this_page;
2730 } while (bh != head);
2731 SetPageError(page);
2732 BUG_ON(PageWriteback(page));
2733 set_page_writeback(page);
2734 unlock_page(page);
2735 do {
2736 struct buffer_head *next = bh->b_this_page;
2737 if (buffer_async_write(bh)) {
2738 clear_buffer_dirty(bh);
Mike Christie2a222ca2016-06-05 14:31:43 -05002739 submit_bh(REQ_OP_WRITE, 0, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002740 nr++;
2741 }
2742 put_bh(bh);
2743 bh = next;
2744 } while (bh != head);
2745 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}
2747
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002748static int reiserfs_readpage(struct file *f, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002750 return block_read_full_page(page, reiserfs_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751}
2752
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002753static int reiserfs_writepage(struct page *page, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002755 struct inode *inode = page->mapping->host;
2756 reiserfs_wait_on_write_block(inode->i_sb);
2757 return reiserfs_write_full_page(page, wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758}
2759
Jan Karaec8e2f72009-12-17 15:27:06 -08002760static void reiserfs_truncate_failed_write(struct inode *inode)
2761{
2762 truncate_inode_pages(inode->i_mapping, inode->i_size);
2763 reiserfs_truncate_file(inode, 0);
2764}
2765
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002766static int reiserfs_write_begin(struct file *file,
2767 struct address_space *mapping,
2768 loff_t pos, unsigned len, unsigned flags,
2769 struct page **pagep, void **fsdata)
2770{
2771 struct inode *inode;
2772 struct page *page;
2773 pgoff_t index;
2774 int ret;
2775 int old_ref = 0;
2776
Vladimir Savelievf7557e82007-10-16 01:25:14 -07002777 inode = mapping->host;
Fabian Frederick714b71a2015-02-17 13:45:33 -08002778 *fsdata = NULL;
Vladimir Savelievf7557e82007-10-16 01:25:14 -07002779 if (flags & AOP_FLAG_CONT_EXPAND &&
2780 (pos & (inode->i_sb->s_blocksize - 1)) == 0) {
2781 pos ++;
2782 *fsdata = (void *)(unsigned long)flags;
2783 }
2784
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002785 index = pos >> PAGE_SHIFT;
Nick Piggin54566b22009-01-04 12:00:53 -08002786 page = grab_cache_page_write_begin(mapping, index, flags);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002787 if (!page)
2788 return -ENOMEM;
2789 *pagep = page;
2790
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002791 reiserfs_wait_on_write_block(inode->i_sb);
2792 fix_tail_page_for_writing(page);
2793 if (reiserfs_transaction_running(inode->i_sb)) {
2794 struct reiserfs_transaction_handle *th;
2795 th = (struct reiserfs_transaction_handle *)current->
2796 journal_info;
2797 BUG_ON(!th->t_refcount);
2798 BUG_ON(!th->t_trans_id);
2799 old_ref = th->t_refcount;
2800 th->t_refcount++;
2801 }
Christoph Hellwig6e1db882010-06-04 11:29:57 +02002802 ret = __block_write_begin(page, pos, len, reiserfs_get_block);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002803 if (ret && reiserfs_transaction_running(inode->i_sb)) {
2804 struct reiserfs_transaction_handle *th = current->journal_info;
Jeff Mahoney098297b2014-04-23 10:00:36 -04002805 /*
2806 * this gets a little ugly. If reiserfs_get_block returned an
2807 * error and left a transacstion running, we've got to close
2808 * it, and we've got to free handle if it was a persistent
2809 * transaction.
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002810 *
2811 * But, if we had nested into an existing transaction, we need
2812 * to just drop the ref count on the handle.
2813 *
2814 * If old_ref == 0, the transaction is from reiserfs_get_block,
Jeff Mahoney098297b2014-04-23 10:00:36 -04002815 * and it was a persistent trans. Otherwise, it was nested
2816 * above.
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002817 */
2818 if (th->t_refcount > old_ref) {
2819 if (old_ref)
2820 th->t_refcount--;
2821 else {
2822 int err;
2823 reiserfs_write_lock(inode->i_sb);
2824 err = reiserfs_end_persistent_transaction(th);
2825 reiserfs_write_unlock(inode->i_sb);
2826 if (err)
2827 ret = err;
2828 }
2829 }
2830 }
2831 if (ret) {
2832 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002833 put_page(page);
Jan Karaec8e2f72009-12-17 15:27:06 -08002834 /* Truncate allocated blocks */
2835 reiserfs_truncate_failed_write(inode);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002836 }
2837 return ret;
2838}
2839
Christoph Hellwigebdec242010-10-06 10:47:23 +02002840int __reiserfs_write_begin(struct page *page, unsigned from, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002842 struct inode *inode = page->mapping->host;
2843 int ret;
2844 int old_ref = 0;
Jeff Mahoney278f6672013-08-08 17:34:46 -04002845 int depth;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002846
Jeff Mahoney278f6672013-08-08 17:34:46 -04002847 depth = reiserfs_write_unlock_nested(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002848 reiserfs_wait_on_write_block(inode->i_sb);
Jeff Mahoney278f6672013-08-08 17:34:46 -04002849 reiserfs_write_lock_nested(inode->i_sb, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002850
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002851 fix_tail_page_for_writing(page);
2852 if (reiserfs_transaction_running(inode->i_sb)) {
2853 struct reiserfs_transaction_handle *th;
2854 th = (struct reiserfs_transaction_handle *)current->
2855 journal_info;
2856 BUG_ON(!th->t_refcount);
2857 BUG_ON(!th->t_trans_id);
2858 old_ref = th->t_refcount;
2859 th->t_refcount++;
2860 }
2861
Christoph Hellwigebdec242010-10-06 10:47:23 +02002862 ret = __block_write_begin(page, from, len, reiserfs_get_block);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002863 if (ret && reiserfs_transaction_running(inode->i_sb)) {
2864 struct reiserfs_transaction_handle *th = current->journal_info;
Jeff Mahoney098297b2014-04-23 10:00:36 -04002865 /*
2866 * this gets a little ugly. If reiserfs_get_block returned an
2867 * error and left a transacstion running, we've got to close
2868 * it, and we've got to free handle if it was a persistent
2869 * transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002870 *
2871 * But, if we had nested into an existing transaction, we need
2872 * to just drop the ref count on the handle.
2873 *
2874 * If old_ref == 0, the transaction is from reiserfs_get_block,
Jeff Mahoney098297b2014-04-23 10:00:36 -04002875 * and it was a persistent trans. Otherwise, it was nested
2876 * above.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002877 */
2878 if (th->t_refcount > old_ref) {
2879 if (old_ref)
2880 th->t_refcount--;
2881 else {
2882 int err;
2883 reiserfs_write_lock(inode->i_sb);
2884 err = reiserfs_end_persistent_transaction(th);
2885 reiserfs_write_unlock(inode->i_sb);
2886 if (err)
2887 ret = err;
2888 }
2889 }
2890 }
2891 return ret;
2892
2893}
2894
2895static sector_t reiserfs_aop_bmap(struct address_space *as, sector_t block)
2896{
2897 return generic_block_bmap(as, block, reiserfs_bmap);
2898}
2899
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002900static int reiserfs_write_end(struct file *file, struct address_space *mapping,
2901 loff_t pos, unsigned len, unsigned copied,
2902 struct page *page, void *fsdata)
2903{
2904 struct inode *inode = page->mapping->host;
2905 int ret = 0;
2906 int update_sd = 0;
2907 struct reiserfs_transaction_handle *th;
2908 unsigned start;
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002909 bool locked = false;
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002910
Vladimir Savelievf7557e82007-10-16 01:25:14 -07002911 if ((unsigned long)fsdata & AOP_FLAG_CONT_EXPAND)
2912 pos ++;
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002913
2914 reiserfs_wait_on_write_block(inode->i_sb);
2915 if (reiserfs_transaction_running(inode->i_sb))
2916 th = current->journal_info;
2917 else
2918 th = NULL;
2919
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002920 start = pos & (PAGE_SIZE - 1);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002921 if (unlikely(copied < len)) {
2922 if (!PageUptodate(page))
2923 copied = 0;
2924
2925 page_zero_new_buffers(page, start + copied, start + len);
2926 }
2927 flush_dcache_page(page);
2928
2929 reiserfs_commit_page(inode, page, start, start + copied);
2930
Jeff Mahoney098297b2014-04-23 10:00:36 -04002931 /*
2932 * generic_commit_write does this for us, but does not update the
2933 * transaction tracking stuff when the size changes. So, we have
2934 * to do the i_size updates here.
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002935 */
Jan Karaec8e2f72009-12-17 15:27:06 -08002936 if (pos + copied > inode->i_size) {
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002937 struct reiserfs_transaction_handle myth;
Jeff Mahoney278f6672013-08-08 17:34:46 -04002938 reiserfs_write_lock(inode->i_sb);
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002939 locked = true;
Jeff Mahoney098297b2014-04-23 10:00:36 -04002940 /*
2941 * If the file have grown beyond the border where it
2942 * can have a tail, unmark it as needing a tail
2943 * packing
2944 */
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002945 if ((have_large_tails(inode->i_sb)
2946 && inode->i_size > i_block_size(inode) * 4)
2947 || (have_small_tails(inode->i_sb)
2948 && inode->i_size > i_block_size(inode)))
2949 REISERFS_I(inode)->i_flags &= ~i_pack_on_close_mask;
2950
2951 ret = journal_begin(&myth, inode->i_sb, 1);
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002952 if (ret)
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002953 goto journal_error;
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002954
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002955 reiserfs_update_inode_transaction(inode);
Jan Karaec8e2f72009-12-17 15:27:06 -08002956 inode->i_size = pos + copied;
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002957 /*
2958 * this will just nest into our transaction. It's important
Jeff Mahoney098297b2014-04-23 10:00:36 -04002959 * to use mark_inode_dirty so the inode gets pushed around on
2960 * the dirty lists, and so that O_SYNC works as expected
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002961 */
2962 mark_inode_dirty(inode);
2963 reiserfs_update_sd(&myth, inode);
2964 update_sd = 1;
Jeff Mahoney58d85422014-04-23 10:00:38 -04002965 ret = journal_end(&myth);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002966 if (ret)
2967 goto journal_error;
2968 }
2969 if (th) {
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002970 if (!locked) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04002971 reiserfs_write_lock(inode->i_sb);
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002972 locked = true;
2973 }
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002974 if (!update_sd)
2975 mark_inode_dirty(inode);
2976 ret = reiserfs_end_persistent_transaction(th);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002977 if (ret)
2978 goto out;
2979 }
2980
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002981out:
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002982 if (locked)
Jeff Mahoney278f6672013-08-08 17:34:46 -04002983 reiserfs_write_unlock(inode->i_sb);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002984 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002985 put_page(page);
Jan Karaec8e2f72009-12-17 15:27:06 -08002986
2987 if (pos + len > inode->i_size)
2988 reiserfs_truncate_failed_write(inode);
2989
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002990 return ret == 0 ? copied : ret;
2991
Jeff Mahoneycf776a72014-04-23 10:00:41 -04002992journal_error:
Jeff Mahoney278f6672013-08-08 17:34:46 -04002993 reiserfs_write_unlock(inode->i_sb);
Frederic Weisbeckerd6f5b0a2009-05-08 14:53:52 +02002994 locked = false;
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002995 if (th) {
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002996 if (!update_sd)
2997 reiserfs_update_sd(th, inode);
2998 ret = reiserfs_end_persistent_transaction(th);
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07002999 }
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07003000 goto out;
3001}
3002
3003int reiserfs_commit_write(struct file *f, struct page *page,
3004 unsigned from, unsigned to)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003005{
3006 struct inode *inode = page->mapping->host;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003007 loff_t pos = ((loff_t) page->index << PAGE_SHIFT) + to;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003008 int ret = 0;
3009 int update_sd = 0;
3010 struct reiserfs_transaction_handle *th = NULL;
Jeff Mahoney278f6672013-08-08 17:34:46 -04003011 int depth;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003012
Jeff Mahoney278f6672013-08-08 17:34:46 -04003013 depth = reiserfs_write_unlock_nested(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003014 reiserfs_wait_on_write_block(inode->i_sb);
Jeff Mahoney278f6672013-08-08 17:34:46 -04003015 reiserfs_write_lock_nested(inode->i_sb, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003016
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003017 if (reiserfs_transaction_running(inode->i_sb)) {
3018 th = current->journal_info;
3019 }
3020 reiserfs_commit_page(inode, page, from, to);
3021
Jeff Mahoney098297b2014-04-23 10:00:36 -04003022 /*
3023 * generic_commit_write does this for us, but does not update the
3024 * transaction tracking stuff when the size changes. So, we have
3025 * to do the i_size updates here.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003026 */
3027 if (pos > inode->i_size) {
3028 struct reiserfs_transaction_handle myth;
Jeff Mahoney098297b2014-04-23 10:00:36 -04003029 /*
3030 * If the file have grown beyond the border where it
3031 * can have a tail, unmark it as needing a tail
3032 * packing
3033 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003034 if ((have_large_tails(inode->i_sb)
3035 && inode->i_size > i_block_size(inode) * 4)
3036 || (have_small_tails(inode->i_sb)
3037 && inode->i_size > i_block_size(inode)))
3038 REISERFS_I(inode)->i_flags &= ~i_pack_on_close_mask;
3039
3040 ret = journal_begin(&myth, inode->i_sb, 1);
Frederic Weisbecker7e942772009-08-25 03:38:12 +02003041 if (ret)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003042 goto journal_error;
Frederic Weisbecker7e942772009-08-25 03:38:12 +02003043
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003044 reiserfs_update_inode_transaction(inode);
3045 inode->i_size = pos;
Chris Mason9f037832005-09-13 01:25:17 -07003046 /*
3047 * this will just nest into our transaction. It's important
Jeff Mahoney098297b2014-04-23 10:00:36 -04003048 * to use mark_inode_dirty so the inode gets pushed around
3049 * on the dirty lists, and so that O_SYNC works as expected
Chris Mason9f037832005-09-13 01:25:17 -07003050 */
3051 mark_inode_dirty(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003052 reiserfs_update_sd(&myth, inode);
3053 update_sd = 1;
Jeff Mahoney58d85422014-04-23 10:00:38 -04003054 ret = journal_end(&myth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003055 if (ret)
3056 goto journal_error;
3057 }
3058 if (th) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003059 if (!update_sd)
Chris Mason9f037832005-09-13 01:25:17 -07003060 mark_inode_dirty(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003061 ret = reiserfs_end_persistent_transaction(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003062 if (ret)
3063 goto out;
3064 }
3065
Jeff Mahoneycf776a72014-04-23 10:00:41 -04003066out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003067 return ret;
3068
Jeff Mahoneycf776a72014-04-23 10:00:41 -04003069journal_error:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003070 if (th) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003071 if (!update_sd)
3072 reiserfs_update_sd(th, inode);
3073 ret = reiserfs_end_persistent_transaction(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003074 }
3075
3076 return ret;
3077}
3078
3079void sd_attrs_to_i_attrs(__u16 sd_attrs, struct inode *inode)
3080{
3081 if (reiserfs_attrs(inode->i_sb)) {
3082 if (sd_attrs & REISERFS_SYNC_FL)
3083 inode->i_flags |= S_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003085 inode->i_flags &= ~S_SYNC;
3086 if (sd_attrs & REISERFS_IMMUTABLE_FL)
3087 inode->i_flags |= S_IMMUTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003089 inode->i_flags &= ~S_IMMUTABLE;
3090 if (sd_attrs & REISERFS_APPEND_FL)
3091 inode->i_flags |= S_APPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003093 inode->i_flags &= ~S_APPEND;
3094 if (sd_attrs & REISERFS_NOATIME_FL)
3095 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003097 inode->i_flags &= ~S_NOATIME;
3098 if (sd_attrs & REISERFS_NOTAIL_FL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 REISERFS_I(inode)->i_flags |= i_nopack_mask;
3100 else
3101 REISERFS_I(inode)->i_flags &= ~i_nopack_mask;
3102 }
3103}
3104
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003105void i_attrs_to_sd_attrs(struct inode *inode, __u16 * sd_attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003107 if (reiserfs_attrs(inode->i_sb)) {
3108 if (inode->i_flags & S_IMMUTABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 *sd_attrs |= REISERFS_IMMUTABLE_FL;
3110 else
3111 *sd_attrs &= ~REISERFS_IMMUTABLE_FL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003112 if (inode->i_flags & S_SYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 *sd_attrs |= REISERFS_SYNC_FL;
3114 else
3115 *sd_attrs &= ~REISERFS_SYNC_FL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003116 if (inode->i_flags & S_NOATIME)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 *sd_attrs |= REISERFS_NOATIME_FL;
3118 else
3119 *sd_attrs &= ~REISERFS_NOATIME_FL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003120 if (REISERFS_I(inode)->i_flags & i_nopack_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 *sd_attrs |= REISERFS_NOTAIL_FL;
3122 else
3123 *sd_attrs &= ~REISERFS_NOTAIL_FL;
3124 }
3125}
3126
Jeff Mahoney098297b2014-04-23 10:00:36 -04003127/*
3128 * decide if this buffer needs to stay around for data logging or ordered
3129 * write purposes
3130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131static int invalidatepage_can_drop(struct inode *inode, struct buffer_head *bh)
3132{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003133 int ret = 1;
3134 struct reiserfs_journal *j = SB_JOURNAL(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
Chris Masond62b1b82006-02-01 03:06:47 -08003136 lock_buffer(bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003137 spin_lock(&j->j_dirty_buffers_lock);
3138 if (!buffer_mapped(bh)) {
3139 goto free_jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 }
Jeff Mahoney098297b2014-04-23 10:00:36 -04003141 /*
3142 * the page is locked, and the only places that log a data buffer
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003143 * also lock the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003145 if (reiserfs_file_data_log(inode)) {
3146 /*
3147 * very conservative, leave the buffer pinned if
3148 * anyone might need it.
3149 */
3150 if (buffer_journaled(bh) || buffer_journal_dirty(bh)) {
3151 ret = 0;
3152 }
Chris Masond62b1b82006-02-01 03:06:47 -08003153 } else if (buffer_dirty(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003154 struct reiserfs_journal_list *jl;
3155 struct reiserfs_jh *jh = bh->b_private;
3156
Jeff Mahoney098297b2014-04-23 10:00:36 -04003157 /*
3158 * why is this safe?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003159 * reiserfs_setattr updates i_size in the on disk
3160 * stat data before allowing vmtruncate to be called.
3161 *
3162 * If buffer was put onto the ordered list for this
3163 * transaction, we know for sure either this transaction
3164 * or an older one already has updated i_size on disk,
3165 * and this ordered data won't be referenced in the file
3166 * if we crash.
3167 *
3168 * if the buffer was put onto the ordered list for an older
3169 * transaction, we need to leave it around
3170 */
3171 if (jh && (jl = jh->jl)
3172 && jl != SB_JOURNAL(inode->i_sb)->j_current_jl)
3173 ret = 0;
3174 }
Jeff Mahoneycf776a72014-04-23 10:00:41 -04003175free_jh:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003176 if (ret && bh->b_private) {
3177 reiserfs_free_jh(bh);
3178 }
3179 spin_unlock(&j->j_dirty_buffers_lock);
Chris Masond62b1b82006-02-01 03:06:47 -08003180 unlock_buffer(bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003181 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182}
3183
3184/* clm -- taken from fs/buffer.c:block_invalidate_page */
Lukas Czernerd47992f2013-05-21 23:17:23 -04003185static void reiserfs_invalidatepage(struct page *page, unsigned int offset,
3186 unsigned int length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003188 struct buffer_head *head, *bh, *next;
3189 struct inode *inode = page->mapping->host;
3190 unsigned int curr_off = 0;
Lukas Czernerbad54832013-05-21 23:58:51 -04003191 unsigned int stop = offset + length;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003192 int partial_page = (offset || length < PAGE_SIZE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003193 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003195 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Lukas Czernerbad54832013-05-21 23:58:51 -04003197 if (!partial_page)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003198 ClearPageChecked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003200 if (!page_has_buffers(page))
3201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003203 head = page_buffers(page);
3204 bh = head;
3205 do {
3206 unsigned int next_off = curr_off + bh->b_size;
3207 next = bh->b_this_page;
3208
Lukas Czernerbad54832013-05-21 23:58:51 -04003209 if (next_off > stop)
3210 goto out;
3211
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003212 /*
3213 * is this block fully invalidated?
3214 */
3215 if (offset <= curr_off) {
3216 if (invalidatepage_can_drop(inode, bh))
3217 reiserfs_unmap_buffer(bh);
3218 else
3219 ret = 0;
3220 }
3221 curr_off = next_off;
3222 bh = next;
3223 } while (bh != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225 /*
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003226 * We release buffers only if the entire page is being invalidated.
3227 * The get_block cached value has been unconditionally invalidated,
3228 * so real IO is not possible anymore.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 */
Lukas Czernerbad54832013-05-21 23:58:51 -04003230 if (!partial_page && ret) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003231 ret = try_to_release_page(page, 0);
NeilBrown2ff28e22006-03-26 01:37:18 -08003232 /* maybe should BUG_ON(!ret); - neilb */
3233 }
Jeff Mahoneycf776a72014-04-23 10:00:41 -04003234out:
NeilBrown2ff28e22006-03-26 01:37:18 -08003235 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003238static int reiserfs_set_page_dirty(struct page *page)
3239{
3240 struct inode *inode = page->mapping->host;
3241 if (reiserfs_file_data_log(inode)) {
3242 SetPageChecked(page);
3243 return __set_page_dirty_nobuffers(page);
3244 }
3245 return __set_page_dirty_buffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246}
3247
3248/*
3249 * Returns 1 if the page's buffers were dropped. The page is locked.
3250 *
3251 * Takes j_dirty_buffers_lock to protect the b_assoc_buffers list_heads
3252 * in the buffers at page_buffers(page).
3253 *
3254 * even in -o notail mode, we can't be sure an old mount without -o notail
3255 * didn't create files with tails.
3256 */
Al Viro27496a82005-10-21 03:20:48 -04003257static int reiserfs_releasepage(struct page *page, gfp_t unused_gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003259 struct inode *inode = page->mapping->host;
3260 struct reiserfs_journal *j = SB_JOURNAL(inode->i_sb);
3261 struct buffer_head *head;
3262 struct buffer_head *bh;
3263 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003265 WARN_ON(PageChecked(page));
3266 spin_lock(&j->j_dirty_buffers_lock);
3267 head = page_buffers(page);
3268 bh = head;
3269 do {
3270 if (bh->b_private) {
3271 if (!buffer_dirty(bh) && !buffer_locked(bh)) {
3272 reiserfs_free_jh(bh);
3273 } else {
3274 ret = 0;
3275 break;
3276 }
3277 }
3278 bh = bh->b_this_page;
3279 } while (bh != head);
3280 if (ret)
3281 ret = try_to_free_buffers(page);
3282 spin_unlock(&j->j_dirty_buffers_lock);
3283 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284}
3285
Jeff Mahoney098297b2014-04-23 10:00:36 -04003286/*
3287 * We thank Mingming Cao for helping us understand in great detail what
3288 * to do in this section of the code.
3289 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003290static ssize_t reiserfs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003292 struct file *file = iocb->ki_filp;
3293 struct inode *inode = file->f_mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -05003294 size_t count = iov_iter_count(iter);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02003295 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003297 ret = blockdev_direct_IO(iocb, inode, iter,
Al Viro31b14032014-03-05 01:33:16 -05003298 reiserfs_get_blocks_direct_io);
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02003299
3300 /*
3301 * In case of error extending write may have instantiated a few
3302 * blocks outside i_size. Trim these off again.
3303 */
Omar Sandoval6f673762015-03-16 04:33:52 -07003304 if (unlikely(iov_iter_rw(iter) == WRITE && ret < 0)) {
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02003305 loff_t isize = i_size_read(inode);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07003306 loff_t end = iocb->ki_pos + count;
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02003307
Marco Stornellicfac4b42012-12-15 11:47:31 +01003308 if ((end > isize) && inode_newsize_ok(inode, isize) == 0) {
3309 truncate_setsize(inode, isize);
3310 reiserfs_vfs_truncate_file(inode);
3311 }
Christoph Hellwigeafdc7d2010-06-04 11:29:53 +02003312 }
3313
3314 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315}
3316
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003317int reiserfs_setattr(struct dentry *dentry, struct iattr *attr)
3318{
David Howells2b0143b2015-03-17 22:25:59 +00003319 struct inode *inode = d_inode(dentry);
Jeff Laytoncdd6fe62007-10-18 03:05:19 -07003320 unsigned int ia_valid;
Frederic Weisbecker5fe1533f2010-01-04 22:04:01 +01003321 int error;
Jeff Laytoncdd6fe62007-10-18 03:05:19 -07003322
Jan Kara31051c82016-05-26 16:55:18 +02003323 error = setattr_prepare(dentry, attr);
Christoph Hellwigdb78b872010-06-04 11:30:03 +02003324 if (error)
3325 return error;
3326
Jeff Laytoncdd6fe62007-10-18 03:05:19 -07003327 /* must be turned off for recursive notify_change calls */
3328 ia_valid = attr->ia_valid &= ~(ATTR_KILL_SUID|ATTR_KILL_SGID);
3329
Jan Kara2e6c97e2015-07-14 13:51:55 +02003330 if (is_quota_modification(inode, attr)) {
3331 error = dquot_initialize(inode);
3332 if (error)
3333 return error;
3334 }
Jeff Mahoney278f6672013-08-08 17:34:46 -04003335 reiserfs_write_lock(inode->i_sb);
Dmitry Monakhov12755622010-04-08 22:04:20 +04003336 if (attr->ia_valid & ATTR_SIZE) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04003337 /*
3338 * version 2 items will be caught by the s_maxbytes check
3339 * done for us in vmtruncate
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003340 */
3341 if (get_inode_item_key_version(inode) == KEY_FORMAT_3_5 &&
3342 attr->ia_size > MAX_NON_LFS) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04003343 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003344 error = -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 }
Christoph Hellwig562c72a2011-06-24 14:29:45 -04003347
3348 inode_dio_wait(inode);
3349
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003350 /* fill in hole pointers in the expanding truncate case. */
3351 if (attr->ia_size > inode->i_size) {
Vladimir Savelievf7557e82007-10-16 01:25:14 -07003352 error = generic_cont_expand_simple(inode, attr->ia_size);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003353 if (REISERFS_I(inode)->i_prealloc_count > 0) {
3354 int err;
3355 struct reiserfs_transaction_handle th;
3356 /* we're changing at most 2 bitmaps, inode + super */
3357 err = journal_begin(&th, inode->i_sb, 4);
3358 if (!err) {
3359 reiserfs_discard_prealloc(&th, inode);
Jeff Mahoney58d85422014-04-23 10:00:38 -04003360 err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003361 }
3362 if (err)
3363 error = err;
3364 }
Jeff Mahoney4c051412013-08-08 17:27:19 -04003365 if (error) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04003366 reiserfs_write_unlock(inode->i_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003367 goto out;
Jeff Mahoney4c051412013-08-08 17:27:19 -04003368 }
Vladimir Savelievdd535a52006-07-01 04:36:32 -07003369 /*
3370 * file size is changed, ctime and mtime are
3371 * to be updated
3372 */
3373 attr->ia_valid |= (ATTR_MTIME | ATTR_CTIME);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003374 }
3375 }
Jeff Mahoney278f6672013-08-08 17:34:46 -04003376 reiserfs_write_unlock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
Eric W. Biedermandf814652012-02-07 16:30:06 -08003378 if ((((attr->ia_valid & ATTR_UID) && (from_kuid(&init_user_ns, attr->ia_uid) & ~0xffff)) ||
3379 ((attr->ia_valid & ATTR_GID) && (from_kgid(&init_user_ns, attr->ia_gid) & ~0xffff))) &&
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003380 (get_inode_sd_version(inode) == STAT_DATA_V1)) {
3381 /* stat data of format v3.5 has 16 bit uid and gid */
3382 error = -EINVAL;
3383 goto out;
3384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Eric W. Biedermandf814652012-02-07 16:30:06 -08003386 if ((ia_valid & ATTR_UID && !uid_eq(attr->ia_uid, inode->i_uid)) ||
3387 (ia_valid & ATTR_GID && !gid_eq(attr->ia_gid, inode->i_gid))) {
Christoph Hellwig10257742010-06-04 11:30:02 +02003388 struct reiserfs_transaction_handle th;
3389 int jbegin_count =
3390 2 *
3391 (REISERFS_QUOTA_INIT_BLOCKS(inode->i_sb) +
3392 REISERFS_QUOTA_DEL_BLOCKS(inode->i_sb)) +
3393 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Christoph Hellwig10257742010-06-04 11:30:02 +02003395 error = reiserfs_chown_xattrs(inode, attr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003396
Christoph Hellwig10257742010-06-04 11:30:02 +02003397 if (error)
3398 return error;
3399
Jeff Mahoney098297b2014-04-23 10:00:36 -04003400 /*
3401 * (user+group)*(old+new) structure - we count quota
3402 * info and , inode write (sb, inode)
3403 */
Jeff Mahoney278f6672013-08-08 17:34:46 -04003404 reiserfs_write_lock(inode->i_sb);
Christoph Hellwig10257742010-06-04 11:30:02 +02003405 error = journal_begin(&th, inode->i_sb, jbegin_count);
Jeff Mahoney278f6672013-08-08 17:34:46 -04003406 reiserfs_write_unlock(inode->i_sb);
Christoph Hellwig10257742010-06-04 11:30:02 +02003407 if (error)
3408 goto out;
3409 error = dquot_transfer(inode, attr);
Jeff Mahoney278f6672013-08-08 17:34:46 -04003410 reiserfs_write_lock(inode->i_sb);
Christoph Hellwig10257742010-06-04 11:30:02 +02003411 if (error) {
Jeff Mahoney58d85422014-04-23 10:00:38 -04003412 journal_end(&th);
Jeff Mahoney278f6672013-08-08 17:34:46 -04003413 reiserfs_write_unlock(inode->i_sb);
Christoph Hellwig10257742010-06-04 11:30:02 +02003414 goto out;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003415 }
Christoph Hellwig10257742010-06-04 11:30:02 +02003416
Jeff Mahoney098297b2014-04-23 10:00:36 -04003417 /*
3418 * Update corresponding info in inode so that everything
3419 * is in one transaction
3420 */
Christoph Hellwig10257742010-06-04 11:30:02 +02003421 if (attr->ia_valid & ATTR_UID)
3422 inode->i_uid = attr->ia_uid;
3423 if (attr->ia_valid & ATTR_GID)
3424 inode->i_gid = attr->ia_gid;
3425 mark_inode_dirty(inode);
Jeff Mahoney58d85422014-04-23 10:00:38 -04003426 error = journal_end(&th);
Jeff Mahoney278f6672013-08-08 17:34:46 -04003427 reiserfs_write_unlock(inode->i_sb);
Christoph Hellwig10257742010-06-04 11:30:02 +02003428 if (error)
3429 goto out;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003430 }
3431
Christoph Hellwig10257742010-06-04 11:30:02 +02003432 if ((attr->ia_valid & ATTR_SIZE) &&
Marco Stornellicfac4b42012-12-15 11:47:31 +01003433 attr->ia_size != i_size_read(inode)) {
3434 error = inode_newsize_ok(inode, attr->ia_size);
3435 if (!error) {
Jeff Mahoney22e74782014-05-21 13:28:07 -04003436 /*
3437 * Could race against reiserfs_file_release
3438 * if called from NFS, so take tailpack mutex.
3439 */
3440 mutex_lock(&REISERFS_I(inode)->tailpack);
Marco Stornellicfac4b42012-12-15 11:47:31 +01003441 truncate_setsize(inode, attr->ia_size);
Jeff Mahoney22e74782014-05-21 13:28:07 -04003442 reiserfs_truncate_file(inode, 1);
3443 mutex_unlock(&REISERFS_I(inode)->tailpack);
Marco Stornellicfac4b42012-12-15 11:47:31 +01003444 }
3445 }
Christoph Hellwig10257742010-06-04 11:30:02 +02003446
3447 if (!error) {
3448 setattr_copy(inode, attr);
3449 mark_inode_dirty(inode);
3450 }
Christoph Hellwig10257742010-06-04 11:30:02 +02003451
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003452 if (!error && reiserfs_posixacl(inode->i_sb)) {
3453 if (attr->ia_valid & ATTR_MODE)
3454 error = reiserfs_acl_chmod(inode);
3455 }
3456
Jeff Mahoney4c051412013-08-08 17:27:19 -04003457out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003458 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459}
3460
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07003461const struct address_space_operations reiserfs_address_space_operations = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003462 .writepage = reiserfs_writepage,
3463 .readpage = reiserfs_readpage,
3464 .readpages = reiserfs_readpages,
3465 .releasepage = reiserfs_releasepage,
3466 .invalidatepage = reiserfs_invalidatepage,
Vladimir Savelievba9d8ce2007-10-16 01:25:14 -07003467 .write_begin = reiserfs_write_begin,
3468 .write_end = reiserfs_write_end,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003469 .bmap = reiserfs_aop_bmap,
3470 .direct_IO = reiserfs_direct_IO,
3471 .set_page_dirty = reiserfs_set_page_dirty,
3472};