blob: 1920c2149f883208920013002fbd98eabd68c747 [file] [log] [blame]
Chris Masone02119d2008-09-05 16:13:11 -04001/*
2 * Copyright (C) 2008 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Miao Xiec6adc9c2013-05-28 10:05:39 +000021#include <linux/blkdev.h>
Josef Bacik5dc562c2012-08-17 13:14:17 -040022#include <linux/list_sort.h>
Miao Xie995946d2014-04-02 19:51:06 +080023#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040024#include "disk-io.h"
25#include "locking.h"
26#include "print-tree.h"
Mark Fashehf1863732012-08-08 11:32:27 -070027#include "backref.h"
Mark Fashehf1863732012-08-08 11:32:27 -070028#include "hash.h"
Anand Jainebb87652016-03-10 17:26:59 +080029#include "compression.h"
Qu Wenruodf2c95f2016-08-15 10:36:52 +080030#include "qgroup.h"
Chris Masone02119d2008-09-05 16:13:11 -040031
32/* magic values for the inode_only field in btrfs_log_inode:
33 *
34 * LOG_INODE_ALL means to log everything
35 * LOG_INODE_EXISTS means to log just enough to recreate the inode
36 * during log replay
37 */
38#define LOG_INODE_ALL 0
39#define LOG_INODE_EXISTS 1
Liu Bo781feef2016-11-30 16:20:25 -080040#define LOG_OTHER_INODE 2
Chris Masone02119d2008-09-05 16:13:11 -040041
42/*
Chris Mason12fcfd22009-03-24 10:24:20 -040043 * directory trouble cases
44 *
45 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
46 * log, we must force a full commit before doing an fsync of the directory
47 * where the unlink was done.
48 * ---> record transid of last unlink/rename per directory
49 *
50 * mkdir foo/some_dir
51 * normal commit
52 * rename foo/some_dir foo2/some_dir
53 * mkdir foo/some_dir
54 * fsync foo/some_dir/some_file
55 *
56 * The fsync above will unlink the original some_dir without recording
57 * it in its new location (foo2). After a crash, some_dir will be gone
58 * unless the fsync of some_file forces a full commit
59 *
60 * 2) we must log any new names for any file or dir that is in the fsync
61 * log. ---> check inode while renaming/linking.
62 *
63 * 2a) we must log any new names for any file or dir during rename
64 * when the directory they are being removed from was logged.
65 * ---> check inode and old parent dir during rename
66 *
67 * 2a is actually the more important variant. With the extra logging
68 * a crash might unlink the old name without recreating the new one
69 *
70 * 3) after a crash, we must go through any directories with a link count
71 * of zero and redo the rm -rf
72 *
73 * mkdir f1/foo
74 * normal commit
75 * rm -rf f1/foo
76 * fsync(f1)
77 *
78 * The directory f1 was fully removed from the FS, but fsync was never
79 * called on f1, only its parent dir. After a crash the rm -rf must
80 * be replayed. This must be able to recurse down the entire
81 * directory tree. The inode link count fixup code takes care of the
82 * ugly details.
83 */
84
85/*
Chris Masone02119d2008-09-05 16:13:11 -040086 * stages for the tree walking. The first
87 * stage (0) is to only pin down the blocks we find
88 * the second stage (1) is to make sure that all the inodes
89 * we find in the log are created in the subvolume.
90 *
91 * The last stage is to deal with directories and links and extents
92 * and all the other fun semantics
93 */
94#define LOG_WALK_PIN_ONLY 0
95#define LOG_WALK_REPLAY_INODES 1
Josef Bacikdd8e7212013-09-11 11:57:23 -040096#define LOG_WALK_REPLAY_DIR_INDEX 2
97#define LOG_WALK_REPLAY_ALL 3
Chris Masone02119d2008-09-05 16:13:11 -040098
Chris Mason12fcfd22009-03-24 10:24:20 -040099static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +0200100 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +0100101 int inode_only,
102 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +0100103 const loff_t end,
104 struct btrfs_log_ctx *ctx);
Yan Zhengec051c02009-01-05 15:43:42 -0500105static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
106 struct btrfs_root *root,
107 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400108static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
109 struct btrfs_root *root,
110 struct btrfs_root *log,
111 struct btrfs_path *path,
112 u64 dirid, int del_all);
Chris Masone02119d2008-09-05 16:13:11 -0400113
114/*
115 * tree logging is a special write ahead log used to make sure that
116 * fsyncs and O_SYNCs can happen without doing full tree commits.
117 *
118 * Full tree commits are expensive because they require commonly
119 * modified blocks to be recowed, creating many dirty pages in the
120 * extent tree an 4x-6x higher write load than ext3.
121 *
122 * Instead of doing a tree commit on every fsync, we use the
123 * key ranges and transaction ids to find items for a given file or directory
124 * that have changed in this transaction. Those items are copied into
125 * a special tree (one per subvolume root), that tree is written to disk
126 * and then the fsync is considered complete.
127 *
128 * After a crash, items are copied out of the log-tree back into the
129 * subvolume tree. Any file data extents found are recorded in the extent
130 * allocation tree, and the log-tree freed.
131 *
132 * The log tree is read three times, once to pin down all the extents it is
133 * using in ram and once, once to create all the inodes logged in the tree
134 * and once to do all the other items.
135 */
136
137/*
Chris Masone02119d2008-09-05 16:13:11 -0400138 * start a sub transaction and setup the log tree
139 * this increments the log tree writer count to make the people
140 * syncing the tree wait for us to finish
141 */
142static int start_log_trans(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +0800143 struct btrfs_root *root,
144 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -0400145{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400146 struct btrfs_fs_info *fs_info = root->fs_info;
Zhaolei34eb2a52015-08-17 18:44:45 +0800147 int ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500148
149 mutex_lock(&root->log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800150
Yan Zheng7237f182009-01-21 12:54:03 -0500151 if (root->log_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400152 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xie50471a32014-02-20 18:08:57 +0800153 ret = -EAGAIN;
154 goto out;
155 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800156
Josef Bacikff782e02009-10-08 15:30:04 -0400157 if (!root->log_start_pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800158 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Zhaolei34eb2a52015-08-17 18:44:45 +0800159 root->log_start_pid = current->pid;
Josef Bacikff782e02009-10-08 15:30:04 -0400160 } else if (root->log_start_pid != current->pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800161 set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400162 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800163 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400164 mutex_lock(&fs_info->tree_log_mutex);
165 if (!fs_info->log_root_tree)
166 ret = btrfs_init_log_root_tree(trans, fs_info);
167 mutex_unlock(&fs_info->tree_log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800168 if (ret)
169 goto out;
Josef Bacikff782e02009-10-08 15:30:04 -0400170
Chris Masone02119d2008-09-05 16:13:11 -0400171 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400172 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +0800173 goto out;
Zhaolei34eb2a52015-08-17 18:44:45 +0800174
175 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
176 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400177 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800178
Miao Xie2ecb7922012-09-06 04:04:27 -0600179 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500180 atomic_inc(&root->log_writers);
Miao Xie8b050d32014-02-20 18:08:58 +0800181 if (ctx) {
Zhaolei34eb2a52015-08-17 18:44:45 +0800182 int index = root->log_transid % 2;
Miao Xie8b050d32014-02-20 18:08:58 +0800183 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800184 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800185 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800186
Miao Xiee87ac132014-02-20 18:08:53 +0800187out:
Yan Zheng7237f182009-01-21 12:54:03 -0500188 mutex_unlock(&root->log_mutex);
Miao Xiee87ac132014-02-20 18:08:53 +0800189 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400190}
191
192/*
193 * returns 0 if there was a log transaction running and we were able
194 * to join, or returns -ENOENT if there were not transactions
195 * in progress
196 */
197static int join_running_log_trans(struct btrfs_root *root)
198{
199 int ret = -ENOENT;
200
201 smp_mb();
202 if (!root->log_root)
203 return -ENOENT;
204
Yan Zheng7237f182009-01-21 12:54:03 -0500205 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400206 if (root->log_root) {
207 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500208 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400209 }
Yan Zheng7237f182009-01-21 12:54:03 -0500210 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400211 return ret;
212}
213
214/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400215 * This either makes the current running log transaction wait
216 * until you call btrfs_end_log_trans() or it makes any future
217 * log transactions wait until you call btrfs_end_log_trans()
218 */
219int btrfs_pin_log_trans(struct btrfs_root *root)
220{
221 int ret = -ENOENT;
222
223 mutex_lock(&root->log_mutex);
224 atomic_inc(&root->log_writers);
225 mutex_unlock(&root->log_mutex);
226 return ret;
227}
228
229/*
Chris Masone02119d2008-09-05 16:13:11 -0400230 * indicate we're done making changes to the log tree
231 * and wake up anyone waiting to do a sync
232 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100233void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400234{
Yan Zheng7237f182009-01-21 12:54:03 -0500235 if (atomic_dec_and_test(&root->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +0100236 /*
237 * Implicit memory barrier after atomic_dec_and_test
238 */
Yan Zheng7237f182009-01-21 12:54:03 -0500239 if (waitqueue_active(&root->log_writer_wait))
240 wake_up(&root->log_writer_wait);
241 }
Chris Masone02119d2008-09-05 16:13:11 -0400242}
243
244
245/*
246 * the walk control struct is used to pass state down the chain when
247 * processing the log tree. The stage field tells us which part
248 * of the log tree processing we are currently doing. The others
249 * are state fields used for that specific part
250 */
251struct walk_control {
252 /* should we free the extent on disk when done? This is used
253 * at transaction commit time while freeing a log tree
254 */
255 int free;
256
257 /* should we write out the extent buffer? This is used
258 * while flushing the log tree to disk during a sync
259 */
260 int write;
261
262 /* should we wait for the extent buffer io to finish? Also used
263 * while flushing the log tree to disk for a sync
264 */
265 int wait;
266
267 /* pin only walk, we record which extents on disk belong to the
268 * log trees
269 */
270 int pin;
271
272 /* what stage of the replay code we're currently in */
273 int stage;
274
275 /* the root we are currently replaying */
276 struct btrfs_root *replay_dest;
277
278 /* the trans handle for the current replay */
279 struct btrfs_trans_handle *trans;
280
281 /* the function that gets used to process blocks we find in the
282 * tree. Note the extent_buffer might not be up to date when it is
283 * passed in, and it must be checked or read if you need the data
284 * inside it
285 */
286 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
287 struct walk_control *wc, u64 gen);
288};
289
290/*
291 * process_func used to pin down extents, write them or wait on them
292 */
293static int process_one_buffer(struct btrfs_root *log,
294 struct extent_buffer *eb,
295 struct walk_control *wc, u64 gen)
296{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400297 struct btrfs_fs_info *fs_info = log->fs_info;
Josef Bacikb50c6e22013-04-25 15:55:30 -0400298 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400299
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400300 /*
301 * If this fs is mixed then we need to be able to process the leaves to
302 * pin down any logged extents, so we have to read the block.
303 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400304 if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400305 ret = btrfs_read_buffer(eb, gen);
306 if (ret)
307 return ret;
308 }
309
Josef Bacikb50c6e22013-04-25 15:55:30 -0400310 if (wc->pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400311 ret = btrfs_pin_extent_for_log_replay(fs_info, eb->start,
312 eb->len);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400313
314 if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400315 if (wc->pin && btrfs_header_level(eb) == 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400316 ret = btrfs_exclude_logged_extents(fs_info, eb);
Chris Masone02119d2008-09-05 16:13:11 -0400317 if (wc->write)
318 btrfs_write_tree_block(eb);
319 if (wc->wait)
320 btrfs_wait_tree_block_writeback(eb);
321 }
Josef Bacikb50c6e22013-04-25 15:55:30 -0400322 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400323}
324
325/*
326 * Item overwrite used by replay and tree logging. eb, slot and key all refer
327 * to the src data we are copying out.
328 *
329 * root is the tree we are copying into, and path is a scratch
330 * path for use in this function (it should be released on entry and
331 * will be released on exit).
332 *
333 * If the key is already in the destination tree the existing item is
334 * overwritten. If the existing item isn't big enough, it is extended.
335 * If it is too large, it is truncated.
336 *
337 * If the key isn't in the destination yet, a new item is inserted.
338 */
339static noinline int overwrite_item(struct btrfs_trans_handle *trans,
340 struct btrfs_root *root,
341 struct btrfs_path *path,
342 struct extent_buffer *eb, int slot,
343 struct btrfs_key *key)
344{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400345 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400346 int ret;
347 u32 item_size;
348 u64 saved_i_size = 0;
349 int save_old_i_size = 0;
350 unsigned long src_ptr;
351 unsigned long dst_ptr;
352 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000353 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400354
355 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
356 overwrite_root = 1;
357
358 item_size = btrfs_item_size_nr(eb, slot);
359 src_ptr = btrfs_item_ptr_offset(eb, slot);
360
361 /* look for the key in the destination tree */
362 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000363 if (ret < 0)
364 return ret;
365
Chris Masone02119d2008-09-05 16:13:11 -0400366 if (ret == 0) {
367 char *src_copy;
368 char *dst_copy;
369 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
370 path->slots[0]);
371 if (dst_size != item_size)
372 goto insert;
373
374 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200375 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400376 return 0;
377 }
378 dst_copy = kmalloc(item_size, GFP_NOFS);
379 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000380 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200381 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000382 kfree(dst_copy);
383 kfree(src_copy);
384 return -ENOMEM;
385 }
Chris Masone02119d2008-09-05 16:13:11 -0400386
387 read_extent_buffer(eb, src_copy, src_ptr, item_size);
388
389 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
390 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
391 item_size);
392 ret = memcmp(dst_copy, src_copy, item_size);
393
394 kfree(dst_copy);
395 kfree(src_copy);
396 /*
397 * they have the same contents, just return, this saves
398 * us from cowing blocks in the destination tree and doing
399 * extra writes that may not have been done by a previous
400 * sync
401 */
402 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200403 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400404 return 0;
405 }
406
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000407 /*
408 * We need to load the old nbytes into the inode so when we
409 * replay the extents we've logged we get the right nbytes.
410 */
411 if (inode_item) {
412 struct btrfs_inode_item *item;
413 u64 nbytes;
Josef Bacikd5554382013-09-11 14:17:00 -0400414 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000415
416 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
417 struct btrfs_inode_item);
418 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
419 item = btrfs_item_ptr(eb, slot,
420 struct btrfs_inode_item);
421 btrfs_set_inode_nbytes(eb, item, nbytes);
Josef Bacikd5554382013-09-11 14:17:00 -0400422
423 /*
424 * If this is a directory we need to reset the i_size to
425 * 0 so that we can set it up properly when replaying
426 * the rest of the items in this log.
427 */
428 mode = btrfs_inode_mode(eb, item);
429 if (S_ISDIR(mode))
430 btrfs_set_inode_size(eb, item, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000431 }
432 } else if (inode_item) {
433 struct btrfs_inode_item *item;
Josef Bacikd5554382013-09-11 14:17:00 -0400434 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000435
436 /*
437 * New inode, set nbytes to 0 so that the nbytes comes out
438 * properly when we replay the extents.
439 */
440 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
441 btrfs_set_inode_nbytes(eb, item, 0);
Josef Bacikd5554382013-09-11 14:17:00 -0400442
443 /*
444 * If this is a directory we need to reset the i_size to 0 so
445 * that we can set it up properly when replaying the rest of
446 * the items in this log.
447 */
448 mode = btrfs_inode_mode(eb, item);
449 if (S_ISDIR(mode))
450 btrfs_set_inode_size(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400451 }
452insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200453 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400454 /* try to insert the key into the destination tree */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000455 path->skip_release_on_error = 1;
Chris Masone02119d2008-09-05 16:13:11 -0400456 ret = btrfs_insert_empty_item(trans, root, path,
457 key, item_size);
Filipe Mananadf8d1162015-01-14 01:52:25 +0000458 path->skip_release_on_error = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400459
460 /* make sure any existing item is the correct size */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000461 if (ret == -EEXIST || ret == -EOVERFLOW) {
Chris Masone02119d2008-09-05 16:13:11 -0400462 u32 found_size;
463 found_size = btrfs_item_size_nr(path->nodes[0],
464 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100465 if (found_size > item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400466 btrfs_truncate_item(fs_info, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100467 else if (found_size < item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400468 btrfs_extend_item(fs_info, path,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100469 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400470 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400471 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400472 }
473 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
474 path->slots[0]);
475
476 /* don't overwrite an existing inode if the generation number
477 * was logged as zero. This is done when the tree logging code
478 * is just logging an inode to make sure it exists after recovery.
479 *
480 * Also, don't overwrite i_size on directories during replay.
481 * log replay inserts and removes directory items based on the
482 * state of the tree found in the subvolume, and i_size is modified
483 * as it goes
484 */
485 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
486 struct btrfs_inode_item *src_item;
487 struct btrfs_inode_item *dst_item;
488
489 src_item = (struct btrfs_inode_item *)src_ptr;
490 dst_item = (struct btrfs_inode_item *)dst_ptr;
491
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000492 if (btrfs_inode_generation(eb, src_item) == 0) {
493 struct extent_buffer *dst_eb = path->nodes[0];
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000494 const u64 ino_size = btrfs_inode_size(eb, src_item);
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000495
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000496 /*
497 * For regular files an ino_size == 0 is used only when
498 * logging that an inode exists, as part of a directory
499 * fsync, and the inode wasn't fsynced before. In this
500 * case don't set the size of the inode in the fs/subvol
501 * tree, otherwise we would be throwing valid data away.
502 */
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000503 if (S_ISREG(btrfs_inode_mode(eb, src_item)) &&
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000504 S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) &&
505 ino_size != 0) {
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000506 struct btrfs_map_token token;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000507
508 btrfs_init_map_token(&token);
509 btrfs_set_token_inode_size(dst_eb, dst_item,
510 ino_size, &token);
511 }
Chris Masone02119d2008-09-05 16:13:11 -0400512 goto no_copy;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000513 }
Chris Masone02119d2008-09-05 16:13:11 -0400514
515 if (overwrite_root &&
516 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
517 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
518 save_old_i_size = 1;
519 saved_i_size = btrfs_inode_size(path->nodes[0],
520 dst_item);
521 }
522 }
523
524 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
525 src_ptr, item_size);
526
527 if (save_old_i_size) {
528 struct btrfs_inode_item *dst_item;
529 dst_item = (struct btrfs_inode_item *)dst_ptr;
530 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
531 }
532
533 /* make sure the generation is filled in */
534 if (key->type == BTRFS_INODE_ITEM_KEY) {
535 struct btrfs_inode_item *dst_item;
536 dst_item = (struct btrfs_inode_item *)dst_ptr;
537 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
538 btrfs_set_inode_generation(path->nodes[0], dst_item,
539 trans->transid);
540 }
541 }
542no_copy:
543 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200544 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400545 return 0;
546}
547
548/*
549 * simple helper to read an inode off the disk from a given root
550 * This can only be called for subvolume roots and not for the log
551 */
552static noinline struct inode *read_one_inode(struct btrfs_root *root,
553 u64 objectid)
554{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400555 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400556 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400557
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400558 key.objectid = objectid;
559 key.type = BTRFS_INODE_ITEM_KEY;
560 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000561 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400562 if (IS_ERR(inode)) {
563 inode = NULL;
564 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400565 iput(inode);
566 inode = NULL;
567 }
568 return inode;
569}
570
571/* replays a single extent in 'eb' at 'slot' with 'key' into the
572 * subvolume 'root'. path is released on entry and should be released
573 * on exit.
574 *
575 * extents in the log tree have not been allocated out of the extent
576 * tree yet. So, this completes the allocation, taking a reference
577 * as required if the extent already exists or creating a new extent
578 * if it isn't in the extent allocation tree yet.
579 *
580 * The extent is inserted into the file, dropping any existing extents
581 * from the file that overlap the new one.
582 */
583static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
584 struct btrfs_root *root,
585 struct btrfs_path *path,
586 struct extent_buffer *eb, int slot,
587 struct btrfs_key *key)
588{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400589 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400590 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400591 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400592 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000593 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400594 struct btrfs_file_extent_item *item;
595 struct inode *inode = NULL;
596 unsigned long size;
597 int ret = 0;
598
599 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
600 found_type = btrfs_file_extent_type(eb, item);
601
Yan Zhengd899e052008-10-30 14:25:28 -0400602 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000603 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
604 nbytes = btrfs_file_extent_num_bytes(eb, item);
605 extent_end = start + nbytes;
606
607 /*
608 * We don't add to the inodes nbytes if we are prealloc or a
609 * hole.
610 */
611 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
612 nbytes = 0;
613 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -0800614 size = btrfs_file_extent_inline_len(eb, slot, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000615 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400616 extent_end = ALIGN(start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400617 fs_info->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400618 } else {
619 ret = 0;
620 goto out;
621 }
622
623 inode = read_one_inode(root, key->objectid);
624 if (!inode) {
625 ret = -EIO;
626 goto out;
627 }
628
629 /*
630 * first check to see if we already have this extent in the
631 * file. This must be done before the btrfs_drop_extents run
632 * so we don't try to drop this extent.
633 */
David Sterbaf85b7372017-01-20 14:54:07 +0100634 ret = btrfs_lookup_file_extent(trans, root, path,
635 btrfs_ino(BTRFS_I(inode)), start, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400636
Yan Zhengd899e052008-10-30 14:25:28 -0400637 if (ret == 0 &&
638 (found_type == BTRFS_FILE_EXTENT_REG ||
639 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400640 struct btrfs_file_extent_item cmp1;
641 struct btrfs_file_extent_item cmp2;
642 struct btrfs_file_extent_item *existing;
643 struct extent_buffer *leaf;
644
645 leaf = path->nodes[0];
646 existing = btrfs_item_ptr(leaf, path->slots[0],
647 struct btrfs_file_extent_item);
648
649 read_extent_buffer(eb, &cmp1, (unsigned long)item,
650 sizeof(cmp1));
651 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
652 sizeof(cmp2));
653
654 /*
655 * we already have a pointer to this exact extent,
656 * we don't have to do anything
657 */
658 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200659 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400660 goto out;
661 }
662 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200663 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400664
665 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400666 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Josef Bacik36508602013-04-25 16:23:32 -0400667 if (ret)
668 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400669
Yan Zheng07d400a2009-01-06 11:42:00 -0500670 if (found_type == BTRFS_FILE_EXTENT_REG ||
671 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400672 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500673 unsigned long dest_offset;
674 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400675
Filipe Manana3168021c2017-02-01 14:58:02 +0000676 if (btrfs_file_extent_disk_bytenr(eb, item) == 0 &&
677 btrfs_fs_incompat(fs_info, NO_HOLES))
678 goto update_inode;
679
Yan Zheng07d400a2009-01-06 11:42:00 -0500680 ret = btrfs_insert_empty_item(trans, root, path, key,
681 sizeof(*item));
Josef Bacik36508602013-04-25 16:23:32 -0400682 if (ret)
683 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500684 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
685 path->slots[0]);
686 copy_extent_buffer(path->nodes[0], eb, dest_offset,
687 (unsigned long)item, sizeof(*item));
688
689 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
690 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
691 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400692 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500693
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800694 /*
695 * Manually record dirty extent, as here we did a shallow
696 * file extent item copy and skip normal backref update,
697 * but modifying extent tree all by ourselves.
698 * So need to manually record dirty extent for qgroup,
699 * as the owner of the file extent changed from log tree
700 * (doesn't affect qgroup) to fs/file tree(affects qgroup)
701 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400702 ret = btrfs_qgroup_trace_extent(trans, fs_info,
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800703 btrfs_file_extent_disk_bytenr(eb, item),
704 btrfs_file_extent_disk_num_bytes(eb, item),
705 GFP_NOFS);
706 if (ret < 0)
707 goto out;
708
Yan Zheng07d400a2009-01-06 11:42:00 -0500709 if (ins.objectid > 0) {
710 u64 csum_start;
711 u64 csum_end;
712 LIST_HEAD(ordered_sums);
713 /*
714 * is this extent already allocated in the extent
715 * allocation tree? If so, just add a reference
716 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400717 ret = btrfs_lookup_data_extent(fs_info, ins.objectid,
Yan Zheng07d400a2009-01-06 11:42:00 -0500718 ins.offset);
719 if (ret == 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400720 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng07d400a2009-01-06 11:42:00 -0500721 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400722 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100723 key->objectid, offset);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400724 if (ret)
725 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500726 } else {
727 /*
728 * insert the extent pointer in the extent
729 * allocation tree
730 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400731 ret = btrfs_alloc_logged_file_extent(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400732 fs_info,
733 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400734 key->objectid, offset, &ins);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400735 if (ret)
736 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500737 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200738 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500739
740 if (btrfs_file_extent_compression(eb, item)) {
741 csum_start = ins.objectid;
742 csum_end = csum_start + ins.offset;
743 } else {
744 csum_start = ins.objectid +
745 btrfs_file_extent_offset(eb, item);
746 csum_end = csum_start +
747 btrfs_file_extent_num_bytes(eb, item);
748 }
749
750 ret = btrfs_lookup_csums_range(root->log_root,
751 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100752 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -0400753 if (ret)
754 goto out;
Filipe Mananab84b8392015-08-19 11:09:40 +0100755 /*
756 * Now delete all existing cums in the csum root that
757 * cover our range. We do this because we can have an
758 * extent that is completely referenced by one file
759 * extent item and partially referenced by another
760 * file extent item (like after using the clone or
761 * extent_same ioctls). In this case if we end up doing
762 * the replay of the one that partially references the
763 * extent first, and we do not do the csum deletion
764 * below, we can get 2 csum items in the csum tree that
765 * overlap each other. For example, imagine our log has
766 * the two following file extent items:
767 *
768 * key (257 EXTENT_DATA 409600)
769 * extent data disk byte 12845056 nr 102400
770 * extent data offset 20480 nr 20480 ram 102400
771 *
772 * key (257 EXTENT_DATA 819200)
773 * extent data disk byte 12845056 nr 102400
774 * extent data offset 0 nr 102400 ram 102400
775 *
776 * Where the second one fully references the 100K extent
777 * that starts at disk byte 12845056, and the log tree
778 * has a single csum item that covers the entire range
779 * of the extent:
780 *
781 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
782 *
783 * After the first file extent item is replayed, the
784 * csum tree gets the following csum item:
785 *
786 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
787 *
788 * Which covers the 20K sub-range starting at offset 20K
789 * of our extent. Now when we replay the second file
790 * extent item, if we do not delete existing csum items
791 * that cover any of its blocks, we end up getting two
792 * csum items in our csum tree that overlap each other:
793 *
794 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
795 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
796 *
797 * Which is a problem, because after this anyone trying
798 * to lookup up for the checksum of any block of our
799 * extent starting at an offset of 40K or higher, will
800 * end up looking at the second csum item only, which
801 * does not contain the checksum for any block starting
802 * at offset 40K or higher of our extent.
803 */
Yan Zheng07d400a2009-01-06 11:42:00 -0500804 while (!list_empty(&ordered_sums)) {
805 struct btrfs_ordered_sum *sums;
806 sums = list_entry(ordered_sums.next,
807 struct btrfs_ordered_sum,
808 list);
Josef Bacik36508602013-04-25 16:23:32 -0400809 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400810 ret = btrfs_del_csums(trans, fs_info,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -0400811 sums->bytenr,
812 sums->len);
Filipe Mananab84b8392015-08-19 11:09:40 +0100813 if (!ret)
Josef Bacik36508602013-04-25 16:23:32 -0400814 ret = btrfs_csum_file_blocks(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400815 fs_info->csum_root, sums);
Yan Zheng07d400a2009-01-06 11:42:00 -0500816 list_del(&sums->list);
817 kfree(sums);
818 }
Josef Bacik36508602013-04-25 16:23:32 -0400819 if (ret)
820 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500821 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200822 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500823 }
824 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
825 /* inline extents are easy, we just overwrite them */
826 ret = overwrite_item(trans, root, path, eb, slot, key);
Josef Bacik36508602013-04-25 16:23:32 -0400827 if (ret)
828 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500829 }
830
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000831 inode_add_bytes(inode, nbytes);
Filipe Manana3168021c2017-02-01 14:58:02 +0000832update_inode:
Tsutomu Itohb9959292012-06-25 21:25:22 -0600833 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400834out:
835 if (inode)
836 iput(inode);
837 return ret;
838}
839
840/*
841 * when cleaning up conflicts between the directory names in the
842 * subvolume, directory names in the log and directory names in the
843 * inode back references, we may have to unlink inodes from directories.
844 *
845 * This is a helper function to do the unlink of a specific directory
846 * item
847 */
848static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
849 struct btrfs_root *root,
850 struct btrfs_path *path,
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200851 struct btrfs_inode *dir,
Chris Masone02119d2008-09-05 16:13:11 -0400852 struct btrfs_dir_item *di)
853{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400854 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400855 struct inode *inode;
856 char *name;
857 int name_len;
858 struct extent_buffer *leaf;
859 struct btrfs_key location;
860 int ret;
861
862 leaf = path->nodes[0];
863
864 btrfs_dir_item_key_to_cpu(leaf, di, &location);
865 name_len = btrfs_dir_name_len(leaf, di);
866 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000867 if (!name)
868 return -ENOMEM;
869
Chris Masone02119d2008-09-05 16:13:11 -0400870 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200871 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400872
873 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000874 if (!inode) {
Josef Bacik36508602013-04-25 16:23:32 -0400875 ret = -EIO;
876 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000877 }
Chris Masone02119d2008-09-05 16:13:11 -0400878
Yan Zhengec051c02009-01-05 15:43:42 -0500879 ret = link_to_fixup_dir(trans, root, path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -0400880 if (ret)
881 goto out;
Chris Mason12fcfd22009-03-24 10:24:20 -0400882
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200883 ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name,
884 name_len);
Josef Bacik36508602013-04-25 16:23:32 -0400885 if (ret)
886 goto out;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100887 else
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400888 ret = btrfs_run_delayed_items(trans, fs_info);
Josef Bacik36508602013-04-25 16:23:32 -0400889out:
890 kfree(name);
891 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400892 return ret;
893}
894
895/*
896 * helper function to see if a given name and sequence number found
897 * in an inode back reference are already in a directory and correctly
898 * point to this inode
899 */
900static noinline int inode_in_dir(struct btrfs_root *root,
901 struct btrfs_path *path,
902 u64 dirid, u64 objectid, u64 index,
903 const char *name, int name_len)
904{
905 struct btrfs_dir_item *di;
906 struct btrfs_key location;
907 int match = 0;
908
909 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
910 index, name, name_len, 0);
911 if (di && !IS_ERR(di)) {
912 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
913 if (location.objectid != objectid)
914 goto out;
915 } else
916 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200917 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400918
919 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
920 if (di && !IS_ERR(di)) {
921 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
922 if (location.objectid != objectid)
923 goto out;
924 } else
925 goto out;
926 match = 1;
927out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200928 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400929 return match;
930}
931
932/*
933 * helper function to check a log tree for a named back reference in
934 * an inode. This is used to decide if a back reference that is
935 * found in the subvolume conflicts with what we find in the log.
936 *
937 * inode backreferences may have multiple refs in a single item,
938 * during replay we process one reference at a time, and we don't
939 * want to delete valid links to a file from the subvolume if that
940 * link is also in the log.
941 */
942static noinline int backref_in_log(struct btrfs_root *log,
943 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -0700944 u64 ref_objectid,
Filipe Mananadf8d1162015-01-14 01:52:25 +0000945 const char *name, int namelen)
Chris Masone02119d2008-09-05 16:13:11 -0400946{
947 struct btrfs_path *path;
948 struct btrfs_inode_ref *ref;
949 unsigned long ptr;
950 unsigned long ptr_end;
951 unsigned long name_ptr;
952 int found_name_len;
953 int item_size;
954 int ret;
955 int match = 0;
956
957 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000958 if (!path)
959 return -ENOMEM;
960
Chris Masone02119d2008-09-05 16:13:11 -0400961 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
962 if (ret != 0)
963 goto out;
964
Chris Masone02119d2008-09-05 16:13:11 -0400965 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700966
967 if (key->type == BTRFS_INODE_EXTREF_KEY) {
968 if (btrfs_find_name_in_ext_backref(path, ref_objectid,
969 name, namelen, NULL))
970 match = 1;
971
972 goto out;
973 }
974
975 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -0400976 ptr_end = ptr + item_size;
977 while (ptr < ptr_end) {
978 ref = (struct btrfs_inode_ref *)ptr;
979 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
980 if (found_name_len == namelen) {
981 name_ptr = (unsigned long)(ref + 1);
982 ret = memcmp_extent_buffer(path->nodes[0], name,
983 name_ptr, namelen);
984 if (ret == 0) {
985 match = 1;
986 goto out;
987 }
988 }
989 ptr = (unsigned long)(ref + 1) + found_name_len;
990 }
991out:
992 btrfs_free_path(path);
993 return match;
994}
995
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700996static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
997 struct btrfs_root *root,
998 struct btrfs_path *path,
999 struct btrfs_root *log_root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001000 struct btrfs_inode *dir,
1001 struct btrfs_inode *inode,
Mark Fashehf1863732012-08-08 11:32:27 -07001002 u64 inode_objectid, u64 parent_objectid,
1003 u64 ref_index, char *name, int namelen,
1004 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001005{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001006 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001007 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001008 char *victim_name;
1009 int victim_name_len;
1010 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001011 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -07001012 struct btrfs_key search_key;
1013 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001014
Mark Fashehf1863732012-08-08 11:32:27 -07001015again:
1016 /* Search old style refs */
1017 search_key.objectid = inode_objectid;
1018 search_key.type = BTRFS_INODE_REF_KEY;
1019 search_key.offset = parent_objectid;
1020 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001021 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001022 struct btrfs_inode_ref *victim_ref;
1023 unsigned long ptr;
1024 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -07001025
1026 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001027
1028 /* are we trying to overwrite a back ref for the root directory
1029 * if so, just jump out, we're done
1030 */
Mark Fashehf1863732012-08-08 11:32:27 -07001031 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001032 return 1;
1033
1034 /* check all the names in this back reference to see
1035 * if they are in the log. if so, we allow them to stay
1036 * otherwise they must be unlinked as a conflict
1037 */
1038 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1039 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
1040 while (ptr < ptr_end) {
1041 victim_ref = (struct btrfs_inode_ref *)ptr;
1042 victim_name_len = btrfs_inode_ref_name_len(leaf,
1043 victim_ref);
1044 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001045 if (!victim_name)
1046 return -ENOMEM;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001047
1048 read_extent_buffer(leaf, victim_name,
1049 (unsigned long)(victim_ref + 1),
1050 victim_name_len);
1051
Mark Fashehf1863732012-08-08 11:32:27 -07001052 if (!backref_in_log(log_root, &search_key,
1053 parent_objectid,
1054 victim_name,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001055 victim_name_len)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001056 inc_nlink(&inode->vfs_inode);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001057 btrfs_release_path(path);
1058
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001059 ret = btrfs_unlink_inode(trans, root, dir, inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001060 victim_name, victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -07001061 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001062 if (ret)
1063 return ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001064 ret = btrfs_run_delayed_items(trans, fs_info);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001065 if (ret)
1066 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001067 *search_done = 1;
1068 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001069 }
1070 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001071
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001072 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
1073 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001074
1075 /*
1076 * NOTE: we have searched root tree and checked the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001077 * corresponding ref, it does not need to check again.
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001078 */
1079 *search_done = 1;
1080 }
1081 btrfs_release_path(path);
1082
Mark Fashehf1863732012-08-08 11:32:27 -07001083 /* Same search but for extended refs */
1084 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
1085 inode_objectid, parent_objectid, 0,
1086 0);
1087 if (!IS_ERR_OR_NULL(extref)) {
1088 u32 item_size;
1089 u32 cur_offset = 0;
1090 unsigned long base;
1091 struct inode *victim_parent;
1092
1093 leaf = path->nodes[0];
1094
1095 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1096 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
1097
1098 while (cur_offset < item_size) {
Quentin Casasnovasdd9ef132015-03-03 16:31:38 +01001099 extref = (struct btrfs_inode_extref *)(base + cur_offset);
Mark Fashehf1863732012-08-08 11:32:27 -07001100
1101 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1102
1103 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1104 goto next;
1105
1106 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001107 if (!victim_name)
1108 return -ENOMEM;
Mark Fashehf1863732012-08-08 11:32:27 -07001109 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1110 victim_name_len);
1111
1112 search_key.objectid = inode_objectid;
1113 search_key.type = BTRFS_INODE_EXTREF_KEY;
1114 search_key.offset = btrfs_extref_hash(parent_objectid,
1115 victim_name,
1116 victim_name_len);
1117 ret = 0;
1118 if (!backref_in_log(log_root, &search_key,
1119 parent_objectid, victim_name,
1120 victim_name_len)) {
1121 ret = -ENOENT;
1122 victim_parent = read_one_inode(root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001123 parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001124 if (victim_parent) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001125 inc_nlink(&inode->vfs_inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001126 btrfs_release_path(path);
1127
1128 ret = btrfs_unlink_inode(trans, root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001129 BTRFS_I(victim_parent),
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001130 inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001131 victim_name,
1132 victim_name_len);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001133 if (!ret)
1134 ret = btrfs_run_delayed_items(
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001135 trans,
1136 fs_info);
Mark Fashehf1863732012-08-08 11:32:27 -07001137 }
Mark Fashehf1863732012-08-08 11:32:27 -07001138 iput(victim_parent);
1139 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001140 if (ret)
1141 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001142 *search_done = 1;
1143 goto again;
1144 }
1145 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001146next:
1147 cur_offset += victim_name_len + sizeof(*extref);
1148 }
1149 *search_done = 1;
1150 }
1151 btrfs_release_path(path);
1152
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001153 /* look for a conflicting sequence number */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001154 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -07001155 ref_index, name, namelen, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001156 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001157 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001158 if (ret)
1159 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001160 }
1161 btrfs_release_path(path);
1162
1163 /* look for a conflicing name */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001164 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001165 name, namelen, 0);
1166 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001167 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001168 if (ret)
1169 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001170 }
1171 btrfs_release_path(path);
1172
1173 return 0;
1174}
Chris Masone02119d2008-09-05 16:13:11 -04001175
Qu Wenruobae15d92017-11-08 08:54:26 +08001176static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1177 u32 *namelen, char **name, u64 *index,
1178 u64 *parent_objectid)
Mark Fashehf1863732012-08-08 11:32:27 -07001179{
1180 struct btrfs_inode_extref *extref;
1181
1182 extref = (struct btrfs_inode_extref *)ref_ptr;
1183
1184 *namelen = btrfs_inode_extref_name_len(eb, extref);
1185 *name = kmalloc(*namelen, GFP_NOFS);
1186 if (*name == NULL)
1187 return -ENOMEM;
1188
1189 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1190 *namelen);
1191
1192 *index = btrfs_inode_extref_index(eb, extref);
1193 if (parent_objectid)
1194 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1195
1196 return 0;
1197}
1198
Qu Wenruobae15d92017-11-08 08:54:26 +08001199static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1200 u32 *namelen, char **name, u64 *index)
Mark Fashehf1863732012-08-08 11:32:27 -07001201{
1202 struct btrfs_inode_ref *ref;
1203
1204 ref = (struct btrfs_inode_ref *)ref_ptr;
1205
1206 *namelen = btrfs_inode_ref_name_len(eb, ref);
1207 *name = kmalloc(*namelen, GFP_NOFS);
1208 if (*name == NULL)
1209 return -ENOMEM;
1210
1211 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1212
1213 *index = btrfs_inode_ref_index(eb, ref);
1214
1215 return 0;
1216}
1217
Chris Masone02119d2008-09-05 16:13:11 -04001218/*
1219 * replay one inode back reference item found in the log tree.
1220 * eb, slot and key refer to the buffer and key found in the log tree.
1221 * root is the destination we are replaying into, and path is for temp
1222 * use by this function. (it should be released on return).
1223 */
1224static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1225 struct btrfs_root *root,
1226 struct btrfs_root *log,
1227 struct btrfs_path *path,
1228 struct extent_buffer *eb, int slot,
1229 struct btrfs_key *key)
1230{
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001231 struct inode *dir = NULL;
1232 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001233 unsigned long ref_ptr;
1234 unsigned long ref_end;
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001235 char *name = NULL;
liubo34f3e4f2011-08-06 08:35:23 +00001236 int namelen;
1237 int ret;
liuboc622ae62011-03-26 08:01:12 -04001238 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001239 int log_ref_ver = 0;
1240 u64 parent_objectid;
1241 u64 inode_objectid;
Chris Masonf46dbe32012-10-09 11:17:20 -04001242 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001243 int ref_struct_size;
1244
1245 ref_ptr = btrfs_item_ptr_offset(eb, slot);
1246 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1247
1248 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1249 struct btrfs_inode_extref *r;
1250
1251 ref_struct_size = sizeof(struct btrfs_inode_extref);
1252 log_ref_ver = 1;
1253 r = (struct btrfs_inode_extref *)ref_ptr;
1254 parent_objectid = btrfs_inode_extref_parent(eb, r);
1255 } else {
1256 ref_struct_size = sizeof(struct btrfs_inode_ref);
1257 parent_objectid = key->offset;
1258 }
1259 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001260
Chris Masone02119d2008-09-05 16:13:11 -04001261 /*
1262 * it is possible that we didn't log all the parent directories
1263 * for a given inode. If we don't find the dir, just don't
1264 * copy the back ref in. The link count fixup code will take
1265 * care of the rest
1266 */
Mark Fashehf1863732012-08-08 11:32:27 -07001267 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001268 if (!dir) {
1269 ret = -ENOENT;
1270 goto out;
1271 }
Chris Masone02119d2008-09-05 16:13:11 -04001272
Mark Fashehf1863732012-08-08 11:32:27 -07001273 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001274 if (!inode) {
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001275 ret = -EIO;
1276 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001277 }
Chris Masone02119d2008-09-05 16:13:11 -04001278
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001279 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001280 if (log_ref_ver) {
Qu Wenruobae15d92017-11-08 08:54:26 +08001281 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1282 &ref_index, &parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001283 /*
1284 * parent object can change from one array
1285 * item to another.
1286 */
1287 if (!dir)
1288 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001289 if (!dir) {
1290 ret = -ENOENT;
1291 goto out;
1292 }
Mark Fashehf1863732012-08-08 11:32:27 -07001293 } else {
Qu Wenruobae15d92017-11-08 08:54:26 +08001294 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1295 &ref_index);
Mark Fashehf1863732012-08-08 11:32:27 -07001296 }
1297 if (ret)
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001298 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001299
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001300 /* if we already have a perfect match, we're done */
David Sterbaf85b7372017-01-20 14:54:07 +01001301 if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)),
1302 btrfs_ino(BTRFS_I(inode)), ref_index,
1303 name, namelen)) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001304 /*
1305 * look for a conflicting back reference in the
1306 * metadata. if we find one we have to unlink that name
1307 * of the file before we add our new link. Later on, we
1308 * overwrite any existing back reference, and we don't
1309 * want to create dangling pointers in the directory.
1310 */
Chris Masone02119d2008-09-05 16:13:11 -04001311
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001312 if (!search_done) {
1313 ret = __add_inode_ref(trans, root, path, log,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001314 BTRFS_I(dir),
David Sterbad75eefd2017-02-10 20:20:19 +01001315 BTRFS_I(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001316 inode_objectid,
1317 parent_objectid,
1318 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001319 &search_done);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001320 if (ret) {
1321 if (ret == 1)
1322 ret = 0;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001323 goto out;
Josef Bacik36508602013-04-25 16:23:32 -04001324 }
Chris Masone02119d2008-09-05 16:13:11 -04001325 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001326
1327 /* insert our name */
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001328 ret = btrfs_add_link(trans, BTRFS_I(dir),
1329 BTRFS_I(inode),
1330 name, namelen, 0, ref_index);
Josef Bacik36508602013-04-25 16:23:32 -04001331 if (ret)
1332 goto out;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001333
1334 btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001335 }
liuboc622ae62011-03-26 08:01:12 -04001336
Mark Fashehf1863732012-08-08 11:32:27 -07001337 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001338 kfree(name);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001339 name = NULL;
Mark Fashehf1863732012-08-08 11:32:27 -07001340 if (log_ref_ver) {
1341 iput(dir);
1342 dir = NULL;
1343 }
Chris Masone02119d2008-09-05 16:13:11 -04001344 }
Chris Masone02119d2008-09-05 16:13:11 -04001345
1346 /* finally write the back reference in the inode */
1347 ret = overwrite_item(trans, root, path, eb, slot, key);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001348out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001349 btrfs_release_path(path);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001350 kfree(name);
Chris Masone02119d2008-09-05 16:13:11 -04001351 iput(dir);
1352 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001353 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001354}
1355
Yan, Zhengc71bf092009-11-12 09:34:40 +00001356static int insert_orphan_item(struct btrfs_trans_handle *trans,
David Sterba9c4f61f2015-01-02 19:12:57 +01001357 struct btrfs_root *root, u64 ino)
Yan, Zhengc71bf092009-11-12 09:34:40 +00001358{
1359 int ret;
David Sterba381cf652015-01-02 18:45:16 +01001360
David Sterba9c4f61f2015-01-02 19:12:57 +01001361 ret = btrfs_insert_orphan_item(trans, root, ino);
1362 if (ret == -EEXIST)
1363 ret = 0;
David Sterba381cf652015-01-02 18:45:16 +01001364
Yan, Zhengc71bf092009-11-12 09:34:40 +00001365 return ret;
1366}
1367
Mark Fashehf1863732012-08-08 11:32:27 -07001368static int count_inode_extrefs(struct btrfs_root *root,
Nikolay Borisov36283652017-01-18 00:31:49 +02001369 struct btrfs_inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001370{
Mark Fashehf1863732012-08-08 11:32:27 -07001371 int ret = 0;
1372 int name_len;
1373 unsigned int nlink = 0;
1374 u32 item_size;
1375 u32 cur_offset = 0;
Nikolay Borisov36283652017-01-18 00:31:49 +02001376 u64 inode_objectid = btrfs_ino(inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001377 u64 offset = 0;
1378 unsigned long ptr;
1379 struct btrfs_inode_extref *extref;
1380 struct extent_buffer *leaf;
1381
1382 while (1) {
1383 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1384 &extref, &offset);
1385 if (ret)
1386 break;
1387
1388 leaf = path->nodes[0];
1389 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1390 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Filipe Manana2c2c4522015-01-13 16:40:04 +00001391 cur_offset = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001392
1393 while (cur_offset < item_size) {
1394 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1395 name_len = btrfs_inode_extref_name_len(leaf, extref);
1396
1397 nlink++;
1398
1399 cur_offset += name_len + sizeof(*extref);
1400 }
1401
1402 offset++;
1403 btrfs_release_path(path);
1404 }
1405 btrfs_release_path(path);
1406
Filipe Manana2c2c4522015-01-13 16:40:04 +00001407 if (ret < 0 && ret != -ENOENT)
Mark Fashehf1863732012-08-08 11:32:27 -07001408 return ret;
1409 return nlink;
1410}
1411
1412static int count_inode_refs(struct btrfs_root *root,
Nikolay Borisovf329e312017-01-18 00:31:50 +02001413 struct btrfs_inode *inode, struct btrfs_path *path)
Mark Fashehf1863732012-08-08 11:32:27 -07001414{
Chris Masone02119d2008-09-05 16:13:11 -04001415 int ret;
1416 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001417 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001418 unsigned long ptr;
1419 unsigned long ptr_end;
1420 int name_len;
Nikolay Borisovf329e312017-01-18 00:31:50 +02001421 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001422
Li Zefan33345d012011-04-20 10:31:50 +08001423 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001424 key.type = BTRFS_INODE_REF_KEY;
1425 key.offset = (u64)-1;
1426
Chris Masond3977122009-01-05 21:25:51 -05001427 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001428 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1429 if (ret < 0)
1430 break;
1431 if (ret > 0) {
1432 if (path->slots[0] == 0)
1433 break;
1434 path->slots[0]--;
1435 }
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001436process_slot:
Chris Masone02119d2008-09-05 16:13:11 -04001437 btrfs_item_key_to_cpu(path->nodes[0], &key,
1438 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001439 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001440 key.type != BTRFS_INODE_REF_KEY)
1441 break;
1442 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1443 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1444 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001445 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001446 struct btrfs_inode_ref *ref;
1447
1448 ref = (struct btrfs_inode_ref *)ptr;
1449 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1450 ref);
1451 ptr = (unsigned long)(ref + 1) + name_len;
1452 nlink++;
1453 }
1454
1455 if (key.offset == 0)
1456 break;
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001457 if (path->slots[0] > 0) {
1458 path->slots[0]--;
1459 goto process_slot;
1460 }
Chris Masone02119d2008-09-05 16:13:11 -04001461 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001462 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001463 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001464 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001465
1466 return nlink;
1467}
1468
1469/*
1470 * There are a few corners where the link count of the file can't
1471 * be properly maintained during replay. So, instead of adding
1472 * lots of complexity to the log code, we just scan the backrefs
1473 * for any file that has been through replay.
1474 *
1475 * The scan will update the link count on the inode to reflect the
1476 * number of back refs found. If it goes down to zero, the iput
1477 * will free the inode.
1478 */
1479static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1480 struct btrfs_root *root,
1481 struct inode *inode)
1482{
1483 struct btrfs_path *path;
1484 int ret;
1485 u64 nlink = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001486 u64 ino = btrfs_ino(BTRFS_I(inode));
Mark Fashehf1863732012-08-08 11:32:27 -07001487
1488 path = btrfs_alloc_path();
1489 if (!path)
1490 return -ENOMEM;
1491
Nikolay Borisovf329e312017-01-18 00:31:50 +02001492 ret = count_inode_refs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001493 if (ret < 0)
1494 goto out;
1495
1496 nlink = ret;
1497
Nikolay Borisov36283652017-01-18 00:31:49 +02001498 ret = count_inode_extrefs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001499 if (ret < 0)
1500 goto out;
1501
1502 nlink += ret;
1503
1504 ret = 0;
1505
Chris Masone02119d2008-09-05 16:13:11 -04001506 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001507 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001508 btrfs_update_inode(trans, root, inode);
1509 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001510 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001511
Yan, Zhengc71bf092009-11-12 09:34:40 +00001512 if (inode->i_nlink == 0) {
1513 if (S_ISDIR(inode->i_mode)) {
1514 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001515 ino, 1);
Josef Bacik36508602013-04-25 16:23:32 -04001516 if (ret)
1517 goto out;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001518 }
Li Zefan33345d012011-04-20 10:31:50 +08001519 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001520 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001521
Mark Fashehf1863732012-08-08 11:32:27 -07001522out:
1523 btrfs_free_path(path);
1524 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001525}
1526
1527static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1528 struct btrfs_root *root,
1529 struct btrfs_path *path)
1530{
1531 int ret;
1532 struct btrfs_key key;
1533 struct inode *inode;
1534
1535 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1536 key.type = BTRFS_ORPHAN_ITEM_KEY;
1537 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001538 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001539 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1540 if (ret < 0)
1541 break;
1542
1543 if (ret == 1) {
1544 if (path->slots[0] == 0)
1545 break;
1546 path->slots[0]--;
1547 }
1548
1549 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1550 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1551 key.type != BTRFS_ORPHAN_ITEM_KEY)
1552 break;
1553
1554 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001555 if (ret)
1556 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001557
David Sterbab3b4aa72011-04-21 01:20:15 +02001558 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001559 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001560 if (!inode)
1561 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001562
1563 ret = fixup_inode_link_count(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001564 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001565 if (ret)
1566 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001567
Chris Mason12fcfd22009-03-24 10:24:20 -04001568 /*
1569 * fixup on a directory may create new entries,
1570 * make sure we always look for the highset possible
1571 * offset
1572 */
1573 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001574 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001575 ret = 0;
1576out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001577 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001578 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001579}
1580
1581
1582/*
1583 * record a given inode in the fixup dir so we can check its link
1584 * count when replay is done. The link count is incremented here
1585 * so the inode won't go away until we check it
1586 */
1587static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1588 struct btrfs_root *root,
1589 struct btrfs_path *path,
1590 u64 objectid)
1591{
1592 struct btrfs_key key;
1593 int ret = 0;
1594 struct inode *inode;
1595
1596 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001597 if (!inode)
1598 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001599
1600 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02001601 key.type = BTRFS_ORPHAN_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04001602 key.offset = objectid;
1603
1604 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1605
David Sterbab3b4aa72011-04-21 01:20:15 +02001606 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001607 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001608 if (!inode->i_nlink)
1609 set_nlink(inode, 1);
1610 else
Zach Brown8b558c52013-10-16 12:10:34 -07001611 inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001612 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001613 } else if (ret == -EEXIST) {
1614 ret = 0;
1615 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001616 BUG(); /* Logic Error */
Chris Masone02119d2008-09-05 16:13:11 -04001617 }
1618 iput(inode);
1619
1620 return ret;
1621}
1622
1623/*
1624 * when replaying the log for a directory, we only insert names
1625 * for inodes that actually exist. This means an fsync on a directory
1626 * does not implicitly fsync all the new files in it
1627 */
1628static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1629 struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04001630 u64 dirid, u64 index,
Zhaolei60d53eb2015-08-17 18:44:46 +08001631 char *name, int name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001632 struct btrfs_key *location)
1633{
1634 struct inode *inode;
1635 struct inode *dir;
1636 int ret;
1637
1638 inode = read_one_inode(root, location->objectid);
1639 if (!inode)
1640 return -ENOENT;
1641
1642 dir = read_one_inode(root, dirid);
1643 if (!dir) {
1644 iput(inode);
1645 return -EIO;
1646 }
Josef Bacikd5554382013-09-11 14:17:00 -04001647
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001648 ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name,
1649 name_len, 1, index);
Chris Masone02119d2008-09-05 16:13:11 -04001650
1651 /* FIXME, put inode into FIXUP list */
1652
1653 iput(inode);
1654 iput(dir);
1655 return ret;
1656}
1657
1658/*
Filipe Mananadf8d1162015-01-14 01:52:25 +00001659 * Return true if an inode reference exists in the log for the given name,
1660 * inode and parent inode.
1661 */
1662static bool name_in_log_ref(struct btrfs_root *log_root,
1663 const char *name, const int name_len,
1664 const u64 dirid, const u64 ino)
1665{
1666 struct btrfs_key search_key;
1667
1668 search_key.objectid = ino;
1669 search_key.type = BTRFS_INODE_REF_KEY;
1670 search_key.offset = dirid;
1671 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1672 return true;
1673
1674 search_key.type = BTRFS_INODE_EXTREF_KEY;
1675 search_key.offset = btrfs_extref_hash(dirid, name, name_len);
1676 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1677 return true;
1678
1679 return false;
1680}
1681
1682/*
Chris Masone02119d2008-09-05 16:13:11 -04001683 * take a single entry in a log directory item and replay it into
1684 * the subvolume.
1685 *
1686 * if a conflicting item exists in the subdirectory already,
1687 * the inode it points to is unlinked and put into the link count
1688 * fix up tree.
1689 *
1690 * If a name from the log points to a file or directory that does
1691 * not exist in the FS, it is skipped. fsyncs on directories
1692 * do not force down inodes inside that directory, just changes to the
1693 * names or unlinks in a directory.
Filipe Mananabb53eda2015-07-15 23:26:43 +01001694 *
1695 * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a
1696 * non-existing inode) and 1 if the name was replayed.
Chris Masone02119d2008-09-05 16:13:11 -04001697 */
1698static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1699 struct btrfs_root *root,
1700 struct btrfs_path *path,
1701 struct extent_buffer *eb,
1702 struct btrfs_dir_item *di,
1703 struct btrfs_key *key)
1704{
1705 char *name;
1706 int name_len;
1707 struct btrfs_dir_item *dst_di;
1708 struct btrfs_key found_key;
1709 struct btrfs_key log_key;
1710 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001711 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001712 int exists;
Josef Bacik36508602013-04-25 16:23:32 -04001713 int ret = 0;
Josef Bacikd5554382013-09-11 14:17:00 -04001714 bool update_size = (key->type == BTRFS_DIR_INDEX_KEY);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001715 bool name_added = false;
Chris Masone02119d2008-09-05 16:13:11 -04001716
1717 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001718 if (!dir)
1719 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001720
1721 name_len = btrfs_dir_name_len(eb, di);
1722 name = kmalloc(name_len, GFP_NOFS);
Filipe David Borba Manana2bac3252013-08-04 19:58:57 +01001723 if (!name) {
1724 ret = -ENOMEM;
1725 goto out;
1726 }
liubo2a29edc2011-01-26 06:22:08 +00001727
Chris Masone02119d2008-09-05 16:13:11 -04001728 log_type = btrfs_dir_type(eb, di);
1729 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1730 name_len);
1731
1732 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001733 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1734 if (exists == 0)
1735 exists = 1;
1736 else
1737 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001738 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001739
Chris Masone02119d2008-09-05 16:13:11 -04001740 if (key->type == BTRFS_DIR_ITEM_KEY) {
1741 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1742 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001743 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001744 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1745 key->objectid,
1746 key->offset, name,
1747 name_len, 1);
1748 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001749 /* Corruption */
1750 ret = -EINVAL;
1751 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001752 }
David Sterbac7040052011-04-19 18:00:01 +02001753 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001754 /* we need a sequence number to insert, so we only
1755 * do inserts for the BTRFS_DIR_INDEX_KEY types
1756 */
1757 if (key->type != BTRFS_DIR_INDEX_KEY)
1758 goto out;
1759 goto insert;
1760 }
1761
1762 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1763 /* the existing item matches the logged item */
1764 if (found_key.objectid == log_key.objectid &&
1765 found_key.type == log_key.type &&
1766 found_key.offset == log_key.offset &&
1767 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
Filipe Mananaa2cc11d2014-09-08 22:53:18 +01001768 update_size = false;
Chris Masone02119d2008-09-05 16:13:11 -04001769 goto out;
1770 }
1771
1772 /*
1773 * don't drop the conflicting directory entry if the inode
1774 * for the new entry doesn't exist
1775 */
Chris Mason4bef0842008-09-08 11:18:08 -04001776 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001777 goto out;
1778
Nikolay Borisov207e7d92017-01-18 00:31:45 +02001779 ret = drop_one_dir_item(trans, root, path, BTRFS_I(dir), dst_di);
Josef Bacik36508602013-04-25 16:23:32 -04001780 if (ret)
1781 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001782
1783 if (key->type == BTRFS_DIR_INDEX_KEY)
1784 goto insert;
1785out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001786 btrfs_release_path(path);
Josef Bacikd5554382013-09-11 14:17:00 -04001787 if (!ret && update_size) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02001788 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2);
Josef Bacikd5554382013-09-11 14:17:00 -04001789 ret = btrfs_update_inode(trans, root, dir);
1790 }
Chris Masone02119d2008-09-05 16:13:11 -04001791 kfree(name);
1792 iput(dir);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001793 if (!ret && name_added)
1794 ret = 1;
Josef Bacik36508602013-04-25 16:23:32 -04001795 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001796
1797insert:
Filipe Mananadf8d1162015-01-14 01:52:25 +00001798 if (name_in_log_ref(root->log_root, name, name_len,
1799 key->objectid, log_key.objectid)) {
1800 /* The dentry will be added later. */
1801 ret = 0;
1802 update_size = false;
1803 goto out;
1804 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001805 btrfs_release_path(path);
Zhaolei60d53eb2015-08-17 18:44:46 +08001806 ret = insert_one_name(trans, root, key->objectid, key->offset,
1807 name, name_len, &log_key);
Filipe Mananadf8d1162015-01-14 01:52:25 +00001808 if (ret && ret != -ENOENT && ret != -EEXIST)
Josef Bacik36508602013-04-25 16:23:32 -04001809 goto out;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001810 if (!ret)
1811 name_added = true;
Josef Bacikd5554382013-09-11 14:17:00 -04001812 update_size = false;
Josef Bacik36508602013-04-25 16:23:32 -04001813 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001814 goto out;
1815}
1816
1817/*
1818 * find all the names in a directory item and reconcile them into
1819 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1820 * one name in a directory item, but the same code gets used for
1821 * both directory index types
1822 */
1823static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1824 struct btrfs_root *root,
1825 struct btrfs_path *path,
1826 struct extent_buffer *eb, int slot,
1827 struct btrfs_key *key)
1828{
Filipe Mananabb53eda2015-07-15 23:26:43 +01001829 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001830 u32 item_size = btrfs_item_size_nr(eb, slot);
1831 struct btrfs_dir_item *di;
1832 int name_len;
1833 unsigned long ptr;
1834 unsigned long ptr_end;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001835 struct btrfs_path *fixup_path = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001836
1837 ptr = btrfs_item_ptr_offset(eb, slot);
1838 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001839 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001840 di = (struct btrfs_dir_item *)ptr;
1841 name_len = btrfs_dir_name_len(eb, di);
1842 ret = replay_one_name(trans, root, path, eb, di, key);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001843 if (ret < 0)
1844 break;
Chris Masone02119d2008-09-05 16:13:11 -04001845 ptr = (unsigned long)(di + 1);
1846 ptr += name_len;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001847
1848 /*
1849 * If this entry refers to a non-directory (directories can not
1850 * have a link count > 1) and it was added in the transaction
1851 * that was not committed, make sure we fixup the link count of
1852 * the inode it the entry points to. Otherwise something like
1853 * the following would result in a directory pointing to an
1854 * inode with a wrong link that does not account for this dir
1855 * entry:
1856 *
1857 * mkdir testdir
1858 * touch testdir/foo
1859 * touch testdir/bar
1860 * sync
1861 *
1862 * ln testdir/bar testdir/bar_link
1863 * ln testdir/foo testdir/foo_link
1864 * xfs_io -c "fsync" testdir/bar
1865 *
1866 * <power failure>
1867 *
1868 * mount fs, log replay happens
1869 *
1870 * File foo would remain with a link count of 1 when it has two
1871 * entries pointing to it in the directory testdir. This would
1872 * make it impossible to ever delete the parent directory has
1873 * it would result in stale dentries that can never be deleted.
1874 */
1875 if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) {
1876 struct btrfs_key di_key;
1877
1878 if (!fixup_path) {
1879 fixup_path = btrfs_alloc_path();
1880 if (!fixup_path) {
1881 ret = -ENOMEM;
1882 break;
1883 }
1884 }
1885
1886 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1887 ret = link_to_fixup_dir(trans, root, fixup_path,
1888 di_key.objectid);
1889 if (ret)
1890 break;
1891 }
1892 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001893 }
Filipe Mananabb53eda2015-07-15 23:26:43 +01001894 btrfs_free_path(fixup_path);
1895 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001896}
1897
1898/*
1899 * directory replay has two parts. There are the standard directory
1900 * items in the log copied from the subvolume, and range items
1901 * created in the log while the subvolume was logged.
1902 *
1903 * The range items tell us which parts of the key space the log
1904 * is authoritative for. During replay, if a key in the subvolume
1905 * directory is in a logged range item, but not actually in the log
1906 * that means it was deleted from the directory before the fsync
1907 * and should be removed.
1908 */
1909static noinline int find_dir_range(struct btrfs_root *root,
1910 struct btrfs_path *path,
1911 u64 dirid, int key_type,
1912 u64 *start_ret, u64 *end_ret)
1913{
1914 struct btrfs_key key;
1915 u64 found_end;
1916 struct btrfs_dir_log_item *item;
1917 int ret;
1918 int nritems;
1919
1920 if (*start_ret == (u64)-1)
1921 return 1;
1922
1923 key.objectid = dirid;
1924 key.type = key_type;
1925 key.offset = *start_ret;
1926
1927 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1928 if (ret < 0)
1929 goto out;
1930 if (ret > 0) {
1931 if (path->slots[0] == 0)
1932 goto out;
1933 path->slots[0]--;
1934 }
1935 if (ret != 0)
1936 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1937
1938 if (key.type != key_type || key.objectid != dirid) {
1939 ret = 1;
1940 goto next;
1941 }
1942 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1943 struct btrfs_dir_log_item);
1944 found_end = btrfs_dir_log_end(path->nodes[0], item);
1945
1946 if (*start_ret >= key.offset && *start_ret <= found_end) {
1947 ret = 0;
1948 *start_ret = key.offset;
1949 *end_ret = found_end;
1950 goto out;
1951 }
1952 ret = 1;
1953next:
1954 /* check the next slot in the tree to see if it is a valid item */
1955 nritems = btrfs_header_nritems(path->nodes[0]);
Robbie Ko2a7bf532016-10-07 17:30:47 +08001956 path->slots[0]++;
Chris Masone02119d2008-09-05 16:13:11 -04001957 if (path->slots[0] >= nritems) {
1958 ret = btrfs_next_leaf(root, path);
1959 if (ret)
1960 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001961 }
1962
1963 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1964
1965 if (key.type != key_type || key.objectid != dirid) {
1966 ret = 1;
1967 goto out;
1968 }
1969 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1970 struct btrfs_dir_log_item);
1971 found_end = btrfs_dir_log_end(path->nodes[0], item);
1972 *start_ret = key.offset;
1973 *end_ret = found_end;
1974 ret = 0;
1975out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001976 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001977 return ret;
1978}
1979
1980/*
1981 * this looks for a given directory item in the log. If the directory
1982 * item is not in the log, the item is removed and the inode it points
1983 * to is unlinked
1984 */
1985static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
1986 struct btrfs_root *root,
1987 struct btrfs_root *log,
1988 struct btrfs_path *path,
1989 struct btrfs_path *log_path,
1990 struct inode *dir,
1991 struct btrfs_key *dir_key)
1992{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001993 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04001994 int ret;
1995 struct extent_buffer *eb;
1996 int slot;
1997 u32 item_size;
1998 struct btrfs_dir_item *di;
1999 struct btrfs_dir_item *log_di;
2000 int name_len;
2001 unsigned long ptr;
2002 unsigned long ptr_end;
2003 char *name;
2004 struct inode *inode;
2005 struct btrfs_key location;
2006
2007again:
2008 eb = path->nodes[0];
2009 slot = path->slots[0];
2010 item_size = btrfs_item_size_nr(eb, slot);
2011 ptr = btrfs_item_ptr_offset(eb, slot);
2012 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05002013 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04002014 di = (struct btrfs_dir_item *)ptr;
2015 name_len = btrfs_dir_name_len(eb, di);
2016 name = kmalloc(name_len, GFP_NOFS);
2017 if (!name) {
2018 ret = -ENOMEM;
2019 goto out;
2020 }
2021 read_extent_buffer(eb, name, (unsigned long)(di + 1),
2022 name_len);
2023 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04002024 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002025 log_di = btrfs_lookup_dir_item(trans, log, log_path,
2026 dir_key->objectid,
2027 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04002028 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002029 log_di = btrfs_lookup_dir_index_item(trans, log,
2030 log_path,
2031 dir_key->objectid,
2032 dir_key->offset,
2033 name, name_len, 0);
2034 }
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002035 if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) {
Chris Masone02119d2008-09-05 16:13:11 -04002036 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02002037 btrfs_release_path(path);
2038 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002039 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00002040 if (!inode) {
2041 kfree(name);
2042 return -EIO;
2043 }
Chris Masone02119d2008-09-05 16:13:11 -04002044
2045 ret = link_to_fixup_dir(trans, root,
2046 path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -04002047 if (ret) {
2048 kfree(name);
2049 iput(inode);
2050 goto out;
2051 }
2052
Zach Brown8b558c52013-10-16 12:10:34 -07002053 inc_nlink(inode);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02002054 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
2055 BTRFS_I(inode), name, name_len);
Josef Bacik36508602013-04-25 16:23:32 -04002056 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002057 ret = btrfs_run_delayed_items(trans, fs_info);
Chris Masone02119d2008-09-05 16:13:11 -04002058 kfree(name);
2059 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04002060 if (ret)
2061 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002062
2063 /* there might still be more names under this key
2064 * check and repeat if required
2065 */
2066 ret = btrfs_search_slot(NULL, root, dir_key, path,
2067 0, 0);
2068 if (ret == 0)
2069 goto again;
2070 ret = 0;
2071 goto out;
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002072 } else if (IS_ERR(log_di)) {
2073 kfree(name);
2074 return PTR_ERR(log_di);
Chris Masone02119d2008-09-05 16:13:11 -04002075 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002076 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002077 kfree(name);
2078
2079 ptr = (unsigned long)(di + 1);
2080 ptr += name_len;
2081 }
2082 ret = 0;
2083out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002084 btrfs_release_path(path);
2085 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002086 return ret;
2087}
2088
Filipe Manana4f764e52015-02-23 19:53:35 +00002089static int replay_xattr_deletes(struct btrfs_trans_handle *trans,
2090 struct btrfs_root *root,
2091 struct btrfs_root *log,
2092 struct btrfs_path *path,
2093 const u64 ino)
2094{
2095 struct btrfs_key search_key;
2096 struct btrfs_path *log_path;
2097 int i;
2098 int nritems;
2099 int ret;
2100
2101 log_path = btrfs_alloc_path();
2102 if (!log_path)
2103 return -ENOMEM;
2104
2105 search_key.objectid = ino;
2106 search_key.type = BTRFS_XATTR_ITEM_KEY;
2107 search_key.offset = 0;
2108again:
2109 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
2110 if (ret < 0)
2111 goto out;
2112process_leaf:
2113 nritems = btrfs_header_nritems(path->nodes[0]);
2114 for (i = path->slots[0]; i < nritems; i++) {
2115 struct btrfs_key key;
2116 struct btrfs_dir_item *di;
2117 struct btrfs_dir_item *log_di;
2118 u32 total_size;
2119 u32 cur;
2120
2121 btrfs_item_key_to_cpu(path->nodes[0], &key, i);
2122 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) {
2123 ret = 0;
2124 goto out;
2125 }
2126
2127 di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item);
2128 total_size = btrfs_item_size_nr(path->nodes[0], i);
2129 cur = 0;
2130 while (cur < total_size) {
2131 u16 name_len = btrfs_dir_name_len(path->nodes[0], di);
2132 u16 data_len = btrfs_dir_data_len(path->nodes[0], di);
2133 u32 this_len = sizeof(*di) + name_len + data_len;
2134 char *name;
2135
2136 name = kmalloc(name_len, GFP_NOFS);
2137 if (!name) {
2138 ret = -ENOMEM;
2139 goto out;
2140 }
2141 read_extent_buffer(path->nodes[0], name,
2142 (unsigned long)(di + 1), name_len);
2143
2144 log_di = btrfs_lookup_xattr(NULL, log, log_path, ino,
2145 name, name_len, 0);
2146 btrfs_release_path(log_path);
2147 if (!log_di) {
2148 /* Doesn't exist in log tree, so delete it. */
2149 btrfs_release_path(path);
2150 di = btrfs_lookup_xattr(trans, root, path, ino,
2151 name, name_len, -1);
2152 kfree(name);
2153 if (IS_ERR(di)) {
2154 ret = PTR_ERR(di);
2155 goto out;
2156 }
2157 ASSERT(di);
2158 ret = btrfs_delete_one_dir_name(trans, root,
2159 path, di);
2160 if (ret)
2161 goto out;
2162 btrfs_release_path(path);
2163 search_key = key;
2164 goto again;
2165 }
2166 kfree(name);
2167 if (IS_ERR(log_di)) {
2168 ret = PTR_ERR(log_di);
2169 goto out;
2170 }
2171 cur += this_len;
2172 di = (struct btrfs_dir_item *)((char *)di + this_len);
2173 }
2174 }
2175 ret = btrfs_next_leaf(root, path);
2176 if (ret > 0)
2177 ret = 0;
2178 else if (ret == 0)
2179 goto process_leaf;
2180out:
2181 btrfs_free_path(log_path);
2182 btrfs_release_path(path);
2183 return ret;
2184}
2185
2186
Chris Masone02119d2008-09-05 16:13:11 -04002187/*
2188 * deletion replay happens before we copy any new directory items
2189 * out of the log or out of backreferences from inodes. It
2190 * scans the log to find ranges of keys that log is authoritative for,
2191 * and then scans the directory to find items in those ranges that are
2192 * not present in the log.
2193 *
2194 * Anything we don't find in the log is unlinked and removed from the
2195 * directory.
2196 */
2197static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
2198 struct btrfs_root *root,
2199 struct btrfs_root *log,
2200 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002201 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04002202{
2203 u64 range_start;
2204 u64 range_end;
2205 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
2206 int ret = 0;
2207 struct btrfs_key dir_key;
2208 struct btrfs_key found_key;
2209 struct btrfs_path *log_path;
2210 struct inode *dir;
2211
2212 dir_key.objectid = dirid;
2213 dir_key.type = BTRFS_DIR_ITEM_KEY;
2214 log_path = btrfs_alloc_path();
2215 if (!log_path)
2216 return -ENOMEM;
2217
2218 dir = read_one_inode(root, dirid);
2219 /* it isn't an error if the inode isn't there, that can happen
2220 * because we replay the deletes before we copy in the inode item
2221 * from the log
2222 */
2223 if (!dir) {
2224 btrfs_free_path(log_path);
2225 return 0;
2226 }
2227again:
2228 range_start = 0;
2229 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05002230 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002231 if (del_all)
2232 range_end = (u64)-1;
2233 else {
2234 ret = find_dir_range(log, path, dirid, key_type,
2235 &range_start, &range_end);
2236 if (ret != 0)
2237 break;
2238 }
Chris Masone02119d2008-09-05 16:13:11 -04002239
2240 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05002241 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002242 int nritems;
2243 ret = btrfs_search_slot(NULL, root, &dir_key, path,
2244 0, 0);
2245 if (ret < 0)
2246 goto out;
2247
2248 nritems = btrfs_header_nritems(path->nodes[0]);
2249 if (path->slots[0] >= nritems) {
2250 ret = btrfs_next_leaf(root, path);
2251 if (ret)
2252 break;
2253 }
2254 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2255 path->slots[0]);
2256 if (found_key.objectid != dirid ||
2257 found_key.type != dir_key.type)
2258 goto next_type;
2259
2260 if (found_key.offset > range_end)
2261 break;
2262
2263 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002264 log_path, dir,
2265 &found_key);
Josef Bacik36508602013-04-25 16:23:32 -04002266 if (ret)
2267 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002268 if (found_key.offset == (u64)-1)
2269 break;
2270 dir_key.offset = found_key.offset + 1;
2271 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002272 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002273 if (range_end == (u64)-1)
2274 break;
2275 range_start = range_end + 1;
2276 }
2277
2278next_type:
2279 ret = 0;
2280 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
2281 key_type = BTRFS_DIR_LOG_INDEX_KEY;
2282 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002283 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002284 goto again;
2285 }
2286out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002287 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002288 btrfs_free_path(log_path);
2289 iput(dir);
2290 return ret;
2291}
2292
2293/*
2294 * the process_func used to replay items from the log tree. This
2295 * gets called in two different stages. The first stage just looks
2296 * for inodes and makes sure they are all copied into the subvolume.
2297 *
2298 * The second stage copies all the other item types from the log into
2299 * the subvolume. The two stage approach is slower, but gets rid of
2300 * lots of complexity around inodes referencing other inodes that exist
2301 * only in the log (references come from either directory items or inode
2302 * back refs).
2303 */
2304static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
2305 struct walk_control *wc, u64 gen)
2306{
2307 int nritems;
2308 struct btrfs_path *path;
2309 struct btrfs_root *root = wc->replay_dest;
2310 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002311 int level;
2312 int i;
2313 int ret;
2314
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002315 ret = btrfs_read_buffer(eb, gen);
2316 if (ret)
2317 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002318
2319 level = btrfs_header_level(eb);
2320
2321 if (level != 0)
2322 return 0;
2323
2324 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002325 if (!path)
2326 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002327
2328 nritems = btrfs_header_nritems(eb);
2329 for (i = 0; i < nritems; i++) {
2330 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04002331
2332 /* inode keys are done during the first stage */
2333 if (key.type == BTRFS_INODE_ITEM_KEY &&
2334 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04002335 struct btrfs_inode_item *inode_item;
2336 u32 mode;
2337
2338 inode_item = btrfs_item_ptr(eb, i,
2339 struct btrfs_inode_item);
Filipe Manana4f764e52015-02-23 19:53:35 +00002340 ret = replay_xattr_deletes(wc->trans, root, log,
2341 path, key.objectid);
2342 if (ret)
2343 break;
Chris Masone02119d2008-09-05 16:13:11 -04002344 mode = btrfs_inode_mode(eb, inode_item);
2345 if (S_ISDIR(mode)) {
2346 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04002347 root, log, path, key.objectid, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002348 if (ret)
2349 break;
Chris Masone02119d2008-09-05 16:13:11 -04002350 }
2351 ret = overwrite_item(wc->trans, root, path,
2352 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002353 if (ret)
2354 break;
Chris Masone02119d2008-09-05 16:13:11 -04002355
Yan, Zhengc71bf092009-11-12 09:34:40 +00002356 /* for regular files, make sure corresponding
Nicholas D Steeves01327612016-05-19 21:18:45 -04002357 * orphan item exist. extents past the new EOF
Yan, Zhengc71bf092009-11-12 09:34:40 +00002358 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04002359 */
2360 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00002361 ret = insert_orphan_item(wc->trans, root,
2362 key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002363 if (ret)
2364 break;
Chris Masone02119d2008-09-05 16:13:11 -04002365 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00002366
Chris Masone02119d2008-09-05 16:13:11 -04002367 ret = link_to_fixup_dir(wc->trans, root,
2368 path, key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002369 if (ret)
2370 break;
Chris Masone02119d2008-09-05 16:13:11 -04002371 }
Josef Bacikdd8e7212013-09-11 11:57:23 -04002372
2373 if (key.type == BTRFS_DIR_INDEX_KEY &&
2374 wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2375 ret = replay_one_dir_item(wc->trans, root, path,
2376 eb, i, &key);
2377 if (ret)
2378 break;
2379 }
2380
Chris Masone02119d2008-09-05 16:13:11 -04002381 if (wc->stage < LOG_WALK_REPLAY_ALL)
2382 continue;
2383
2384 /* these keys are simply copied */
2385 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2386 ret = overwrite_item(wc->trans, root, path,
2387 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002388 if (ret)
2389 break;
Liu Bo2da1c662013-05-26 13:50:29 +00002390 } else if (key.type == BTRFS_INODE_REF_KEY ||
2391 key.type == BTRFS_INODE_EXTREF_KEY) {
Mark Fashehf1863732012-08-08 11:32:27 -07002392 ret = add_inode_ref(wc->trans, root, log, path,
2393 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002394 if (ret && ret != -ENOENT)
2395 break;
2396 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002397 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2398 ret = replay_one_extent(wc->trans, root, path,
2399 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002400 if (ret)
2401 break;
Josef Bacikdd8e7212013-09-11 11:57:23 -04002402 } else if (key.type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002403 ret = replay_one_dir_item(wc->trans, root, path,
2404 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002405 if (ret)
2406 break;
Chris Masone02119d2008-09-05 16:13:11 -04002407 }
2408 }
2409 btrfs_free_path(path);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002410 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002411}
2412
Chris Masond3977122009-01-05 21:25:51 -05002413static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002414 struct btrfs_root *root,
2415 struct btrfs_path *path, int *level,
2416 struct walk_control *wc)
2417{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002418 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002419 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002420 u64 bytenr;
2421 u64 ptr_gen;
2422 struct extent_buffer *next;
2423 struct extent_buffer *cur;
2424 struct extent_buffer *parent;
2425 u32 blocksize;
2426 int ret = 0;
2427
2428 WARN_ON(*level < 0);
2429 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2430
Chris Masond3977122009-01-05 21:25:51 -05002431 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002432 WARN_ON(*level < 0);
2433 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2434 cur = path->nodes[*level];
2435
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302436 WARN_ON(btrfs_header_level(cur) != *level);
Chris Masone02119d2008-09-05 16:13:11 -04002437
2438 if (path->slots[*level] >=
2439 btrfs_header_nritems(cur))
2440 break;
2441
2442 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2443 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002444 blocksize = fs_info->nodesize;
Chris Masone02119d2008-09-05 16:13:11 -04002445
2446 parent = path->nodes[*level];
2447 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04002448
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002449 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07002450 if (IS_ERR(next))
2451 return PTR_ERR(next);
Chris Masone02119d2008-09-05 16:13:11 -04002452
Chris Masone02119d2008-09-05 16:13:11 -04002453 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002454 ret = wc->process_func(root, next, wc, ptr_gen);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002455 if (ret) {
2456 free_extent_buffer(next);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002457 return ret;
Josef Bacikb50c6e22013-04-25 15:55:30 -04002458 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002459
Chris Masone02119d2008-09-05 16:13:11 -04002460 path->slots[*level]++;
2461 if (wc->free) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002462 ret = btrfs_read_buffer(next, ptr_gen);
2463 if (ret) {
2464 free_extent_buffer(next);
2465 return ret;
2466 }
Chris Masone02119d2008-09-05 16:13:11 -04002467
Josef Bacik681ae502013-10-07 15:11:00 -04002468 if (trans) {
2469 btrfs_tree_lock(next);
2470 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002471 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002472 btrfs_wait_tree_block_writeback(next);
2473 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002474 } else {
2475 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2476 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002477 }
Chris Masone02119d2008-09-05 16:13:11 -04002478
Chris Masone02119d2008-09-05 16:13:11 -04002479 WARN_ON(root_owner !=
2480 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002481 ret = btrfs_free_and_pin_reserved_extent(
2482 fs_info, bytenr,
2483 blocksize);
Josef Bacik36508602013-04-25 16:23:32 -04002484 if (ret) {
2485 free_extent_buffer(next);
2486 return ret;
2487 }
Chris Masone02119d2008-09-05 16:13:11 -04002488 }
2489 free_extent_buffer(next);
2490 continue;
2491 }
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002492 ret = btrfs_read_buffer(next, ptr_gen);
2493 if (ret) {
2494 free_extent_buffer(next);
2495 return ret;
2496 }
Chris Masone02119d2008-09-05 16:13:11 -04002497
2498 WARN_ON(*level <= 0);
2499 if (path->nodes[*level-1])
2500 free_extent_buffer(path->nodes[*level-1]);
2501 path->nodes[*level-1] = next;
2502 *level = btrfs_header_level(next);
2503 path->slots[*level] = 0;
2504 cond_resched();
2505 }
2506 WARN_ON(*level < 0);
2507 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2508
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002509 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002510
2511 cond_resched();
2512 return 0;
2513}
2514
Chris Masond3977122009-01-05 21:25:51 -05002515static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002516 struct btrfs_root *root,
2517 struct btrfs_path *path, int *level,
2518 struct walk_control *wc)
2519{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002520 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002521 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002522 int i;
2523 int slot;
2524 int ret;
2525
Chris Masond3977122009-01-05 21:25:51 -05002526 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002527 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002528 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002529 path->slots[i]++;
2530 *level = i;
2531 WARN_ON(*level == 0);
2532 return 0;
2533 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04002534 struct extent_buffer *parent;
2535 if (path->nodes[*level] == root->node)
2536 parent = path->nodes[*level];
2537 else
2538 parent = path->nodes[*level + 1];
2539
2540 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002541 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002542 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002543 if (ret)
2544 return ret;
2545
Chris Masone02119d2008-09-05 16:13:11 -04002546 if (wc->free) {
2547 struct extent_buffer *next;
2548
2549 next = path->nodes[*level];
2550
Josef Bacik681ae502013-10-07 15:11:00 -04002551 if (trans) {
2552 btrfs_tree_lock(next);
2553 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002554 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002555 btrfs_wait_tree_block_writeback(next);
2556 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002557 } else {
2558 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2559 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002560 }
Chris Masone02119d2008-09-05 16:13:11 -04002561
Chris Masone02119d2008-09-05 16:13:11 -04002562 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002563 ret = btrfs_free_and_pin_reserved_extent(
2564 fs_info,
Chris Masone02119d2008-09-05 16:13:11 -04002565 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04002566 path->nodes[*level]->len);
Josef Bacik36508602013-04-25 16:23:32 -04002567 if (ret)
2568 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002569 }
2570 free_extent_buffer(path->nodes[*level]);
2571 path->nodes[*level] = NULL;
2572 *level = i + 1;
2573 }
2574 }
2575 return 1;
2576}
2577
2578/*
2579 * drop the reference count on the tree rooted at 'snap'. This traverses
2580 * the tree freeing any blocks that have a ref count of zero after being
2581 * decremented.
2582 */
2583static int walk_log_tree(struct btrfs_trans_handle *trans,
2584 struct btrfs_root *log, struct walk_control *wc)
2585{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002586 struct btrfs_fs_info *fs_info = log->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002587 int ret = 0;
2588 int wret;
2589 int level;
2590 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04002591 int orig_level;
2592
2593 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002594 if (!path)
2595 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002596
2597 level = btrfs_header_level(log->node);
2598 orig_level = level;
2599 path->nodes[level] = log->node;
2600 extent_buffer_get(log->node);
2601 path->slots[level] = 0;
2602
Chris Masond3977122009-01-05 21:25:51 -05002603 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002604 wret = walk_down_log_tree(trans, log, path, &level, wc);
2605 if (wret > 0)
2606 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002607 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002608 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002609 goto out;
2610 }
Chris Masone02119d2008-09-05 16:13:11 -04002611
2612 wret = walk_up_log_tree(trans, log, path, &level, wc);
2613 if (wret > 0)
2614 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002615 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002616 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002617 goto out;
2618 }
Chris Masone02119d2008-09-05 16:13:11 -04002619 }
2620
2621 /* was the root node processed? if not, catch it here */
2622 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002623 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002624 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002625 if (ret)
2626 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002627 if (wc->free) {
2628 struct extent_buffer *next;
2629
2630 next = path->nodes[orig_level];
2631
Josef Bacik681ae502013-10-07 15:11:00 -04002632 if (trans) {
2633 btrfs_tree_lock(next);
2634 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002635 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002636 btrfs_wait_tree_block_writeback(next);
2637 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002638 } else {
2639 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2640 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002641 }
Chris Masone02119d2008-09-05 16:13:11 -04002642
Chris Masone02119d2008-09-05 16:13:11 -04002643 WARN_ON(log->root_key.objectid !=
2644 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002645 ret = btrfs_free_and_pin_reserved_extent(fs_info,
2646 next->start, next->len);
Josef Bacik36508602013-04-25 16:23:32 -04002647 if (ret)
2648 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002649 }
2650 }
2651
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002652out:
Chris Masone02119d2008-09-05 16:13:11 -04002653 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002654 return ret;
2655}
2656
Yan Zheng7237f182009-01-21 12:54:03 -05002657/*
2658 * helper function to update the item for a given subvolumes log root
2659 * in the tree of log roots
2660 */
2661static int update_log_root(struct btrfs_trans_handle *trans,
2662 struct btrfs_root *log)
2663{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002664 struct btrfs_fs_info *fs_info = log->fs_info;
Yan Zheng7237f182009-01-21 12:54:03 -05002665 int ret;
2666
2667 if (log->log_transid == 1) {
2668 /* insert root item on the first sync */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002669 ret = btrfs_insert_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002670 &log->root_key, &log->root_item);
2671 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002672 ret = btrfs_update_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002673 &log->root_key, &log->root_item);
2674 }
2675 return ret;
2676}
2677
Zhaolei60d53eb2015-08-17 18:44:46 +08002678static void wait_log_commit(struct btrfs_root *root, int transid)
Chris Masone02119d2008-09-05 16:13:11 -04002679{
2680 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002681 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04002682
Yan Zheng7237f182009-01-21 12:54:03 -05002683 /*
2684 * we only allow two pending log transactions at a time,
2685 * so we know that if ours is more than 2 older than the
2686 * current transaction, we're done
2687 */
Liu Bo49e83f52017-09-01 16:14:30 -06002688 for (;;) {
Yan Zheng7237f182009-01-21 12:54:03 -05002689 prepare_to_wait(&root->log_commit_wait[index],
2690 &wait, TASK_UNINTERRUPTIBLE);
Liu Bo49e83f52017-09-01 16:14:30 -06002691
2692 if (!(root->log_transid_committed < transid &&
2693 atomic_read(&root->log_commit[index])))
2694 break;
2695
Yan Zheng7237f182009-01-21 12:54:03 -05002696 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002697 schedule();
Yan Zheng7237f182009-01-21 12:54:03 -05002698 mutex_lock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002699 }
2700 finish_wait(&root->log_commit_wait[index], &wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002701}
2702
Zhaolei60d53eb2015-08-17 18:44:46 +08002703static void wait_for_writer(struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05002704{
2705 DEFINE_WAIT(wait);
Miao Xie8b050d32014-02-20 18:08:58 +08002706
Liu Bo49e83f52017-09-01 16:14:30 -06002707 for (;;) {
2708 prepare_to_wait(&root->log_writer_wait, &wait,
2709 TASK_UNINTERRUPTIBLE);
2710 if (!atomic_read(&root->log_writers))
2711 break;
2712
Yan Zheng7237f182009-01-21 12:54:03 -05002713 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002714 schedule();
Filipe Manana575849e2015-02-11 11:12:39 +00002715 mutex_lock(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05002716 }
Liu Bo49e83f52017-09-01 16:14:30 -06002717 finish_wait(&root->log_writer_wait, &wait);
Chris Masone02119d2008-09-05 16:13:11 -04002718}
2719
Miao Xie8b050d32014-02-20 18:08:58 +08002720static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
2721 struct btrfs_log_ctx *ctx)
2722{
2723 if (!ctx)
2724 return;
2725
2726 mutex_lock(&root->log_mutex);
2727 list_del_init(&ctx->list);
2728 mutex_unlock(&root->log_mutex);
2729}
2730
2731/*
2732 * Invoked in log mutex context, or be sure there is no other task which
2733 * can access the list.
2734 */
2735static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
2736 int index, int error)
2737{
2738 struct btrfs_log_ctx *ctx;
Chris Mason570dd452016-10-27 10:42:20 -07002739 struct btrfs_log_ctx *safe;
Miao Xie8b050d32014-02-20 18:08:58 +08002740
Chris Mason570dd452016-10-27 10:42:20 -07002741 list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) {
2742 list_del_init(&ctx->list);
Miao Xie8b050d32014-02-20 18:08:58 +08002743 ctx->log_ret = error;
Chris Mason570dd452016-10-27 10:42:20 -07002744 }
Miao Xie8b050d32014-02-20 18:08:58 +08002745
2746 INIT_LIST_HEAD(&root->log_ctxs[index]);
2747}
2748
Chris Masone02119d2008-09-05 16:13:11 -04002749/*
2750 * btrfs_sync_log does sends a given tree log down to the disk and
2751 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04002752 * you know that any inodes previously logged are safely on disk only
2753 * if it returns 0.
2754 *
2755 * Any other return value means you need to call btrfs_commit_transaction.
2756 * Some of the edge cases for fsyncing directories that have had unlinks
2757 * or renames done in the past mean that sometimes the only safe
2758 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2759 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002760 */
2761int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08002762 struct btrfs_root *root, struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04002763{
Yan Zheng7237f182009-01-21 12:54:03 -05002764 int index1;
2765 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002766 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002767 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002768 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002769 struct btrfs_root *log = root->log_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002770 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
Miao Xiebb14a592014-02-20 18:08:56 +08002771 int log_transid = 0;
Miao Xie8b050d32014-02-20 18:08:58 +08002772 struct btrfs_log_ctx root_log_ctx;
Miao Xiec6adc9c2013-05-28 10:05:39 +00002773 struct blk_plug plug;
Chris Masone02119d2008-09-05 16:13:11 -04002774
Yan Zheng7237f182009-01-21 12:54:03 -05002775 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002776 log_transid = ctx->log_transid;
2777 if (root->log_transid_committed >= log_transid) {
Yan Zheng7237f182009-01-21 12:54:03 -05002778 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002779 return ctx->log_ret;
Chris Masone02119d2008-09-05 16:13:11 -04002780 }
Miao Xied1433de2014-02-20 18:08:59 +08002781
2782 index1 = log_transid % 2;
2783 if (atomic_read(&root->log_commit[index1])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08002784 wait_log_commit(root, log_transid);
Miao Xied1433de2014-02-20 18:08:59 +08002785 mutex_unlock(&root->log_mutex);
2786 return ctx->log_ret;
2787 }
2788 ASSERT(log_transid == root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002789 atomic_set(&root->log_commit[index1], 1);
2790
2791 /* wait for previous tree log sync to complete */
2792 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Zhaolei60d53eb2015-08-17 18:44:46 +08002793 wait_log_commit(root, log_transid - 1);
Miao Xie48cab2e2014-02-20 18:08:52 +08002794
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002795 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002796 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002797 /* when we're on an ssd, just kick the log commit out */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002798 if (!btrfs_test_opt(fs_info, SSD) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08002799 test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002800 mutex_unlock(&root->log_mutex);
2801 schedule_timeout_uninterruptible(1);
2802 mutex_lock(&root->log_mutex);
2803 }
Zhaolei60d53eb2015-08-17 18:44:46 +08002804 wait_for_writer(root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002805 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002806 break;
2807 }
Chris Masond0c803c2008-09-11 16:17:57 -04002808
Chris Mason12fcfd22009-03-24 10:24:20 -04002809 /* bail out if we need to do a full commit */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002810 if (btrfs_need_log_full_commit(fs_info, trans)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002811 ret = -EAGAIN;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002812 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002813 mutex_unlock(&root->log_mutex);
2814 goto out;
2815 }
2816
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002817 if (log_transid % 2 == 0)
2818 mark = EXTENT_DIRTY;
2819 else
2820 mark = EXTENT_NEW;
2821
Chris Mason690587d2009-10-13 13:29:19 -04002822 /* we start IO on all the marked extents here, but we don't actually
2823 * wait for them until later.
2824 */
Miao Xiec6adc9c2013-05-28 10:05:39 +00002825 blk_start_plug(&plug);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002826 ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002827 if (ret) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002828 blk_finish_plug(&plug);
Jeff Mahoney66642832016-06-10 18:19:25 -04002829 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002830 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002831 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002832 mutex_unlock(&root->log_mutex);
2833 goto out;
2834 }
Yan Zheng7237f182009-01-21 12:54:03 -05002835
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002836 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002837
Yan Zheng7237f182009-01-21 12:54:03 -05002838 root->log_transid++;
2839 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002840 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002841 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002842 * IO has been started, blocks of the log tree have WRITTEN flag set
2843 * in their headers. new modifications of the log will be written to
2844 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002845 */
2846 mutex_unlock(&root->log_mutex);
2847
Filipe Manana28a23592016-08-23 21:13:51 +01002848 btrfs_init_log_ctx(&root_log_ctx, NULL);
Miao Xied1433de2014-02-20 18:08:59 +08002849
Yan Zheng7237f182009-01-21 12:54:03 -05002850 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002851 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002852 atomic_inc(&log_root_tree->log_writers);
Miao Xied1433de2014-02-20 18:08:59 +08002853
2854 index2 = log_root_tree->log_transid % 2;
2855 list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
2856 root_log_ctx.log_transid = log_root_tree->log_transid;
2857
Yan Zheng7237f182009-01-21 12:54:03 -05002858 mutex_unlock(&log_root_tree->log_mutex);
2859
2860 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002861
2862 mutex_lock(&log_root_tree->log_mutex);
2863 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +01002864 /*
2865 * Implicit memory barrier after atomic_dec_and_test
2866 */
Yan Zheng7237f182009-01-21 12:54:03 -05002867 if (waitqueue_active(&log_root_tree->log_writer_wait))
2868 wake_up(&log_root_tree->log_writer_wait);
2869 }
2870
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002871 if (ret) {
Miao Xied1433de2014-02-20 18:08:59 +08002872 if (!list_empty(&root_log_ctx.list))
2873 list_del_init(&root_log_ctx.list);
2874
Miao Xiec6adc9c2013-05-28 10:05:39 +00002875 blk_finish_plug(&plug);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002876 btrfs_set_log_full_commit(fs_info, trans);
Miao Xie995946d2014-04-02 19:51:06 +08002877
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002878 if (ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002879 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002880 mutex_unlock(&log_root_tree->log_mutex);
2881 goto out;
2882 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002883 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002884 btrfs_free_logged_extents(log, log_transid);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002885 mutex_unlock(&log_root_tree->log_mutex);
2886 ret = -EAGAIN;
2887 goto out;
2888 }
2889
Miao Xied1433de2014-02-20 18:08:59 +08002890 if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
Forrest Liu3da5ab52015-01-30 19:42:12 +08002891 blk_finish_plug(&plug);
Chris Masoncbd60aa2016-09-06 05:37:40 -07002892 list_del_init(&root_log_ctx.list);
Miao Xied1433de2014-02-20 18:08:59 +08002893 mutex_unlock(&log_root_tree->log_mutex);
2894 ret = root_log_ctx.log_ret;
2895 goto out;
2896 }
Miao Xie8b050d32014-02-20 18:08:58 +08002897
Miao Xied1433de2014-02-20 18:08:59 +08002898 index2 = root_log_ctx.log_transid % 2;
Yan Zheng7237f182009-01-21 12:54:03 -05002899 if (atomic_read(&log_root_tree->log_commit[index2])) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002900 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002901 ret = btrfs_wait_tree_log_extents(log, mark);
Josef Bacik50d9aa92014-11-21 14:52:38 -05002902 btrfs_wait_logged_extents(trans, log, log_transid);
Zhaolei60d53eb2015-08-17 18:44:46 +08002903 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08002904 root_log_ctx.log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002905 mutex_unlock(&log_root_tree->log_mutex);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002906 if (!ret)
2907 ret = root_log_ctx.log_ret;
Yan Zheng7237f182009-01-21 12:54:03 -05002908 goto out;
2909 }
Miao Xied1433de2014-02-20 18:08:59 +08002910 ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002911 atomic_set(&log_root_tree->log_commit[index2], 1);
2912
Chris Mason12fcfd22009-03-24 10:24:20 -04002913 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08002914 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08002915 root_log_ctx.log_transid - 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04002916 }
Yan Zheng7237f182009-01-21 12:54:03 -05002917
Zhaolei60d53eb2015-08-17 18:44:46 +08002918 wait_for_writer(log_root_tree);
Chris Mason12fcfd22009-03-24 10:24:20 -04002919
2920 /*
2921 * now that we've moved on to the tree of log tree roots,
2922 * check the full commit flag again
2923 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002924 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002925 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002926 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002927 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002928 mutex_unlock(&log_root_tree->log_mutex);
2929 ret = -EAGAIN;
2930 goto out_wake_log_root;
2931 }
Yan Zheng7237f182009-01-21 12:54:03 -05002932
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002933 ret = btrfs_write_marked_extents(fs_info,
Miao Xiec6adc9c2013-05-28 10:05:39 +00002934 &log_root_tree->dirty_log_pages,
2935 EXTENT_DIRTY | EXTENT_NEW);
2936 blk_finish_plug(&plug);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002937 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002938 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04002939 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002940 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002941 mutex_unlock(&log_root_tree->log_mutex);
2942 goto out_wake_log_root;
2943 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002944 ret = btrfs_wait_tree_log_extents(log, mark);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002945 if (!ret)
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002946 ret = btrfs_wait_tree_log_extents(log_root_tree,
2947 EXTENT_NEW | EXTENT_DIRTY);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002948 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002949 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002950 btrfs_free_logged_extents(log, log_transid);
2951 mutex_unlock(&log_root_tree->log_mutex);
2952 goto out_wake_log_root;
2953 }
Josef Bacik50d9aa92014-11-21 14:52:38 -05002954 btrfs_wait_logged_extents(trans, log, log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04002955
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002956 btrfs_set_super_log_root(fs_info->super_for_commit,
2957 log_root_tree->node->start);
2958 btrfs_set_super_log_root_level(fs_info->super_for_commit,
2959 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04002960
Yan Zheng7237f182009-01-21 12:54:03 -05002961 log_root_tree->log_transid++;
Yan Zheng7237f182009-01-21 12:54:03 -05002962 mutex_unlock(&log_root_tree->log_mutex);
2963
2964 /*
2965 * nobody else is going to jump in and write the the ctree
2966 * super here because the log_commit atomic below is protecting
2967 * us. We must be called with a transaction handle pinning
2968 * the running transaction open, so a full commit can't hop
2969 * in and cause problems either.
2970 */
David Sterbaeece6a92017-02-10 19:04:32 +01002971 ret = write_all_supers(fs_info, 1);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002972 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002973 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04002974 btrfs_abort_transaction(trans, ret);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002975 goto out_wake_log_root;
2976 }
Yan Zheng7237f182009-01-21 12:54:03 -05002977
Chris Mason257c62e2009-10-13 13:21:08 -04002978 mutex_lock(&root->log_mutex);
2979 if (root->last_log_commit < log_transid)
2980 root->last_log_commit = log_transid;
2981 mutex_unlock(&root->log_mutex);
2982
Chris Mason12fcfd22009-03-24 10:24:20 -04002983out_wake_log_root:
Chris Mason570dd452016-10-27 10:42:20 -07002984 mutex_lock(&log_root_tree->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002985 btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
2986
Miao Xied1433de2014-02-20 18:08:59 +08002987 log_root_tree->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05002988 atomic_set(&log_root_tree->log_commit[index2], 0);
Miao Xied1433de2014-02-20 18:08:59 +08002989 mutex_unlock(&log_root_tree->log_mutex);
2990
David Sterba33a9eca2015-10-10 18:35:10 +02002991 /*
2992 * The barrier before waitqueue_active is implied by mutex_unlock
2993 */
Yan Zheng7237f182009-01-21 12:54:03 -05002994 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
2995 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04002996out:
Miao Xied1433de2014-02-20 18:08:59 +08002997 mutex_lock(&root->log_mutex);
Chris Mason570dd452016-10-27 10:42:20 -07002998 btrfs_remove_all_log_ctxs(root, index1, ret);
Miao Xied1433de2014-02-20 18:08:59 +08002999 root->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003000 atomic_set(&root->log_commit[index1], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003001 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003002
David Sterba33a9eca2015-10-10 18:35:10 +02003003 /*
3004 * The barrier before waitqueue_active is implied by mutex_unlock
3005 */
Yan Zheng7237f182009-01-21 12:54:03 -05003006 if (waitqueue_active(&root->log_commit_wait[index1]))
3007 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05003008 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003009}
3010
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003011static void free_log_tree(struct btrfs_trans_handle *trans,
3012 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04003013{
3014 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04003015 u64 start;
3016 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04003017 struct walk_control wc = {
3018 .free = 1,
3019 .process_func = process_one_buffer
3020 };
3021
Josef Bacik681ae502013-10-07 15:11:00 -04003022 ret = walk_log_tree(trans, log, &wc);
3023 /* I don't think this can happen but just in case */
3024 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003025 btrfs_abort_transaction(trans, ret);
Chris Masone02119d2008-09-05 16:13:11 -04003026
Chris Masond3977122009-01-05 21:25:51 -05003027 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04003028 ret = find_first_extent_bit(&log->dirty_log_pages,
Josef Bacike6138872012-09-27 17:07:30 -04003029 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW,
3030 NULL);
Chris Masond0c803c2008-09-11 16:17:57 -04003031 if (ret)
3032 break;
3033
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003034 clear_extent_bits(&log->dirty_log_pages, start, end,
David Sterba91166212016-04-26 23:54:39 +02003035 EXTENT_DIRTY | EXTENT_NEW);
Chris Masond0c803c2008-09-11 16:17:57 -04003036 }
3037
Josef Bacik2ab28f32012-10-12 15:27:49 -04003038 /*
3039 * We may have short-circuited the log tree with the full commit logic
3040 * and left ordered extents on our list, so clear these out to keep us
3041 * from leaking inodes and memory.
3042 */
3043 btrfs_free_logged_extents(log, 0);
3044 btrfs_free_logged_extents(log, 1);
3045
Yan Zheng7237f182009-01-21 12:54:03 -05003046 free_extent_buffer(log->node);
3047 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003048}
3049
3050/*
3051 * free all the extents used by the tree log. This should be called
3052 * at commit time of the full transaction
3053 */
3054int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
3055{
3056 if (root->log_root) {
3057 free_log_tree(trans, root->log_root);
3058 root->log_root = NULL;
3059 }
3060 return 0;
3061}
3062
3063int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
3064 struct btrfs_fs_info *fs_info)
3065{
3066 if (fs_info->log_root_tree) {
3067 free_log_tree(trans, fs_info->log_root_tree);
3068 fs_info->log_root_tree = NULL;
3069 }
Chris Masone02119d2008-09-05 16:13:11 -04003070 return 0;
3071}
3072
3073/*
Chris Masone02119d2008-09-05 16:13:11 -04003074 * If both a file and directory are logged, and unlinks or renames are
3075 * mixed in, we have a few interesting corners:
3076 *
3077 * create file X in dir Y
3078 * link file X to X.link in dir Y
3079 * fsync file X
3080 * unlink file X but leave X.link
3081 * fsync dir Y
3082 *
3083 * After a crash we would expect only X.link to exist. But file X
3084 * didn't get fsync'd again so the log has back refs for X and X.link.
3085 *
3086 * We solve this by removing directory entries and inode backrefs from the
3087 * log when a file that was logged in the current transaction is
3088 * unlinked. Any later fsync will include the updated log entries, and
3089 * we'll be able to reconstruct the proper directory items from backrefs.
3090 *
3091 * This optimizations allows us to avoid relogging the entire inode
3092 * or the entire directory.
3093 */
3094int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
3095 struct btrfs_root *root,
3096 const char *name, int name_len,
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003097 struct btrfs_inode *dir, u64 index)
Chris Masone02119d2008-09-05 16:13:11 -04003098{
3099 struct btrfs_root *log;
3100 struct btrfs_dir_item *di;
3101 struct btrfs_path *path;
3102 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003103 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003104 int bytes_del = 0;
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003105 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003106
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003107 if (dir->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003108 return 0;
3109
Chris Masone02119d2008-09-05 16:13:11 -04003110 ret = join_running_log_trans(root);
3111 if (ret)
3112 return 0;
3113
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003114 mutex_lock(&dir->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003115
3116 log = root->log_root;
3117 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003118 if (!path) {
3119 err = -ENOMEM;
3120 goto out_unlock;
3121 }
liubo2a29edc2011-01-26 06:22:08 +00003122
Li Zefan33345d012011-04-20 10:31:50 +08003123 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003124 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003125 if (IS_ERR(di)) {
3126 err = PTR_ERR(di);
3127 goto fail;
3128 }
3129 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003130 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3131 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003132 if (ret) {
3133 err = ret;
3134 goto fail;
3135 }
Chris Masone02119d2008-09-05 16:13:11 -04003136 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003137 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08003138 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003139 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003140 if (IS_ERR(di)) {
3141 err = PTR_ERR(di);
3142 goto fail;
3143 }
3144 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003145 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3146 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003147 if (ret) {
3148 err = ret;
3149 goto fail;
3150 }
Chris Masone02119d2008-09-05 16:13:11 -04003151 }
3152
3153 /* update the directory size in the log to reflect the names
3154 * we have removed
3155 */
3156 if (bytes_del) {
3157 struct btrfs_key key;
3158
Li Zefan33345d012011-04-20 10:31:50 +08003159 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04003160 key.offset = 0;
3161 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02003162 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003163
3164 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003165 if (ret < 0) {
3166 err = ret;
3167 goto fail;
3168 }
Chris Masone02119d2008-09-05 16:13:11 -04003169 if (ret == 0) {
3170 struct btrfs_inode_item *item;
3171 u64 i_size;
3172
3173 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3174 struct btrfs_inode_item);
3175 i_size = btrfs_inode_size(path->nodes[0], item);
3176 if (i_size > bytes_del)
3177 i_size -= bytes_del;
3178 else
3179 i_size = 0;
3180 btrfs_set_inode_size(path->nodes[0], item, i_size);
3181 btrfs_mark_buffer_dirty(path->nodes[0]);
3182 } else
3183 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003184 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003185 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003186fail:
Chris Masone02119d2008-09-05 16:13:11 -04003187 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003188out_unlock:
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003189 mutex_unlock(&dir->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003190 if (ret == -ENOSPC) {
Miao Xie995946d2014-04-02 19:51:06 +08003191 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003192 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003193 } else if (ret < 0)
Jeff Mahoney66642832016-06-10 18:19:25 -04003194 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003195
Chris Mason12fcfd22009-03-24 10:24:20 -04003196 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003197
Andi Kleen411fc6b2010-10-29 15:14:31 -04003198 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003199}
3200
3201/* see comments for btrfs_del_dir_entries_in_log */
3202int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
3203 struct btrfs_root *root,
3204 const char *name, int name_len,
Nikolay Borisova491abb2017-01-18 00:31:33 +02003205 struct btrfs_inode *inode, u64 dirid)
Chris Masone02119d2008-09-05 16:13:11 -04003206{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003207 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04003208 struct btrfs_root *log;
3209 u64 index;
3210 int ret;
3211
Nikolay Borisova491abb2017-01-18 00:31:33 +02003212 if (inode->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003213 return 0;
3214
Chris Masone02119d2008-09-05 16:13:11 -04003215 ret = join_running_log_trans(root);
3216 if (ret)
3217 return 0;
3218 log = root->log_root;
Nikolay Borisova491abb2017-01-18 00:31:33 +02003219 mutex_lock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003220
Nikolay Borisova491abb2017-01-18 00:31:33 +02003221 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04003222 dirid, &index);
Nikolay Borisova491abb2017-01-18 00:31:33 +02003223 mutex_unlock(&inode->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003224 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003225 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003226 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003227 } else if (ret < 0 && ret != -ENOENT)
Jeff Mahoney66642832016-06-10 18:19:25 -04003228 btrfs_abort_transaction(trans, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04003229 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003230
Chris Masone02119d2008-09-05 16:13:11 -04003231 return ret;
3232}
3233
3234/*
3235 * creates a range item in the log for 'dirid'. first_offset and
3236 * last_offset tell us which parts of the key space the log should
3237 * be considered authoritative for.
3238 */
3239static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
3240 struct btrfs_root *log,
3241 struct btrfs_path *path,
3242 int key_type, u64 dirid,
3243 u64 first_offset, u64 last_offset)
3244{
3245 int ret;
3246 struct btrfs_key key;
3247 struct btrfs_dir_log_item *item;
3248
3249 key.objectid = dirid;
3250 key.offset = first_offset;
3251 if (key_type == BTRFS_DIR_ITEM_KEY)
3252 key.type = BTRFS_DIR_LOG_ITEM_KEY;
3253 else
3254 key.type = BTRFS_DIR_LOG_INDEX_KEY;
3255 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003256 if (ret)
3257 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003258
3259 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3260 struct btrfs_dir_log_item);
3261 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
3262 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003263 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003264 return 0;
3265}
3266
3267/*
3268 * log all the items included in the current transaction for a given
3269 * directory. This also creates the range items in the log tree required
3270 * to replay anything deleted before the fsync
3271 */
3272static noinline int log_dir_items(struct btrfs_trans_handle *trans,
Nikolay Borisov684a5772017-01-18 00:31:41 +02003273 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003274 struct btrfs_path *path,
3275 struct btrfs_path *dst_path, int key_type,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003276 struct btrfs_log_ctx *ctx,
Chris Masone02119d2008-09-05 16:13:11 -04003277 u64 min_offset, u64 *last_offset_ret)
3278{
3279 struct btrfs_key min_key;
Chris Masone02119d2008-09-05 16:13:11 -04003280 struct btrfs_root *log = root->log_root;
3281 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003282 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003283 int ret;
3284 int i;
3285 int nritems;
3286 u64 first_offset = min_offset;
3287 u64 last_offset = (u64)-1;
Nikolay Borisov684a5772017-01-18 00:31:41 +02003288 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003289
3290 log = root->log_root;
Chris Masone02119d2008-09-05 16:13:11 -04003291
Li Zefan33345d012011-04-20 10:31:50 +08003292 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003293 min_key.type = key_type;
3294 min_key.offset = min_offset;
3295
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003296 ret = btrfs_search_forward(root, &min_key, path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003297
3298 /*
3299 * we didn't find anything from this transaction, see if there
3300 * is anything at all
3301 */
Li Zefan33345d012011-04-20 10:31:50 +08003302 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
3303 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003304 min_key.type = key_type;
3305 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02003306 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003307 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3308 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003309 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003310 return ret;
3311 }
Li Zefan33345d012011-04-20 10:31:50 +08003312 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003313
3314 /* if ret == 0 there are items for this type,
3315 * create a range to tell us the last key of this type.
3316 * otherwise, there are no items in this directory after
3317 * *min_offset, and we create a range to indicate that.
3318 */
3319 if (ret == 0) {
3320 struct btrfs_key tmp;
3321 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3322 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05003323 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04003324 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04003325 }
3326 goto done;
3327 }
3328
3329 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08003330 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003331 if (ret == 0) {
3332 struct btrfs_key tmp;
3333 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3334 if (key_type == tmp.type) {
3335 first_offset = tmp.offset;
3336 ret = overwrite_item(trans, log, dst_path,
3337 path->nodes[0], path->slots[0],
3338 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003339 if (ret) {
3340 err = ret;
3341 goto done;
3342 }
Chris Masone02119d2008-09-05 16:13:11 -04003343 }
3344 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003345 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003346
3347 /* find the first key from this transaction again */
3348 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303349 if (WARN_ON(ret != 0))
Chris Masone02119d2008-09-05 16:13:11 -04003350 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003351
3352 /*
3353 * we have a block from this transaction, log every item in it
3354 * from our directory
3355 */
Chris Masond3977122009-01-05 21:25:51 -05003356 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003357 struct btrfs_key tmp;
3358 src = path->nodes[0];
3359 nritems = btrfs_header_nritems(src);
3360 for (i = path->slots[0]; i < nritems; i++) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003361 struct btrfs_dir_item *di;
3362
Chris Masone02119d2008-09-05 16:13:11 -04003363 btrfs_item_key_to_cpu(src, &min_key, i);
3364
Li Zefan33345d012011-04-20 10:31:50 +08003365 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04003366 goto done;
3367 ret = overwrite_item(trans, log, dst_path, src, i,
3368 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003369 if (ret) {
3370 err = ret;
3371 goto done;
3372 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003373
3374 /*
3375 * We must make sure that when we log a directory entry,
3376 * the corresponding inode, after log replay, has a
3377 * matching link count. For example:
3378 *
3379 * touch foo
3380 * mkdir mydir
3381 * sync
3382 * ln foo mydir/bar
3383 * xfs_io -c "fsync" mydir
3384 * <crash>
3385 * <mount fs and log replay>
3386 *
3387 * Would result in a fsync log that when replayed, our
3388 * file inode would have a link count of 1, but we get
3389 * two directory entries pointing to the same inode.
3390 * After removing one of the names, it would not be
3391 * possible to remove the other name, which resulted
3392 * always in stale file handle errors, and would not
3393 * be possible to rmdir the parent directory, since
3394 * its i_size could never decrement to the value
3395 * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors.
3396 */
3397 di = btrfs_item_ptr(src, i, struct btrfs_dir_item);
3398 btrfs_dir_item_key_to_cpu(src, di, &tmp);
3399 if (ctx &&
3400 (btrfs_dir_transid(src, di) == trans->transid ||
3401 btrfs_dir_type(src, di) == BTRFS_FT_DIR) &&
3402 tmp.type != BTRFS_ROOT_ITEM_KEY)
3403 ctx->log_new_dentries = true;
Chris Masone02119d2008-09-05 16:13:11 -04003404 }
3405 path->slots[0] = nritems;
3406
3407 /*
3408 * look ahead to the next item and see if it is also
3409 * from this directory and from this transaction
3410 */
3411 ret = btrfs_next_leaf(root, path);
3412 if (ret == 1) {
3413 last_offset = (u64)-1;
3414 goto done;
3415 }
3416 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08003417 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04003418 last_offset = (u64)-1;
3419 goto done;
3420 }
3421 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
3422 ret = overwrite_item(trans, log, dst_path,
3423 path->nodes[0], path->slots[0],
3424 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003425 if (ret)
3426 err = ret;
3427 else
3428 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003429 goto done;
3430 }
3431 }
3432done:
David Sterbab3b4aa72011-04-21 01:20:15 +02003433 btrfs_release_path(path);
3434 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003435
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003436 if (err == 0) {
3437 *last_offset_ret = last_offset;
3438 /*
3439 * insert the log range keys to indicate where the log
3440 * is valid
3441 */
3442 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08003443 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003444 if (ret)
3445 err = ret;
3446 }
3447 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003448}
3449
3450/*
3451 * logging directories is very similar to logging inodes, We find all the items
3452 * from the current transaction and write them to the log.
3453 *
3454 * The recovery code scans the directory in the subvolume, and if it finds a
3455 * key in the range logged that is not present in the log tree, then it means
3456 * that dir entry was unlinked during the transaction.
3457 *
3458 * In order for that scan to work, we must include one key smaller than
3459 * the smallest logged by this transaction and one key larger than the largest
3460 * key logged by this transaction.
3461 */
3462static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003463 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003464 struct btrfs_path *path,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003465 struct btrfs_path *dst_path,
3466 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04003467{
3468 u64 min_key;
3469 u64 max_key;
3470 int ret;
3471 int key_type = BTRFS_DIR_ITEM_KEY;
3472
3473again:
3474 min_key = 0;
3475 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05003476 while (1) {
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003477 ret = log_dir_items(trans, root, inode, path, dst_path, key_type,
3478 ctx, min_key, &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003479 if (ret)
3480 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003481 if (max_key == (u64)-1)
3482 break;
3483 min_key = max_key + 1;
3484 }
3485
3486 if (key_type == BTRFS_DIR_ITEM_KEY) {
3487 key_type = BTRFS_DIR_INDEX_KEY;
3488 goto again;
3489 }
3490 return 0;
3491}
3492
3493/*
3494 * a helper function to drop items from the log before we relog an
3495 * inode. max_key_type indicates the highest item type to remove.
3496 * This cannot be run for file data extents because it does not
3497 * free the extents they point to.
3498 */
3499static int drop_objectid_items(struct btrfs_trans_handle *trans,
3500 struct btrfs_root *log,
3501 struct btrfs_path *path,
3502 u64 objectid, int max_key_type)
3503{
3504 int ret;
3505 struct btrfs_key key;
3506 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04003507 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003508
3509 key.objectid = objectid;
3510 key.type = max_key_type;
3511 key.offset = (u64)-1;
3512
Chris Masond3977122009-01-05 21:25:51 -05003513 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003514 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Josef Bacik36508602013-04-25 16:23:32 -04003515 BUG_ON(ret == 0); /* Logic error */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003516 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04003517 break;
3518
3519 if (path->slots[0] == 0)
3520 break;
3521
3522 path->slots[0]--;
3523 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3524 path->slots[0]);
3525
3526 if (found_key.objectid != objectid)
3527 break;
3528
Josef Bacik18ec90d2012-09-28 11:56:28 -04003529 found_key.offset = 0;
3530 found_key.type = 0;
3531 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
3532 &start_slot);
3533
3534 ret = btrfs_del_items(trans, log, path, start_slot,
3535 path->slots[0] - start_slot + 1);
3536 /*
3537 * If start slot isn't 0 then we don't need to re-search, we've
3538 * found the last guy with the objectid in this tree.
3539 */
3540 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00003541 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02003542 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003543 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003544 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04003545 if (ret > 0)
3546 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003547 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003548}
3549
Josef Bacik94edf4a2012-09-25 14:56:25 -04003550static void fill_inode_item(struct btrfs_trans_handle *trans,
3551 struct extent_buffer *leaf,
3552 struct btrfs_inode_item *item,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003553 struct inode *inode, int log_inode_only,
3554 u64 logged_isize)
Josef Bacik94edf4a2012-09-25 14:56:25 -04003555{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003556 struct btrfs_map_token token;
Josef Bacik94edf4a2012-09-25 14:56:25 -04003557
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003558 btrfs_init_map_token(&token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003559
3560 if (log_inode_only) {
3561 /* set the generation to zero so the recover code
3562 * can tell the difference between an logging
3563 * just to say 'this inode exists' and a logging
3564 * to say 'update this inode with these values'
3565 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003566 btrfs_set_token_inode_generation(leaf, item, 0, &token);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003567 btrfs_set_token_inode_size(leaf, item, logged_isize, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003568 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003569 btrfs_set_token_inode_generation(leaf, item,
3570 BTRFS_I(inode)->generation,
3571 &token);
3572 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003573 }
3574
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003575 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3576 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3577 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3578 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3579
David Sterbaa937b972014-12-12 17:39:12 +01003580 btrfs_set_token_timespec_sec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003581 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003582 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003583 inode->i_atime.tv_nsec, &token);
3584
David Sterbaa937b972014-12-12 17:39:12 +01003585 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003586 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003587 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003588 inode->i_mtime.tv_nsec, &token);
3589
David Sterbaa937b972014-12-12 17:39:12 +01003590 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003591 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003592 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003593 inode->i_ctime.tv_nsec, &token);
3594
3595 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3596 &token);
3597
3598 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3599 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3600 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3601 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3602 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003603}
3604
Josef Bacika95249b2012-10-11 16:17:34 -04003605static int log_inode_item(struct btrfs_trans_handle *trans,
3606 struct btrfs_root *log, struct btrfs_path *path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003607 struct btrfs_inode *inode)
Josef Bacika95249b2012-10-11 16:17:34 -04003608{
3609 struct btrfs_inode_item *inode_item;
Josef Bacika95249b2012-10-11 16:17:34 -04003610 int ret;
3611
Filipe David Borba Mananaefd0c402013-10-07 21:20:44 +01003612 ret = btrfs_insert_empty_item(trans, log, path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003613 &inode->location, sizeof(*inode_item));
Josef Bacika95249b2012-10-11 16:17:34 -04003614 if (ret && ret != -EEXIST)
3615 return ret;
3616 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3617 struct btrfs_inode_item);
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003618 fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode,
3619 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04003620 btrfs_release_path(path);
3621 return 0;
3622}
3623
Chris Mason31ff1cd2008-09-11 16:17:57 -04003624static noinline int copy_items(struct btrfs_trans_handle *trans,
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003625 struct btrfs_inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003626 struct btrfs_path *dst_path,
Josef Bacik16e75492013-10-22 12:18:51 -04003627 struct btrfs_path *src_path, u64 *last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003628 int start_slot, int nr, int inode_only,
3629 u64 logged_isize)
Chris Mason31ff1cd2008-09-11 16:17:57 -04003630{
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003631 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003632 unsigned long src_offset;
3633 unsigned long dst_offset;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003634 struct btrfs_root *log = inode->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003635 struct btrfs_file_extent_item *extent;
3636 struct btrfs_inode_item *inode_item;
Josef Bacik16e75492013-10-22 12:18:51 -04003637 struct extent_buffer *src = src_path->nodes[0];
3638 struct btrfs_key first_key, last_key, key;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003639 int ret;
3640 struct btrfs_key *ins_keys;
3641 u32 *ins_sizes;
3642 char *ins_data;
3643 int i;
Chris Masond20f7042008-12-08 16:58:54 -05003644 struct list_head ordered_sums;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003645 int skip_csum = inode->flags & BTRFS_INODE_NODATASUM;
Josef Bacik16e75492013-10-22 12:18:51 -04003646 bool has_extents = false;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003647 bool need_find_last_extent = true;
Josef Bacik16e75492013-10-22 12:18:51 -04003648 bool done = false;
Chris Masond20f7042008-12-08 16:58:54 -05003649
3650 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003651
3652 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3653 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00003654 if (!ins_data)
3655 return -ENOMEM;
3656
Josef Bacik16e75492013-10-22 12:18:51 -04003657 first_key.objectid = (u64)-1;
3658
Chris Mason31ff1cd2008-09-11 16:17:57 -04003659 ins_sizes = (u32 *)ins_data;
3660 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3661
3662 for (i = 0; i < nr; i++) {
3663 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3664 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3665 }
3666 ret = btrfs_insert_empty_items(trans, log, dst_path,
3667 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003668 if (ret) {
3669 kfree(ins_data);
3670 return ret;
3671 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003672
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003673 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003674 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3675 dst_path->slots[0]);
3676
3677 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3678
Matthias Kaehlcke0dde10b2017-07-27 14:30:23 -07003679 if (i == nr - 1)
Josef Bacik16e75492013-10-22 12:18:51 -04003680 last_key = ins_keys[i];
3681
Josef Bacik94edf4a2012-09-25 14:56:25 -04003682 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003683 inode_item = btrfs_item_ptr(dst_path->nodes[0],
3684 dst_path->slots[0],
3685 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003686 fill_inode_item(trans, dst_path->nodes[0], inode_item,
David Sterbaf85b7372017-01-20 14:54:07 +01003687 &inode->vfs_inode,
3688 inode_only == LOG_INODE_EXISTS,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003689 logged_isize);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003690 } else {
3691 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3692 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003693 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04003694
Josef Bacik16e75492013-10-22 12:18:51 -04003695 /*
3696 * We set need_find_last_extent here in case we know we were
3697 * processing other items and then walk into the first extent in
3698 * the inode. If we don't hit an extent then nothing changes,
3699 * we'll do the last search the next time around.
3700 */
3701 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) {
3702 has_extents = true;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003703 if (first_key.objectid == (u64)-1)
Josef Bacik16e75492013-10-22 12:18:51 -04003704 first_key = ins_keys[i];
3705 } else {
3706 need_find_last_extent = false;
3707 }
3708
Chris Mason31ff1cd2008-09-11 16:17:57 -04003709 /* take a reference on file data extents so that truncates
3710 * or deletes of this inode don't have to relog the inode
3711 * again
3712 */
David Sterba962a2982014-06-04 18:41:45 +02003713 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY &&
Liu Bod2794402012-08-29 01:07:56 -06003714 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003715 int found_type;
3716 extent = btrfs_item_ptr(src, start_slot + i,
3717 struct btrfs_file_extent_item);
3718
liubo8e531cd2011-05-06 10:36:09 +08003719 if (btrfs_file_extent_generation(src, extent) < trans->transid)
3720 continue;
3721
Chris Mason31ff1cd2008-09-11 16:17:57 -04003722 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04003723 if (found_type == BTRFS_FILE_EXTENT_REG) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003724 u64 ds, dl, cs, cl;
3725 ds = btrfs_file_extent_disk_bytenr(src,
3726 extent);
3727 /* ds == 0 is a hole */
3728 if (ds == 0)
3729 continue;
3730
3731 dl = btrfs_file_extent_disk_num_bytes(src,
3732 extent);
3733 cs = btrfs_file_extent_offset(src, extent);
3734 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07003735 extent);
Chris Mason580afd72008-12-08 19:15:39 -05003736 if (btrfs_file_extent_compression(src,
3737 extent)) {
3738 cs = 0;
3739 cl = dl;
3740 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003741
3742 ret = btrfs_lookup_csums_range(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003743 fs_info->csum_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003744 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01003745 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -04003746 if (ret) {
3747 btrfs_release_path(dst_path);
3748 kfree(ins_data);
3749 return ret;
3750 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003751 }
3752 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003753 }
3754
3755 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003756 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003757 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05003758
3759 /*
3760 * we have to do this after the loop above to avoid changing the
3761 * log tree while trying to change the log tree.
3762 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003763 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05003764 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05003765 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3766 struct btrfs_ordered_sum,
3767 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003768 if (!ret)
3769 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05003770 list_del(&sums->list);
3771 kfree(sums);
3772 }
Josef Bacik16e75492013-10-22 12:18:51 -04003773
3774 if (!has_extents)
3775 return ret;
3776
Filipe Manana74121f7c2014-08-07 12:00:44 +01003777 if (need_find_last_extent && *last_extent == first_key.offset) {
3778 /*
3779 * We don't have any leafs between our current one and the one
3780 * we processed before that can have file extent items for our
3781 * inode (and have a generation number smaller than our current
3782 * transaction id).
3783 */
3784 need_find_last_extent = false;
3785 }
3786
Josef Bacik16e75492013-10-22 12:18:51 -04003787 /*
3788 * Because we use btrfs_search_forward we could skip leaves that were
3789 * not modified and then assume *last_extent is valid when it really
3790 * isn't. So back up to the previous leaf and read the end of the last
3791 * extent before we go and fill in holes.
3792 */
3793 if (need_find_last_extent) {
3794 u64 len;
3795
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003796 ret = btrfs_prev_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003797 if (ret < 0)
3798 return ret;
3799 if (ret)
3800 goto fill_holes;
3801 if (src_path->slots[0])
3802 src_path->slots[0]--;
3803 src = src_path->nodes[0];
3804 btrfs_item_key_to_cpu(src, &key, src_path->slots[0]);
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003805 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003806 key.type != BTRFS_EXTENT_DATA_KEY)
3807 goto fill_holes;
3808 extent = btrfs_item_ptr(src, src_path->slots[0],
3809 struct btrfs_file_extent_item);
3810 if (btrfs_file_extent_type(src, extent) ==
3811 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003812 len = btrfs_file_extent_inline_len(src,
3813 src_path->slots[0],
3814 extent);
Josef Bacik16e75492013-10-22 12:18:51 -04003815 *last_extent = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003816 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003817 } else {
3818 len = btrfs_file_extent_num_bytes(src, extent);
3819 *last_extent = key.offset + len;
3820 }
3821 }
3822fill_holes:
3823 /* So we did prev_leaf, now we need to move to the next leaf, but a few
3824 * things could have happened
3825 *
3826 * 1) A merge could have happened, so we could currently be on a leaf
3827 * that holds what we were copying in the first place.
3828 * 2) A split could have happened, and now not all of the items we want
3829 * are on the same leaf.
3830 *
3831 * So we need to adjust how we search for holes, we need to drop the
3832 * path and re-search for the first extent key we found, and then walk
3833 * forward until we hit the last one we copied.
3834 */
3835 if (need_find_last_extent) {
3836 /* btrfs_prev_leaf could return 1 without releasing the path */
3837 btrfs_release_path(src_path);
David Sterbaf85b7372017-01-20 14:54:07 +01003838 ret = btrfs_search_slot(NULL, inode->root, &first_key,
3839 src_path, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04003840 if (ret < 0)
3841 return ret;
3842 ASSERT(ret == 0);
3843 src = src_path->nodes[0];
3844 i = src_path->slots[0];
3845 } else {
3846 i = start_slot;
3847 }
3848
3849 /*
3850 * Ok so here we need to go through and fill in any holes we may have
3851 * to make sure that holes are punched for those areas in case they had
3852 * extents previously.
3853 */
3854 while (!done) {
3855 u64 offset, len;
3856 u64 extent_end;
3857
3858 if (i >= btrfs_header_nritems(src_path->nodes[0])) {
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003859 ret = btrfs_next_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003860 if (ret < 0)
3861 return ret;
3862 ASSERT(ret == 0);
3863 src = src_path->nodes[0];
3864 i = 0;
3865 }
3866
3867 btrfs_item_key_to_cpu(src, &key, i);
3868 if (!btrfs_comp_cpu_keys(&key, &last_key))
3869 done = true;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003870 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003871 key.type != BTRFS_EXTENT_DATA_KEY) {
3872 i++;
3873 continue;
3874 }
3875 extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
3876 if (btrfs_file_extent_type(src, extent) ==
3877 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003878 len = btrfs_file_extent_inline_len(src, i, extent);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003879 extent_end = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003880 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003881 } else {
3882 len = btrfs_file_extent_num_bytes(src, extent);
3883 extent_end = key.offset + len;
3884 }
3885 i++;
3886
3887 if (*last_extent == key.offset) {
3888 *last_extent = extent_end;
3889 continue;
3890 }
3891 offset = *last_extent;
3892 len = key.offset - *last_extent;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003893 ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01003894 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04003895 if (ret)
3896 break;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003897 *last_extent = extent_end;
Josef Bacik16e75492013-10-22 12:18:51 -04003898 }
3899 /*
3900 * Need to let the callers know we dropped the path so they should
3901 * re-search.
3902 */
3903 if (!ret && need_find_last_extent)
3904 ret = 1;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003905 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003906}
3907
Josef Bacik5dc562c2012-08-17 13:14:17 -04003908static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
3909{
3910 struct extent_map *em1, *em2;
3911
3912 em1 = list_entry(a, struct extent_map, list);
3913 em2 = list_entry(b, struct extent_map, list);
3914
3915 if (em1->start < em2->start)
3916 return -1;
3917 else if (em1->start > em2->start)
3918 return 1;
3919 return 0;
3920}
3921
Filipe Manana8407f552014-09-05 15:14:39 +01003922static int wait_ordered_extents(struct btrfs_trans_handle *trans,
3923 struct inode *inode,
3924 struct btrfs_root *root,
3925 const struct extent_map *em,
3926 const struct list_head *logged_list,
3927 bool *ordered_io_error)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003928{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003929 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003930 struct btrfs_ordered_extent *ordered;
Filipe Manana8407f552014-09-05 15:14:39 +01003931 struct btrfs_root *log = root->log_root;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003932 u64 mod_start = em->mod_start;
3933 u64 mod_len = em->mod_len;
Filipe Manana8407f552014-09-05 15:14:39 +01003934 const bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003935 u64 csum_offset;
3936 u64 csum_len;
Filipe Manana8407f552014-09-05 15:14:39 +01003937 LIST_HEAD(ordered_sums);
3938 int ret = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003939
Filipe Manana8407f552014-09-05 15:14:39 +01003940 *ordered_io_error = false;
Josef Bacik70c8a912012-10-11 16:54:30 -04003941
Filipe Manana8407f552014-09-05 15:14:39 +01003942 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
3943 em->block_start == EXTENT_MAP_HOLE)
Josef Bacik70c8a912012-10-11 16:54:30 -04003944 return 0;
3945
Josef Bacik2ab28f32012-10-12 15:27:49 -04003946 /*
Filipe Manana8407f552014-09-05 15:14:39 +01003947 * Wait far any ordered extent that covers our extent map. If it
3948 * finishes without an error, first check and see if our csums are on
3949 * our outstanding ordered extents.
Josef Bacik2ab28f32012-10-12 15:27:49 -04003950 */
Miao Xie827463c2014-01-14 20:31:51 +08003951 list_for_each_entry(ordered, logged_list, log_list) {
Josef Bacik2ab28f32012-10-12 15:27:49 -04003952 struct btrfs_ordered_sum *sum;
3953
3954 if (!mod_len)
3955 break;
3956
Josef Bacik2ab28f32012-10-12 15:27:49 -04003957 if (ordered->file_offset + ordered->len <= mod_start ||
3958 mod_start + mod_len <= ordered->file_offset)
3959 continue;
3960
Filipe Manana8407f552014-09-05 15:14:39 +01003961 if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) &&
3962 !test_bit(BTRFS_ORDERED_IOERR, &ordered->flags) &&
3963 !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
3964 const u64 start = ordered->file_offset;
3965 const u64 end = ordered->file_offset + ordered->len - 1;
3966
3967 WARN_ON(ordered->inode != inode);
3968 filemap_fdatawrite_range(inode->i_mapping, start, end);
3969 }
3970
3971 wait_event(ordered->wait,
3972 (test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) ||
3973 test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)));
3974
3975 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)) {
Filipe Mananab38ef712014-11-13 17:01:45 +00003976 /*
3977 * Clear the AS_EIO/AS_ENOSPC flags from the inode's
3978 * i_mapping flags, so that the next fsync won't get
3979 * an outdated io error too.
3980 */
Miklos Szeredif0312212016-09-16 12:44:21 +02003981 filemap_check_errors(inode->i_mapping);
Filipe Manana8407f552014-09-05 15:14:39 +01003982 *ordered_io_error = true;
3983 break;
3984 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04003985 /*
3986 * We are going to copy all the csums on this ordered extent, so
3987 * go ahead and adjust mod_start and mod_len in case this
3988 * ordered extent has already been logged.
3989 */
3990 if (ordered->file_offset > mod_start) {
3991 if (ordered->file_offset + ordered->len >=
3992 mod_start + mod_len)
3993 mod_len = ordered->file_offset - mod_start;
3994 /*
3995 * If we have this case
3996 *
3997 * |--------- logged extent ---------|
3998 * |----- ordered extent ----|
3999 *
4000 * Just don't mess with mod_start and mod_len, we'll
4001 * just end up logging more csums than we need and it
4002 * will be ok.
4003 */
4004 } else {
4005 if (ordered->file_offset + ordered->len <
4006 mod_start + mod_len) {
4007 mod_len = (mod_start + mod_len) -
4008 (ordered->file_offset + ordered->len);
4009 mod_start = ordered->file_offset +
4010 ordered->len;
4011 } else {
4012 mod_len = 0;
4013 }
4014 }
4015
Filipe Manana8407f552014-09-05 15:14:39 +01004016 if (skip_csum)
4017 continue;
4018
Josef Bacik2ab28f32012-10-12 15:27:49 -04004019 /*
4020 * To keep us from looping for the above case of an ordered
4021 * extent that falls inside of the logged extent.
4022 */
4023 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
4024 &ordered->flags))
4025 continue;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004026
Josef Bacik2ab28f32012-10-12 15:27:49 -04004027 list_for_each_entry(sum, &ordered->list, list) {
4028 ret = btrfs_csum_file_blocks(trans, log, sum);
Miao Xie827463c2014-01-14 20:31:51 +08004029 if (ret)
Filipe Manana8407f552014-09-05 15:14:39 +01004030 break;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004031 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004032 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004033
Filipe Manana8407f552014-09-05 15:14:39 +01004034 if (*ordered_io_error || !mod_len || ret || skip_csum)
Josef Bacik2ab28f32012-10-12 15:27:49 -04004035 return ret;
4036
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004037 if (em->compress_type) {
4038 csum_offset = 0;
Filipe Manana8407f552014-09-05 15:14:39 +01004039 csum_len = max(em->block_len, em->orig_block_len);
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004040 } else {
4041 csum_offset = mod_start - em->start;
4042 csum_len = mod_len;
4043 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004044
Josef Bacik70c8a912012-10-11 16:54:30 -04004045 /* block start is already adjusted for the file extent offset. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004046 ret = btrfs_lookup_csums_range(fs_info->csum_root,
Josef Bacik70c8a912012-10-11 16:54:30 -04004047 em->block_start + csum_offset,
4048 em->block_start + csum_offset +
4049 csum_len - 1, &ordered_sums, 0);
4050 if (ret)
4051 return ret;
4052
4053 while (!list_empty(&ordered_sums)) {
4054 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4055 struct btrfs_ordered_sum,
4056 list);
4057 if (!ret)
4058 ret = btrfs_csum_file_blocks(trans, log, sums);
4059 list_del(&sums->list);
4060 kfree(sums);
4061 }
4062
4063 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004064}
4065
Filipe Manana8407f552014-09-05 15:14:39 +01004066static int log_one_extent(struct btrfs_trans_handle *trans,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004067 struct btrfs_inode *inode, struct btrfs_root *root,
Filipe Manana8407f552014-09-05 15:14:39 +01004068 const struct extent_map *em,
4069 struct btrfs_path *path,
4070 const struct list_head *logged_list,
4071 struct btrfs_log_ctx *ctx)
4072{
4073 struct btrfs_root *log = root->log_root;
4074 struct btrfs_file_extent_item *fi;
4075 struct extent_buffer *leaf;
4076 struct btrfs_map_token token;
4077 struct btrfs_key key;
4078 u64 extent_offset = em->start - em->orig_start;
4079 u64 block_len;
4080 int ret;
4081 int extent_inserted = 0;
4082 bool ordered_io_err = false;
4083
David Sterbaf85b7372017-01-20 14:54:07 +01004084 ret = wait_ordered_extents(trans, &inode->vfs_inode, root, em,
4085 logged_list, &ordered_io_err);
Filipe Manana8407f552014-09-05 15:14:39 +01004086 if (ret)
4087 return ret;
4088
4089 if (ordered_io_err) {
4090 ctx->io_err = -EIO;
Liu Boebb70442017-11-21 14:35:40 -07004091 return ctx->io_err;
Filipe Manana8407f552014-09-05 15:14:39 +01004092 }
4093
4094 btrfs_init_map_token(&token);
4095
Nikolay Borisov9d122622017-01-18 00:31:40 +02004096 ret = __btrfs_drop_extents(trans, log, &inode->vfs_inode, path, em->start,
Filipe Manana8407f552014-09-05 15:14:39 +01004097 em->start + em->len, NULL, 0, 1,
4098 sizeof(*fi), &extent_inserted);
4099 if (ret)
4100 return ret;
4101
4102 if (!extent_inserted) {
Nikolay Borisov9d122622017-01-18 00:31:40 +02004103 key.objectid = btrfs_ino(inode);
Filipe Manana8407f552014-09-05 15:14:39 +01004104 key.type = BTRFS_EXTENT_DATA_KEY;
4105 key.offset = em->start;
4106
4107 ret = btrfs_insert_empty_item(trans, log, path, &key,
4108 sizeof(*fi));
4109 if (ret)
4110 return ret;
4111 }
4112 leaf = path->nodes[0];
4113 fi = btrfs_item_ptr(leaf, path->slots[0],
4114 struct btrfs_file_extent_item);
4115
Josef Bacik50d9aa92014-11-21 14:52:38 -05004116 btrfs_set_token_file_extent_generation(leaf, fi, trans->transid,
Filipe Manana8407f552014-09-05 15:14:39 +01004117 &token);
4118 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4119 btrfs_set_token_file_extent_type(leaf, fi,
4120 BTRFS_FILE_EXTENT_PREALLOC,
4121 &token);
4122 else
4123 btrfs_set_token_file_extent_type(leaf, fi,
4124 BTRFS_FILE_EXTENT_REG,
4125 &token);
4126
4127 block_len = max(em->block_len, em->orig_block_len);
4128 if (em->compress_type != BTRFS_COMPRESS_NONE) {
4129 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4130 em->block_start,
4131 &token);
4132 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4133 &token);
4134 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
4135 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4136 em->block_start -
4137 extent_offset, &token);
4138 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4139 &token);
4140 } else {
4141 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
4142 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
4143 &token);
4144 }
4145
4146 btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token);
4147 btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
4148 btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
4149 btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
4150 &token);
4151 btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
4152 btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
4153 btrfs_mark_buffer_dirty(leaf);
4154
4155 btrfs_release_path(path);
4156
4157 return ret;
4158}
4159
Josef Bacik5dc562c2012-08-17 13:14:17 -04004160static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
4161 struct btrfs_root *root,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004162 struct btrfs_inode *inode,
Miao Xie827463c2014-01-14 20:31:51 +08004163 struct btrfs_path *path,
Filipe Manana8407f552014-09-05 15:14:39 +01004164 struct list_head *logged_list,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00004165 struct btrfs_log_ctx *ctx,
4166 const u64 start,
4167 const u64 end)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004168{
Josef Bacik5dc562c2012-08-17 13:14:17 -04004169 struct extent_map *em, *n;
4170 struct list_head extents;
Nikolay Borisov9d122622017-01-18 00:31:40 +02004171 struct extent_map_tree *tree = &inode->extent_tree;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004172 u64 logged_start, logged_end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004173 u64 test_gen;
4174 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004175 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004176
4177 INIT_LIST_HEAD(&extents);
4178
Nikolay Borisov9d122622017-01-18 00:31:40 +02004179 down_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004180 write_lock(&tree->lock);
4181 test_gen = root->fs_info->last_trans_committed;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004182 logged_start = start;
4183 logged_end = end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004184
4185 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
4186 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004187 /*
4188 * Just an arbitrary number, this can be really CPU intensive
4189 * once we start getting a lot of extents, and really once we
4190 * have a bunch of extents we just want to commit since it will
4191 * be faster.
4192 */
4193 if (++num > 32768) {
4194 list_del_init(&tree->modified_extents);
4195 ret = -EFBIG;
4196 goto process;
4197 }
4198
Josef Bacik5dc562c2012-08-17 13:14:17 -04004199 if (em->generation <= test_gen)
4200 continue;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004201
4202 if (em->start < logged_start)
4203 logged_start = em->start;
4204 if ((em->start + em->len - 1) > logged_end)
4205 logged_end = em->start + em->len - 1;
4206
Josef Bacikff44c6e2012-09-14 12:59:20 -04004207 /* Need a ref to keep it from getting evicted from cache */
Elena Reshetova490b54d2017-03-03 10:55:12 +02004208 refcount_inc(&em->refs);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004209 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004210 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004211 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004212 }
4213
4214 list_sort(NULL, &extents, extent_cmp);
Josef Bacik8c6c5922017-08-29 10:11:39 -04004215 btrfs_get_logged_extents(inode, logged_list, logged_start, logged_end);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004216 /*
4217 * Some ordered extents started by fsync might have completed
4218 * before we could collect them into the list logged_list, which
4219 * means they're gone, not in our logged_list nor in the inode's
4220 * ordered tree. We want the application/user space to know an
4221 * error happened while attempting to persist file data so that
4222 * it can take proper action. If such error happened, we leave
4223 * without writing to the log tree and the fsync must report the
4224 * file data write error and not commit the current transaction.
4225 */
Nikolay Borisov9d122622017-01-18 00:31:40 +02004226 ret = filemap_check_errors(inode->vfs_inode.i_mapping);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004227 if (ret)
4228 ctx->io_err = ret;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004229process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04004230 while (!list_empty(&extents)) {
4231 em = list_entry(extents.next, struct extent_map, list);
4232
4233 list_del_init(&em->list);
4234
4235 /*
4236 * If we had an error we just need to delete everybody from our
4237 * private list.
4238 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04004239 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05004240 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004241 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004242 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04004243 }
4244
4245 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004246
Filipe Manana8407f552014-09-05 15:14:39 +01004247 ret = log_one_extent(trans, inode, root, em, path, logged_list,
4248 ctx);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004249 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05004250 clear_em_logging(tree, em);
4251 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004252 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04004253 WARN_ON(!list_empty(&extents));
4254 write_unlock(&tree->lock);
Nikolay Borisov9d122622017-01-18 00:31:40 +02004255 up_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004256
Josef Bacik5dc562c2012-08-17 13:14:17 -04004257 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004258 return ret;
4259}
4260
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004261static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004262 struct btrfs_path *path, u64 *size_ret)
4263{
4264 struct btrfs_key key;
4265 int ret;
4266
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004267 key.objectid = btrfs_ino(inode);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004268 key.type = BTRFS_INODE_ITEM_KEY;
4269 key.offset = 0;
4270
4271 ret = btrfs_search_slot(NULL, log, &key, path, 0, 0);
4272 if (ret < 0) {
4273 return ret;
4274 } else if (ret > 0) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00004275 *size_ret = 0;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004276 } else {
4277 struct btrfs_inode_item *item;
4278
4279 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4280 struct btrfs_inode_item);
4281 *size_ret = btrfs_inode_size(path->nodes[0], item);
4282 }
4283
4284 btrfs_release_path(path);
4285 return 0;
4286}
4287
Filipe Manana36283bf2015-06-20 00:44:51 +01004288/*
4289 * At the moment we always log all xattrs. This is to figure out at log replay
4290 * time which xattrs must have their deletion replayed. If a xattr is missing
4291 * in the log tree and exists in the fs/subvol tree, we delete it. This is
4292 * because if a xattr is deleted, the inode is fsynced and a power failure
4293 * happens, causing the log to be replayed the next time the fs is mounted,
4294 * we want the xattr to not exist anymore (same behaviour as other filesystems
4295 * with a journal, ext3/4, xfs, f2fs, etc).
4296 */
4297static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans,
4298 struct btrfs_root *root,
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004299 struct btrfs_inode *inode,
Filipe Manana36283bf2015-06-20 00:44:51 +01004300 struct btrfs_path *path,
4301 struct btrfs_path *dst_path)
4302{
4303 int ret;
4304 struct btrfs_key key;
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004305 const u64 ino = btrfs_ino(inode);
Filipe Manana36283bf2015-06-20 00:44:51 +01004306 int ins_nr = 0;
4307 int start_slot = 0;
4308
4309 key.objectid = ino;
4310 key.type = BTRFS_XATTR_ITEM_KEY;
4311 key.offset = 0;
4312
4313 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4314 if (ret < 0)
4315 return ret;
4316
4317 while (true) {
4318 int slot = path->slots[0];
4319 struct extent_buffer *leaf = path->nodes[0];
4320 int nritems = btrfs_header_nritems(leaf);
4321
4322 if (slot >= nritems) {
4323 if (ins_nr > 0) {
4324 u64 last_extent = 0;
4325
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004326 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004327 &last_extent, start_slot,
4328 ins_nr, 1, 0);
4329 /* can't be 1, extent items aren't processed */
4330 ASSERT(ret <= 0);
4331 if (ret < 0)
4332 return ret;
4333 ins_nr = 0;
4334 }
4335 ret = btrfs_next_leaf(root, path);
4336 if (ret < 0)
4337 return ret;
4338 else if (ret > 0)
4339 break;
4340 continue;
4341 }
4342
4343 btrfs_item_key_to_cpu(leaf, &key, slot);
4344 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY)
4345 break;
4346
4347 if (ins_nr == 0)
4348 start_slot = slot;
4349 ins_nr++;
4350 path->slots[0]++;
4351 cond_resched();
4352 }
4353 if (ins_nr > 0) {
4354 u64 last_extent = 0;
4355
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004356 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004357 &last_extent, start_slot,
4358 ins_nr, 1, 0);
4359 /* can't be 1, extent items aren't processed */
4360 ASSERT(ret <= 0);
4361 if (ret < 0)
4362 return ret;
4363 }
4364
4365 return 0;
4366}
4367
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004368/*
4369 * If the no holes feature is enabled we need to make sure any hole between the
4370 * last extent and the i_size of our inode is explicitly marked in the log. This
4371 * is to make sure that doing something like:
4372 *
4373 * 1) create file with 128Kb of data
4374 * 2) truncate file to 64Kb
4375 * 3) truncate file to 256Kb
4376 * 4) fsync file
4377 * 5) <crash/power failure>
4378 * 6) mount fs and trigger log replay
4379 *
4380 * Will give us a file with a size of 256Kb, the first 64Kb of data match what
4381 * the file had in its first 64Kb of data at step 1 and the last 192Kb of the
4382 * file correspond to a hole. The presence of explicit holes in a log tree is
4383 * what guarantees that log replay will remove/adjust file extent items in the
4384 * fs/subvol tree.
4385 *
4386 * Here we do not need to care about holes between extents, that is already done
4387 * by copy_items(). We also only need to do this in the full sync path, where we
4388 * lookup for extents from the fs/subvol tree only. In the fast path case, we
4389 * lookup the list of modified extent maps and if any represents a hole, we
4390 * insert a corresponding extent representing a hole in the log tree.
4391 */
4392static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans,
4393 struct btrfs_root *root,
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004394 struct btrfs_inode *inode,
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004395 struct btrfs_path *path)
4396{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004397 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004398 int ret;
4399 struct btrfs_key key;
4400 u64 hole_start;
4401 u64 hole_size;
4402 struct extent_buffer *leaf;
4403 struct btrfs_root *log = root->log_root;
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004404 const u64 ino = btrfs_ino(inode);
4405 const u64 i_size = i_size_read(&inode->vfs_inode);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004406
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004407 if (!btrfs_fs_incompat(fs_info, NO_HOLES))
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004408 return 0;
4409
4410 key.objectid = ino;
4411 key.type = BTRFS_EXTENT_DATA_KEY;
4412 key.offset = (u64)-1;
4413
4414 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4415 ASSERT(ret != 0);
4416 if (ret < 0)
4417 return ret;
4418
4419 ASSERT(path->slots[0] > 0);
4420 path->slots[0]--;
4421 leaf = path->nodes[0];
4422 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4423
4424 if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) {
4425 /* inode does not have any extents */
4426 hole_start = 0;
4427 hole_size = i_size;
4428 } else {
4429 struct btrfs_file_extent_item *extent;
4430 u64 len;
4431
4432 /*
4433 * If there's an extent beyond i_size, an explicit hole was
4434 * already inserted by copy_items().
4435 */
4436 if (key.offset >= i_size)
4437 return 0;
4438
4439 extent = btrfs_item_ptr(leaf, path->slots[0],
4440 struct btrfs_file_extent_item);
4441
4442 if (btrfs_file_extent_type(leaf, extent) ==
4443 BTRFS_FILE_EXTENT_INLINE) {
4444 len = btrfs_file_extent_inline_len(leaf,
4445 path->slots[0],
4446 extent);
Filipe Manana6399fb52017-07-28 15:22:36 +01004447 ASSERT(len == i_size ||
4448 (len == fs_info->sectorsize &&
4449 btrfs_file_extent_compression(leaf, extent) !=
4450 BTRFS_COMPRESS_NONE));
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004451 return 0;
4452 }
4453
4454 len = btrfs_file_extent_num_bytes(leaf, extent);
4455 /* Last extent goes beyond i_size, no need to log a hole. */
4456 if (key.offset + len > i_size)
4457 return 0;
4458 hole_start = key.offset + len;
4459 hole_size = i_size - hole_start;
4460 }
4461 btrfs_release_path(path);
4462
4463 /* Last extent ends at i_size. */
4464 if (hole_size == 0)
4465 return 0;
4466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004467 hole_size = ALIGN(hole_size, fs_info->sectorsize);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004468 ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0,
4469 hole_size, 0, hole_size, 0, 0, 0);
4470 return ret;
4471}
4472
Filipe Manana56f23fd2016-03-30 23:37:21 +01004473/*
4474 * When we are logging a new inode X, check if it doesn't have a reference that
4475 * matches the reference from some other inode Y created in a past transaction
4476 * and that was renamed in the current transaction. If we don't do this, then at
4477 * log replay time we can lose inode Y (and all its files if it's a directory):
4478 *
4479 * mkdir /mnt/x
4480 * echo "hello world" > /mnt/x/foobar
4481 * sync
4482 * mv /mnt/x /mnt/y
4483 * mkdir /mnt/x # or touch /mnt/x
4484 * xfs_io -c fsync /mnt/x
4485 * <power fail>
4486 * mount fs, trigger log replay
4487 *
4488 * After the log replay procedure, we would lose the first directory and all its
4489 * files (file foobar).
4490 * For the case where inode Y is not a directory we simply end up losing it:
4491 *
4492 * echo "123" > /mnt/foo
4493 * sync
4494 * mv /mnt/foo /mnt/bar
4495 * echo "abc" > /mnt/foo
4496 * xfs_io -c fsync /mnt/foo
4497 * <power fail>
4498 *
4499 * We also need this for cases where a snapshot entry is replaced by some other
4500 * entry (file or directory) otherwise we end up with an unreplayable log due to
4501 * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as
4502 * if it were a regular entry:
4503 *
4504 * mkdir /mnt/x
4505 * btrfs subvolume snapshot /mnt /mnt/x/snap
4506 * btrfs subvolume delete /mnt/x/snap
4507 * rmdir /mnt/x
4508 * mkdir /mnt/x
4509 * fsync /mnt/x or fsync some new file inside it
4510 * <power fail>
4511 *
4512 * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in
4513 * the same transaction.
4514 */
4515static int btrfs_check_ref_name_override(struct extent_buffer *eb,
4516 const int slot,
4517 const struct btrfs_key *key,
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004518 struct btrfs_inode *inode,
Filipe Manana44f714d2016-06-06 16:11:13 +01004519 u64 *other_ino)
Filipe Manana56f23fd2016-03-30 23:37:21 +01004520{
4521 int ret;
4522 struct btrfs_path *search_path;
4523 char *name = NULL;
4524 u32 name_len = 0;
4525 u32 item_size = btrfs_item_size_nr(eb, slot);
4526 u32 cur_offset = 0;
4527 unsigned long ptr = btrfs_item_ptr_offset(eb, slot);
4528
4529 search_path = btrfs_alloc_path();
4530 if (!search_path)
4531 return -ENOMEM;
4532 search_path->search_commit_root = 1;
4533 search_path->skip_locking = 1;
4534
4535 while (cur_offset < item_size) {
4536 u64 parent;
4537 u32 this_name_len;
4538 u32 this_len;
4539 unsigned long name_ptr;
4540 struct btrfs_dir_item *di;
4541
4542 if (key->type == BTRFS_INODE_REF_KEY) {
4543 struct btrfs_inode_ref *iref;
4544
4545 iref = (struct btrfs_inode_ref *)(ptr + cur_offset);
4546 parent = key->offset;
4547 this_name_len = btrfs_inode_ref_name_len(eb, iref);
4548 name_ptr = (unsigned long)(iref + 1);
4549 this_len = sizeof(*iref) + this_name_len;
4550 } else {
4551 struct btrfs_inode_extref *extref;
4552
4553 extref = (struct btrfs_inode_extref *)(ptr +
4554 cur_offset);
4555 parent = btrfs_inode_extref_parent(eb, extref);
4556 this_name_len = btrfs_inode_extref_name_len(eb, extref);
4557 name_ptr = (unsigned long)&extref->name;
4558 this_len = sizeof(*extref) + this_name_len;
4559 }
4560
4561 if (this_name_len > name_len) {
4562 char *new_name;
4563
4564 new_name = krealloc(name, this_name_len, GFP_NOFS);
4565 if (!new_name) {
4566 ret = -ENOMEM;
4567 goto out;
4568 }
4569 name_len = this_name_len;
4570 name = new_name;
4571 }
4572
4573 read_extent_buffer(eb, name, name_ptr, this_name_len);
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004574 di = btrfs_lookup_dir_item(NULL, inode->root, search_path,
4575 parent, name, this_name_len, 0);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004576 if (di && !IS_ERR(di)) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004577 struct btrfs_key di_key;
4578
4579 btrfs_dir_item_key_to_cpu(search_path->nodes[0],
4580 di, &di_key);
4581 if (di_key.type == BTRFS_INODE_ITEM_KEY) {
4582 ret = 1;
4583 *other_ino = di_key.objectid;
4584 } else {
4585 ret = -EAGAIN;
4586 }
Filipe Manana56f23fd2016-03-30 23:37:21 +01004587 goto out;
4588 } else if (IS_ERR(di)) {
4589 ret = PTR_ERR(di);
4590 goto out;
4591 }
4592 btrfs_release_path(search_path);
4593
4594 cur_offset += this_len;
4595 }
4596 ret = 0;
4597out:
4598 btrfs_free_path(search_path);
4599 kfree(name);
4600 return ret;
4601}
4602
Chris Masone02119d2008-09-05 16:13:11 -04004603/* log a single inode in the tree log.
4604 * At least one parent directory for this inode must exist in the tree
4605 * or be logged already.
4606 *
4607 * Any items from this inode changed by the current transaction are copied
4608 * to the log tree. An extra reference is taken on any extents in this
4609 * file, allowing us to avoid a whole pile of corner cases around logging
4610 * blocks that have been removed from the tree.
4611 *
4612 * See LOG_INODE_ALL and related defines for a description of what inode_only
4613 * does.
4614 *
4615 * This handles both files and directories.
4616 */
Chris Mason12fcfd22009-03-24 10:24:20 -04004617static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004618 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01004619 int inode_only,
4620 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +01004621 const loff_t end,
4622 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004623{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004624 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04004625 struct btrfs_path *path;
4626 struct btrfs_path *dst_path;
4627 struct btrfs_key min_key;
4628 struct btrfs_key max_key;
4629 struct btrfs_root *log = root->log_root;
Miao Xie827463c2014-01-14 20:31:51 +08004630 LIST_HEAD(logged_list);
Josef Bacik16e75492013-10-22 12:18:51 -04004631 u64 last_extent = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004632 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004633 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004634 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004635 int ins_start_slot = 0;
4636 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004637 bool fast_search = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004638 u64 ino = btrfs_ino(inode);
4639 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004640 u64 logged_isize = 0;
Filipe Mananae4545de2015-06-17 12:49:23 +01004641 bool need_log_inode_item = true;
Chris Masone02119d2008-09-05 16:13:11 -04004642
Chris Masone02119d2008-09-05 16:13:11 -04004643 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004644 if (!path)
4645 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04004646 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004647 if (!dst_path) {
4648 btrfs_free_path(path);
4649 return -ENOMEM;
4650 }
Chris Masone02119d2008-09-05 16:13:11 -04004651
Li Zefan33345d012011-04-20 10:31:50 +08004652 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04004653 min_key.type = BTRFS_INODE_ITEM_KEY;
4654 min_key.offset = 0;
4655
Li Zefan33345d012011-04-20 10:31:50 +08004656 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04004657
Chris Mason12fcfd22009-03-24 10:24:20 -04004658
Josef Bacik5dc562c2012-08-17 13:14:17 -04004659 /* today the code can only do partial logging of directories */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004660 if (S_ISDIR(inode->vfs_inode.i_mode) ||
Miao Xie5269b672012-11-01 07:35:23 +00004661 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004662 &inode->runtime_flags) &&
Liu Bo781feef2016-11-30 16:20:25 -08004663 inode_only >= LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04004664 max_key.type = BTRFS_XATTR_ITEM_KEY;
4665 else
4666 max_key.type = (u8)-1;
4667 max_key.offset = (u64)-1;
4668
Filipe Manana2c2c4522015-01-13 16:40:04 +00004669 /*
4670 * Only run delayed items if we are a dir or a new file.
4671 * Otherwise commit the delayed inode only, which is needed in
4672 * order for the log replay code to mark inodes for link count
4673 * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items).
4674 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004675 if (S_ISDIR(inode->vfs_inode.i_mode) ||
4676 inode->generation > fs_info->last_trans_committed)
4677 ret = btrfs_commit_inode_delayed_items(trans, inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004678 else
Nikolay Borisova59108a2017-01-18 00:31:48 +02004679 ret = btrfs_commit_inode_delayed_inode(inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004680
4681 if (ret) {
4682 btrfs_free_path(path);
4683 btrfs_free_path(dst_path);
4684 return ret;
Miao Xie16cdcec2011-04-22 18:12:22 +08004685 }
4686
Liu Bo781feef2016-11-30 16:20:25 -08004687 if (inode_only == LOG_OTHER_INODE) {
4688 inode_only = LOG_INODE_EXISTS;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004689 mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING);
Liu Bo781feef2016-11-30 16:20:25 -08004690 } else {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004691 mutex_lock(&inode->log_mutex);
Liu Bo781feef2016-11-30 16:20:25 -08004692 }
Chris Masone02119d2008-09-05 16:13:11 -04004693
Filipe Manana5e33a2b2016-02-25 23:19:38 +00004694 /*
Chris Masone02119d2008-09-05 16:13:11 -04004695 * a brute force approach to making sure we get the most uptodate
4696 * copies of everything.
4697 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004698 if (S_ISDIR(inode->vfs_inode.i_mode)) {
Chris Masone02119d2008-09-05 16:13:11 -04004699 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
4700
Filipe Manana4f764e52015-02-23 19:53:35 +00004701 if (inode_only == LOG_INODE_EXISTS)
4702 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08004703 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04004704 } else {
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004705 if (inode_only == LOG_INODE_EXISTS) {
4706 /*
4707 * Make sure the new inode item we write to the log has
4708 * the same isize as the current one (if it exists).
4709 * This is necessary to prevent data loss after log
4710 * replay, and also to prevent doing a wrong expanding
4711 * truncate - for e.g. create file, write 4K into offset
4712 * 0, fsync, write 4K into offset 4096, add hard link,
4713 * fsync some other file (to sync log), power fail - if
4714 * we use the inode's current i_size, after log replay
4715 * we get a 8Kb file, with the last 4Kb extent as a hole
4716 * (zeroes), as if an expanding truncate happened,
4717 * instead of getting a file of 4Kb only.
4718 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004719 err = logged_inode_size(log, inode, path, &logged_isize);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004720 if (err)
4721 goto out_unlock;
4722 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004723 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004724 &inode->runtime_flags)) {
Filipe Mananaa7429942015-02-13 16:56:14 +00004725 if (inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004726 max_key.type = BTRFS_XATTR_ITEM_KEY;
Filipe Mananaa7429942015-02-13 16:56:14 +00004727 ret = drop_objectid_items(trans, log, path, ino,
4728 max_key.type);
4729 } else {
4730 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004731 &inode->runtime_flags);
Filipe Mananaa7429942015-02-13 16:56:14 +00004732 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004733 &inode->runtime_flags);
Chris Mason28ed1342014-12-17 09:41:04 -08004734 while(1) {
4735 ret = btrfs_truncate_inode_items(trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004736 log, &inode->vfs_inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08004737 if (ret != -EAGAIN)
4738 break;
4739 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004740 }
Filipe Manana4f764e52015-02-23 19:53:35 +00004741 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004742 &inode->runtime_flags) ||
Josef Bacik6cfab852013-11-12 16:25:58 -05004743 inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004744 if (inode_only == LOG_INODE_ALL)
Josef Bacika95249b2012-10-11 16:17:34 -04004745 fast_search = true;
Filipe Manana4f764e52015-02-23 19:53:35 +00004746 max_key.type = BTRFS_XATTR_ITEM_KEY;
Josef Bacika95249b2012-10-11 16:17:34 -04004747 ret = drop_objectid_items(trans, log, path, ino,
4748 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004749 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00004750 if (inode_only == LOG_INODE_ALL)
4751 fast_search = true;
Josef Bacika95249b2012-10-11 16:17:34 -04004752 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004753 }
Josef Bacika95249b2012-10-11 16:17:34 -04004754
Chris Masone02119d2008-09-05 16:13:11 -04004755 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004756 if (ret) {
4757 err = ret;
4758 goto out_unlock;
4759 }
Chris Masone02119d2008-09-05 16:13:11 -04004760
Chris Masond3977122009-01-05 21:25:51 -05004761 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004762 ins_nr = 0;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004763 ret = btrfs_search_forward(root, &min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00004764 path, trans->transid);
Liu Bofb770ae2016-07-05 12:10:14 -07004765 if (ret < 0) {
4766 err = ret;
4767 goto out_unlock;
4768 }
Chris Masone02119d2008-09-05 16:13:11 -04004769 if (ret != 0)
4770 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004771again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04004772 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08004773 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04004774 break;
4775 if (min_key.type > max_key.type)
4776 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004777
Filipe Mananae4545de2015-06-17 12:49:23 +01004778 if (min_key.type == BTRFS_INODE_ITEM_KEY)
4779 need_log_inode_item = false;
4780
Filipe Manana56f23fd2016-03-30 23:37:21 +01004781 if ((min_key.type == BTRFS_INODE_REF_KEY ||
4782 min_key.type == BTRFS_INODE_EXTREF_KEY) &&
Nikolay Borisova59108a2017-01-18 00:31:48 +02004783 inode->generation == trans->transid) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004784 u64 other_ino = 0;
4785
Filipe Manana56f23fd2016-03-30 23:37:21 +01004786 ret = btrfs_check_ref_name_override(path->nodes[0],
Nikolay Borisova59108a2017-01-18 00:31:48 +02004787 path->slots[0], &min_key, inode,
4788 &other_ino);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004789 if (ret < 0) {
4790 err = ret;
4791 goto out_unlock;
Filipe Manana28a23592016-08-23 21:13:51 +01004792 } else if (ret > 0 && ctx &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004793 other_ino != btrfs_ino(BTRFS_I(ctx->inode))) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004794 struct btrfs_key inode_key;
4795 struct inode *other_inode;
4796
4797 if (ins_nr > 0) {
4798 ins_nr++;
4799 } else {
4800 ins_nr = 1;
4801 ins_start_slot = path->slots[0];
4802 }
Nikolay Borisova59108a2017-01-18 00:31:48 +02004803 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana44f714d2016-06-06 16:11:13 +01004804 &last_extent, ins_start_slot,
4805 ins_nr, inode_only,
4806 logged_isize);
4807 if (ret < 0) {
4808 err = ret;
4809 goto out_unlock;
4810 }
4811 ins_nr = 0;
4812 btrfs_release_path(path);
4813 inode_key.objectid = other_ino;
4814 inode_key.type = BTRFS_INODE_ITEM_KEY;
4815 inode_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004816 other_inode = btrfs_iget(fs_info->sb,
Filipe Manana44f714d2016-06-06 16:11:13 +01004817 &inode_key, root,
4818 NULL);
4819 /*
4820 * If the other inode that had a conflicting dir
4821 * entry was deleted in the current transaction,
4822 * we don't need to do more work nor fallback to
4823 * a transaction commit.
4824 */
4825 if (IS_ERR(other_inode) &&
4826 PTR_ERR(other_inode) == -ENOENT) {
4827 goto next_key;
4828 } else if (IS_ERR(other_inode)) {
4829 err = PTR_ERR(other_inode);
4830 goto out_unlock;
4831 }
4832 /*
4833 * We are safe logging the other inode without
4834 * acquiring its i_mutex as long as we log with
4835 * the LOG_INODE_EXISTS mode. We're safe against
4836 * concurrent renames of the other inode as well
4837 * because during a rename we pin the log and
4838 * update the log with the new name before we
4839 * unpin it.
4840 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004841 err = btrfs_log_inode(trans, root,
4842 BTRFS_I(other_inode),
4843 LOG_OTHER_INODE, 0, LLONG_MAX,
4844 ctx);
Filipe Manana44f714d2016-06-06 16:11:13 +01004845 iput(other_inode);
4846 if (err)
4847 goto out_unlock;
4848 else
4849 goto next_key;
Filipe Manana56f23fd2016-03-30 23:37:21 +01004850 }
4851 }
4852
Filipe Manana36283bf2015-06-20 00:44:51 +01004853 /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */
4854 if (min_key.type == BTRFS_XATTR_ITEM_KEY) {
4855 if (ins_nr == 0)
4856 goto next_slot;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004857 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004858 &last_extent, ins_start_slot,
4859 ins_nr, inode_only, logged_isize);
4860 if (ret < 0) {
4861 err = ret;
4862 goto out_unlock;
4863 }
4864 ins_nr = 0;
4865 if (ret) {
4866 btrfs_release_path(path);
4867 continue;
4868 }
4869 goto next_slot;
4870 }
4871
Chris Mason31ff1cd2008-09-11 16:17:57 -04004872 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
4873 ins_nr++;
4874 goto next_slot;
4875 } else if (!ins_nr) {
4876 ins_start_slot = path->slots[0];
4877 ins_nr = 1;
4878 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04004879 }
4880
Nikolay Borisova59108a2017-01-18 00:31:48 +02004881 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004882 ins_start_slot, ins_nr, inode_only,
4883 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004884 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004885 err = ret;
4886 goto out_unlock;
Rasmus Villemoesa71db862014-06-20 21:51:43 +02004887 }
4888 if (ret) {
Josef Bacik16e75492013-10-22 12:18:51 -04004889 ins_nr = 0;
4890 btrfs_release_path(path);
4891 continue;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004892 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004893 ins_nr = 1;
4894 ins_start_slot = path->slots[0];
4895next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04004896
Chris Mason3a5f1d42008-09-11 15:53:37 -04004897 nritems = btrfs_header_nritems(path->nodes[0]);
4898 path->slots[0]++;
4899 if (path->slots[0] < nritems) {
4900 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
4901 path->slots[0]);
4902 goto again;
4903 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004904 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004905 ret = copy_items(trans, inode, dst_path, path,
Josef Bacik16e75492013-10-22 12:18:51 -04004906 &last_extent, ins_start_slot,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004907 ins_nr, inode_only, logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004908 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004909 err = ret;
4910 goto out_unlock;
4911 }
Josef Bacik16e75492013-10-22 12:18:51 -04004912 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004913 ins_nr = 0;
4914 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004915 btrfs_release_path(path);
Filipe Manana44f714d2016-06-06 16:11:13 +01004916next_key:
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004917 if (min_key.offset < (u64)-1) {
Chris Masone02119d2008-09-05 16:13:11 -04004918 min_key.offset++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004919 } else if (min_key.type < max_key.type) {
Chris Masone02119d2008-09-05 16:13:11 -04004920 min_key.type++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004921 min_key.offset = 0;
4922 } else {
Chris Masone02119d2008-09-05 16:13:11 -04004923 break;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004924 }
Chris Masone02119d2008-09-05 16:13:11 -04004925 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004926 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004927 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004928 ins_start_slot, ins_nr, inode_only,
4929 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004930 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004931 err = ret;
4932 goto out_unlock;
4933 }
Josef Bacik16e75492013-10-22 12:18:51 -04004934 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004935 ins_nr = 0;
4936 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04004937
Filipe Manana36283bf2015-06-20 00:44:51 +01004938 btrfs_release_path(path);
4939 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02004940 err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path);
Filipe Manana36283bf2015-06-20 00:44:51 +01004941 if (err)
4942 goto out_unlock;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004943 if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) {
4944 btrfs_release_path(path);
4945 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02004946 err = btrfs_log_trailing_hole(trans, root, inode, path);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004947 if (err)
4948 goto out_unlock;
4949 }
Josef Bacika95249b2012-10-11 16:17:34 -04004950log_extents:
Josef Bacikf3b15cc2013-07-22 12:54:30 -04004951 btrfs_release_path(path);
4952 btrfs_release_path(dst_path);
Filipe Mananae4545de2015-06-17 12:49:23 +01004953 if (need_log_inode_item) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004954 err = log_inode_item(trans, log, dst_path, inode);
Filipe Mananae4545de2015-06-17 12:49:23 +01004955 if (err)
4956 goto out_unlock;
4957 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04004958 if (fast_search) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004959 ret = btrfs_log_changed_extents(trans, root, inode, dst_path,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00004960 &logged_list, ctx, start, end);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004961 if (ret) {
4962 err = ret;
4963 goto out_unlock;
4964 }
Josef Bacikd006a042013-11-12 20:54:09 -05004965 } else if (inode_only == LOG_INODE_ALL) {
Liu Bo06d3d222012-08-27 10:52:19 -06004966 struct extent_map *em, *n;
4967
Filipe Manana49dae1b2014-09-06 22:34:39 +01004968 write_lock(&em_tree->lock);
4969 /*
4970 * We can't just remove every em if we're called for a ranged
4971 * fsync - that is, one that doesn't cover the whole possible
4972 * file range (0 to LLONG_MAX). This is because we can have
4973 * em's that fall outside the range we're logging and therefore
4974 * their ordered operations haven't completed yet
4975 * (btrfs_finish_ordered_io() not invoked yet). This means we
4976 * didn't get their respective file extent item in the fs/subvol
4977 * tree yet, and need to let the next fast fsync (one which
4978 * consults the list of modified extent maps) find the em so
4979 * that it logs a matching file extent item and waits for the
4980 * respective ordered operation to complete (if it's still
4981 * running).
4982 *
4983 * Removing every em outside the range we're logging would make
4984 * the next fast fsync not log their matching file extent items,
4985 * therefore making us lose data after a log replay.
4986 */
4987 list_for_each_entry_safe(em, n, &em_tree->modified_extents,
4988 list) {
4989 const u64 mod_end = em->mod_start + em->mod_len - 1;
4990
4991 if (em->mod_start >= start && mod_end <= end)
4992 list_del_init(&em->list);
4993 }
4994 write_unlock(&em_tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004995 }
4996
Nikolay Borisova59108a2017-01-18 00:31:48 +02004997 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) {
4998 ret = log_directory_changes(trans, root, inode, path, dst_path,
4999 ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005000 if (ret) {
5001 err = ret;
5002 goto out_unlock;
5003 }
Chris Masone02119d2008-09-05 16:13:11 -04005004 }
Filipe Manana49dae1b2014-09-06 22:34:39 +01005005
Nikolay Borisova59108a2017-01-18 00:31:48 +02005006 spin_lock(&inode->lock);
5007 inode->logged_trans = trans->transid;
5008 inode->last_log_commit = inode->last_sub_trans;
5009 spin_unlock(&inode->lock);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005010out_unlock:
Miao Xie827463c2014-01-14 20:31:51 +08005011 if (unlikely(err))
5012 btrfs_put_logged_extents(&logged_list);
5013 else
5014 btrfs_submit_logged_extents(&logged_list, log);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005015 mutex_unlock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04005016
5017 btrfs_free_path(path);
5018 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005019 return err;
Chris Masone02119d2008-09-05 16:13:11 -04005020}
5021
Chris Mason12fcfd22009-03-24 10:24:20 -04005022/*
Filipe Manana2be63d52016-02-12 11:34:23 +00005023 * Check if we must fallback to a transaction commit when logging an inode.
5024 * This must be called after logging the inode and is used only in the context
5025 * when fsyncing an inode requires the need to log some other inode - in which
5026 * case we can't lock the i_mutex of each other inode we need to log as that
5027 * can lead to deadlocks with concurrent fsync against other inodes (as we can
5028 * log inodes up or down in the hierarchy) or rename operations for example. So
5029 * we take the log_mutex of the inode after we have logged it and then check for
5030 * its last_unlink_trans value - this is safe because any task setting
5031 * last_unlink_trans must take the log_mutex and it must do this before it does
5032 * the actual unlink operation, so if we do this check before a concurrent task
5033 * sets last_unlink_trans it means we've logged a consistent version/state of
5034 * all the inode items, otherwise we are not sure and must do a transaction
Nicholas D Steeves01327612016-05-19 21:18:45 -04005035 * commit (the concurrent task might have only updated last_unlink_trans before
Filipe Manana2be63d52016-02-12 11:34:23 +00005036 * we logged the inode or it might have also done the unlink).
5037 */
5038static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans,
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005039 struct btrfs_inode *inode)
Filipe Manana2be63d52016-02-12 11:34:23 +00005040{
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005041 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Filipe Manana2be63d52016-02-12 11:34:23 +00005042 bool ret = false;
5043
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005044 mutex_lock(&inode->log_mutex);
5045 if (inode->last_unlink_trans > fs_info->last_trans_committed) {
Filipe Manana2be63d52016-02-12 11:34:23 +00005046 /*
5047 * Make sure any commits to the log are forced to be full
5048 * commits.
5049 */
5050 btrfs_set_log_full_commit(fs_info, trans);
5051 ret = true;
5052 }
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005053 mutex_unlock(&inode->log_mutex);
Filipe Manana2be63d52016-02-12 11:34:23 +00005054
5055 return ret;
5056}
5057
5058/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005059 * follow the dentry parent pointers up the chain and see if any
5060 * of the directories in it require a full commit before they can
5061 * be logged. Returns zero if nothing special needs to be done or 1 if
5062 * a full commit is required.
5063 */
5064static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005065 struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005066 struct dentry *parent,
5067 struct super_block *sb,
5068 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04005069{
Chris Mason12fcfd22009-03-24 10:24:20 -04005070 int ret = 0;
Josef Bacik6a912212010-11-20 09:48:00 +00005071 struct dentry *old_parent = NULL;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005072 struct btrfs_inode *orig_inode = inode;
Chris Masone02119d2008-09-05 16:13:11 -04005073
Chris Masonaf4176b2009-03-24 10:24:31 -04005074 /*
5075 * for regular files, if its inode is already on disk, we don't
5076 * have to worry about the parents at all. This is because
5077 * we can use the last_unlink_trans field to record renames
5078 * and other fun in this file.
5079 */
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005080 if (S_ISREG(inode->vfs_inode.i_mode) &&
5081 inode->generation <= last_committed &&
5082 inode->last_unlink_trans <= last_committed)
5083 goto out;
Chris Masonaf4176b2009-03-24 10:24:31 -04005084
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005085 if (!S_ISDIR(inode->vfs_inode.i_mode)) {
Al Virofc640052016-04-10 01:33:30 -04005086 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005087 goto out;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005088 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005089 }
5090
5091 while (1) {
Josef Bacikde2b5302013-09-11 09:36:30 -04005092 /*
5093 * If we are logging a directory then we start with our inode,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005094 * not our parent's inode, so we need to skip setting the
Josef Bacikde2b5302013-09-11 09:36:30 -04005095 * logged_trans so that further down in the log code we don't
5096 * think this inode has already been logged.
5097 */
5098 if (inode != orig_inode)
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005099 inode->logged_trans = trans->transid;
Chris Mason12fcfd22009-03-24 10:24:20 -04005100 smp_mb();
5101
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005102 if (btrfs_must_commit_transaction(trans, inode)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005103 ret = 1;
5104 break;
5105 }
5106
Al Virofc640052016-04-10 01:33:30 -04005107 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005108 break;
5109
Filipe Manana44f714d2016-06-06 16:11:13 +01005110 if (IS_ROOT(parent)) {
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005111 inode = BTRFS_I(d_inode(parent));
5112 if (btrfs_must_commit_transaction(trans, inode))
Filipe Manana44f714d2016-06-06 16:11:13 +01005113 ret = 1;
Chris Mason12fcfd22009-03-24 10:24:20 -04005114 break;
Filipe Manana44f714d2016-06-06 16:11:13 +01005115 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005116
Josef Bacik6a912212010-11-20 09:48:00 +00005117 parent = dget_parent(parent);
5118 dput(old_parent);
5119 old_parent = parent;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005120 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005121
5122 }
Josef Bacik6a912212010-11-20 09:48:00 +00005123 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04005124out:
Chris Masone02119d2008-09-05 16:13:11 -04005125 return ret;
5126}
5127
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005128struct btrfs_dir_list {
5129 u64 ino;
5130 struct list_head list;
5131};
5132
5133/*
5134 * Log the inodes of the new dentries of a directory. See log_dir_items() for
5135 * details about the why it is needed.
5136 * This is a recursive operation - if an existing dentry corresponds to a
5137 * directory, that directory's new entries are logged too (same behaviour as
5138 * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes
5139 * the dentries point to we do not lock their i_mutex, otherwise lockdep
5140 * complains about the following circular lock dependency / possible deadlock:
5141 *
5142 * CPU0 CPU1
5143 * ---- ----
5144 * lock(&type->i_mutex_dir_key#3/2);
5145 * lock(sb_internal#2);
5146 * lock(&type->i_mutex_dir_key#3/2);
5147 * lock(&sb->s_type->i_mutex_key#14);
5148 *
5149 * Where sb_internal is the lock (a counter that works as a lock) acquired by
5150 * sb_start_intwrite() in btrfs_start_transaction().
5151 * Not locking i_mutex of the inodes is still safe because:
5152 *
5153 * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible
5154 * that while logging the inode new references (names) are added or removed
5155 * from the inode, leaving the logged inode item with a link count that does
5156 * not match the number of logged inode reference items. This is fine because
5157 * at log replay time we compute the real number of links and correct the
5158 * link count in the inode item (see replay_one_buffer() and
5159 * link_to_fixup_dir());
5160 *
5161 * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that
5162 * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and
5163 * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item
5164 * has a size that doesn't match the sum of the lengths of all the logged
5165 * names. This does not result in a problem because if a dir_item key is
5166 * logged but its matching dir_index key is not logged, at log replay time we
5167 * don't use it to replay the respective name (see replay_one_name()). On the
5168 * other hand if only the dir_index key ends up being logged, the respective
5169 * name is added to the fs/subvol tree with both the dir_item and dir_index
5170 * keys created (see replay_one_name()).
5171 * The directory's inode item with a wrong i_size is not a problem as well,
5172 * since we don't use it at log replay time to set the i_size in the inode
5173 * item of the fs/subvol tree (see overwrite_item()).
5174 */
5175static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
5176 struct btrfs_root *root,
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005177 struct btrfs_inode *start_inode,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005178 struct btrfs_log_ctx *ctx)
5179{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005180 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005181 struct btrfs_root *log = root->log_root;
5182 struct btrfs_path *path;
5183 LIST_HEAD(dir_list);
5184 struct btrfs_dir_list *dir_elem;
5185 int ret = 0;
5186
5187 path = btrfs_alloc_path();
5188 if (!path)
5189 return -ENOMEM;
5190
5191 dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS);
5192 if (!dir_elem) {
5193 btrfs_free_path(path);
5194 return -ENOMEM;
5195 }
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005196 dir_elem->ino = btrfs_ino(start_inode);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005197 list_add_tail(&dir_elem->list, &dir_list);
5198
5199 while (!list_empty(&dir_list)) {
5200 struct extent_buffer *leaf;
5201 struct btrfs_key min_key;
5202 int nritems;
5203 int i;
5204
5205 dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list,
5206 list);
5207 if (ret)
5208 goto next_dir_inode;
5209
5210 min_key.objectid = dir_elem->ino;
5211 min_key.type = BTRFS_DIR_ITEM_KEY;
5212 min_key.offset = 0;
5213again:
5214 btrfs_release_path(path);
5215 ret = btrfs_search_forward(log, &min_key, path, trans->transid);
5216 if (ret < 0) {
5217 goto next_dir_inode;
5218 } else if (ret > 0) {
5219 ret = 0;
5220 goto next_dir_inode;
5221 }
5222
5223process_leaf:
5224 leaf = path->nodes[0];
5225 nritems = btrfs_header_nritems(leaf);
5226 for (i = path->slots[0]; i < nritems; i++) {
5227 struct btrfs_dir_item *di;
5228 struct btrfs_key di_key;
5229 struct inode *di_inode;
5230 struct btrfs_dir_list *new_dir_elem;
5231 int log_mode = LOG_INODE_EXISTS;
5232 int type;
5233
5234 btrfs_item_key_to_cpu(leaf, &min_key, i);
5235 if (min_key.objectid != dir_elem->ino ||
5236 min_key.type != BTRFS_DIR_ITEM_KEY)
5237 goto next_dir_inode;
5238
5239 di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item);
5240 type = btrfs_dir_type(leaf, di);
5241 if (btrfs_dir_transid(leaf, di) < trans->transid &&
5242 type != BTRFS_FT_DIR)
5243 continue;
5244 btrfs_dir_item_key_to_cpu(leaf, di, &di_key);
5245 if (di_key.type == BTRFS_ROOT_ITEM_KEY)
5246 continue;
5247
Robbie Koec125cf2016-10-28 10:48:26 +08005248 btrfs_release_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005249 di_inode = btrfs_iget(fs_info->sb, &di_key, root, NULL);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005250 if (IS_ERR(di_inode)) {
5251 ret = PTR_ERR(di_inode);
5252 goto next_dir_inode;
5253 }
5254
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02005255 if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005256 iput(di_inode);
Robbie Koec125cf2016-10-28 10:48:26 +08005257 break;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005258 }
5259
5260 ctx->log_new_dentries = false;
Filipe Manana3f9749f2016-04-25 04:45:02 +01005261 if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005262 log_mode = LOG_INODE_ALL;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005263 ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode),
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005264 log_mode, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005265 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005266 btrfs_must_commit_transaction(trans, BTRFS_I(di_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005267 ret = 1;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005268 iput(di_inode);
5269 if (ret)
5270 goto next_dir_inode;
5271 if (ctx->log_new_dentries) {
5272 new_dir_elem = kmalloc(sizeof(*new_dir_elem),
5273 GFP_NOFS);
5274 if (!new_dir_elem) {
5275 ret = -ENOMEM;
5276 goto next_dir_inode;
5277 }
5278 new_dir_elem->ino = di_key.objectid;
5279 list_add_tail(&new_dir_elem->list, &dir_list);
5280 }
5281 break;
5282 }
5283 if (i == nritems) {
5284 ret = btrfs_next_leaf(log, path);
5285 if (ret < 0) {
5286 goto next_dir_inode;
5287 } else if (ret > 0) {
5288 ret = 0;
5289 goto next_dir_inode;
5290 }
5291 goto process_leaf;
5292 }
5293 if (min_key.offset < (u64)-1) {
5294 min_key.offset++;
5295 goto again;
5296 }
5297next_dir_inode:
5298 list_del(&dir_elem->list);
5299 kfree(dir_elem);
5300 }
5301
5302 btrfs_free_path(path);
5303 return ret;
5304}
5305
Filipe Manana18aa0922015-08-05 16:49:08 +01005306static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005307 struct btrfs_inode *inode,
Filipe Manana18aa0922015-08-05 16:49:08 +01005308 struct btrfs_log_ctx *ctx)
5309{
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005310 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Filipe Manana18aa0922015-08-05 16:49:08 +01005311 int ret;
5312 struct btrfs_path *path;
5313 struct btrfs_key key;
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005314 struct btrfs_root *root = inode->root;
5315 const u64 ino = btrfs_ino(inode);
Filipe Manana18aa0922015-08-05 16:49:08 +01005316
5317 path = btrfs_alloc_path();
5318 if (!path)
5319 return -ENOMEM;
5320 path->skip_locking = 1;
5321 path->search_commit_root = 1;
5322
5323 key.objectid = ino;
5324 key.type = BTRFS_INODE_REF_KEY;
5325 key.offset = 0;
5326 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5327 if (ret < 0)
5328 goto out;
5329
5330 while (true) {
5331 struct extent_buffer *leaf = path->nodes[0];
5332 int slot = path->slots[0];
5333 u32 cur_offset = 0;
5334 u32 item_size;
5335 unsigned long ptr;
5336
5337 if (slot >= btrfs_header_nritems(leaf)) {
5338 ret = btrfs_next_leaf(root, path);
5339 if (ret < 0)
5340 goto out;
5341 else if (ret > 0)
5342 break;
5343 continue;
5344 }
5345
5346 btrfs_item_key_to_cpu(leaf, &key, slot);
5347 /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */
5348 if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY)
5349 break;
5350
5351 item_size = btrfs_item_size_nr(leaf, slot);
5352 ptr = btrfs_item_ptr_offset(leaf, slot);
5353 while (cur_offset < item_size) {
5354 struct btrfs_key inode_key;
5355 struct inode *dir_inode;
5356
5357 inode_key.type = BTRFS_INODE_ITEM_KEY;
5358 inode_key.offset = 0;
5359
5360 if (key.type == BTRFS_INODE_EXTREF_KEY) {
5361 struct btrfs_inode_extref *extref;
5362
5363 extref = (struct btrfs_inode_extref *)
5364 (ptr + cur_offset);
5365 inode_key.objectid = btrfs_inode_extref_parent(
5366 leaf, extref);
5367 cur_offset += sizeof(*extref);
5368 cur_offset += btrfs_inode_extref_name_len(leaf,
5369 extref);
5370 } else {
5371 inode_key.objectid = key.offset;
5372 cur_offset = item_size;
5373 }
5374
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005375 dir_inode = btrfs_iget(fs_info->sb, &inode_key,
Filipe Manana18aa0922015-08-05 16:49:08 +01005376 root, NULL);
5377 /* If parent inode was deleted, skip it. */
5378 if (IS_ERR(dir_inode))
5379 continue;
5380
Filipe Manana657ed1a2016-04-06 17:11:56 +01005381 if (ctx)
5382 ctx->log_new_dentries = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005383 ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode),
Filipe Manana18aa0922015-08-05 16:49:08 +01005384 LOG_INODE_ALL, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005385 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005386 btrfs_must_commit_transaction(trans, BTRFS_I(dir_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005387 ret = 1;
Filipe Manana657ed1a2016-04-06 17:11:56 +01005388 if (!ret && ctx && ctx->log_new_dentries)
5389 ret = log_new_dir_dentries(trans, root,
David Sterbaf85b7372017-01-20 14:54:07 +01005390 BTRFS_I(dir_inode), ctx);
Filipe Manana18aa0922015-08-05 16:49:08 +01005391 iput(dir_inode);
5392 if (ret)
5393 goto out;
5394 }
5395 path->slots[0]++;
5396 }
5397 ret = 0;
5398out:
5399 btrfs_free_path(path);
5400 return ret;
5401}
5402
Chris Masone02119d2008-09-05 16:13:11 -04005403/*
5404 * helper function around btrfs_log_inode to make sure newly created
5405 * parent directories also end up in the log. A minimal inode and backref
5406 * only logging is done of any parent directories that are older than
5407 * the last committed transaction
5408 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005409static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005410 struct btrfs_root *root,
5411 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005412 struct dentry *parent,
5413 const loff_t start,
5414 const loff_t end,
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005415 int inode_only,
Miao Xie8b050d32014-02-20 18:08:58 +08005416 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005417{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005418 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04005419 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00005420 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04005421 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005422 u64 last_committed = fs_info->last_trans_committed;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005423 bool log_dentries = false;
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005424 struct btrfs_inode *orig_inode = inode;
Chris Mason12fcfd22009-03-24 10:24:20 -04005425
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005426 sb = inode->vfs_inode.i_sb;
Chris Mason12fcfd22009-03-24 10:24:20 -04005427
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005428 if (btrfs_test_opt(fs_info, NOTREELOG)) {
Sage Weil3a5e1402009-04-02 16:49:40 -04005429 ret = 1;
5430 goto end_no_trans;
5431 }
5432
Miao Xie995946d2014-04-02 19:51:06 +08005433 /*
5434 * The prev transaction commit doesn't complete, we need do
5435 * full commit by ourselves.
5436 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005437 if (fs_info->last_trans_log_full_commit >
5438 fs_info->last_trans_committed) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005439 ret = 1;
5440 goto end_no_trans;
5441 }
5442
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005443 if (root != inode->root || btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005444 ret = 1;
5445 goto end_no_trans;
5446 }
5447
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005448 ret = check_parent_dirs_for_sync(trans, inode, parent, sb,
5449 last_committed);
Chris Mason12fcfd22009-03-24 10:24:20 -04005450 if (ret)
5451 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04005452
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005453 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04005454 ret = BTRFS_NO_LOG_SYNC;
5455 goto end_no_trans;
5456 }
5457
Miao Xie8b050d32014-02-20 18:08:58 +08005458 ret = start_log_trans(trans, root, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005459 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +08005460 goto end_no_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005461
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005462 ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005463 if (ret)
5464 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005465
Chris Masonaf4176b2009-03-24 10:24:31 -04005466 /*
5467 * for regular files, if its inode is already on disk, we don't
5468 * have to worry about the parents at all. This is because
5469 * we can use the last_unlink_trans field to record renames
5470 * and other fun in this file.
5471 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005472 if (S_ISREG(inode->vfs_inode.i_mode) &&
5473 inode->generation <= last_committed &&
5474 inode->last_unlink_trans <= last_committed) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005475 ret = 0;
5476 goto end_trans;
5477 }
Chris Masonaf4176b2009-03-24 10:24:31 -04005478
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005479 if (S_ISDIR(inode->vfs_inode.i_mode) && ctx && ctx->log_new_dentries)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005480 log_dentries = true;
5481
Filipe Manana18aa0922015-08-05 16:49:08 +01005482 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005483 * On unlink we must make sure all our current and old parent directory
Filipe Manana18aa0922015-08-05 16:49:08 +01005484 * inodes are fully logged. This is to prevent leaving dangling
5485 * directory index entries in directories that were our parents but are
5486 * not anymore. Not doing this results in old parent directory being
5487 * impossible to delete after log replay (rmdir will always fail with
5488 * error -ENOTEMPTY).
5489 *
5490 * Example 1:
5491 *
5492 * mkdir testdir
5493 * touch testdir/foo
5494 * ln testdir/foo testdir/bar
5495 * sync
5496 * unlink testdir/bar
5497 * xfs_io -c fsync testdir/foo
5498 * <power failure>
5499 * mount fs, triggers log replay
5500 *
5501 * If we don't log the parent directory (testdir), after log replay the
5502 * directory still has an entry pointing to the file inode using the bar
5503 * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and
5504 * the file inode has a link count of 1.
5505 *
5506 * Example 2:
5507 *
5508 * mkdir testdir
5509 * touch foo
5510 * ln foo testdir/foo2
5511 * ln foo testdir/foo3
5512 * sync
5513 * unlink testdir/foo3
5514 * xfs_io -c fsync foo
5515 * <power failure>
5516 * mount fs, triggers log replay
5517 *
5518 * Similar as the first example, after log replay the parent directory
5519 * testdir still has an entry pointing to the inode file with name foo3
5520 * but the file inode does not have a matching BTRFS_INODE_REF_KEY item
5521 * and has a link count of 2.
5522 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005523 if (inode->last_unlink_trans > last_committed) {
Filipe Manana18aa0922015-08-05 16:49:08 +01005524 ret = btrfs_log_all_parents(trans, orig_inode, ctx);
5525 if (ret)
5526 goto end_trans;
5527 }
5528
Chris Masond3977122009-01-05 21:25:51 -05005529 while (1) {
Al Virofc640052016-04-10 01:33:30 -04005530 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Masone02119d2008-09-05 16:13:11 -04005531 break;
5532
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005533 inode = BTRFS_I(d_inode(parent));
5534 if (root != inode->root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005535 break;
5536
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005537 if (inode->generation > last_committed) {
5538 ret = btrfs_log_inode(trans, root, inode,
5539 LOG_INODE_EXISTS, 0, LLONG_MAX, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005540 if (ret)
5541 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005542 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005543 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04005544 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04005545
Josef Bacik6a912212010-11-20 09:48:00 +00005546 parent = dget_parent(parent);
5547 dput(old_parent);
5548 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04005549 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005550 if (log_dentries)
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005551 ret = log_new_dir_dentries(trans, root, orig_inode, ctx);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005552 else
5553 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005554end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00005555 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005556 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005557 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005558 ret = 1;
5559 }
Miao Xie8b050d32014-02-20 18:08:58 +08005560
5561 if (ret)
5562 btrfs_remove_log_ctx(root, ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04005563 btrfs_end_log_trans(root);
5564end_no_trans:
5565 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005566}
5567
5568/*
5569 * it is not safe to log dentry if the chunk root has added new
5570 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
5571 * If this returns 1, you must commit the transaction to safely get your
5572 * data on disk.
5573 */
5574int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08005575 struct btrfs_root *root, struct dentry *dentry,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005576 const loff_t start,
5577 const loff_t end,
Miao Xie8b050d32014-02-20 18:08:58 +08005578 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005579{
Josef Bacik6a912212010-11-20 09:48:00 +00005580 struct dentry *parent = dget_parent(dentry);
5581 int ret;
5582
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005583 ret = btrfs_log_inode_parent(trans, root, BTRFS_I(d_inode(dentry)),
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005584 parent, start, end, LOG_INODE_ALL, ctx);
Josef Bacik6a912212010-11-20 09:48:00 +00005585 dput(parent);
5586
5587 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005588}
5589
5590/*
5591 * should be called during mount to recover any replay any log trees
5592 * from the FS
5593 */
5594int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
5595{
5596 int ret;
5597 struct btrfs_path *path;
5598 struct btrfs_trans_handle *trans;
5599 struct btrfs_key key;
5600 struct btrfs_key found_key;
5601 struct btrfs_key tmp_key;
5602 struct btrfs_root *log;
5603 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
5604 struct walk_control wc = {
5605 .process_func = process_one_buffer,
5606 .stage = 0,
5607 };
5608
Chris Masone02119d2008-09-05 16:13:11 -04005609 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005610 if (!path)
5611 return -ENOMEM;
5612
Josef Bacikafcdd122016-09-02 15:40:02 -04005613 set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005614
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005615 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005616 if (IS_ERR(trans)) {
5617 ret = PTR_ERR(trans);
5618 goto error;
5619 }
Chris Masone02119d2008-09-05 16:13:11 -04005620
5621 wc.trans = trans;
5622 wc.pin = 1;
5623
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005624 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005625 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005626 btrfs_handle_fs_error(fs_info, ret,
5627 "Failed to pin buffers while recovering log root tree.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005628 goto error;
5629 }
Chris Masone02119d2008-09-05 16:13:11 -04005630
5631again:
5632 key.objectid = BTRFS_TREE_LOG_OBJECTID;
5633 key.offset = (u64)-1;
David Sterba962a2982014-06-04 18:41:45 +02005634 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04005635
Chris Masond3977122009-01-05 21:25:51 -05005636 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04005637 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005638
5639 if (ret < 0) {
Anand Jain34d97002016-03-16 16:43:06 +08005640 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005641 "Couldn't find tree log root.");
5642 goto error;
5643 }
Chris Masone02119d2008-09-05 16:13:11 -04005644 if (ret > 0) {
5645 if (path->slots[0] == 0)
5646 break;
5647 path->slots[0]--;
5648 }
5649 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
5650 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02005651 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005652 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
5653 break;
5654
Miao Xiecb517ea2013-05-15 07:48:19 +00005655 log = btrfs_read_fs_root(log_root_tree, &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005656 if (IS_ERR(log)) {
5657 ret = PTR_ERR(log);
Anand Jain34d97002016-03-16 16:43:06 +08005658 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005659 "Couldn't read tree log root.");
5660 goto error;
5661 }
Chris Masone02119d2008-09-05 16:13:11 -04005662
5663 tmp_key.objectid = found_key.offset;
5664 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
5665 tmp_key.offset = (u64)-1;
5666
5667 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005668 if (IS_ERR(wc.replay_dest)) {
5669 ret = PTR_ERR(wc.replay_dest);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005670 free_extent_buffer(log->node);
5671 free_extent_buffer(log->commit_root);
5672 kfree(log);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005673 btrfs_handle_fs_error(fs_info, ret,
5674 "Couldn't read target root for tree log recovery.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005675 goto error;
5676 }
Chris Masone02119d2008-09-05 16:13:11 -04005677
Yan Zheng07d400a2009-01-06 11:42:00 -05005678 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005679 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04005680 ret = walk_log_tree(trans, log, &wc);
Chris Masone02119d2008-09-05 16:13:11 -04005681
Josef Bacikb50c6e22013-04-25 15:55:30 -04005682 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
Chris Masone02119d2008-09-05 16:13:11 -04005683 ret = fixup_inode_link_counts(trans, wc.replay_dest,
5684 path);
Chris Masone02119d2008-09-05 16:13:11 -04005685 }
Chris Masone02119d2008-09-05 16:13:11 -04005686
5687 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05005688 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04005689 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04005690 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04005691 kfree(log);
5692
Josef Bacikb50c6e22013-04-25 15:55:30 -04005693 if (ret)
5694 goto error;
5695
Chris Masone02119d2008-09-05 16:13:11 -04005696 if (found_key.offset == 0)
5697 break;
5698 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005699 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005700
5701 /* step one is to pin it all, step two is to replay just inodes */
5702 if (wc.pin) {
5703 wc.pin = 0;
5704 wc.process_func = replay_one_buffer;
5705 wc.stage = LOG_WALK_REPLAY_INODES;
5706 goto again;
5707 }
5708 /* step three is to replay everything */
5709 if (wc.stage < LOG_WALK_REPLAY_ALL) {
5710 wc.stage++;
5711 goto again;
5712 }
5713
5714 btrfs_free_path(path);
5715
Josef Bacikabefa552013-04-24 16:40:05 -04005716 /* step 4: commit the transaction, which also unpins the blocks */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005717 ret = btrfs_commit_transaction(trans);
Josef Bacikabefa552013-04-24 16:40:05 -04005718 if (ret)
5719 return ret;
5720
Chris Masone02119d2008-09-05 16:13:11 -04005721 free_extent_buffer(log_root_tree->node);
5722 log_root_tree->log_root = NULL;
Josef Bacikafcdd122016-09-02 15:40:02 -04005723 clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005724 kfree(log_root_tree);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005725
Josef Bacikabefa552013-04-24 16:40:05 -04005726 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005727error:
Josef Bacikb50c6e22013-04-25 15:55:30 -04005728 if (wc.trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005729 btrfs_end_transaction(wc.trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005730 btrfs_free_path(path);
5731 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005732}
Chris Mason12fcfd22009-03-24 10:24:20 -04005733
5734/*
5735 * there are some corner cases where we want to force a full
5736 * commit instead of allowing a directory to be logged.
5737 *
5738 * They revolve around files there were unlinked from the directory, and
5739 * this function updates the parent directory so that a full commit is
5740 * properly done if it is fsync'd later after the unlinks are done.
Filipe Manana2be63d52016-02-12 11:34:23 +00005741 *
5742 * Must be called before the unlink operations (updates to the subvolume tree,
5743 * inodes, etc) are done.
Chris Mason12fcfd22009-03-24 10:24:20 -04005744 */
5745void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005746 struct btrfs_inode *dir, struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005747 int for_rename)
5748{
5749 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005750 * when we're logging a file, if it hasn't been renamed
5751 * or unlinked, and its inode is fully committed on disk,
5752 * we don't have to worry about walking up the directory chain
5753 * to log its parents.
5754 *
5755 * So, we use the last_unlink_trans field to put this transid
5756 * into the file. When the file is logged we check it and
5757 * don't log the parents if the file is fully on disk.
5758 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005759 mutex_lock(&inode->log_mutex);
5760 inode->last_unlink_trans = trans->transid;
5761 mutex_unlock(&inode->log_mutex);
Chris Masonaf4176b2009-03-24 10:24:31 -04005762
5763 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005764 * if this directory was already logged any new
5765 * names for this file/dir will get recorded
5766 */
5767 smp_mb();
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005768 if (dir->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005769 return;
5770
5771 /*
5772 * if the inode we're about to unlink was logged,
5773 * the log will be properly updated for any new names
5774 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005775 if (inode->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005776 return;
5777
5778 /*
5779 * when renaming files across directories, if the directory
5780 * there we're unlinking from gets fsync'd later on, there's
5781 * no way to find the destination directory later and fsync it
5782 * properly. So, we have to be conservative and force commits
5783 * so the new name gets discovered.
5784 */
5785 if (for_rename)
5786 goto record;
5787
5788 /* we can safely do the unlink without any special recording */
5789 return;
5790
5791record:
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005792 mutex_lock(&dir->log_mutex);
5793 dir->last_unlink_trans = trans->transid;
5794 mutex_unlock(&dir->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04005795}
5796
5797/*
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005798 * Make sure that if someone attempts to fsync the parent directory of a deleted
5799 * snapshot, it ends up triggering a transaction commit. This is to guarantee
5800 * that after replaying the log tree of the parent directory's root we will not
5801 * see the snapshot anymore and at log replay time we will not see any log tree
5802 * corresponding to the deleted snapshot's root, which could lead to replaying
5803 * it after replaying the log tree of the parent directory (which would replay
5804 * the snapshot delete operation).
Filipe Manana2be63d52016-02-12 11:34:23 +00005805 *
5806 * Must be called before the actual snapshot destroy operation (updates to the
5807 * parent root and tree of tree roots trees, etc) are done.
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005808 */
5809void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
Nikolay Borisov43663552017-01-18 00:31:29 +02005810 struct btrfs_inode *dir)
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005811{
Nikolay Borisov43663552017-01-18 00:31:29 +02005812 mutex_lock(&dir->log_mutex);
5813 dir->last_unlink_trans = trans->transid;
5814 mutex_unlock(&dir->log_mutex);
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005815}
5816
5817/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005818 * Call this after adding a new name for a file and it will properly
5819 * update the log to reflect the new name.
5820 *
5821 * It will return zero if all goes well, and it will return 1 if a
5822 * full transaction commit is required.
5823 */
5824int btrfs_log_new_name(struct btrfs_trans_handle *trans,
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005825 struct btrfs_inode *inode, struct btrfs_inode *old_dir,
Chris Mason12fcfd22009-03-24 10:24:20 -04005826 struct dentry *parent)
5827{
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005828 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
David Sterbaf85b7372017-01-20 14:54:07 +01005829 struct btrfs_root *root = inode->root;
Chris Mason12fcfd22009-03-24 10:24:20 -04005830
5831 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005832 * this will force the logging code to walk the dentry chain
5833 * up for the file
5834 */
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005835 if (S_ISREG(inode->vfs_inode.i_mode))
5836 inode->last_unlink_trans = trans->transid;
Chris Masonaf4176b2009-03-24 10:24:31 -04005837
5838 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005839 * if this inode hasn't been logged and directory we're renaming it
5840 * from hasn't been logged, we don't need to log it
5841 */
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005842 if (inode->logged_trans <= fs_info->last_trans_committed &&
5843 (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed))
Chris Mason12fcfd22009-03-24 10:24:20 -04005844 return 0;
5845
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005846 return btrfs_log_inode_parent(trans, root, inode, parent, 0,
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005847 LLONG_MAX, LOG_INODE_EXISTS, NULL);
Chris Mason12fcfd22009-03-24 10:24:20 -04005848}
5849