blob: b0ae088dffc76dfb2c350b35bf6b0591209f2fd5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Jeff Mahoney098297b2014-04-23 10:00:36 -04003 * Copyright 1999 Hans Reiser, see reiserfs/README for licensing and copyright
4 * details
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/time.h>
8#include <linux/pagemap.h>
9#include <linux/buffer_head.h>
Al Virof466c6f2012-03-17 01:16:43 -040010#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Jeff Mahoney098297b2014-04-23 10:00:36 -040012/*
13 * access to tail : when one is going to read tail it must make sure, that is
14 * not running. direct2indirect and indirect2direct can not run concurrently
15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Jeff Mahoney098297b2014-04-23 10:00:36 -040017/*
18 * Converts direct items to an unformatted node. Panics if file has no
19 * tail. -ENOSPC if no disk space for conversion
20 */
21/*
22 * path points to first direct item of the file regardless of how many of
23 * them are there
24 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070025int direct2indirect(struct reiserfs_transaction_handle *th, struct inode *inode,
Josef "Jeff" Sipekfec6d052006-12-08 02:36:32 -080026 struct treepath *path, struct buffer_head *unbh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070027 loff_t tail_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070029 struct super_block *sb = inode->i_sb;
30 struct buffer_head *up_to_date_bh;
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -040031 struct item_head *p_le_ih = tp_item_head(path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070032 unsigned long total_tail = 0;
Jeff Mahoney098297b2014-04-23 10:00:36 -040033
34 /* Key to search for the last byte of the converted item. */
35 struct cpu_key end_key;
36
37 /*
38 * new indirect item to be inserted or key
39 * of unfm pointer to be pasted
40 */
41 struct item_head ind_ih;
42 int blk_size;
43 /* returned value for reiserfs_insert_item and clones */
44 int retval;
45 /* Handle on an unformatted node that will be inserted in the tree. */
46 unp_t unfm_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070048 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070050 REISERFS_SB(sb)->s_direct2indirect++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Jeff Mahoneyee939612009-03-30 14:02:50 -040052 blk_size = sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Jeff Mahoney098297b2014-04-23 10:00:36 -040054 /*
55 * and key to search for append or insert pointer to the new
56 * unformatted node.
57 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070058 copy_item_head(&ind_ih, p_le_ih);
59 set_le_ih_k_offset(&ind_ih, tail_offset);
60 set_le_ih_k_type(&ind_ih, TYPE_INDIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070062 /* Set the key to search for the place for new unfm pointer */
63 make_cpu_key(&end_key, inode, tail_offset, TYPE_INDIRECT, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jeff Mahoney0222e652009-03-30 14:02:44 -040065 /* FIXME: we could avoid this */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070066 if (search_for_position_by_key(sb, &end_key, path) == POSITION_FOUND) {
Jeff Mahoney0030b642009-03-30 14:02:28 -040067 reiserfs_error(sb, "PAP-14030",
68 "pasted or inserted byte exists in "
69 "the tree %K. Use fsck to repair.", &end_key);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070070 pathrelse(path);
71 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -040074 p_le_ih = tp_item_head(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070076 unfm_ptr = cpu_to_le32(unbh->b_blocknr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070078 if (is_statdata_le_ih(p_le_ih)) {
79 /* Insert new indirect item. */
80 set_ih_free_space(&ind_ih, 0); /* delete at nearest future */
81 put_ih_item_len(&ind_ih, UNFM_P_SIZE);
82 PATH_LAST_POSITION(path)++;
Jeff Mahoneyee939612009-03-30 14:02:50 -040083 retval =
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070084 reiserfs_insert_item(th, path, &end_key, &ind_ih, inode,
85 (char *)&unfm_ptr);
86 } else {
87 /* Paste into last indirect item of an object. */
Jeff Mahoneyee939612009-03-30 14:02:50 -040088 retval = reiserfs_paste_into_item(th, path, &end_key, inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070089 (char *)&unfm_ptr,
90 UNFM_P_SIZE);
91 }
Jeff Mahoneyee939612009-03-30 14:02:50 -040092 if (retval) {
93 return retval;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070094 }
Jeff Mahoney098297b2014-04-23 10:00:36 -040095 /*
96 * note: from here there are two keys which have matching first
97 * three key components. They only differ by the fourth one.
98 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700100 /* Set the key to search for the direct items of the file */
101 make_cpu_key(&end_key, inode, max_reiserfs_offset(inode), TYPE_DIRECT,
102 4);
103
Jeff Mahoney098297b2014-04-23 10:00:36 -0400104 /*
105 * Move bytes from the direct items to the new unformatted node
106 * and delete them.
107 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700108 while (1) {
109 int tail_size;
110
Jeff Mahoney098297b2014-04-23 10:00:36 -0400111 /*
112 * end_key.k_offset is set so, that we will always have found
113 * last item of the file
114 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700115 if (search_for_position_by_key(sb, &end_key, path) ==
116 POSITION_FOUND)
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400117 reiserfs_panic(sb, "PAP-14050",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700118 "direct item (%K) not found", &end_key);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400119 p_le_ih = tp_item_head(path);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700120 RFALSE(!is_direct_le_ih(p_le_ih),
121 "vs-14055: direct item expected(%K), found %h",
122 &end_key, p_le_ih);
Jeff Mahoneyee939612009-03-30 14:02:50 -0400123 tail_size = (le_ih_k_offset(p_le_ih) & (blk_size - 1))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700124 + ih_item_len(p_le_ih) - 1;
125
Jeff Mahoney098297b2014-04-23 10:00:36 -0400126 /*
127 * we only send the unbh pointer if the buffer is not
128 * up to date. this avoids overwriting good data from
129 * writepage() with old data from the disk or buffer cache
130 * Special case: unbh->b_page will be NULL if we are coming
131 * through DIRECT_IO handler here.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700132 */
133 if (!unbh->b_page || buffer_uptodate(unbh)
134 || PageUptodate(unbh->b_page)) {
135 up_to_date_bh = NULL;
136 } else {
137 up_to_date_bh = unbh;
138 }
Jeff Mahoneyee939612009-03-30 14:02:50 -0400139 retval = reiserfs_delete_item(th, path, &end_key, inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700140 up_to_date_bh);
141
Jeff Mahoneyee939612009-03-30 14:02:50 -0400142 total_tail += retval;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400143
144 /* done: file does not have direct items anymore */
Jeff Mahoneyee939612009-03-30 14:02:50 -0400145 if (tail_size == retval)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700146 break;
147
148 }
Jeff Mahoney098297b2014-04-23 10:00:36 -0400149 /*
150 * if we've copied bytes from disk into the page, we need to zero
151 * out the unused part of the block (it was not up to date before)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700152 */
153 if (up_to_date_bh) {
154 unsigned pgoff =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300155 (tail_offset + total_tail - 1) & (PAGE_SIZE - 1);
Cong Wang883da602011-11-25 23:14:35 +0800156 char *kaddr = kmap_atomic(up_to_date_bh->b_page);
Jeff Mahoneyee939612009-03-30 14:02:50 -0400157 memset(kaddr + pgoff, 0, blk_size - total_tail);
Cong Wang883da602011-11-25 23:14:35 +0800158 kunmap_atomic(kaddr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700159 }
160
161 REISERFS_I(inode)->i_first_direct_byte = U32_MAX;
162
163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/* stolen from fs/buffer.c */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700167void reiserfs_unmap_buffer(struct buffer_head *bh)
168{
169 lock_buffer(bh);
170 if (buffer_journaled(bh) || buffer_journal_dirty(bh)) {
171 BUG();
172 }
173 clear_buffer_dirty(bh);
Jeff Mahoney098297b2014-04-23 10:00:36 -0400174 /*
175 * Remove the buffer from whatever list it belongs to. We are mostly
176 * interested in removing it from per-sb j_dirty_buffers list, to avoid
177 * BUG() on attempt to write not mapped buffer
178 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700179 if ((!list_empty(&bh->b_assoc_buffers) || bh->b_private) && bh->b_page) {
180 struct inode *inode = bh->b_page->mapping->host;
181 struct reiserfs_journal *j = SB_JOURNAL(inode->i_sb);
182 spin_lock(&j->j_dirty_buffers_lock);
183 list_del_init(&bh->b_assoc_buffers);
184 reiserfs_free_jh(bh);
185 spin_unlock(&j->j_dirty_buffers_lock);
186 }
187 clear_buffer_mapped(bh);
188 clear_buffer_req(bh);
189 clear_buffer_new(bh);
190 bh->b_bdev = NULL;
191 unlock_buffer(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Jeff Mahoney098297b2014-04-23 10:00:36 -0400194/*
195 * this first locks inode (neither reads nor sync are permitted),
196 * reads tail through page cache, insert direct item. When direct item
197 * inserted successfully inode is left locked. Return value is always
198 * what we expect from it (number of cut bytes). But when tail remains
199 * in the unformatted node, we set mode to SKIP_BALANCING and unlock
200 * inode
201 */
Jeff Mahoney995c7622009-03-30 14:02:47 -0400202int indirect2direct(struct reiserfs_transaction_handle *th,
203 struct inode *inode, struct page *page,
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400204 struct treepath *path, /* path to the indirect item. */
205 const struct cpu_key *item_key, /* Key to look for
206 * unformatted node
207 * pointer to be cut. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700208 loff_t n_new_file_size, /* New file size. */
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400209 char *mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Jeff Mahoney995c7622009-03-30 14:02:47 -0400211 struct super_block *sb = inode->i_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700212 struct item_head s_ih;
Jeff Mahoneyee939612009-03-30 14:02:50 -0400213 unsigned long block_size = sb->s_blocksize;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700214 char *tail;
215 int tail_len, round_tail_len;
216 loff_t pos, pos1; /* position of first byte of the tail */
217 struct cpu_key key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700219 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400221 REISERFS_SB(sb)->s_indirect2direct++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400223 *mode = M_SKIP_BALANCING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700225 /* store item head path points to. */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400226 copy_item_head(&s_ih, tp_item_head(path));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227
Jeff Mahoneyee939612009-03-30 14:02:50 -0400228 tail_len = (n_new_file_size & (block_size - 1));
Jeff Mahoney995c7622009-03-30 14:02:47 -0400229 if (get_inode_sd_version(inode) == STAT_DATA_V2)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700230 round_tail_len = ROUND_UP(tail_len);
231 else
232 round_tail_len = tail_len;
233
234 pos =
235 le_ih_k_offset(&s_ih) - 1 + (ih_item_len(&s_ih) / UNFM_P_SIZE -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400236 1) * sb->s_blocksize;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700237 pos1 = pos;
238
Jeff Mahoney098297b2014-04-23 10:00:36 -0400239 /*
240 * we are protected by i_mutex. The tail can not disapper, not
241 * append can be done either
242 * we are in truncate or packing tail in file_release
243 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700244
245 tail = (char *)kmap(page); /* this can schedule */
246
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400247 if (path_changed(&s_ih, path)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700248 /* re-search indirect item */
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400249 if (search_for_position_by_key(sb, item_key, path)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700250 == POSITION_NOT_FOUND)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400251 reiserfs_panic(sb, "PAP-5520",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700252 "item to be converted %K does not exist",
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400253 item_key);
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400254 copy_item_head(&s_ih, tp_item_head(path));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700256 pos = le_ih_k_offset(&s_ih) - 1 +
257 (ih_item_len(&s_ih) / UNFM_P_SIZE -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400258 1) * sb->s_blocksize;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700259 if (pos != pos1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400260 reiserfs_panic(sb, "vs-5530", "tail position "
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400261 "changed while we were reading it");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700265 /* Set direct item header to insert. */
Jeff Mahoney995c7622009-03-30 14:02:47 -0400266 make_le_item_head(&s_ih, NULL, get_inode_item_key_version(inode),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700267 pos1 + 1, TYPE_DIRECT, round_tail_len,
268 0xffff /*ih_free_space */ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Jeff Mahoney098297b2014-04-23 10:00:36 -0400270 /*
271 * we want a pointer to the first byte of the tail in the page.
272 * the page was locked and this part of the page was up to date when
273 * indirect2direct was called, so we know the bytes are still valid
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700274 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300275 tail = tail + (pos & (PAGE_SIZE - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400277 PATH_LAST_POSITION(path)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400279 key = *item_key;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700280 set_cpu_key_k_type(&key, TYPE_DIRECT);
281 key.key_length = 4;
282 /* Insert tail as new direct item in the tree */
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400283 if (reiserfs_insert_item(th, path, &key, &s_ih, inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700284 tail ? tail : NULL) < 0) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400285 /*
286 * No disk memory. So we can not convert last unformatted node
287 * to the direct item. In this case we used to adjust
288 * indirect items's ih_free_space. Now ih_free_space is not
289 * used, it would be ideal to write zeros to corresponding
290 * unformatted node. For now i_size is considered as guard for
291 * going out of file size
292 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700293 kunmap(page);
Jeff Mahoneyee939612009-03-30 14:02:50 -0400294 return block_size - round_tail_len;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700295 }
296 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700298 /* make sure to get the i_blocks changes from reiserfs_insert_item */
Jeff Mahoney995c7622009-03-30 14:02:47 -0400299 reiserfs_update_sd(th, inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700300
Jeff Mahoney098297b2014-04-23 10:00:36 -0400301 /*
302 * note: we have now the same as in above direct2indirect
303 * conversion: there are two keys which have matching first three
304 * key components. They only differ by the fourth one.
305 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700306
Jeff Mahoney098297b2014-04-23 10:00:36 -0400307 /*
308 * We have inserted new direct item and must remove last
309 * unformatted node.
310 */
Jeff Mahoneyd68caa92009-03-30 14:02:49 -0400311 *mode = M_CUT;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700312
313 /* we store position of first direct item in the in-core inode */
Jeff Mahoney995c7622009-03-30 14:02:47 -0400314 /* mark_file_with_tail (inode, pos1 + 1); */
315 REISERFS_I(inode)->i_first_direct_byte = pos1 + 1;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700316
Jeff Mahoneyee939612009-03-30 14:02:50 -0400317 return block_size - round_tail_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}