blob: 4c50f823949c01cdb1d8d1fecd4af2005a412c09 [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"
Liu Bo900c9982018-01-25 11:02:56 -070031#include "inode-map.h"
Chris Masone02119d2008-09-05 16:13:11 -040032
33/* magic values for the inode_only field in btrfs_log_inode:
34 *
35 * LOG_INODE_ALL means to log everything
36 * LOG_INODE_EXISTS means to log just enough to recreate the inode
37 * during log replay
38 */
39#define LOG_INODE_ALL 0
40#define LOG_INODE_EXISTS 1
Liu Bo781feef2016-11-30 16:20:25 -080041#define LOG_OTHER_INODE 2
Chris Masone02119d2008-09-05 16:13:11 -040042
43/*
Chris Mason12fcfd22009-03-24 10:24:20 -040044 * directory trouble cases
45 *
46 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
47 * log, we must force a full commit before doing an fsync of the directory
48 * where the unlink was done.
49 * ---> record transid of last unlink/rename per directory
50 *
51 * mkdir foo/some_dir
52 * normal commit
53 * rename foo/some_dir foo2/some_dir
54 * mkdir foo/some_dir
55 * fsync foo/some_dir/some_file
56 *
57 * The fsync above will unlink the original some_dir without recording
58 * it in its new location (foo2). After a crash, some_dir will be gone
59 * unless the fsync of some_file forces a full commit
60 *
61 * 2) we must log any new names for any file or dir that is in the fsync
62 * log. ---> check inode while renaming/linking.
63 *
64 * 2a) we must log any new names for any file or dir during rename
65 * when the directory they are being removed from was logged.
66 * ---> check inode and old parent dir during rename
67 *
68 * 2a is actually the more important variant. With the extra logging
69 * a crash might unlink the old name without recreating the new one
70 *
71 * 3) after a crash, we must go through any directories with a link count
72 * of zero and redo the rm -rf
73 *
74 * mkdir f1/foo
75 * normal commit
76 * rm -rf f1/foo
77 * fsync(f1)
78 *
79 * The directory f1 was fully removed from the FS, but fsync was never
80 * called on f1, only its parent dir. After a crash the rm -rf must
81 * be replayed. This must be able to recurse down the entire
82 * directory tree. The inode link count fixup code takes care of the
83 * ugly details.
84 */
85
86/*
Chris Masone02119d2008-09-05 16:13:11 -040087 * stages for the tree walking. The first
88 * stage (0) is to only pin down the blocks we find
89 * the second stage (1) is to make sure that all the inodes
90 * we find in the log are created in the subvolume.
91 *
92 * The last stage is to deal with directories and links and extents
93 * and all the other fun semantics
94 */
95#define LOG_WALK_PIN_ONLY 0
96#define LOG_WALK_REPLAY_INODES 1
Josef Bacikdd8e7212013-09-11 11:57:23 -040097#define LOG_WALK_REPLAY_DIR_INDEX 2
98#define LOG_WALK_REPLAY_ALL 3
Chris Masone02119d2008-09-05 16:13:11 -040099
Chris Mason12fcfd22009-03-24 10:24:20 -0400100static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +0200101 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +0100102 int inode_only,
103 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +0100104 const loff_t end,
105 struct btrfs_log_ctx *ctx);
Yan Zhengec051c02009-01-05 15:43:42 -0500106static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
107 struct btrfs_root *root,
108 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400109static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
110 struct btrfs_root *root,
111 struct btrfs_root *log,
112 struct btrfs_path *path,
113 u64 dirid, int del_all);
Chris Masone02119d2008-09-05 16:13:11 -0400114
115/*
116 * tree logging is a special write ahead log used to make sure that
117 * fsyncs and O_SYNCs can happen without doing full tree commits.
118 *
119 * Full tree commits are expensive because they require commonly
120 * modified blocks to be recowed, creating many dirty pages in the
121 * extent tree an 4x-6x higher write load than ext3.
122 *
123 * Instead of doing a tree commit on every fsync, we use the
124 * key ranges and transaction ids to find items for a given file or directory
125 * that have changed in this transaction. Those items are copied into
126 * a special tree (one per subvolume root), that tree is written to disk
127 * and then the fsync is considered complete.
128 *
129 * After a crash, items are copied out of the log-tree back into the
130 * subvolume tree. Any file data extents found are recorded in the extent
131 * allocation tree, and the log-tree freed.
132 *
133 * The log tree is read three times, once to pin down all the extents it is
134 * using in ram and once, once to create all the inodes logged in the tree
135 * and once to do all the other items.
136 */
137
138/*
Chris Masone02119d2008-09-05 16:13:11 -0400139 * start a sub transaction and setup the log tree
140 * this increments the log tree writer count to make the people
141 * syncing the tree wait for us to finish
142 */
143static int start_log_trans(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +0800144 struct btrfs_root *root,
145 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -0400146{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400147 struct btrfs_fs_info *fs_info = root->fs_info;
Zhaolei34eb2a52015-08-17 18:44:45 +0800148 int ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500149
150 mutex_lock(&root->log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800151
Yan Zheng7237f182009-01-21 12:54:03 -0500152 if (root->log_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400153 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xie50471a32014-02-20 18:08:57 +0800154 ret = -EAGAIN;
155 goto out;
156 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800157
Josef Bacikff782e02009-10-08 15:30:04 -0400158 if (!root->log_start_pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800159 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Zhaolei34eb2a52015-08-17 18:44:45 +0800160 root->log_start_pid = current->pid;
Josef Bacikff782e02009-10-08 15:30:04 -0400161 } else if (root->log_start_pid != current->pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800162 set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400163 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800164 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400165 mutex_lock(&fs_info->tree_log_mutex);
166 if (!fs_info->log_root_tree)
167 ret = btrfs_init_log_root_tree(trans, fs_info);
168 mutex_unlock(&fs_info->tree_log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800169 if (ret)
170 goto out;
Josef Bacikff782e02009-10-08 15:30:04 -0400171
Chris Masone02119d2008-09-05 16:13:11 -0400172 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400173 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +0800174 goto out;
Zhaolei34eb2a52015-08-17 18:44:45 +0800175
176 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
177 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400178 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800179
Miao Xie2ecb7922012-09-06 04:04:27 -0600180 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500181 atomic_inc(&root->log_writers);
Miao Xie8b050d32014-02-20 18:08:58 +0800182 if (ctx) {
Zhaolei34eb2a52015-08-17 18:44:45 +0800183 int index = root->log_transid % 2;
Miao Xie8b050d32014-02-20 18:08:58 +0800184 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800185 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800186 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800187
Miao Xiee87ac132014-02-20 18:08:53 +0800188out:
Yan Zheng7237f182009-01-21 12:54:03 -0500189 mutex_unlock(&root->log_mutex);
Miao Xiee87ac132014-02-20 18:08:53 +0800190 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400191}
192
193/*
194 * returns 0 if there was a log transaction running and we were able
195 * to join, or returns -ENOENT if there were not transactions
196 * in progress
197 */
198static int join_running_log_trans(struct btrfs_root *root)
199{
200 int ret = -ENOENT;
201
202 smp_mb();
203 if (!root->log_root)
204 return -ENOENT;
205
Yan Zheng7237f182009-01-21 12:54:03 -0500206 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400207 if (root->log_root) {
208 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500209 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400210 }
Yan Zheng7237f182009-01-21 12:54:03 -0500211 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400212 return ret;
213}
214
215/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400216 * This either makes the current running log transaction wait
217 * until you call btrfs_end_log_trans() or it makes any future
218 * log transactions wait until you call btrfs_end_log_trans()
219 */
220int btrfs_pin_log_trans(struct btrfs_root *root)
221{
222 int ret = -ENOENT;
223
224 mutex_lock(&root->log_mutex);
225 atomic_inc(&root->log_writers);
226 mutex_unlock(&root->log_mutex);
227 return ret;
228}
229
230/*
Chris Masone02119d2008-09-05 16:13:11 -0400231 * indicate we're done making changes to the log tree
232 * and wake up anyone waiting to do a sync
233 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100234void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400235{
Yan Zheng7237f182009-01-21 12:54:03 -0500236 if (atomic_dec_and_test(&root->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +0100237 /*
238 * Implicit memory barrier after atomic_dec_and_test
239 */
Yan Zheng7237f182009-01-21 12:54:03 -0500240 if (waitqueue_active(&root->log_writer_wait))
241 wake_up(&root->log_writer_wait);
242 }
Chris Masone02119d2008-09-05 16:13:11 -0400243}
244
245
246/*
247 * the walk control struct is used to pass state down the chain when
248 * processing the log tree. The stage field tells us which part
249 * of the log tree processing we are currently doing. The others
250 * are state fields used for that specific part
251 */
252struct walk_control {
253 /* should we free the extent on disk when done? This is used
254 * at transaction commit time while freeing a log tree
255 */
256 int free;
257
258 /* should we write out the extent buffer? This is used
259 * while flushing the log tree to disk during a sync
260 */
261 int write;
262
263 /* should we wait for the extent buffer io to finish? Also used
264 * while flushing the log tree to disk for a sync
265 */
266 int wait;
267
268 /* pin only walk, we record which extents on disk belong to the
269 * log trees
270 */
271 int pin;
272
273 /* what stage of the replay code we're currently in */
274 int stage;
275
276 /* the root we are currently replaying */
277 struct btrfs_root *replay_dest;
278
279 /* the trans handle for the current replay */
280 struct btrfs_trans_handle *trans;
281
282 /* the function that gets used to process blocks we find in the
283 * tree. Note the extent_buffer might not be up to date when it is
284 * passed in, and it must be checked or read if you need the data
285 * inside it
286 */
287 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
288 struct walk_control *wc, u64 gen);
289};
290
291/*
292 * process_func used to pin down extents, write them or wait on them
293 */
294static int process_one_buffer(struct btrfs_root *log,
295 struct extent_buffer *eb,
296 struct walk_control *wc, u64 gen)
297{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400298 struct btrfs_fs_info *fs_info = log->fs_info;
Josef Bacikb50c6e22013-04-25 15:55:30 -0400299 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400300
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400301 /*
302 * If this fs is mixed then we need to be able to process the leaves to
303 * pin down any logged extents, so we have to read the block.
304 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400305 if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400306 ret = btrfs_read_buffer(eb, gen);
307 if (ret)
308 return ret;
309 }
310
Josef Bacikb50c6e22013-04-25 15:55:30 -0400311 if (wc->pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400312 ret = btrfs_pin_extent_for_log_replay(fs_info, eb->start,
313 eb->len);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400314
315 if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400316 if (wc->pin && btrfs_header_level(eb) == 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400317 ret = btrfs_exclude_logged_extents(fs_info, eb);
Chris Masone02119d2008-09-05 16:13:11 -0400318 if (wc->write)
319 btrfs_write_tree_block(eb);
320 if (wc->wait)
321 btrfs_wait_tree_block_writeback(eb);
322 }
Josef Bacikb50c6e22013-04-25 15:55:30 -0400323 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400324}
325
326/*
327 * Item overwrite used by replay and tree logging. eb, slot and key all refer
328 * to the src data we are copying out.
329 *
330 * root is the tree we are copying into, and path is a scratch
331 * path for use in this function (it should be released on entry and
332 * will be released on exit).
333 *
334 * If the key is already in the destination tree the existing item is
335 * overwritten. If the existing item isn't big enough, it is extended.
336 * If it is too large, it is truncated.
337 *
338 * If the key isn't in the destination yet, a new item is inserted.
339 */
340static noinline int overwrite_item(struct btrfs_trans_handle *trans,
341 struct btrfs_root *root,
342 struct btrfs_path *path,
343 struct extent_buffer *eb, int slot,
344 struct btrfs_key *key)
345{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400346 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400347 int ret;
348 u32 item_size;
349 u64 saved_i_size = 0;
350 int save_old_i_size = 0;
351 unsigned long src_ptr;
352 unsigned long dst_ptr;
353 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000354 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400355
356 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
357 overwrite_root = 1;
358
359 item_size = btrfs_item_size_nr(eb, slot);
360 src_ptr = btrfs_item_ptr_offset(eb, slot);
361
362 /* look for the key in the destination tree */
363 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000364 if (ret < 0)
365 return ret;
366
Chris Masone02119d2008-09-05 16:13:11 -0400367 if (ret == 0) {
368 char *src_copy;
369 char *dst_copy;
370 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
371 path->slots[0]);
372 if (dst_size != item_size)
373 goto insert;
374
375 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200376 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400377 return 0;
378 }
379 dst_copy = kmalloc(item_size, GFP_NOFS);
380 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000381 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200382 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000383 kfree(dst_copy);
384 kfree(src_copy);
385 return -ENOMEM;
386 }
Chris Masone02119d2008-09-05 16:13:11 -0400387
388 read_extent_buffer(eb, src_copy, src_ptr, item_size);
389
390 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
391 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
392 item_size);
393 ret = memcmp(dst_copy, src_copy, item_size);
394
395 kfree(dst_copy);
396 kfree(src_copy);
397 /*
398 * they have the same contents, just return, this saves
399 * us from cowing blocks in the destination tree and doing
400 * extra writes that may not have been done by a previous
401 * sync
402 */
403 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200404 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400405 return 0;
406 }
407
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000408 /*
409 * We need to load the old nbytes into the inode so when we
410 * replay the extents we've logged we get the right nbytes.
411 */
412 if (inode_item) {
413 struct btrfs_inode_item *item;
414 u64 nbytes;
Josef Bacikd5554382013-09-11 14:17:00 -0400415 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000416
417 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
418 struct btrfs_inode_item);
419 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
420 item = btrfs_item_ptr(eb, slot,
421 struct btrfs_inode_item);
422 btrfs_set_inode_nbytes(eb, item, nbytes);
Josef Bacikd5554382013-09-11 14:17:00 -0400423
424 /*
425 * If this is a directory we need to reset the i_size to
426 * 0 so that we can set it up properly when replaying
427 * the rest of the items in this log.
428 */
429 mode = btrfs_inode_mode(eb, item);
430 if (S_ISDIR(mode))
431 btrfs_set_inode_size(eb, item, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000432 }
433 } else if (inode_item) {
434 struct btrfs_inode_item *item;
Josef Bacikd5554382013-09-11 14:17:00 -0400435 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000436
437 /*
438 * New inode, set nbytes to 0 so that the nbytes comes out
439 * properly when we replay the extents.
440 */
441 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
442 btrfs_set_inode_nbytes(eb, item, 0);
Josef Bacikd5554382013-09-11 14:17:00 -0400443
444 /*
445 * If this is a directory we need to reset the i_size to 0 so
446 * that we can set it up properly when replaying the rest of
447 * the items in this log.
448 */
449 mode = btrfs_inode_mode(eb, item);
450 if (S_ISDIR(mode))
451 btrfs_set_inode_size(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400452 }
453insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200454 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400455 /* try to insert the key into the destination tree */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000456 path->skip_release_on_error = 1;
Chris Masone02119d2008-09-05 16:13:11 -0400457 ret = btrfs_insert_empty_item(trans, root, path,
458 key, item_size);
Filipe Mananadf8d1162015-01-14 01:52:25 +0000459 path->skip_release_on_error = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400460
461 /* make sure any existing item is the correct size */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000462 if (ret == -EEXIST || ret == -EOVERFLOW) {
Chris Masone02119d2008-09-05 16:13:11 -0400463 u32 found_size;
464 found_size = btrfs_item_size_nr(path->nodes[0],
465 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100466 if (found_size > item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400467 btrfs_truncate_item(fs_info, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100468 else if (found_size < item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400469 btrfs_extend_item(fs_info, path,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100470 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400471 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400472 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400473 }
474 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
475 path->slots[0]);
476
477 /* don't overwrite an existing inode if the generation number
478 * was logged as zero. This is done when the tree logging code
479 * is just logging an inode to make sure it exists after recovery.
480 *
481 * Also, don't overwrite i_size on directories during replay.
482 * log replay inserts and removes directory items based on the
483 * state of the tree found in the subvolume, and i_size is modified
484 * as it goes
485 */
486 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
487 struct btrfs_inode_item *src_item;
488 struct btrfs_inode_item *dst_item;
489
490 src_item = (struct btrfs_inode_item *)src_ptr;
491 dst_item = (struct btrfs_inode_item *)dst_ptr;
492
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000493 if (btrfs_inode_generation(eb, src_item) == 0) {
494 struct extent_buffer *dst_eb = path->nodes[0];
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000495 const u64 ino_size = btrfs_inode_size(eb, src_item);
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000496
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000497 /*
498 * For regular files an ino_size == 0 is used only when
499 * logging that an inode exists, as part of a directory
500 * fsync, and the inode wasn't fsynced before. In this
501 * case don't set the size of the inode in the fs/subvol
502 * tree, otherwise we would be throwing valid data away.
503 */
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000504 if (S_ISREG(btrfs_inode_mode(eb, src_item)) &&
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000505 S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) &&
506 ino_size != 0) {
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000507 struct btrfs_map_token token;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000508
509 btrfs_init_map_token(&token);
510 btrfs_set_token_inode_size(dst_eb, dst_item,
511 ino_size, &token);
512 }
Chris Masone02119d2008-09-05 16:13:11 -0400513 goto no_copy;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000514 }
Chris Masone02119d2008-09-05 16:13:11 -0400515
516 if (overwrite_root &&
517 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
518 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
519 save_old_i_size = 1;
520 saved_i_size = btrfs_inode_size(path->nodes[0],
521 dst_item);
522 }
523 }
524
525 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
526 src_ptr, item_size);
527
528 if (save_old_i_size) {
529 struct btrfs_inode_item *dst_item;
530 dst_item = (struct btrfs_inode_item *)dst_ptr;
531 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
532 }
533
534 /* make sure the generation is filled in */
535 if (key->type == BTRFS_INODE_ITEM_KEY) {
536 struct btrfs_inode_item *dst_item;
537 dst_item = (struct btrfs_inode_item *)dst_ptr;
538 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
539 btrfs_set_inode_generation(path->nodes[0], dst_item,
540 trans->transid);
541 }
542 }
543no_copy:
544 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200545 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400546 return 0;
547}
548
549/*
550 * simple helper to read an inode off the disk from a given root
551 * This can only be called for subvolume roots and not for the log
552 */
553static noinline struct inode *read_one_inode(struct btrfs_root *root,
554 u64 objectid)
555{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400556 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400557 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400558
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400559 key.objectid = objectid;
560 key.type = BTRFS_INODE_ITEM_KEY;
561 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000562 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400563 if (IS_ERR(inode)) {
564 inode = NULL;
565 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400566 iput(inode);
567 inode = NULL;
568 }
569 return inode;
570}
571
572/* replays a single extent in 'eb' at 'slot' with 'key' into the
573 * subvolume 'root'. path is released on entry and should be released
574 * on exit.
575 *
576 * extents in the log tree have not been allocated out of the extent
577 * tree yet. So, this completes the allocation, taking a reference
578 * as required if the extent already exists or creating a new extent
579 * if it isn't in the extent allocation tree yet.
580 *
581 * The extent is inserted into the file, dropping any existing extents
582 * from the file that overlap the new one.
583 */
584static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
585 struct btrfs_root *root,
586 struct btrfs_path *path,
587 struct extent_buffer *eb, int slot,
588 struct btrfs_key *key)
589{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400590 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400591 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400592 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400593 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000594 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400595 struct btrfs_file_extent_item *item;
596 struct inode *inode = NULL;
597 unsigned long size;
598 int ret = 0;
599
600 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
601 found_type = btrfs_file_extent_type(eb, item);
602
Yan Zhengd899e052008-10-30 14:25:28 -0400603 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000604 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
605 nbytes = btrfs_file_extent_num_bytes(eb, item);
606 extent_end = start + nbytes;
607
608 /*
609 * We don't add to the inodes nbytes if we are prealloc or a
610 * hole.
611 */
612 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
613 nbytes = 0;
614 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -0800615 size = btrfs_file_extent_inline_len(eb, slot, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000616 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400617 extent_end = ALIGN(start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400618 fs_info->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400619 } else {
620 ret = 0;
621 goto out;
622 }
623
624 inode = read_one_inode(root, key->objectid);
625 if (!inode) {
626 ret = -EIO;
627 goto out;
628 }
629
630 /*
631 * first check to see if we already have this extent in the
632 * file. This must be done before the btrfs_drop_extents run
633 * so we don't try to drop this extent.
634 */
David Sterbaf85b7372017-01-20 14:54:07 +0100635 ret = btrfs_lookup_file_extent(trans, root, path,
636 btrfs_ino(BTRFS_I(inode)), start, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400637
Yan Zhengd899e052008-10-30 14:25:28 -0400638 if (ret == 0 &&
639 (found_type == BTRFS_FILE_EXTENT_REG ||
640 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400641 struct btrfs_file_extent_item cmp1;
642 struct btrfs_file_extent_item cmp2;
643 struct btrfs_file_extent_item *existing;
644 struct extent_buffer *leaf;
645
646 leaf = path->nodes[0];
647 existing = btrfs_item_ptr(leaf, path->slots[0],
648 struct btrfs_file_extent_item);
649
650 read_extent_buffer(eb, &cmp1, (unsigned long)item,
651 sizeof(cmp1));
652 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
653 sizeof(cmp2));
654
655 /*
656 * we already have a pointer to this exact extent,
657 * we don't have to do anything
658 */
659 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200660 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400661 goto out;
662 }
663 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200664 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400665
666 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400667 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Josef Bacik36508602013-04-25 16:23:32 -0400668 if (ret)
669 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400670
Yan Zheng07d400a2009-01-06 11:42:00 -0500671 if (found_type == BTRFS_FILE_EXTENT_REG ||
672 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400673 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500674 unsigned long dest_offset;
675 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400676
Filipe Manana3168021c2017-02-01 14:58:02 +0000677 if (btrfs_file_extent_disk_bytenr(eb, item) == 0 &&
678 btrfs_fs_incompat(fs_info, NO_HOLES))
679 goto update_inode;
680
Yan Zheng07d400a2009-01-06 11:42:00 -0500681 ret = btrfs_insert_empty_item(trans, root, path, key,
682 sizeof(*item));
Josef Bacik36508602013-04-25 16:23:32 -0400683 if (ret)
684 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500685 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
686 path->slots[0]);
687 copy_extent_buffer(path->nodes[0], eb, dest_offset,
688 (unsigned long)item, sizeof(*item));
689
690 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
691 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
692 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400693 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500694
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800695 /*
696 * Manually record dirty extent, as here we did a shallow
697 * file extent item copy and skip normal backref update,
698 * but modifying extent tree all by ourselves.
699 * So need to manually record dirty extent for qgroup,
700 * as the owner of the file extent changed from log tree
701 * (doesn't affect qgroup) to fs/file tree(affects qgroup)
702 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400703 ret = btrfs_qgroup_trace_extent(trans, fs_info,
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800704 btrfs_file_extent_disk_bytenr(eb, item),
705 btrfs_file_extent_disk_num_bytes(eb, item),
706 GFP_NOFS);
707 if (ret < 0)
708 goto out;
709
Yan Zheng07d400a2009-01-06 11:42:00 -0500710 if (ins.objectid > 0) {
711 u64 csum_start;
712 u64 csum_end;
713 LIST_HEAD(ordered_sums);
714 /*
715 * is this extent already allocated in the extent
716 * allocation tree? If so, just add a reference
717 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400718 ret = btrfs_lookup_data_extent(fs_info, ins.objectid,
Yan Zheng07d400a2009-01-06 11:42:00 -0500719 ins.offset);
720 if (ret == 0) {
Josef Bacik84f7d8e2017-09-29 15:43:49 -0400721 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng07d400a2009-01-06 11:42:00 -0500722 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400723 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100724 key->objectid, offset);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400725 if (ret)
726 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500727 } else {
728 /*
729 * insert the extent pointer in the extent
730 * allocation tree
731 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400732 ret = btrfs_alloc_logged_file_extent(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400733 fs_info,
734 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400735 key->objectid, offset, &ins);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400736 if (ret)
737 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500738 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200739 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500740
741 if (btrfs_file_extent_compression(eb, item)) {
742 csum_start = ins.objectid;
743 csum_end = csum_start + ins.offset;
744 } else {
745 csum_start = ins.objectid +
746 btrfs_file_extent_offset(eb, item);
747 csum_end = csum_start +
748 btrfs_file_extent_num_bytes(eb, item);
749 }
750
751 ret = btrfs_lookup_csums_range(root->log_root,
752 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100753 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -0400754 if (ret)
755 goto out;
Filipe Mananab84b8392015-08-19 11:09:40 +0100756 /*
757 * Now delete all existing cums in the csum root that
758 * cover our range. We do this because we can have an
759 * extent that is completely referenced by one file
760 * extent item and partially referenced by another
761 * file extent item (like after using the clone or
762 * extent_same ioctls). In this case if we end up doing
763 * the replay of the one that partially references the
764 * extent first, and we do not do the csum deletion
765 * below, we can get 2 csum items in the csum tree that
766 * overlap each other. For example, imagine our log has
767 * the two following file extent items:
768 *
769 * key (257 EXTENT_DATA 409600)
770 * extent data disk byte 12845056 nr 102400
771 * extent data offset 20480 nr 20480 ram 102400
772 *
773 * key (257 EXTENT_DATA 819200)
774 * extent data disk byte 12845056 nr 102400
775 * extent data offset 0 nr 102400 ram 102400
776 *
777 * Where the second one fully references the 100K extent
778 * that starts at disk byte 12845056, and the log tree
779 * has a single csum item that covers the entire range
780 * of the extent:
781 *
782 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
783 *
784 * After the first file extent item is replayed, the
785 * csum tree gets the following csum item:
786 *
787 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
788 *
789 * Which covers the 20K sub-range starting at offset 20K
790 * of our extent. Now when we replay the second file
791 * extent item, if we do not delete existing csum items
792 * that cover any of its blocks, we end up getting two
793 * csum items in our csum tree that overlap each other:
794 *
795 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
796 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
797 *
798 * Which is a problem, because after this anyone trying
799 * to lookup up for the checksum of any block of our
800 * extent starting at an offset of 40K or higher, will
801 * end up looking at the second csum item only, which
802 * does not contain the checksum for any block starting
803 * at offset 40K or higher of our extent.
804 */
Yan Zheng07d400a2009-01-06 11:42:00 -0500805 while (!list_empty(&ordered_sums)) {
806 struct btrfs_ordered_sum *sums;
807 sums = list_entry(ordered_sums.next,
808 struct btrfs_ordered_sum,
809 list);
Josef Bacik36508602013-04-25 16:23:32 -0400810 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400811 ret = btrfs_del_csums(trans, fs_info,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -0400812 sums->bytenr,
813 sums->len);
Filipe Mananab84b8392015-08-19 11:09:40 +0100814 if (!ret)
Josef Bacik36508602013-04-25 16:23:32 -0400815 ret = btrfs_csum_file_blocks(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400816 fs_info->csum_root, sums);
Yan Zheng07d400a2009-01-06 11:42:00 -0500817 list_del(&sums->list);
818 kfree(sums);
819 }
Josef Bacik36508602013-04-25 16:23:32 -0400820 if (ret)
821 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500822 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200823 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500824 }
825 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
826 /* inline extents are easy, we just overwrite them */
827 ret = overwrite_item(trans, root, path, eb, slot, key);
Josef Bacik36508602013-04-25 16:23:32 -0400828 if (ret)
829 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500830 }
831
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000832 inode_add_bytes(inode, nbytes);
Filipe Manana3168021c2017-02-01 14:58:02 +0000833update_inode:
Tsutomu Itohb9959292012-06-25 21:25:22 -0600834 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400835out:
836 if (inode)
837 iput(inode);
838 return ret;
839}
840
841/*
842 * when cleaning up conflicts between the directory names in the
843 * subvolume, directory names in the log and directory names in the
844 * inode back references, we may have to unlink inodes from directories.
845 *
846 * This is a helper function to do the unlink of a specific directory
847 * item
848 */
849static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
850 struct btrfs_root *root,
851 struct btrfs_path *path,
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200852 struct btrfs_inode *dir,
Chris Masone02119d2008-09-05 16:13:11 -0400853 struct btrfs_dir_item *di)
854{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400855 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400856 struct inode *inode;
857 char *name;
858 int name_len;
859 struct extent_buffer *leaf;
860 struct btrfs_key location;
861 int ret;
862
863 leaf = path->nodes[0];
864
865 btrfs_dir_item_key_to_cpu(leaf, di, &location);
866 name_len = btrfs_dir_name_len(leaf, di);
867 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000868 if (!name)
869 return -ENOMEM;
870
Chris Masone02119d2008-09-05 16:13:11 -0400871 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200872 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400873
874 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000875 if (!inode) {
Josef Bacik36508602013-04-25 16:23:32 -0400876 ret = -EIO;
877 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000878 }
Chris Masone02119d2008-09-05 16:13:11 -0400879
Yan Zhengec051c02009-01-05 15:43:42 -0500880 ret = link_to_fixup_dir(trans, root, path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -0400881 if (ret)
882 goto out;
Chris Mason12fcfd22009-03-24 10:24:20 -0400883
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200884 ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name,
885 name_len);
Josef Bacik36508602013-04-25 16:23:32 -0400886 if (ret)
887 goto out;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100888 else
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400889 ret = btrfs_run_delayed_items(trans, fs_info);
Josef Bacik36508602013-04-25 16:23:32 -0400890out:
891 kfree(name);
892 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400893 return ret;
894}
895
896/*
897 * helper function to see if a given name and sequence number found
898 * in an inode back reference are already in a directory and correctly
899 * point to this inode
900 */
901static noinline int inode_in_dir(struct btrfs_root *root,
902 struct btrfs_path *path,
903 u64 dirid, u64 objectid, u64 index,
904 const char *name, int name_len)
905{
906 struct btrfs_dir_item *di;
907 struct btrfs_key location;
908 int match = 0;
909
910 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
911 index, name, name_len, 0);
912 if (di && !IS_ERR(di)) {
913 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
914 if (location.objectid != objectid)
915 goto out;
916 } else
917 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200918 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400919
920 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
921 if (di && !IS_ERR(di)) {
922 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
923 if (location.objectid != objectid)
924 goto out;
925 } else
926 goto out;
927 match = 1;
928out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200929 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400930 return match;
931}
932
933/*
934 * helper function to check a log tree for a named back reference in
935 * an inode. This is used to decide if a back reference that is
936 * found in the subvolume conflicts with what we find in the log.
937 *
938 * inode backreferences may have multiple refs in a single item,
939 * during replay we process one reference at a time, and we don't
940 * want to delete valid links to a file from the subvolume if that
941 * link is also in the log.
942 */
943static noinline int backref_in_log(struct btrfs_root *log,
944 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -0700945 u64 ref_objectid,
Filipe Mananadf8d1162015-01-14 01:52:25 +0000946 const char *name, int namelen)
Chris Masone02119d2008-09-05 16:13:11 -0400947{
948 struct btrfs_path *path;
949 struct btrfs_inode_ref *ref;
950 unsigned long ptr;
951 unsigned long ptr_end;
952 unsigned long name_ptr;
953 int found_name_len;
954 int item_size;
955 int ret;
956 int match = 0;
957
958 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000959 if (!path)
960 return -ENOMEM;
961
Chris Masone02119d2008-09-05 16:13:11 -0400962 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
963 if (ret != 0)
964 goto out;
965
Chris Masone02119d2008-09-05 16:13:11 -0400966 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700967
968 if (key->type == BTRFS_INODE_EXTREF_KEY) {
Filipe Manana1f250e92018-02-28 15:56:10 +0000969 if (btrfs_find_name_in_ext_backref(path->nodes[0],
970 path->slots[0],
971 ref_objectid,
Mark Fashehf1863732012-08-08 11:32:27 -0700972 name, namelen, NULL))
973 match = 1;
974
975 goto out;
976 }
977
978 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -0400979 ptr_end = ptr + item_size;
980 while (ptr < ptr_end) {
981 ref = (struct btrfs_inode_ref *)ptr;
982 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
983 if (found_name_len == namelen) {
984 name_ptr = (unsigned long)(ref + 1);
985 ret = memcmp_extent_buffer(path->nodes[0], name,
986 name_ptr, namelen);
987 if (ret == 0) {
988 match = 1;
989 goto out;
990 }
991 }
992 ptr = (unsigned long)(ref + 1) + found_name_len;
993 }
994out:
995 btrfs_free_path(path);
996 return match;
997}
998
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700999static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
1000 struct btrfs_root *root,
1001 struct btrfs_path *path,
1002 struct btrfs_root *log_root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001003 struct btrfs_inode *dir,
1004 struct btrfs_inode *inode,
Mark Fashehf1863732012-08-08 11:32:27 -07001005 u64 inode_objectid, u64 parent_objectid,
1006 u64 ref_index, char *name, int namelen,
1007 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001008{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001009 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001010 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001011 char *victim_name;
1012 int victim_name_len;
1013 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001014 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -07001015 struct btrfs_key search_key;
1016 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001017
Mark Fashehf1863732012-08-08 11:32:27 -07001018again:
1019 /* Search old style refs */
1020 search_key.objectid = inode_objectid;
1021 search_key.type = BTRFS_INODE_REF_KEY;
1022 search_key.offset = parent_objectid;
1023 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001024 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001025 struct btrfs_inode_ref *victim_ref;
1026 unsigned long ptr;
1027 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -07001028
1029 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001030
1031 /* are we trying to overwrite a back ref for the root directory
1032 * if so, just jump out, we're done
1033 */
Mark Fashehf1863732012-08-08 11:32:27 -07001034 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001035 return 1;
1036
1037 /* check all the names in this back reference to see
1038 * if they are in the log. if so, we allow them to stay
1039 * otherwise they must be unlinked as a conflict
1040 */
1041 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1042 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
1043 while (ptr < ptr_end) {
1044 victim_ref = (struct btrfs_inode_ref *)ptr;
1045 victim_name_len = btrfs_inode_ref_name_len(leaf,
1046 victim_ref);
1047 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001048 if (!victim_name)
1049 return -ENOMEM;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001050
1051 read_extent_buffer(leaf, victim_name,
1052 (unsigned long)(victim_ref + 1),
1053 victim_name_len);
1054
Mark Fashehf1863732012-08-08 11:32:27 -07001055 if (!backref_in_log(log_root, &search_key,
1056 parent_objectid,
1057 victim_name,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001058 victim_name_len)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001059 inc_nlink(&inode->vfs_inode);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001060 btrfs_release_path(path);
1061
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001062 ret = btrfs_unlink_inode(trans, root, dir, inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001063 victim_name, victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -07001064 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001065 if (ret)
1066 return ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001067 ret = btrfs_run_delayed_items(trans, fs_info);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001068 if (ret)
1069 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001070 *search_done = 1;
1071 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001072 }
1073 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001074
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001075 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
1076 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001077
1078 /*
1079 * NOTE: we have searched root tree and checked the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001080 * corresponding ref, it does not need to check again.
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001081 */
1082 *search_done = 1;
1083 }
1084 btrfs_release_path(path);
1085
Mark Fashehf1863732012-08-08 11:32:27 -07001086 /* Same search but for extended refs */
1087 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
1088 inode_objectid, parent_objectid, 0,
1089 0);
1090 if (!IS_ERR_OR_NULL(extref)) {
1091 u32 item_size;
1092 u32 cur_offset = 0;
1093 unsigned long base;
1094 struct inode *victim_parent;
1095
1096 leaf = path->nodes[0];
1097
1098 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1099 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
1100
1101 while (cur_offset < item_size) {
Quentin Casasnovasdd9ef132015-03-03 16:31:38 +01001102 extref = (struct btrfs_inode_extref *)(base + cur_offset);
Mark Fashehf1863732012-08-08 11:32:27 -07001103
1104 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1105
1106 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1107 goto next;
1108
1109 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001110 if (!victim_name)
1111 return -ENOMEM;
Mark Fashehf1863732012-08-08 11:32:27 -07001112 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1113 victim_name_len);
1114
1115 search_key.objectid = inode_objectid;
1116 search_key.type = BTRFS_INODE_EXTREF_KEY;
1117 search_key.offset = btrfs_extref_hash(parent_objectid,
1118 victim_name,
1119 victim_name_len);
1120 ret = 0;
1121 if (!backref_in_log(log_root, &search_key,
1122 parent_objectid, victim_name,
1123 victim_name_len)) {
1124 ret = -ENOENT;
1125 victim_parent = read_one_inode(root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001126 parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001127 if (victim_parent) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001128 inc_nlink(&inode->vfs_inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001129 btrfs_release_path(path);
1130
1131 ret = btrfs_unlink_inode(trans, root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001132 BTRFS_I(victim_parent),
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001133 inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001134 victim_name,
1135 victim_name_len);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001136 if (!ret)
1137 ret = btrfs_run_delayed_items(
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001138 trans,
1139 fs_info);
Mark Fashehf1863732012-08-08 11:32:27 -07001140 }
Mark Fashehf1863732012-08-08 11:32:27 -07001141 iput(victim_parent);
1142 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001143 if (ret)
1144 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001145 *search_done = 1;
1146 goto again;
1147 }
1148 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001149next:
1150 cur_offset += victim_name_len + sizeof(*extref);
1151 }
1152 *search_done = 1;
1153 }
1154 btrfs_release_path(path);
1155
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001156 /* look for a conflicting sequence number */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001157 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -07001158 ref_index, name, namelen, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001159 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001160 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001161 if (ret)
1162 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001163 }
1164 btrfs_release_path(path);
1165
1166 /* look for a conflicing name */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001167 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001168 name, namelen, 0);
1169 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001170 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001171 if (ret)
1172 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001173 }
1174 btrfs_release_path(path);
1175
1176 return 0;
1177}
Chris Masone02119d2008-09-05 16:13:11 -04001178
Qu Wenruobae15d92017-11-08 08:54:26 +08001179static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1180 u32 *namelen, char **name, u64 *index,
1181 u64 *parent_objectid)
Mark Fashehf1863732012-08-08 11:32:27 -07001182{
1183 struct btrfs_inode_extref *extref;
1184
1185 extref = (struct btrfs_inode_extref *)ref_ptr;
1186
1187 *namelen = btrfs_inode_extref_name_len(eb, extref);
1188 *name = kmalloc(*namelen, GFP_NOFS);
1189 if (*name == NULL)
1190 return -ENOMEM;
1191
1192 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1193 *namelen);
1194
Filipe Manana1f250e92018-02-28 15:56:10 +00001195 if (index)
1196 *index = btrfs_inode_extref_index(eb, extref);
Mark Fashehf1863732012-08-08 11:32:27 -07001197 if (parent_objectid)
1198 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1199
1200 return 0;
1201}
1202
Qu Wenruobae15d92017-11-08 08:54:26 +08001203static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1204 u32 *namelen, char **name, u64 *index)
Mark Fashehf1863732012-08-08 11:32:27 -07001205{
1206 struct btrfs_inode_ref *ref;
1207
1208 ref = (struct btrfs_inode_ref *)ref_ptr;
1209
1210 *namelen = btrfs_inode_ref_name_len(eb, ref);
1211 *name = kmalloc(*namelen, GFP_NOFS);
1212 if (*name == NULL)
1213 return -ENOMEM;
1214
1215 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1216
Filipe Manana1f250e92018-02-28 15:56:10 +00001217 if (index)
1218 *index = btrfs_inode_ref_index(eb, ref);
Mark Fashehf1863732012-08-08 11:32:27 -07001219
1220 return 0;
1221}
1222
Chris Masone02119d2008-09-05 16:13:11 -04001223/*
Filipe Manana1f250e92018-02-28 15:56:10 +00001224 * Take an inode reference item from the log tree and iterate all names from the
1225 * inode reference item in the subvolume tree with the same key (if it exists).
1226 * For any name that is not in the inode reference item from the log tree, do a
1227 * proper unlink of that name (that is, remove its entry from the inode
1228 * reference item and both dir index keys).
1229 */
1230static int unlink_old_inode_refs(struct btrfs_trans_handle *trans,
1231 struct btrfs_root *root,
1232 struct btrfs_path *path,
1233 struct btrfs_inode *inode,
1234 struct extent_buffer *log_eb,
1235 int log_slot,
1236 struct btrfs_key *key)
1237{
1238 int ret;
1239 unsigned long ref_ptr;
1240 unsigned long ref_end;
1241 struct extent_buffer *eb;
1242
1243again:
1244 btrfs_release_path(path);
1245 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
1246 if (ret > 0) {
1247 ret = 0;
1248 goto out;
1249 }
1250 if (ret < 0)
1251 goto out;
1252
1253 eb = path->nodes[0];
1254 ref_ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
1255 ref_end = ref_ptr + btrfs_item_size_nr(eb, path->slots[0]);
1256 while (ref_ptr < ref_end) {
1257 char *name = NULL;
1258 int namelen;
1259 u64 parent_id;
1260
1261 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1262 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1263 NULL, &parent_id);
1264 } else {
1265 parent_id = key->offset;
1266 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1267 NULL);
1268 }
1269 if (ret)
1270 goto out;
1271
1272 if (key->type == BTRFS_INODE_EXTREF_KEY)
1273 ret = btrfs_find_name_in_ext_backref(log_eb, log_slot,
1274 parent_id, name,
1275 namelen, NULL);
1276 else
1277 ret = btrfs_find_name_in_backref(log_eb, log_slot, name,
1278 namelen, NULL);
1279
1280 if (!ret) {
1281 struct inode *dir;
1282
1283 btrfs_release_path(path);
1284 dir = read_one_inode(root, parent_id);
1285 if (!dir) {
1286 ret = -ENOENT;
1287 kfree(name);
1288 goto out;
1289 }
1290 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
1291 inode, name, namelen);
1292 kfree(name);
1293 iput(dir);
1294 if (ret)
1295 goto out;
1296 goto again;
1297 }
1298
1299 kfree(name);
1300 ref_ptr += namelen;
1301 if (key->type == BTRFS_INODE_EXTREF_KEY)
1302 ref_ptr += sizeof(struct btrfs_inode_extref);
1303 else
1304 ref_ptr += sizeof(struct btrfs_inode_ref);
1305 }
1306 ret = 0;
1307 out:
1308 btrfs_release_path(path);
1309 return ret;
1310}
1311
1312/*
Chris Masone02119d2008-09-05 16:13:11 -04001313 * replay one inode back reference item found in the log tree.
1314 * eb, slot and key refer to the buffer and key found in the log tree.
1315 * root is the destination we are replaying into, and path is for temp
1316 * use by this function. (it should be released on return).
1317 */
1318static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1319 struct btrfs_root *root,
1320 struct btrfs_root *log,
1321 struct btrfs_path *path,
1322 struct extent_buffer *eb, int slot,
1323 struct btrfs_key *key)
1324{
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001325 struct inode *dir = NULL;
1326 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001327 unsigned long ref_ptr;
1328 unsigned long ref_end;
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001329 char *name = NULL;
liubo34f3e4f2011-08-06 08:35:23 +00001330 int namelen;
1331 int ret;
liuboc622ae62011-03-26 08:01:12 -04001332 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001333 int log_ref_ver = 0;
1334 u64 parent_objectid;
1335 u64 inode_objectid;
Chris Masonf46dbe32012-10-09 11:17:20 -04001336 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001337 int ref_struct_size;
1338
1339 ref_ptr = btrfs_item_ptr_offset(eb, slot);
1340 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1341
1342 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1343 struct btrfs_inode_extref *r;
1344
1345 ref_struct_size = sizeof(struct btrfs_inode_extref);
1346 log_ref_ver = 1;
1347 r = (struct btrfs_inode_extref *)ref_ptr;
1348 parent_objectid = btrfs_inode_extref_parent(eb, r);
1349 } else {
1350 ref_struct_size = sizeof(struct btrfs_inode_ref);
1351 parent_objectid = key->offset;
1352 }
1353 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001354
Chris Masone02119d2008-09-05 16:13:11 -04001355 /*
1356 * it is possible that we didn't log all the parent directories
1357 * for a given inode. If we don't find the dir, just don't
1358 * copy the back ref in. The link count fixup code will take
1359 * care of the rest
1360 */
Mark Fashehf1863732012-08-08 11:32:27 -07001361 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001362 if (!dir) {
1363 ret = -ENOENT;
1364 goto out;
1365 }
Chris Masone02119d2008-09-05 16:13:11 -04001366
Mark Fashehf1863732012-08-08 11:32:27 -07001367 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001368 if (!inode) {
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001369 ret = -EIO;
1370 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001371 }
Chris Masone02119d2008-09-05 16:13:11 -04001372
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001373 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001374 if (log_ref_ver) {
Qu Wenruobae15d92017-11-08 08:54:26 +08001375 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1376 &ref_index, &parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001377 /*
1378 * parent object can change from one array
1379 * item to another.
1380 */
1381 if (!dir)
1382 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001383 if (!dir) {
1384 ret = -ENOENT;
1385 goto out;
1386 }
Mark Fashehf1863732012-08-08 11:32:27 -07001387 } else {
Qu Wenruobae15d92017-11-08 08:54:26 +08001388 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1389 &ref_index);
Mark Fashehf1863732012-08-08 11:32:27 -07001390 }
1391 if (ret)
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001392 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001393
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001394 /* if we already have a perfect match, we're done */
David Sterbaf85b7372017-01-20 14:54:07 +01001395 if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)),
1396 btrfs_ino(BTRFS_I(inode)), ref_index,
1397 name, namelen)) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001398 /*
1399 * look for a conflicting back reference in the
1400 * metadata. if we find one we have to unlink that name
1401 * of the file before we add our new link. Later on, we
1402 * overwrite any existing back reference, and we don't
1403 * want to create dangling pointers in the directory.
1404 */
Chris Masone02119d2008-09-05 16:13:11 -04001405
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001406 if (!search_done) {
1407 ret = __add_inode_ref(trans, root, path, log,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001408 BTRFS_I(dir),
David Sterbad75eefd2017-02-10 20:20:19 +01001409 BTRFS_I(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001410 inode_objectid,
1411 parent_objectid,
1412 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001413 &search_done);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001414 if (ret) {
1415 if (ret == 1)
1416 ret = 0;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001417 goto out;
Josef Bacik36508602013-04-25 16:23:32 -04001418 }
Chris Masone02119d2008-09-05 16:13:11 -04001419 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001420
1421 /* insert our name */
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001422 ret = btrfs_add_link(trans, BTRFS_I(dir),
1423 BTRFS_I(inode),
1424 name, namelen, 0, ref_index);
Josef Bacik36508602013-04-25 16:23:32 -04001425 if (ret)
1426 goto out;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001427
1428 btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001429 }
liuboc622ae62011-03-26 08:01:12 -04001430
Mark Fashehf1863732012-08-08 11:32:27 -07001431 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001432 kfree(name);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001433 name = NULL;
Mark Fashehf1863732012-08-08 11:32:27 -07001434 if (log_ref_ver) {
1435 iput(dir);
1436 dir = NULL;
1437 }
Chris Masone02119d2008-09-05 16:13:11 -04001438 }
Chris Masone02119d2008-09-05 16:13:11 -04001439
Filipe Manana1f250e92018-02-28 15:56:10 +00001440 /*
1441 * Before we overwrite the inode reference item in the subvolume tree
1442 * with the item from the log tree, we must unlink all names from the
1443 * parent directory that are in the subvolume's tree inode reference
1444 * item, otherwise we end up with an inconsistent subvolume tree where
1445 * dir index entries exist for a name but there is no inode reference
1446 * item with the same name.
1447 */
1448 ret = unlink_old_inode_refs(trans, root, path, BTRFS_I(inode), eb, slot,
1449 key);
1450 if (ret)
1451 goto out;
1452
Chris Masone02119d2008-09-05 16:13:11 -04001453 /* finally write the back reference in the inode */
1454 ret = overwrite_item(trans, root, path, eb, slot, key);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001455out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001456 btrfs_release_path(path);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001457 kfree(name);
Chris Masone02119d2008-09-05 16:13:11 -04001458 iput(dir);
1459 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001460 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001461}
1462
Yan, Zhengc71bf092009-11-12 09:34:40 +00001463static int insert_orphan_item(struct btrfs_trans_handle *trans,
David Sterba9c4f61f2015-01-02 19:12:57 +01001464 struct btrfs_root *root, u64 ino)
Yan, Zhengc71bf092009-11-12 09:34:40 +00001465{
1466 int ret;
David Sterba381cf652015-01-02 18:45:16 +01001467
David Sterba9c4f61f2015-01-02 19:12:57 +01001468 ret = btrfs_insert_orphan_item(trans, root, ino);
1469 if (ret == -EEXIST)
1470 ret = 0;
David Sterba381cf652015-01-02 18:45:16 +01001471
Yan, Zhengc71bf092009-11-12 09:34:40 +00001472 return ret;
1473}
1474
Mark Fashehf1863732012-08-08 11:32:27 -07001475static int count_inode_extrefs(struct btrfs_root *root,
Nikolay Borisov36283652017-01-18 00:31:49 +02001476 struct btrfs_inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001477{
Mark Fashehf1863732012-08-08 11:32:27 -07001478 int ret = 0;
1479 int name_len;
1480 unsigned int nlink = 0;
1481 u32 item_size;
1482 u32 cur_offset = 0;
Nikolay Borisov36283652017-01-18 00:31:49 +02001483 u64 inode_objectid = btrfs_ino(inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001484 u64 offset = 0;
1485 unsigned long ptr;
1486 struct btrfs_inode_extref *extref;
1487 struct extent_buffer *leaf;
1488
1489 while (1) {
1490 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1491 &extref, &offset);
1492 if (ret)
1493 break;
1494
1495 leaf = path->nodes[0];
1496 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1497 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Filipe Manana2c2c4522015-01-13 16:40:04 +00001498 cur_offset = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001499
1500 while (cur_offset < item_size) {
1501 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1502 name_len = btrfs_inode_extref_name_len(leaf, extref);
1503
1504 nlink++;
1505
1506 cur_offset += name_len + sizeof(*extref);
1507 }
1508
1509 offset++;
1510 btrfs_release_path(path);
1511 }
1512 btrfs_release_path(path);
1513
Filipe Manana2c2c4522015-01-13 16:40:04 +00001514 if (ret < 0 && ret != -ENOENT)
Mark Fashehf1863732012-08-08 11:32:27 -07001515 return ret;
1516 return nlink;
1517}
1518
1519static int count_inode_refs(struct btrfs_root *root,
Nikolay Borisovf329e312017-01-18 00:31:50 +02001520 struct btrfs_inode *inode, struct btrfs_path *path)
Mark Fashehf1863732012-08-08 11:32:27 -07001521{
Chris Masone02119d2008-09-05 16:13:11 -04001522 int ret;
1523 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001524 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001525 unsigned long ptr;
1526 unsigned long ptr_end;
1527 int name_len;
Nikolay Borisovf329e312017-01-18 00:31:50 +02001528 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001529
Li Zefan33345d012011-04-20 10:31:50 +08001530 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001531 key.type = BTRFS_INODE_REF_KEY;
1532 key.offset = (u64)-1;
1533
Chris Masond3977122009-01-05 21:25:51 -05001534 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001535 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1536 if (ret < 0)
1537 break;
1538 if (ret > 0) {
1539 if (path->slots[0] == 0)
1540 break;
1541 path->slots[0]--;
1542 }
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001543process_slot:
Chris Masone02119d2008-09-05 16:13:11 -04001544 btrfs_item_key_to_cpu(path->nodes[0], &key,
1545 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001546 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001547 key.type != BTRFS_INODE_REF_KEY)
1548 break;
1549 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1550 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1551 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001552 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001553 struct btrfs_inode_ref *ref;
1554
1555 ref = (struct btrfs_inode_ref *)ptr;
1556 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1557 ref);
1558 ptr = (unsigned long)(ref + 1) + name_len;
1559 nlink++;
1560 }
1561
1562 if (key.offset == 0)
1563 break;
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001564 if (path->slots[0] > 0) {
1565 path->slots[0]--;
1566 goto process_slot;
1567 }
Chris Masone02119d2008-09-05 16:13:11 -04001568 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001569 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001570 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001571 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001572
1573 return nlink;
1574}
1575
1576/*
1577 * There are a few corners where the link count of the file can't
1578 * be properly maintained during replay. So, instead of adding
1579 * lots of complexity to the log code, we just scan the backrefs
1580 * for any file that has been through replay.
1581 *
1582 * The scan will update the link count on the inode to reflect the
1583 * number of back refs found. If it goes down to zero, the iput
1584 * will free the inode.
1585 */
1586static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1587 struct btrfs_root *root,
1588 struct inode *inode)
1589{
1590 struct btrfs_path *path;
1591 int ret;
1592 u64 nlink = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001593 u64 ino = btrfs_ino(BTRFS_I(inode));
Mark Fashehf1863732012-08-08 11:32:27 -07001594
1595 path = btrfs_alloc_path();
1596 if (!path)
1597 return -ENOMEM;
1598
Nikolay Borisovf329e312017-01-18 00:31:50 +02001599 ret = count_inode_refs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001600 if (ret < 0)
1601 goto out;
1602
1603 nlink = ret;
1604
Nikolay Borisov36283652017-01-18 00:31:49 +02001605 ret = count_inode_extrefs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001606 if (ret < 0)
1607 goto out;
1608
1609 nlink += ret;
1610
1611 ret = 0;
1612
Chris Masone02119d2008-09-05 16:13:11 -04001613 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001614 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001615 btrfs_update_inode(trans, root, inode);
1616 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001617 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001618
Yan, Zhengc71bf092009-11-12 09:34:40 +00001619 if (inode->i_nlink == 0) {
1620 if (S_ISDIR(inode->i_mode)) {
1621 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001622 ino, 1);
Josef Bacik36508602013-04-25 16:23:32 -04001623 if (ret)
1624 goto out;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001625 }
Li Zefan33345d012011-04-20 10:31:50 +08001626 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001627 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001628
Mark Fashehf1863732012-08-08 11:32:27 -07001629out:
1630 btrfs_free_path(path);
1631 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001632}
1633
1634static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1635 struct btrfs_root *root,
1636 struct btrfs_path *path)
1637{
1638 int ret;
1639 struct btrfs_key key;
1640 struct inode *inode;
1641
1642 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1643 key.type = BTRFS_ORPHAN_ITEM_KEY;
1644 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001645 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001646 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1647 if (ret < 0)
1648 break;
1649
1650 if (ret == 1) {
1651 if (path->slots[0] == 0)
1652 break;
1653 path->slots[0]--;
1654 }
1655
1656 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1657 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1658 key.type != BTRFS_ORPHAN_ITEM_KEY)
1659 break;
1660
1661 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001662 if (ret)
1663 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001664
David Sterbab3b4aa72011-04-21 01:20:15 +02001665 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001666 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001667 if (!inode)
1668 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001669
1670 ret = fixup_inode_link_count(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001671 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001672 if (ret)
1673 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001674
Chris Mason12fcfd22009-03-24 10:24:20 -04001675 /*
1676 * fixup on a directory may create new entries,
1677 * make sure we always look for the highset possible
1678 * offset
1679 */
1680 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001681 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001682 ret = 0;
1683out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001684 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001685 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001686}
1687
1688
1689/*
1690 * record a given inode in the fixup dir so we can check its link
1691 * count when replay is done. The link count is incremented here
1692 * so the inode won't go away until we check it
1693 */
1694static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1695 struct btrfs_root *root,
1696 struct btrfs_path *path,
1697 u64 objectid)
1698{
1699 struct btrfs_key key;
1700 int ret = 0;
1701 struct inode *inode;
1702
1703 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001704 if (!inode)
1705 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001706
1707 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02001708 key.type = BTRFS_ORPHAN_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04001709 key.offset = objectid;
1710
1711 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1712
David Sterbab3b4aa72011-04-21 01:20:15 +02001713 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001714 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001715 if (!inode->i_nlink)
1716 set_nlink(inode, 1);
1717 else
Zach Brown8b558c52013-10-16 12:10:34 -07001718 inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001719 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001720 } else if (ret == -EEXIST) {
1721 ret = 0;
1722 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001723 BUG(); /* Logic Error */
Chris Masone02119d2008-09-05 16:13:11 -04001724 }
1725 iput(inode);
1726
1727 return ret;
1728}
1729
1730/*
1731 * when replaying the log for a directory, we only insert names
1732 * for inodes that actually exist. This means an fsync on a directory
1733 * does not implicitly fsync all the new files in it
1734 */
1735static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1736 struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04001737 u64 dirid, u64 index,
Zhaolei60d53eb2015-08-17 18:44:46 +08001738 char *name, int name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001739 struct btrfs_key *location)
1740{
1741 struct inode *inode;
1742 struct inode *dir;
1743 int ret;
1744
1745 inode = read_one_inode(root, location->objectid);
1746 if (!inode)
1747 return -ENOENT;
1748
1749 dir = read_one_inode(root, dirid);
1750 if (!dir) {
1751 iput(inode);
1752 return -EIO;
1753 }
Josef Bacikd5554382013-09-11 14:17:00 -04001754
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001755 ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name,
1756 name_len, 1, index);
Chris Masone02119d2008-09-05 16:13:11 -04001757
1758 /* FIXME, put inode into FIXUP list */
1759
1760 iput(inode);
1761 iput(dir);
1762 return ret;
1763}
1764
1765/*
Filipe Mananadf8d1162015-01-14 01:52:25 +00001766 * Return true if an inode reference exists in the log for the given name,
1767 * inode and parent inode.
1768 */
1769static bool name_in_log_ref(struct btrfs_root *log_root,
1770 const char *name, const int name_len,
1771 const u64 dirid, const u64 ino)
1772{
1773 struct btrfs_key search_key;
1774
1775 search_key.objectid = ino;
1776 search_key.type = BTRFS_INODE_REF_KEY;
1777 search_key.offset = dirid;
1778 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1779 return true;
1780
1781 search_key.type = BTRFS_INODE_EXTREF_KEY;
1782 search_key.offset = btrfs_extref_hash(dirid, name, name_len);
1783 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1784 return true;
1785
1786 return false;
1787}
1788
1789/*
Chris Masone02119d2008-09-05 16:13:11 -04001790 * take a single entry in a log directory item and replay it into
1791 * the subvolume.
1792 *
1793 * if a conflicting item exists in the subdirectory already,
1794 * the inode it points to is unlinked and put into the link count
1795 * fix up tree.
1796 *
1797 * If a name from the log points to a file or directory that does
1798 * not exist in the FS, it is skipped. fsyncs on directories
1799 * do not force down inodes inside that directory, just changes to the
1800 * names or unlinks in a directory.
Filipe Mananabb53eda2015-07-15 23:26:43 +01001801 *
1802 * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a
1803 * non-existing inode) and 1 if the name was replayed.
Chris Masone02119d2008-09-05 16:13:11 -04001804 */
1805static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1806 struct btrfs_root *root,
1807 struct btrfs_path *path,
1808 struct extent_buffer *eb,
1809 struct btrfs_dir_item *di,
1810 struct btrfs_key *key)
1811{
1812 char *name;
1813 int name_len;
1814 struct btrfs_dir_item *dst_di;
1815 struct btrfs_key found_key;
1816 struct btrfs_key log_key;
1817 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001818 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001819 int exists;
Josef Bacik36508602013-04-25 16:23:32 -04001820 int ret = 0;
Josef Bacikd5554382013-09-11 14:17:00 -04001821 bool update_size = (key->type == BTRFS_DIR_INDEX_KEY);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001822 bool name_added = false;
Chris Masone02119d2008-09-05 16:13:11 -04001823
1824 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001825 if (!dir)
1826 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001827
1828 name_len = btrfs_dir_name_len(eb, di);
1829 name = kmalloc(name_len, GFP_NOFS);
Filipe David Borba Manana2bac3252013-08-04 19:58:57 +01001830 if (!name) {
1831 ret = -ENOMEM;
1832 goto out;
1833 }
liubo2a29edc2011-01-26 06:22:08 +00001834
Chris Masone02119d2008-09-05 16:13:11 -04001835 log_type = btrfs_dir_type(eb, di);
1836 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1837 name_len);
1838
1839 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001840 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1841 if (exists == 0)
1842 exists = 1;
1843 else
1844 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001845 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001846
Chris Masone02119d2008-09-05 16:13:11 -04001847 if (key->type == BTRFS_DIR_ITEM_KEY) {
1848 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1849 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001850 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001851 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1852 key->objectid,
1853 key->offset, name,
1854 name_len, 1);
1855 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001856 /* Corruption */
1857 ret = -EINVAL;
1858 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001859 }
David Sterbac7040052011-04-19 18:00:01 +02001860 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001861 /* we need a sequence number to insert, so we only
1862 * do inserts for the BTRFS_DIR_INDEX_KEY types
1863 */
1864 if (key->type != BTRFS_DIR_INDEX_KEY)
1865 goto out;
1866 goto insert;
1867 }
1868
1869 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1870 /* the existing item matches the logged item */
1871 if (found_key.objectid == log_key.objectid &&
1872 found_key.type == log_key.type &&
1873 found_key.offset == log_key.offset &&
1874 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
Filipe Mananaa2cc11d2014-09-08 22:53:18 +01001875 update_size = false;
Chris Masone02119d2008-09-05 16:13:11 -04001876 goto out;
1877 }
1878
1879 /*
1880 * don't drop the conflicting directory entry if the inode
1881 * for the new entry doesn't exist
1882 */
Chris Mason4bef0842008-09-08 11:18:08 -04001883 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001884 goto out;
1885
Nikolay Borisov207e7d92017-01-18 00:31:45 +02001886 ret = drop_one_dir_item(trans, root, path, BTRFS_I(dir), dst_di);
Josef Bacik36508602013-04-25 16:23:32 -04001887 if (ret)
1888 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001889
1890 if (key->type == BTRFS_DIR_INDEX_KEY)
1891 goto insert;
1892out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001893 btrfs_release_path(path);
Josef Bacikd5554382013-09-11 14:17:00 -04001894 if (!ret && update_size) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02001895 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2);
Josef Bacikd5554382013-09-11 14:17:00 -04001896 ret = btrfs_update_inode(trans, root, dir);
1897 }
Chris Masone02119d2008-09-05 16:13:11 -04001898 kfree(name);
1899 iput(dir);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001900 if (!ret && name_added)
1901 ret = 1;
Josef Bacik36508602013-04-25 16:23:32 -04001902 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001903
1904insert:
Filipe Mananadf8d1162015-01-14 01:52:25 +00001905 if (name_in_log_ref(root->log_root, name, name_len,
1906 key->objectid, log_key.objectid)) {
1907 /* The dentry will be added later. */
1908 ret = 0;
1909 update_size = false;
1910 goto out;
1911 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001912 btrfs_release_path(path);
Zhaolei60d53eb2015-08-17 18:44:46 +08001913 ret = insert_one_name(trans, root, key->objectid, key->offset,
1914 name, name_len, &log_key);
Filipe Mananadf8d1162015-01-14 01:52:25 +00001915 if (ret && ret != -ENOENT && ret != -EEXIST)
Josef Bacik36508602013-04-25 16:23:32 -04001916 goto out;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001917 if (!ret)
1918 name_added = true;
Josef Bacikd5554382013-09-11 14:17:00 -04001919 update_size = false;
Josef Bacik36508602013-04-25 16:23:32 -04001920 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001921 goto out;
1922}
1923
1924/*
1925 * find all the names in a directory item and reconcile them into
1926 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1927 * one name in a directory item, but the same code gets used for
1928 * both directory index types
1929 */
1930static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1931 struct btrfs_root *root,
1932 struct btrfs_path *path,
1933 struct extent_buffer *eb, int slot,
1934 struct btrfs_key *key)
1935{
Filipe Mananabb53eda2015-07-15 23:26:43 +01001936 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001937 u32 item_size = btrfs_item_size_nr(eb, slot);
1938 struct btrfs_dir_item *di;
1939 int name_len;
1940 unsigned long ptr;
1941 unsigned long ptr_end;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001942 struct btrfs_path *fixup_path = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001943
1944 ptr = btrfs_item_ptr_offset(eb, slot);
1945 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001946 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001947 di = (struct btrfs_dir_item *)ptr;
1948 name_len = btrfs_dir_name_len(eb, di);
1949 ret = replay_one_name(trans, root, path, eb, di, key);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001950 if (ret < 0)
1951 break;
Chris Masone02119d2008-09-05 16:13:11 -04001952 ptr = (unsigned long)(di + 1);
1953 ptr += name_len;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001954
1955 /*
1956 * If this entry refers to a non-directory (directories can not
1957 * have a link count > 1) and it was added in the transaction
1958 * that was not committed, make sure we fixup the link count of
1959 * the inode it the entry points to. Otherwise something like
1960 * the following would result in a directory pointing to an
1961 * inode with a wrong link that does not account for this dir
1962 * entry:
1963 *
1964 * mkdir testdir
1965 * touch testdir/foo
1966 * touch testdir/bar
1967 * sync
1968 *
1969 * ln testdir/bar testdir/bar_link
1970 * ln testdir/foo testdir/foo_link
1971 * xfs_io -c "fsync" testdir/bar
1972 *
1973 * <power failure>
1974 *
1975 * mount fs, log replay happens
1976 *
1977 * File foo would remain with a link count of 1 when it has two
1978 * entries pointing to it in the directory testdir. This would
1979 * make it impossible to ever delete the parent directory has
1980 * it would result in stale dentries that can never be deleted.
1981 */
1982 if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) {
1983 struct btrfs_key di_key;
1984
1985 if (!fixup_path) {
1986 fixup_path = btrfs_alloc_path();
1987 if (!fixup_path) {
1988 ret = -ENOMEM;
1989 break;
1990 }
1991 }
1992
1993 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1994 ret = link_to_fixup_dir(trans, root, fixup_path,
1995 di_key.objectid);
1996 if (ret)
1997 break;
1998 }
1999 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002000 }
Filipe Mananabb53eda2015-07-15 23:26:43 +01002001 btrfs_free_path(fixup_path);
2002 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002003}
2004
2005/*
2006 * directory replay has two parts. There are the standard directory
2007 * items in the log copied from the subvolume, and range items
2008 * created in the log while the subvolume was logged.
2009 *
2010 * The range items tell us which parts of the key space the log
2011 * is authoritative for. During replay, if a key in the subvolume
2012 * directory is in a logged range item, but not actually in the log
2013 * that means it was deleted from the directory before the fsync
2014 * and should be removed.
2015 */
2016static noinline int find_dir_range(struct btrfs_root *root,
2017 struct btrfs_path *path,
2018 u64 dirid, int key_type,
2019 u64 *start_ret, u64 *end_ret)
2020{
2021 struct btrfs_key key;
2022 u64 found_end;
2023 struct btrfs_dir_log_item *item;
2024 int ret;
2025 int nritems;
2026
2027 if (*start_ret == (u64)-1)
2028 return 1;
2029
2030 key.objectid = dirid;
2031 key.type = key_type;
2032 key.offset = *start_ret;
2033
2034 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2035 if (ret < 0)
2036 goto out;
2037 if (ret > 0) {
2038 if (path->slots[0] == 0)
2039 goto out;
2040 path->slots[0]--;
2041 }
2042 if (ret != 0)
2043 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2044
2045 if (key.type != key_type || key.objectid != dirid) {
2046 ret = 1;
2047 goto next;
2048 }
2049 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2050 struct btrfs_dir_log_item);
2051 found_end = btrfs_dir_log_end(path->nodes[0], item);
2052
2053 if (*start_ret >= key.offset && *start_ret <= found_end) {
2054 ret = 0;
2055 *start_ret = key.offset;
2056 *end_ret = found_end;
2057 goto out;
2058 }
2059 ret = 1;
2060next:
2061 /* check the next slot in the tree to see if it is a valid item */
2062 nritems = btrfs_header_nritems(path->nodes[0]);
Robbie Ko2a7bf532016-10-07 17:30:47 +08002063 path->slots[0]++;
Chris Masone02119d2008-09-05 16:13:11 -04002064 if (path->slots[0] >= nritems) {
2065 ret = btrfs_next_leaf(root, path);
2066 if (ret)
2067 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002068 }
2069
2070 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
2071
2072 if (key.type != key_type || key.objectid != dirid) {
2073 ret = 1;
2074 goto out;
2075 }
2076 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2077 struct btrfs_dir_log_item);
2078 found_end = btrfs_dir_log_end(path->nodes[0], item);
2079 *start_ret = key.offset;
2080 *end_ret = found_end;
2081 ret = 0;
2082out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002083 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002084 return ret;
2085}
2086
2087/*
2088 * this looks for a given directory item in the log. If the directory
2089 * item is not in the log, the item is removed and the inode it points
2090 * to is unlinked
2091 */
2092static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
2093 struct btrfs_root *root,
2094 struct btrfs_root *log,
2095 struct btrfs_path *path,
2096 struct btrfs_path *log_path,
2097 struct inode *dir,
2098 struct btrfs_key *dir_key)
2099{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002100 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002101 int ret;
2102 struct extent_buffer *eb;
2103 int slot;
2104 u32 item_size;
2105 struct btrfs_dir_item *di;
2106 struct btrfs_dir_item *log_di;
2107 int name_len;
2108 unsigned long ptr;
2109 unsigned long ptr_end;
2110 char *name;
2111 struct inode *inode;
2112 struct btrfs_key location;
2113
2114again:
2115 eb = path->nodes[0];
2116 slot = path->slots[0];
2117 item_size = btrfs_item_size_nr(eb, slot);
2118 ptr = btrfs_item_ptr_offset(eb, slot);
2119 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05002120 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04002121 di = (struct btrfs_dir_item *)ptr;
2122 name_len = btrfs_dir_name_len(eb, di);
2123 name = kmalloc(name_len, GFP_NOFS);
2124 if (!name) {
2125 ret = -ENOMEM;
2126 goto out;
2127 }
2128 read_extent_buffer(eb, name, (unsigned long)(di + 1),
2129 name_len);
2130 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04002131 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002132 log_di = btrfs_lookup_dir_item(trans, log, log_path,
2133 dir_key->objectid,
2134 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04002135 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002136 log_di = btrfs_lookup_dir_index_item(trans, log,
2137 log_path,
2138 dir_key->objectid,
2139 dir_key->offset,
2140 name, name_len, 0);
2141 }
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002142 if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) {
Chris Masone02119d2008-09-05 16:13:11 -04002143 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02002144 btrfs_release_path(path);
2145 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002146 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00002147 if (!inode) {
2148 kfree(name);
2149 return -EIO;
2150 }
Chris Masone02119d2008-09-05 16:13:11 -04002151
2152 ret = link_to_fixup_dir(trans, root,
2153 path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -04002154 if (ret) {
2155 kfree(name);
2156 iput(inode);
2157 goto out;
2158 }
2159
Zach Brown8b558c52013-10-16 12:10:34 -07002160 inc_nlink(inode);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02002161 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
2162 BTRFS_I(inode), name, name_len);
Josef Bacik36508602013-04-25 16:23:32 -04002163 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002164 ret = btrfs_run_delayed_items(trans, fs_info);
Chris Masone02119d2008-09-05 16:13:11 -04002165 kfree(name);
2166 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04002167 if (ret)
2168 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002169
2170 /* there might still be more names under this key
2171 * check and repeat if required
2172 */
2173 ret = btrfs_search_slot(NULL, root, dir_key, path,
2174 0, 0);
2175 if (ret == 0)
2176 goto again;
2177 ret = 0;
2178 goto out;
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002179 } else if (IS_ERR(log_di)) {
2180 kfree(name);
2181 return PTR_ERR(log_di);
Chris Masone02119d2008-09-05 16:13:11 -04002182 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002183 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002184 kfree(name);
2185
2186 ptr = (unsigned long)(di + 1);
2187 ptr += name_len;
2188 }
2189 ret = 0;
2190out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002191 btrfs_release_path(path);
2192 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002193 return ret;
2194}
2195
Filipe Manana4f764e52015-02-23 19:53:35 +00002196static int replay_xattr_deletes(struct btrfs_trans_handle *trans,
2197 struct btrfs_root *root,
2198 struct btrfs_root *log,
2199 struct btrfs_path *path,
2200 const u64 ino)
2201{
2202 struct btrfs_key search_key;
2203 struct btrfs_path *log_path;
2204 int i;
2205 int nritems;
2206 int ret;
2207
2208 log_path = btrfs_alloc_path();
2209 if (!log_path)
2210 return -ENOMEM;
2211
2212 search_key.objectid = ino;
2213 search_key.type = BTRFS_XATTR_ITEM_KEY;
2214 search_key.offset = 0;
2215again:
2216 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
2217 if (ret < 0)
2218 goto out;
2219process_leaf:
2220 nritems = btrfs_header_nritems(path->nodes[0]);
2221 for (i = path->slots[0]; i < nritems; i++) {
2222 struct btrfs_key key;
2223 struct btrfs_dir_item *di;
2224 struct btrfs_dir_item *log_di;
2225 u32 total_size;
2226 u32 cur;
2227
2228 btrfs_item_key_to_cpu(path->nodes[0], &key, i);
2229 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) {
2230 ret = 0;
2231 goto out;
2232 }
2233
2234 di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item);
2235 total_size = btrfs_item_size_nr(path->nodes[0], i);
2236 cur = 0;
2237 while (cur < total_size) {
2238 u16 name_len = btrfs_dir_name_len(path->nodes[0], di);
2239 u16 data_len = btrfs_dir_data_len(path->nodes[0], di);
2240 u32 this_len = sizeof(*di) + name_len + data_len;
2241 char *name;
2242
2243 name = kmalloc(name_len, GFP_NOFS);
2244 if (!name) {
2245 ret = -ENOMEM;
2246 goto out;
2247 }
2248 read_extent_buffer(path->nodes[0], name,
2249 (unsigned long)(di + 1), name_len);
2250
2251 log_di = btrfs_lookup_xattr(NULL, log, log_path, ino,
2252 name, name_len, 0);
2253 btrfs_release_path(log_path);
2254 if (!log_di) {
2255 /* Doesn't exist in log tree, so delete it. */
2256 btrfs_release_path(path);
2257 di = btrfs_lookup_xattr(trans, root, path, ino,
2258 name, name_len, -1);
2259 kfree(name);
2260 if (IS_ERR(di)) {
2261 ret = PTR_ERR(di);
2262 goto out;
2263 }
2264 ASSERT(di);
2265 ret = btrfs_delete_one_dir_name(trans, root,
2266 path, di);
2267 if (ret)
2268 goto out;
2269 btrfs_release_path(path);
2270 search_key = key;
2271 goto again;
2272 }
2273 kfree(name);
2274 if (IS_ERR(log_di)) {
2275 ret = PTR_ERR(log_di);
2276 goto out;
2277 }
2278 cur += this_len;
2279 di = (struct btrfs_dir_item *)((char *)di + this_len);
2280 }
2281 }
2282 ret = btrfs_next_leaf(root, path);
2283 if (ret > 0)
2284 ret = 0;
2285 else if (ret == 0)
2286 goto process_leaf;
2287out:
2288 btrfs_free_path(log_path);
2289 btrfs_release_path(path);
2290 return ret;
2291}
2292
2293
Chris Masone02119d2008-09-05 16:13:11 -04002294/*
2295 * deletion replay happens before we copy any new directory items
2296 * out of the log or out of backreferences from inodes. It
2297 * scans the log to find ranges of keys that log is authoritative for,
2298 * and then scans the directory to find items in those ranges that are
2299 * not present in the log.
2300 *
2301 * Anything we don't find in the log is unlinked and removed from the
2302 * directory.
2303 */
2304static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
2305 struct btrfs_root *root,
2306 struct btrfs_root *log,
2307 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002308 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04002309{
2310 u64 range_start;
2311 u64 range_end;
2312 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
2313 int ret = 0;
2314 struct btrfs_key dir_key;
2315 struct btrfs_key found_key;
2316 struct btrfs_path *log_path;
2317 struct inode *dir;
2318
2319 dir_key.objectid = dirid;
2320 dir_key.type = BTRFS_DIR_ITEM_KEY;
2321 log_path = btrfs_alloc_path();
2322 if (!log_path)
2323 return -ENOMEM;
2324
2325 dir = read_one_inode(root, dirid);
2326 /* it isn't an error if the inode isn't there, that can happen
2327 * because we replay the deletes before we copy in the inode item
2328 * from the log
2329 */
2330 if (!dir) {
2331 btrfs_free_path(log_path);
2332 return 0;
2333 }
2334again:
2335 range_start = 0;
2336 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05002337 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002338 if (del_all)
2339 range_end = (u64)-1;
2340 else {
2341 ret = find_dir_range(log, path, dirid, key_type,
2342 &range_start, &range_end);
2343 if (ret != 0)
2344 break;
2345 }
Chris Masone02119d2008-09-05 16:13:11 -04002346
2347 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05002348 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002349 int nritems;
2350 ret = btrfs_search_slot(NULL, root, &dir_key, path,
2351 0, 0);
2352 if (ret < 0)
2353 goto out;
2354
2355 nritems = btrfs_header_nritems(path->nodes[0]);
2356 if (path->slots[0] >= nritems) {
2357 ret = btrfs_next_leaf(root, path);
2358 if (ret)
2359 break;
2360 }
2361 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2362 path->slots[0]);
2363 if (found_key.objectid != dirid ||
2364 found_key.type != dir_key.type)
2365 goto next_type;
2366
2367 if (found_key.offset > range_end)
2368 break;
2369
2370 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002371 log_path, dir,
2372 &found_key);
Josef Bacik36508602013-04-25 16:23:32 -04002373 if (ret)
2374 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002375 if (found_key.offset == (u64)-1)
2376 break;
2377 dir_key.offset = found_key.offset + 1;
2378 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002379 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002380 if (range_end == (u64)-1)
2381 break;
2382 range_start = range_end + 1;
2383 }
2384
2385next_type:
2386 ret = 0;
2387 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
2388 key_type = BTRFS_DIR_LOG_INDEX_KEY;
2389 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002390 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002391 goto again;
2392 }
2393out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002394 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002395 btrfs_free_path(log_path);
2396 iput(dir);
2397 return ret;
2398}
2399
2400/*
2401 * the process_func used to replay items from the log tree. This
2402 * gets called in two different stages. The first stage just looks
2403 * for inodes and makes sure they are all copied into the subvolume.
2404 *
2405 * The second stage copies all the other item types from the log into
2406 * the subvolume. The two stage approach is slower, but gets rid of
2407 * lots of complexity around inodes referencing other inodes that exist
2408 * only in the log (references come from either directory items or inode
2409 * back refs).
2410 */
2411static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
2412 struct walk_control *wc, u64 gen)
2413{
2414 int nritems;
2415 struct btrfs_path *path;
2416 struct btrfs_root *root = wc->replay_dest;
2417 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002418 int level;
2419 int i;
2420 int ret;
2421
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002422 ret = btrfs_read_buffer(eb, gen);
2423 if (ret)
2424 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002425
2426 level = btrfs_header_level(eb);
2427
2428 if (level != 0)
2429 return 0;
2430
2431 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002432 if (!path)
2433 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002434
2435 nritems = btrfs_header_nritems(eb);
2436 for (i = 0; i < nritems; i++) {
2437 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04002438
2439 /* inode keys are done during the first stage */
2440 if (key.type == BTRFS_INODE_ITEM_KEY &&
2441 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04002442 struct btrfs_inode_item *inode_item;
2443 u32 mode;
2444
2445 inode_item = btrfs_item_ptr(eb, i,
2446 struct btrfs_inode_item);
Filipe Manana4f764e52015-02-23 19:53:35 +00002447 ret = replay_xattr_deletes(wc->trans, root, log,
2448 path, key.objectid);
2449 if (ret)
2450 break;
Chris Masone02119d2008-09-05 16:13:11 -04002451 mode = btrfs_inode_mode(eb, inode_item);
2452 if (S_ISDIR(mode)) {
2453 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04002454 root, log, path, key.objectid, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002455 if (ret)
2456 break;
Chris Masone02119d2008-09-05 16:13:11 -04002457 }
2458 ret = overwrite_item(wc->trans, root, path,
2459 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002460 if (ret)
2461 break;
Chris Masone02119d2008-09-05 16:13:11 -04002462
Yan, Zhengc71bf092009-11-12 09:34:40 +00002463 /* for regular files, make sure corresponding
Nicholas D Steeves01327612016-05-19 21:18:45 -04002464 * orphan item exist. extents past the new EOF
Yan, Zhengc71bf092009-11-12 09:34:40 +00002465 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04002466 */
2467 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00002468 ret = insert_orphan_item(wc->trans, root,
2469 key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002470 if (ret)
2471 break;
Chris Masone02119d2008-09-05 16:13:11 -04002472 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00002473
Chris Masone02119d2008-09-05 16:13:11 -04002474 ret = link_to_fixup_dir(wc->trans, root,
2475 path, key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002476 if (ret)
2477 break;
Chris Masone02119d2008-09-05 16:13:11 -04002478 }
Josef Bacikdd8e7212013-09-11 11:57:23 -04002479
2480 if (key.type == BTRFS_DIR_INDEX_KEY &&
2481 wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2482 ret = replay_one_dir_item(wc->trans, root, path,
2483 eb, i, &key);
2484 if (ret)
2485 break;
2486 }
2487
Chris Masone02119d2008-09-05 16:13:11 -04002488 if (wc->stage < LOG_WALK_REPLAY_ALL)
2489 continue;
2490
2491 /* these keys are simply copied */
2492 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2493 ret = overwrite_item(wc->trans, root, path,
2494 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002495 if (ret)
2496 break;
Liu Bo2da1c662013-05-26 13:50:29 +00002497 } else if (key.type == BTRFS_INODE_REF_KEY ||
2498 key.type == BTRFS_INODE_EXTREF_KEY) {
Mark Fashehf1863732012-08-08 11:32:27 -07002499 ret = add_inode_ref(wc->trans, root, log, path,
2500 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002501 if (ret && ret != -ENOENT)
2502 break;
2503 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002504 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2505 ret = replay_one_extent(wc->trans, root, path,
2506 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002507 if (ret)
2508 break;
Josef Bacikdd8e7212013-09-11 11:57:23 -04002509 } else if (key.type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002510 ret = replay_one_dir_item(wc->trans, root, path,
2511 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002512 if (ret)
2513 break;
Chris Masone02119d2008-09-05 16:13:11 -04002514 }
2515 }
2516 btrfs_free_path(path);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002517 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002518}
2519
Chris Masond3977122009-01-05 21:25:51 -05002520static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002521 struct btrfs_root *root,
2522 struct btrfs_path *path, int *level,
2523 struct walk_control *wc)
2524{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002525 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002526 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002527 u64 bytenr;
2528 u64 ptr_gen;
2529 struct extent_buffer *next;
2530 struct extent_buffer *cur;
2531 struct extent_buffer *parent;
2532 u32 blocksize;
2533 int ret = 0;
2534
2535 WARN_ON(*level < 0);
2536 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2537
Chris Masond3977122009-01-05 21:25:51 -05002538 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002539 WARN_ON(*level < 0);
2540 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2541 cur = path->nodes[*level];
2542
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302543 WARN_ON(btrfs_header_level(cur) != *level);
Chris Masone02119d2008-09-05 16:13:11 -04002544
2545 if (path->slots[*level] >=
2546 btrfs_header_nritems(cur))
2547 break;
2548
2549 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2550 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002551 blocksize = fs_info->nodesize;
Chris Masone02119d2008-09-05 16:13:11 -04002552
2553 parent = path->nodes[*level];
2554 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04002555
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002556 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07002557 if (IS_ERR(next))
2558 return PTR_ERR(next);
Chris Masone02119d2008-09-05 16:13:11 -04002559
Chris Masone02119d2008-09-05 16:13:11 -04002560 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002561 ret = wc->process_func(root, next, wc, ptr_gen);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002562 if (ret) {
2563 free_extent_buffer(next);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002564 return ret;
Josef Bacikb50c6e22013-04-25 15:55:30 -04002565 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002566
Chris Masone02119d2008-09-05 16:13:11 -04002567 path->slots[*level]++;
2568 if (wc->free) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002569 ret = btrfs_read_buffer(next, ptr_gen);
2570 if (ret) {
2571 free_extent_buffer(next);
2572 return ret;
2573 }
Chris Masone02119d2008-09-05 16:13:11 -04002574
Josef Bacik681ae502013-10-07 15:11:00 -04002575 if (trans) {
2576 btrfs_tree_lock(next);
2577 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002578 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002579 btrfs_wait_tree_block_writeback(next);
2580 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002581 } else {
2582 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2583 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002584 }
Chris Masone02119d2008-09-05 16:13:11 -04002585
Chris Masone02119d2008-09-05 16:13:11 -04002586 WARN_ON(root_owner !=
2587 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002588 ret = btrfs_free_and_pin_reserved_extent(
2589 fs_info, bytenr,
2590 blocksize);
Josef Bacik36508602013-04-25 16:23:32 -04002591 if (ret) {
2592 free_extent_buffer(next);
2593 return ret;
2594 }
Chris Masone02119d2008-09-05 16:13:11 -04002595 }
2596 free_extent_buffer(next);
2597 continue;
2598 }
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002599 ret = btrfs_read_buffer(next, ptr_gen);
2600 if (ret) {
2601 free_extent_buffer(next);
2602 return ret;
2603 }
Chris Masone02119d2008-09-05 16:13:11 -04002604
2605 WARN_ON(*level <= 0);
2606 if (path->nodes[*level-1])
2607 free_extent_buffer(path->nodes[*level-1]);
2608 path->nodes[*level-1] = next;
2609 *level = btrfs_header_level(next);
2610 path->slots[*level] = 0;
2611 cond_resched();
2612 }
2613 WARN_ON(*level < 0);
2614 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2615
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002616 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002617
2618 cond_resched();
2619 return 0;
2620}
2621
Chris Masond3977122009-01-05 21:25:51 -05002622static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002623 struct btrfs_root *root,
2624 struct btrfs_path *path, int *level,
2625 struct walk_control *wc)
2626{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002627 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002628 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002629 int i;
2630 int slot;
2631 int ret;
2632
Chris Masond3977122009-01-05 21:25:51 -05002633 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002634 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002635 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002636 path->slots[i]++;
2637 *level = i;
2638 WARN_ON(*level == 0);
2639 return 0;
2640 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04002641 struct extent_buffer *parent;
2642 if (path->nodes[*level] == root->node)
2643 parent = path->nodes[*level];
2644 else
2645 parent = path->nodes[*level + 1];
2646
2647 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002648 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002649 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002650 if (ret)
2651 return ret;
2652
Chris Masone02119d2008-09-05 16:13:11 -04002653 if (wc->free) {
2654 struct extent_buffer *next;
2655
2656 next = path->nodes[*level];
2657
Josef Bacik681ae502013-10-07 15:11:00 -04002658 if (trans) {
2659 btrfs_tree_lock(next);
2660 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002661 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002662 btrfs_wait_tree_block_writeback(next);
2663 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002664 } else {
2665 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2666 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002667 }
Chris Masone02119d2008-09-05 16:13:11 -04002668
Chris Masone02119d2008-09-05 16:13:11 -04002669 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002670 ret = btrfs_free_and_pin_reserved_extent(
2671 fs_info,
Chris Masone02119d2008-09-05 16:13:11 -04002672 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04002673 path->nodes[*level]->len);
Josef Bacik36508602013-04-25 16:23:32 -04002674 if (ret)
2675 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002676 }
2677 free_extent_buffer(path->nodes[*level]);
2678 path->nodes[*level] = NULL;
2679 *level = i + 1;
2680 }
2681 }
2682 return 1;
2683}
2684
2685/*
2686 * drop the reference count on the tree rooted at 'snap'. This traverses
2687 * the tree freeing any blocks that have a ref count of zero after being
2688 * decremented.
2689 */
2690static int walk_log_tree(struct btrfs_trans_handle *trans,
2691 struct btrfs_root *log, struct walk_control *wc)
2692{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002693 struct btrfs_fs_info *fs_info = log->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002694 int ret = 0;
2695 int wret;
2696 int level;
2697 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04002698 int orig_level;
2699
2700 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002701 if (!path)
2702 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002703
2704 level = btrfs_header_level(log->node);
2705 orig_level = level;
2706 path->nodes[level] = log->node;
2707 extent_buffer_get(log->node);
2708 path->slots[level] = 0;
2709
Chris Masond3977122009-01-05 21:25:51 -05002710 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002711 wret = walk_down_log_tree(trans, log, path, &level, wc);
2712 if (wret > 0)
2713 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002714 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002715 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002716 goto out;
2717 }
Chris Masone02119d2008-09-05 16:13:11 -04002718
2719 wret = walk_up_log_tree(trans, log, path, &level, wc);
2720 if (wret > 0)
2721 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002722 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002723 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002724 goto out;
2725 }
Chris Masone02119d2008-09-05 16:13:11 -04002726 }
2727
2728 /* was the root node processed? if not, catch it here */
2729 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002730 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002731 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002732 if (ret)
2733 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002734 if (wc->free) {
2735 struct extent_buffer *next;
2736
2737 next = path->nodes[orig_level];
2738
Josef Bacik681ae502013-10-07 15:11:00 -04002739 if (trans) {
2740 btrfs_tree_lock(next);
2741 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002742 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002743 btrfs_wait_tree_block_writeback(next);
2744 btrfs_tree_unlock(next);
Liu Bo18464302018-01-25 11:02:51 -07002745 } else {
2746 if (test_and_clear_bit(EXTENT_BUFFER_DIRTY, &next->bflags))
2747 clear_extent_buffer_dirty(next);
Josef Bacik681ae502013-10-07 15:11:00 -04002748 }
Chris Masone02119d2008-09-05 16:13:11 -04002749
Chris Masone02119d2008-09-05 16:13:11 -04002750 WARN_ON(log->root_key.objectid !=
2751 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002752 ret = btrfs_free_and_pin_reserved_extent(fs_info,
2753 next->start, next->len);
Josef Bacik36508602013-04-25 16:23:32 -04002754 if (ret)
2755 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002756 }
2757 }
2758
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002759out:
Chris Masone02119d2008-09-05 16:13:11 -04002760 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002761 return ret;
2762}
2763
Yan Zheng7237f182009-01-21 12:54:03 -05002764/*
2765 * helper function to update the item for a given subvolumes log root
2766 * in the tree of log roots
2767 */
2768static int update_log_root(struct btrfs_trans_handle *trans,
2769 struct btrfs_root *log)
2770{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002771 struct btrfs_fs_info *fs_info = log->fs_info;
Yan Zheng7237f182009-01-21 12:54:03 -05002772 int ret;
2773
2774 if (log->log_transid == 1) {
2775 /* insert root item on the first sync */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002776 ret = btrfs_insert_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002777 &log->root_key, &log->root_item);
2778 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002779 ret = btrfs_update_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002780 &log->root_key, &log->root_item);
2781 }
2782 return ret;
2783}
2784
Zhaolei60d53eb2015-08-17 18:44:46 +08002785static void wait_log_commit(struct btrfs_root *root, int transid)
Chris Masone02119d2008-09-05 16:13:11 -04002786{
2787 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002788 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04002789
Yan Zheng7237f182009-01-21 12:54:03 -05002790 /*
2791 * we only allow two pending log transactions at a time,
2792 * so we know that if ours is more than 2 older than the
2793 * current transaction, we're done
2794 */
Liu Bo49e83f52017-09-01 16:14:30 -06002795 for (;;) {
Yan Zheng7237f182009-01-21 12:54:03 -05002796 prepare_to_wait(&root->log_commit_wait[index],
2797 &wait, TASK_UNINTERRUPTIBLE);
Liu Bo49e83f52017-09-01 16:14:30 -06002798
2799 if (!(root->log_transid_committed < transid &&
2800 atomic_read(&root->log_commit[index])))
2801 break;
2802
Yan Zheng7237f182009-01-21 12:54:03 -05002803 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002804 schedule();
Yan Zheng7237f182009-01-21 12:54:03 -05002805 mutex_lock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002806 }
2807 finish_wait(&root->log_commit_wait[index], &wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002808}
2809
Zhaolei60d53eb2015-08-17 18:44:46 +08002810static void wait_for_writer(struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05002811{
2812 DEFINE_WAIT(wait);
Miao Xie8b050d32014-02-20 18:08:58 +08002813
Liu Bo49e83f52017-09-01 16:14:30 -06002814 for (;;) {
2815 prepare_to_wait(&root->log_writer_wait, &wait,
2816 TASK_UNINTERRUPTIBLE);
2817 if (!atomic_read(&root->log_writers))
2818 break;
2819
Yan Zheng7237f182009-01-21 12:54:03 -05002820 mutex_unlock(&root->log_mutex);
Liu Bo49e83f52017-09-01 16:14:30 -06002821 schedule();
Filipe Manana575849e2015-02-11 11:12:39 +00002822 mutex_lock(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05002823 }
Liu Bo49e83f52017-09-01 16:14:30 -06002824 finish_wait(&root->log_writer_wait, &wait);
Chris Masone02119d2008-09-05 16:13:11 -04002825}
2826
Miao Xie8b050d32014-02-20 18:08:58 +08002827static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
2828 struct btrfs_log_ctx *ctx)
2829{
2830 if (!ctx)
2831 return;
2832
2833 mutex_lock(&root->log_mutex);
2834 list_del_init(&ctx->list);
2835 mutex_unlock(&root->log_mutex);
2836}
2837
2838/*
2839 * Invoked in log mutex context, or be sure there is no other task which
2840 * can access the list.
2841 */
2842static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
2843 int index, int error)
2844{
2845 struct btrfs_log_ctx *ctx;
Chris Mason570dd452016-10-27 10:42:20 -07002846 struct btrfs_log_ctx *safe;
Miao Xie8b050d32014-02-20 18:08:58 +08002847
Chris Mason570dd452016-10-27 10:42:20 -07002848 list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) {
2849 list_del_init(&ctx->list);
Miao Xie8b050d32014-02-20 18:08:58 +08002850 ctx->log_ret = error;
Chris Mason570dd452016-10-27 10:42:20 -07002851 }
Miao Xie8b050d32014-02-20 18:08:58 +08002852
2853 INIT_LIST_HEAD(&root->log_ctxs[index]);
2854}
2855
Chris Masone02119d2008-09-05 16:13:11 -04002856/*
2857 * btrfs_sync_log does sends a given tree log down to the disk and
2858 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04002859 * you know that any inodes previously logged are safely on disk only
2860 * if it returns 0.
2861 *
2862 * Any other return value means you need to call btrfs_commit_transaction.
2863 * Some of the edge cases for fsyncing directories that have had unlinks
2864 * or renames done in the past mean that sometimes the only safe
2865 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2866 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002867 */
2868int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08002869 struct btrfs_root *root, struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04002870{
Yan Zheng7237f182009-01-21 12:54:03 -05002871 int index1;
2872 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002873 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002874 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002875 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002876 struct btrfs_root *log = root->log_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002877 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
Miao Xiebb14a592014-02-20 18:08:56 +08002878 int log_transid = 0;
Miao Xie8b050d32014-02-20 18:08:58 +08002879 struct btrfs_log_ctx root_log_ctx;
Miao Xiec6adc9c2013-05-28 10:05:39 +00002880 struct blk_plug plug;
Chris Masone02119d2008-09-05 16:13:11 -04002881
Yan Zheng7237f182009-01-21 12:54:03 -05002882 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002883 log_transid = ctx->log_transid;
2884 if (root->log_transid_committed >= log_transid) {
Yan Zheng7237f182009-01-21 12:54:03 -05002885 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002886 return ctx->log_ret;
Chris Masone02119d2008-09-05 16:13:11 -04002887 }
Miao Xied1433de2014-02-20 18:08:59 +08002888
2889 index1 = log_transid % 2;
2890 if (atomic_read(&root->log_commit[index1])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08002891 wait_log_commit(root, log_transid);
Miao Xied1433de2014-02-20 18:08:59 +08002892 mutex_unlock(&root->log_mutex);
2893 return ctx->log_ret;
2894 }
2895 ASSERT(log_transid == root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002896 atomic_set(&root->log_commit[index1], 1);
2897
2898 /* wait for previous tree log sync to complete */
2899 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Zhaolei60d53eb2015-08-17 18:44:46 +08002900 wait_log_commit(root, log_transid - 1);
Miao Xie48cab2e2014-02-20 18:08:52 +08002901
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002902 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002903 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002904 /* when we're on an ssd, just kick the log commit out */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002905 if (!btrfs_test_opt(fs_info, SSD) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08002906 test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002907 mutex_unlock(&root->log_mutex);
2908 schedule_timeout_uninterruptible(1);
2909 mutex_lock(&root->log_mutex);
2910 }
Zhaolei60d53eb2015-08-17 18:44:46 +08002911 wait_for_writer(root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002912 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002913 break;
2914 }
Chris Masond0c803c2008-09-11 16:17:57 -04002915
Chris Mason12fcfd22009-03-24 10:24:20 -04002916 /* bail out if we need to do a full commit */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002917 if (btrfs_need_log_full_commit(fs_info, trans)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002918 ret = -EAGAIN;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002919 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002920 mutex_unlock(&root->log_mutex);
2921 goto out;
2922 }
2923
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002924 if (log_transid % 2 == 0)
2925 mark = EXTENT_DIRTY;
2926 else
2927 mark = EXTENT_NEW;
2928
Chris Mason690587d2009-10-13 13:29:19 -04002929 /* we start IO on all the marked extents here, but we don't actually
2930 * wait for them until later.
2931 */
Miao Xiec6adc9c2013-05-28 10:05:39 +00002932 blk_start_plug(&plug);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002933 ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002934 if (ret) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002935 blk_finish_plug(&plug);
Jeff Mahoney66642832016-06-10 18:19:25 -04002936 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002937 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002938 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002939 mutex_unlock(&root->log_mutex);
2940 goto out;
2941 }
Yan Zheng7237f182009-01-21 12:54:03 -05002942
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002943 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002944
Yan Zheng7237f182009-01-21 12:54:03 -05002945 root->log_transid++;
2946 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002947 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002948 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002949 * IO has been started, blocks of the log tree have WRITTEN flag set
2950 * in their headers. new modifications of the log will be written to
2951 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002952 */
2953 mutex_unlock(&root->log_mutex);
2954
Filipe Manana28a23592016-08-23 21:13:51 +01002955 btrfs_init_log_ctx(&root_log_ctx, NULL);
Miao Xied1433de2014-02-20 18:08:59 +08002956
Yan Zheng7237f182009-01-21 12:54:03 -05002957 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002958 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002959 atomic_inc(&log_root_tree->log_writers);
Miao Xied1433de2014-02-20 18:08:59 +08002960
2961 index2 = log_root_tree->log_transid % 2;
2962 list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
2963 root_log_ctx.log_transid = log_root_tree->log_transid;
2964
Yan Zheng7237f182009-01-21 12:54:03 -05002965 mutex_unlock(&log_root_tree->log_mutex);
2966
2967 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002968
2969 mutex_lock(&log_root_tree->log_mutex);
2970 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +01002971 /*
2972 * Implicit memory barrier after atomic_dec_and_test
2973 */
Yan Zheng7237f182009-01-21 12:54:03 -05002974 if (waitqueue_active(&log_root_tree->log_writer_wait))
2975 wake_up(&log_root_tree->log_writer_wait);
2976 }
2977
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002978 if (ret) {
Miao Xied1433de2014-02-20 18:08:59 +08002979 if (!list_empty(&root_log_ctx.list))
2980 list_del_init(&root_log_ctx.list);
2981
Miao Xiec6adc9c2013-05-28 10:05:39 +00002982 blk_finish_plug(&plug);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002983 btrfs_set_log_full_commit(fs_info, trans);
Miao Xie995946d2014-04-02 19:51:06 +08002984
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002985 if (ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002986 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002987 mutex_unlock(&log_root_tree->log_mutex);
2988 goto out;
2989 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002990 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002991 btrfs_free_logged_extents(log, log_transid);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002992 mutex_unlock(&log_root_tree->log_mutex);
2993 ret = -EAGAIN;
2994 goto out;
2995 }
2996
Miao Xied1433de2014-02-20 18:08:59 +08002997 if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
Forrest Liu3da5ab52015-01-30 19:42:12 +08002998 blk_finish_plug(&plug);
Chris Masoncbd60aa2016-09-06 05:37:40 -07002999 list_del_init(&root_log_ctx.list);
Miao Xied1433de2014-02-20 18:08:59 +08003000 mutex_unlock(&log_root_tree->log_mutex);
3001 ret = root_log_ctx.log_ret;
3002 goto out;
3003 }
Miao Xie8b050d32014-02-20 18:08:58 +08003004
Miao Xied1433de2014-02-20 18:08:59 +08003005 index2 = root_log_ctx.log_transid % 2;
Yan Zheng7237f182009-01-21 12:54:03 -05003006 if (atomic_read(&log_root_tree->log_commit[index2])) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003007 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003008 ret = btrfs_wait_tree_log_extents(log, mark);
Josef Bacik50d9aa92014-11-21 14:52:38 -05003009 btrfs_wait_logged_extents(trans, log, log_transid);
Zhaolei60d53eb2015-08-17 18:44:46 +08003010 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08003011 root_log_ctx.log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003012 mutex_unlock(&log_root_tree->log_mutex);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003013 if (!ret)
3014 ret = root_log_ctx.log_ret;
Yan Zheng7237f182009-01-21 12:54:03 -05003015 goto out;
3016 }
Miao Xied1433de2014-02-20 18:08:59 +08003017 ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05003018 atomic_set(&log_root_tree->log_commit[index2], 1);
3019
Chris Mason12fcfd22009-03-24 10:24:20 -04003020 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08003021 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08003022 root_log_ctx.log_transid - 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04003023 }
Yan Zheng7237f182009-01-21 12:54:03 -05003024
Zhaolei60d53eb2015-08-17 18:44:46 +08003025 wait_for_writer(log_root_tree);
Chris Mason12fcfd22009-03-24 10:24:20 -04003026
3027 /*
3028 * now that we've moved on to the tree of log tree roots,
3029 * check the full commit flag again
3030 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003031 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00003032 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003033 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003034 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04003035 mutex_unlock(&log_root_tree->log_mutex);
3036 ret = -EAGAIN;
3037 goto out_wake_log_root;
3038 }
Yan Zheng7237f182009-01-21 12:54:03 -05003039
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003040 ret = btrfs_write_marked_extents(fs_info,
Miao Xiec6adc9c2013-05-28 10:05:39 +00003041 &log_root_tree->dirty_log_pages,
3042 EXTENT_DIRTY | EXTENT_NEW);
3043 blk_finish_plug(&plug);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003044 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003045 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04003046 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04003047 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003048 mutex_unlock(&log_root_tree->log_mutex);
3049 goto out_wake_log_root;
3050 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003051 ret = btrfs_wait_tree_log_extents(log, mark);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003052 if (!ret)
Jeff Mahoneybf89d382016-09-09 20:42:44 -04003053 ret = btrfs_wait_tree_log_extents(log_root_tree,
3054 EXTENT_NEW | EXTENT_DIRTY);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003055 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003056 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana5ab5e442014-11-13 16:59:53 +00003057 btrfs_free_logged_extents(log, log_transid);
3058 mutex_unlock(&log_root_tree->log_mutex);
3059 goto out_wake_log_root;
3060 }
Josef Bacik50d9aa92014-11-21 14:52:38 -05003061 btrfs_wait_logged_extents(trans, log, log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04003062
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003063 btrfs_set_super_log_root(fs_info->super_for_commit,
3064 log_root_tree->node->start);
3065 btrfs_set_super_log_root_level(fs_info->super_for_commit,
3066 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04003067
Yan Zheng7237f182009-01-21 12:54:03 -05003068 log_root_tree->log_transid++;
Yan Zheng7237f182009-01-21 12:54:03 -05003069 mutex_unlock(&log_root_tree->log_mutex);
3070
3071 /*
3072 * nobody else is going to jump in and write the the ctree
3073 * super here because the log_commit atomic below is protecting
3074 * us. We must be called with a transaction handle pinning
3075 * the running transaction open, so a full commit can't hop
3076 * in and cause problems either.
3077 */
David Sterbaeece6a92017-02-10 19:04:32 +01003078 ret = write_all_supers(fs_info, 1);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003079 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003080 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04003081 btrfs_abort_transaction(trans, ret);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003082 goto out_wake_log_root;
3083 }
Yan Zheng7237f182009-01-21 12:54:03 -05003084
Chris Mason257c62e2009-10-13 13:21:08 -04003085 mutex_lock(&root->log_mutex);
3086 if (root->last_log_commit < log_transid)
3087 root->last_log_commit = log_transid;
3088 mutex_unlock(&root->log_mutex);
3089
Chris Mason12fcfd22009-03-24 10:24:20 -04003090out_wake_log_root:
Chris Mason570dd452016-10-27 10:42:20 -07003091 mutex_lock(&log_root_tree->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003092 btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
3093
Miao Xied1433de2014-02-20 18:08:59 +08003094 log_root_tree->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003095 atomic_set(&log_root_tree->log_commit[index2], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003096 mutex_unlock(&log_root_tree->log_mutex);
3097
David Sterba33a9eca2015-10-10 18:35:10 +02003098 /*
3099 * The barrier before waitqueue_active is implied by mutex_unlock
3100 */
Yan Zheng7237f182009-01-21 12:54:03 -05003101 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
3102 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04003103out:
Miao Xied1433de2014-02-20 18:08:59 +08003104 mutex_lock(&root->log_mutex);
Chris Mason570dd452016-10-27 10:42:20 -07003105 btrfs_remove_all_log_ctxs(root, index1, ret);
Miao Xied1433de2014-02-20 18:08:59 +08003106 root->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05003107 atomic_set(&root->log_commit[index1], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003108 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003109
David Sterba33a9eca2015-10-10 18:35:10 +02003110 /*
3111 * The barrier before waitqueue_active is implied by mutex_unlock
3112 */
Yan Zheng7237f182009-01-21 12:54:03 -05003113 if (waitqueue_active(&root->log_commit_wait[index1]))
3114 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05003115 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003116}
3117
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003118static void free_log_tree(struct btrfs_trans_handle *trans,
3119 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04003120{
3121 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04003122 u64 start;
3123 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04003124 struct walk_control wc = {
3125 .free = 1,
3126 .process_func = process_one_buffer
3127 };
3128
Josef Bacik681ae502013-10-07 15:11:00 -04003129 ret = walk_log_tree(trans, log, &wc);
3130 /* I don't think this can happen but just in case */
3131 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003132 btrfs_abort_transaction(trans, ret);
Chris Masone02119d2008-09-05 16:13:11 -04003133
Chris Masond3977122009-01-05 21:25:51 -05003134 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04003135 ret = find_first_extent_bit(&log->dirty_log_pages,
Liu Bo55237a52018-01-25 11:02:52 -07003136 0, &start, &end,
3137 EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT,
Josef Bacike6138872012-09-27 17:07:30 -04003138 NULL);
Chris Masond0c803c2008-09-11 16:17:57 -04003139 if (ret)
3140 break;
3141
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003142 clear_extent_bits(&log->dirty_log_pages, start, end,
Liu Bo55237a52018-01-25 11:02:52 -07003143 EXTENT_DIRTY | EXTENT_NEW | EXTENT_NEED_WAIT);
Chris Masond0c803c2008-09-11 16:17:57 -04003144 }
3145
Josef Bacik2ab28f32012-10-12 15:27:49 -04003146 /*
3147 * We may have short-circuited the log tree with the full commit logic
3148 * and left ordered extents on our list, so clear these out to keep us
3149 * from leaking inodes and memory.
3150 */
3151 btrfs_free_logged_extents(log, 0);
3152 btrfs_free_logged_extents(log, 1);
3153
Yan Zheng7237f182009-01-21 12:54:03 -05003154 free_extent_buffer(log->node);
3155 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003156}
3157
3158/*
3159 * free all the extents used by the tree log. This should be called
3160 * at commit time of the full transaction
3161 */
3162int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
3163{
3164 if (root->log_root) {
3165 free_log_tree(trans, root->log_root);
3166 root->log_root = NULL;
3167 }
3168 return 0;
3169}
3170
3171int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
3172 struct btrfs_fs_info *fs_info)
3173{
3174 if (fs_info->log_root_tree) {
3175 free_log_tree(trans, fs_info->log_root_tree);
3176 fs_info->log_root_tree = NULL;
3177 }
Chris Masone02119d2008-09-05 16:13:11 -04003178 return 0;
3179}
3180
3181/*
Chris Masone02119d2008-09-05 16:13:11 -04003182 * If both a file and directory are logged, and unlinks or renames are
3183 * mixed in, we have a few interesting corners:
3184 *
3185 * create file X in dir Y
3186 * link file X to X.link in dir Y
3187 * fsync file X
3188 * unlink file X but leave X.link
3189 * fsync dir Y
3190 *
3191 * After a crash we would expect only X.link to exist. But file X
3192 * didn't get fsync'd again so the log has back refs for X and X.link.
3193 *
3194 * We solve this by removing directory entries and inode backrefs from the
3195 * log when a file that was logged in the current transaction is
3196 * unlinked. Any later fsync will include the updated log entries, and
3197 * we'll be able to reconstruct the proper directory items from backrefs.
3198 *
3199 * This optimizations allows us to avoid relogging the entire inode
3200 * or the entire directory.
3201 */
3202int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
3203 struct btrfs_root *root,
3204 const char *name, int name_len,
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003205 struct btrfs_inode *dir, u64 index)
Chris Masone02119d2008-09-05 16:13:11 -04003206{
3207 struct btrfs_root *log;
3208 struct btrfs_dir_item *di;
3209 struct btrfs_path *path;
3210 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003211 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003212 int bytes_del = 0;
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003213 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003214
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003215 if (dir->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003216 return 0;
3217
Chris Masone02119d2008-09-05 16:13:11 -04003218 ret = join_running_log_trans(root);
3219 if (ret)
3220 return 0;
3221
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003222 mutex_lock(&dir->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003223
3224 log = root->log_root;
3225 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003226 if (!path) {
3227 err = -ENOMEM;
3228 goto out_unlock;
3229 }
liubo2a29edc2011-01-26 06:22:08 +00003230
Li Zefan33345d012011-04-20 10:31:50 +08003231 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003232 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003233 if (IS_ERR(di)) {
3234 err = PTR_ERR(di);
3235 goto fail;
3236 }
3237 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003238 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3239 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003240 if (ret) {
3241 err = ret;
3242 goto fail;
3243 }
Chris Masone02119d2008-09-05 16:13:11 -04003244 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003245 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08003246 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003247 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003248 if (IS_ERR(di)) {
3249 err = PTR_ERR(di);
3250 goto fail;
3251 }
3252 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003253 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3254 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003255 if (ret) {
3256 err = ret;
3257 goto fail;
3258 }
Chris Masone02119d2008-09-05 16:13:11 -04003259 }
3260
3261 /* update the directory size in the log to reflect the names
3262 * we have removed
3263 */
3264 if (bytes_del) {
3265 struct btrfs_key key;
3266
Li Zefan33345d012011-04-20 10:31:50 +08003267 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04003268 key.offset = 0;
3269 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02003270 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003271
3272 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003273 if (ret < 0) {
3274 err = ret;
3275 goto fail;
3276 }
Chris Masone02119d2008-09-05 16:13:11 -04003277 if (ret == 0) {
3278 struct btrfs_inode_item *item;
3279 u64 i_size;
3280
3281 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3282 struct btrfs_inode_item);
3283 i_size = btrfs_inode_size(path->nodes[0], item);
3284 if (i_size > bytes_del)
3285 i_size -= bytes_del;
3286 else
3287 i_size = 0;
3288 btrfs_set_inode_size(path->nodes[0], item, i_size);
3289 btrfs_mark_buffer_dirty(path->nodes[0]);
3290 } else
3291 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003292 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003293 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003294fail:
Chris Masone02119d2008-09-05 16:13:11 -04003295 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003296out_unlock:
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003297 mutex_unlock(&dir->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003298 if (ret == -ENOSPC) {
Miao Xie995946d2014-04-02 19:51:06 +08003299 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003300 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003301 } else if (ret < 0)
Jeff Mahoney66642832016-06-10 18:19:25 -04003302 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003303
Chris Mason12fcfd22009-03-24 10:24:20 -04003304 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003305
Andi Kleen411fc6b2010-10-29 15:14:31 -04003306 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003307}
3308
3309/* see comments for btrfs_del_dir_entries_in_log */
3310int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
3311 struct btrfs_root *root,
3312 const char *name, int name_len,
Nikolay Borisova491abb2017-01-18 00:31:33 +02003313 struct btrfs_inode *inode, u64 dirid)
Chris Masone02119d2008-09-05 16:13:11 -04003314{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003315 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04003316 struct btrfs_root *log;
3317 u64 index;
3318 int ret;
3319
Nikolay Borisova491abb2017-01-18 00:31:33 +02003320 if (inode->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003321 return 0;
3322
Chris Masone02119d2008-09-05 16:13:11 -04003323 ret = join_running_log_trans(root);
3324 if (ret)
3325 return 0;
3326 log = root->log_root;
Nikolay Borisova491abb2017-01-18 00:31:33 +02003327 mutex_lock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003328
Nikolay Borisova491abb2017-01-18 00:31:33 +02003329 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04003330 dirid, &index);
Nikolay Borisova491abb2017-01-18 00:31:33 +02003331 mutex_unlock(&inode->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003332 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003333 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003334 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003335 } else if (ret < 0 && ret != -ENOENT)
Jeff Mahoney66642832016-06-10 18:19:25 -04003336 btrfs_abort_transaction(trans, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04003337 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003338
Chris Masone02119d2008-09-05 16:13:11 -04003339 return ret;
3340}
3341
3342/*
3343 * creates a range item in the log for 'dirid'. first_offset and
3344 * last_offset tell us which parts of the key space the log should
3345 * be considered authoritative for.
3346 */
3347static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
3348 struct btrfs_root *log,
3349 struct btrfs_path *path,
3350 int key_type, u64 dirid,
3351 u64 first_offset, u64 last_offset)
3352{
3353 int ret;
3354 struct btrfs_key key;
3355 struct btrfs_dir_log_item *item;
3356
3357 key.objectid = dirid;
3358 key.offset = first_offset;
3359 if (key_type == BTRFS_DIR_ITEM_KEY)
3360 key.type = BTRFS_DIR_LOG_ITEM_KEY;
3361 else
3362 key.type = BTRFS_DIR_LOG_INDEX_KEY;
3363 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003364 if (ret)
3365 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003366
3367 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3368 struct btrfs_dir_log_item);
3369 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
3370 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003371 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003372 return 0;
3373}
3374
3375/*
3376 * log all the items included in the current transaction for a given
3377 * directory. This also creates the range items in the log tree required
3378 * to replay anything deleted before the fsync
3379 */
3380static noinline int log_dir_items(struct btrfs_trans_handle *trans,
Nikolay Borisov684a5772017-01-18 00:31:41 +02003381 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003382 struct btrfs_path *path,
3383 struct btrfs_path *dst_path, int key_type,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003384 struct btrfs_log_ctx *ctx,
Chris Masone02119d2008-09-05 16:13:11 -04003385 u64 min_offset, u64 *last_offset_ret)
3386{
3387 struct btrfs_key min_key;
Chris Masone02119d2008-09-05 16:13:11 -04003388 struct btrfs_root *log = root->log_root;
3389 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003390 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003391 int ret;
3392 int i;
3393 int nritems;
3394 u64 first_offset = min_offset;
3395 u64 last_offset = (u64)-1;
Nikolay Borisov684a5772017-01-18 00:31:41 +02003396 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003397
3398 log = root->log_root;
Chris Masone02119d2008-09-05 16:13:11 -04003399
Li Zefan33345d012011-04-20 10:31:50 +08003400 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003401 min_key.type = key_type;
3402 min_key.offset = min_offset;
3403
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003404 ret = btrfs_search_forward(root, &min_key, path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003405
3406 /*
3407 * we didn't find anything from this transaction, see if there
3408 * is anything at all
3409 */
Li Zefan33345d012011-04-20 10:31:50 +08003410 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
3411 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003412 min_key.type = key_type;
3413 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02003414 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003415 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3416 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003417 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003418 return ret;
3419 }
Li Zefan33345d012011-04-20 10:31:50 +08003420 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003421
3422 /* if ret == 0 there are items for this type,
3423 * create a range to tell us the last key of this type.
3424 * otherwise, there are no items in this directory after
3425 * *min_offset, and we create a range to indicate that.
3426 */
3427 if (ret == 0) {
3428 struct btrfs_key tmp;
3429 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3430 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05003431 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04003432 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04003433 }
3434 goto done;
3435 }
3436
3437 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08003438 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003439 if (ret == 0) {
3440 struct btrfs_key tmp;
3441 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3442 if (key_type == tmp.type) {
3443 first_offset = tmp.offset;
3444 ret = overwrite_item(trans, log, dst_path,
3445 path->nodes[0], path->slots[0],
3446 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003447 if (ret) {
3448 err = ret;
3449 goto done;
3450 }
Chris Masone02119d2008-09-05 16:13:11 -04003451 }
3452 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003453 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003454
3455 /* find the first key from this transaction again */
3456 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303457 if (WARN_ON(ret != 0))
Chris Masone02119d2008-09-05 16:13:11 -04003458 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003459
3460 /*
3461 * we have a block from this transaction, log every item in it
3462 * from our directory
3463 */
Chris Masond3977122009-01-05 21:25:51 -05003464 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003465 struct btrfs_key tmp;
3466 src = path->nodes[0];
3467 nritems = btrfs_header_nritems(src);
3468 for (i = path->slots[0]; i < nritems; i++) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003469 struct btrfs_dir_item *di;
3470
Chris Masone02119d2008-09-05 16:13:11 -04003471 btrfs_item_key_to_cpu(src, &min_key, i);
3472
Li Zefan33345d012011-04-20 10:31:50 +08003473 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04003474 goto done;
3475 ret = overwrite_item(trans, log, dst_path, src, i,
3476 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003477 if (ret) {
3478 err = ret;
3479 goto done;
3480 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003481
3482 /*
3483 * We must make sure that when we log a directory entry,
3484 * the corresponding inode, after log replay, has a
3485 * matching link count. For example:
3486 *
3487 * touch foo
3488 * mkdir mydir
3489 * sync
3490 * ln foo mydir/bar
3491 * xfs_io -c "fsync" mydir
3492 * <crash>
3493 * <mount fs and log replay>
3494 *
3495 * Would result in a fsync log that when replayed, our
3496 * file inode would have a link count of 1, but we get
3497 * two directory entries pointing to the same inode.
3498 * After removing one of the names, it would not be
3499 * possible to remove the other name, which resulted
3500 * always in stale file handle errors, and would not
3501 * be possible to rmdir the parent directory, since
3502 * its i_size could never decrement to the value
3503 * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors.
3504 */
3505 di = btrfs_item_ptr(src, i, struct btrfs_dir_item);
3506 btrfs_dir_item_key_to_cpu(src, di, &tmp);
3507 if (ctx &&
3508 (btrfs_dir_transid(src, di) == trans->transid ||
3509 btrfs_dir_type(src, di) == BTRFS_FT_DIR) &&
3510 tmp.type != BTRFS_ROOT_ITEM_KEY)
3511 ctx->log_new_dentries = true;
Chris Masone02119d2008-09-05 16:13:11 -04003512 }
3513 path->slots[0] = nritems;
3514
3515 /*
3516 * look ahead to the next item and see if it is also
3517 * from this directory and from this transaction
3518 */
3519 ret = btrfs_next_leaf(root, path);
3520 if (ret == 1) {
3521 last_offset = (u64)-1;
3522 goto done;
3523 }
3524 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08003525 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04003526 last_offset = (u64)-1;
3527 goto done;
3528 }
3529 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
3530 ret = overwrite_item(trans, log, dst_path,
3531 path->nodes[0], path->slots[0],
3532 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003533 if (ret)
3534 err = ret;
3535 else
3536 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003537 goto done;
3538 }
3539 }
3540done:
David Sterbab3b4aa72011-04-21 01:20:15 +02003541 btrfs_release_path(path);
3542 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003543
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003544 if (err == 0) {
3545 *last_offset_ret = last_offset;
3546 /*
3547 * insert the log range keys to indicate where the log
3548 * is valid
3549 */
3550 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08003551 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003552 if (ret)
3553 err = ret;
3554 }
3555 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003556}
3557
3558/*
3559 * logging directories is very similar to logging inodes, We find all the items
3560 * from the current transaction and write them to the log.
3561 *
3562 * The recovery code scans the directory in the subvolume, and if it finds a
3563 * key in the range logged that is not present in the log tree, then it means
3564 * that dir entry was unlinked during the transaction.
3565 *
3566 * In order for that scan to work, we must include one key smaller than
3567 * the smallest logged by this transaction and one key larger than the largest
3568 * key logged by this transaction.
3569 */
3570static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003571 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003572 struct btrfs_path *path,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003573 struct btrfs_path *dst_path,
3574 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04003575{
3576 u64 min_key;
3577 u64 max_key;
3578 int ret;
3579 int key_type = BTRFS_DIR_ITEM_KEY;
3580
3581again:
3582 min_key = 0;
3583 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05003584 while (1) {
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003585 ret = log_dir_items(trans, root, inode, path, dst_path, key_type,
3586 ctx, min_key, &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003587 if (ret)
3588 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003589 if (max_key == (u64)-1)
3590 break;
3591 min_key = max_key + 1;
3592 }
3593
3594 if (key_type == BTRFS_DIR_ITEM_KEY) {
3595 key_type = BTRFS_DIR_INDEX_KEY;
3596 goto again;
3597 }
3598 return 0;
3599}
3600
3601/*
3602 * a helper function to drop items from the log before we relog an
3603 * inode. max_key_type indicates the highest item type to remove.
3604 * This cannot be run for file data extents because it does not
3605 * free the extents they point to.
3606 */
3607static int drop_objectid_items(struct btrfs_trans_handle *trans,
3608 struct btrfs_root *log,
3609 struct btrfs_path *path,
3610 u64 objectid, int max_key_type)
3611{
3612 int ret;
3613 struct btrfs_key key;
3614 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04003615 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003616
3617 key.objectid = objectid;
3618 key.type = max_key_type;
3619 key.offset = (u64)-1;
3620
Chris Masond3977122009-01-05 21:25:51 -05003621 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003622 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Josef Bacik36508602013-04-25 16:23:32 -04003623 BUG_ON(ret == 0); /* Logic error */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003624 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04003625 break;
3626
3627 if (path->slots[0] == 0)
3628 break;
3629
3630 path->slots[0]--;
3631 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3632 path->slots[0]);
3633
3634 if (found_key.objectid != objectid)
3635 break;
3636
Josef Bacik18ec90d2012-09-28 11:56:28 -04003637 found_key.offset = 0;
3638 found_key.type = 0;
3639 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
3640 &start_slot);
3641
3642 ret = btrfs_del_items(trans, log, path, start_slot,
3643 path->slots[0] - start_slot + 1);
3644 /*
3645 * If start slot isn't 0 then we don't need to re-search, we've
3646 * found the last guy with the objectid in this tree.
3647 */
3648 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00003649 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02003650 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003651 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003652 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04003653 if (ret > 0)
3654 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003655 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003656}
3657
Josef Bacik94edf4a2012-09-25 14:56:25 -04003658static void fill_inode_item(struct btrfs_trans_handle *trans,
3659 struct extent_buffer *leaf,
3660 struct btrfs_inode_item *item,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003661 struct inode *inode, int log_inode_only,
3662 u64 logged_isize)
Josef Bacik94edf4a2012-09-25 14:56:25 -04003663{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003664 struct btrfs_map_token token;
Josef Bacik94edf4a2012-09-25 14:56:25 -04003665
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003666 btrfs_init_map_token(&token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003667
3668 if (log_inode_only) {
3669 /* set the generation to zero so the recover code
3670 * can tell the difference between an logging
3671 * just to say 'this inode exists' and a logging
3672 * to say 'update this inode with these values'
3673 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003674 btrfs_set_token_inode_generation(leaf, item, 0, &token);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003675 btrfs_set_token_inode_size(leaf, item, logged_isize, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003676 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003677 btrfs_set_token_inode_generation(leaf, item,
3678 BTRFS_I(inode)->generation,
3679 &token);
3680 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003681 }
3682
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003683 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3684 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3685 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3686 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3687
David Sterbaa937b972014-12-12 17:39:12 +01003688 btrfs_set_token_timespec_sec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003689 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003690 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003691 inode->i_atime.tv_nsec, &token);
3692
David Sterbaa937b972014-12-12 17:39:12 +01003693 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003694 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003695 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003696 inode->i_mtime.tv_nsec, &token);
3697
David Sterbaa937b972014-12-12 17:39:12 +01003698 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003699 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003700 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003701 inode->i_ctime.tv_nsec, &token);
3702
3703 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3704 &token);
3705
3706 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3707 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3708 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3709 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3710 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003711}
3712
Josef Bacika95249b2012-10-11 16:17:34 -04003713static int log_inode_item(struct btrfs_trans_handle *trans,
3714 struct btrfs_root *log, struct btrfs_path *path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003715 struct btrfs_inode *inode)
Josef Bacika95249b2012-10-11 16:17:34 -04003716{
3717 struct btrfs_inode_item *inode_item;
Josef Bacika95249b2012-10-11 16:17:34 -04003718 int ret;
3719
Filipe David Borba Mananaefd0c402013-10-07 21:20:44 +01003720 ret = btrfs_insert_empty_item(trans, log, path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003721 &inode->location, sizeof(*inode_item));
Josef Bacika95249b2012-10-11 16:17:34 -04003722 if (ret && ret != -EEXIST)
3723 return ret;
3724 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3725 struct btrfs_inode_item);
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003726 fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode,
3727 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04003728 btrfs_release_path(path);
3729 return 0;
3730}
3731
Chris Mason31ff1cd2008-09-11 16:17:57 -04003732static noinline int copy_items(struct btrfs_trans_handle *trans,
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003733 struct btrfs_inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003734 struct btrfs_path *dst_path,
Josef Bacik16e75492013-10-22 12:18:51 -04003735 struct btrfs_path *src_path, u64 *last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003736 int start_slot, int nr, int inode_only,
3737 u64 logged_isize)
Chris Mason31ff1cd2008-09-11 16:17:57 -04003738{
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003739 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003740 unsigned long src_offset;
3741 unsigned long dst_offset;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003742 struct btrfs_root *log = inode->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003743 struct btrfs_file_extent_item *extent;
3744 struct btrfs_inode_item *inode_item;
Josef Bacik16e75492013-10-22 12:18:51 -04003745 struct extent_buffer *src = src_path->nodes[0];
3746 struct btrfs_key first_key, last_key, key;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003747 int ret;
3748 struct btrfs_key *ins_keys;
3749 u32 *ins_sizes;
3750 char *ins_data;
3751 int i;
Chris Masond20f7042008-12-08 16:58:54 -05003752 struct list_head ordered_sums;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003753 int skip_csum = inode->flags & BTRFS_INODE_NODATASUM;
Josef Bacik16e75492013-10-22 12:18:51 -04003754 bool has_extents = false;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003755 bool need_find_last_extent = true;
Josef Bacik16e75492013-10-22 12:18:51 -04003756 bool done = false;
Chris Masond20f7042008-12-08 16:58:54 -05003757
3758 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003759
3760 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3761 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00003762 if (!ins_data)
3763 return -ENOMEM;
3764
Josef Bacik16e75492013-10-22 12:18:51 -04003765 first_key.objectid = (u64)-1;
3766
Chris Mason31ff1cd2008-09-11 16:17:57 -04003767 ins_sizes = (u32 *)ins_data;
3768 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3769
3770 for (i = 0; i < nr; i++) {
3771 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3772 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3773 }
3774 ret = btrfs_insert_empty_items(trans, log, dst_path,
3775 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003776 if (ret) {
3777 kfree(ins_data);
3778 return ret;
3779 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003780
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003781 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003782 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3783 dst_path->slots[0]);
3784
3785 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3786
Matthias Kaehlcke0dde10b2017-07-27 14:30:23 -07003787 if (i == nr - 1)
Josef Bacik16e75492013-10-22 12:18:51 -04003788 last_key = ins_keys[i];
3789
Josef Bacik94edf4a2012-09-25 14:56:25 -04003790 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003791 inode_item = btrfs_item_ptr(dst_path->nodes[0],
3792 dst_path->slots[0],
3793 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003794 fill_inode_item(trans, dst_path->nodes[0], inode_item,
David Sterbaf85b7372017-01-20 14:54:07 +01003795 &inode->vfs_inode,
3796 inode_only == LOG_INODE_EXISTS,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003797 logged_isize);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003798 } else {
3799 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3800 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003801 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04003802
Josef Bacik16e75492013-10-22 12:18:51 -04003803 /*
3804 * We set need_find_last_extent here in case we know we were
3805 * processing other items and then walk into the first extent in
3806 * the inode. If we don't hit an extent then nothing changes,
3807 * we'll do the last search the next time around.
3808 */
3809 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) {
3810 has_extents = true;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003811 if (first_key.objectid == (u64)-1)
Josef Bacik16e75492013-10-22 12:18:51 -04003812 first_key = ins_keys[i];
3813 } else {
3814 need_find_last_extent = false;
3815 }
3816
Chris Mason31ff1cd2008-09-11 16:17:57 -04003817 /* take a reference on file data extents so that truncates
3818 * or deletes of this inode don't have to relog the inode
3819 * again
3820 */
David Sterba962a2982014-06-04 18:41:45 +02003821 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY &&
Liu Bod2794402012-08-29 01:07:56 -06003822 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003823 int found_type;
3824 extent = btrfs_item_ptr(src, start_slot + i,
3825 struct btrfs_file_extent_item);
3826
liubo8e531cd2011-05-06 10:36:09 +08003827 if (btrfs_file_extent_generation(src, extent) < trans->transid)
3828 continue;
3829
Chris Mason31ff1cd2008-09-11 16:17:57 -04003830 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04003831 if (found_type == BTRFS_FILE_EXTENT_REG) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003832 u64 ds, dl, cs, cl;
3833 ds = btrfs_file_extent_disk_bytenr(src,
3834 extent);
3835 /* ds == 0 is a hole */
3836 if (ds == 0)
3837 continue;
3838
3839 dl = btrfs_file_extent_disk_num_bytes(src,
3840 extent);
3841 cs = btrfs_file_extent_offset(src, extent);
3842 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07003843 extent);
Chris Mason580afd72008-12-08 19:15:39 -05003844 if (btrfs_file_extent_compression(src,
3845 extent)) {
3846 cs = 0;
3847 cl = dl;
3848 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003849
3850 ret = btrfs_lookup_csums_range(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003851 fs_info->csum_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003852 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01003853 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -04003854 if (ret) {
3855 btrfs_release_path(dst_path);
3856 kfree(ins_data);
3857 return ret;
3858 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003859 }
3860 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003861 }
3862
3863 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003864 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003865 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05003866
3867 /*
3868 * we have to do this after the loop above to avoid changing the
3869 * log tree while trying to change the log tree.
3870 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003871 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05003872 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05003873 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3874 struct btrfs_ordered_sum,
3875 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003876 if (!ret)
3877 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05003878 list_del(&sums->list);
3879 kfree(sums);
3880 }
Josef Bacik16e75492013-10-22 12:18:51 -04003881
3882 if (!has_extents)
3883 return ret;
3884
Filipe Manana74121f7c2014-08-07 12:00:44 +01003885 if (need_find_last_extent && *last_extent == first_key.offset) {
3886 /*
3887 * We don't have any leafs between our current one and the one
3888 * we processed before that can have file extent items for our
3889 * inode (and have a generation number smaller than our current
3890 * transaction id).
3891 */
3892 need_find_last_extent = false;
3893 }
3894
Josef Bacik16e75492013-10-22 12:18:51 -04003895 /*
3896 * Because we use btrfs_search_forward we could skip leaves that were
3897 * not modified and then assume *last_extent is valid when it really
3898 * isn't. So back up to the previous leaf and read the end of the last
3899 * extent before we go and fill in holes.
3900 */
3901 if (need_find_last_extent) {
3902 u64 len;
3903
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003904 ret = btrfs_prev_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003905 if (ret < 0)
3906 return ret;
3907 if (ret)
3908 goto fill_holes;
3909 if (src_path->slots[0])
3910 src_path->slots[0]--;
3911 src = src_path->nodes[0];
3912 btrfs_item_key_to_cpu(src, &key, src_path->slots[0]);
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003913 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003914 key.type != BTRFS_EXTENT_DATA_KEY)
3915 goto fill_holes;
3916 extent = btrfs_item_ptr(src, src_path->slots[0],
3917 struct btrfs_file_extent_item);
3918 if (btrfs_file_extent_type(src, extent) ==
3919 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003920 len = btrfs_file_extent_inline_len(src,
3921 src_path->slots[0],
3922 extent);
Josef Bacik16e75492013-10-22 12:18:51 -04003923 *last_extent = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003924 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003925 } else {
3926 len = btrfs_file_extent_num_bytes(src, extent);
3927 *last_extent = key.offset + len;
3928 }
3929 }
3930fill_holes:
3931 /* So we did prev_leaf, now we need to move to the next leaf, but a few
3932 * things could have happened
3933 *
3934 * 1) A merge could have happened, so we could currently be on a leaf
3935 * that holds what we were copying in the first place.
3936 * 2) A split could have happened, and now not all of the items we want
3937 * are on the same leaf.
3938 *
3939 * So we need to adjust how we search for holes, we need to drop the
3940 * path and re-search for the first extent key we found, and then walk
3941 * forward until we hit the last one we copied.
3942 */
3943 if (need_find_last_extent) {
3944 /* btrfs_prev_leaf could return 1 without releasing the path */
3945 btrfs_release_path(src_path);
David Sterbaf85b7372017-01-20 14:54:07 +01003946 ret = btrfs_search_slot(NULL, inode->root, &first_key,
3947 src_path, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04003948 if (ret < 0)
3949 return ret;
3950 ASSERT(ret == 0);
3951 src = src_path->nodes[0];
3952 i = src_path->slots[0];
3953 } else {
3954 i = start_slot;
3955 }
3956
3957 /*
3958 * Ok so here we need to go through and fill in any holes we may have
3959 * to make sure that holes are punched for those areas in case they had
3960 * extents previously.
3961 */
3962 while (!done) {
3963 u64 offset, len;
3964 u64 extent_end;
3965
3966 if (i >= btrfs_header_nritems(src_path->nodes[0])) {
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003967 ret = btrfs_next_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003968 if (ret < 0)
3969 return ret;
3970 ASSERT(ret == 0);
3971 src = src_path->nodes[0];
3972 i = 0;
3973 }
3974
3975 btrfs_item_key_to_cpu(src, &key, i);
3976 if (!btrfs_comp_cpu_keys(&key, &last_key))
3977 done = true;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003978 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003979 key.type != BTRFS_EXTENT_DATA_KEY) {
3980 i++;
3981 continue;
3982 }
3983 extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
3984 if (btrfs_file_extent_type(src, extent) ==
3985 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003986 len = btrfs_file_extent_inline_len(src, i, extent);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003987 extent_end = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003988 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003989 } else {
3990 len = btrfs_file_extent_num_bytes(src, extent);
3991 extent_end = key.offset + len;
3992 }
3993 i++;
3994
3995 if (*last_extent == key.offset) {
3996 *last_extent = extent_end;
3997 continue;
3998 }
3999 offset = *last_extent;
4000 len = key.offset - *last_extent;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02004001 ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01004002 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04004003 if (ret)
4004 break;
Filipe Manana74121f7c2014-08-07 12:00:44 +01004005 *last_extent = extent_end;
Josef Bacik16e75492013-10-22 12:18:51 -04004006 }
4007 /*
4008 * Need to let the callers know we dropped the path so they should
4009 * re-search.
4010 */
4011 if (!ret && need_find_last_extent)
4012 ret = 1;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004013 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004014}
4015
Josef Bacik5dc562c2012-08-17 13:14:17 -04004016static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
4017{
4018 struct extent_map *em1, *em2;
4019
4020 em1 = list_entry(a, struct extent_map, list);
4021 em2 = list_entry(b, struct extent_map, list);
4022
4023 if (em1->start < em2->start)
4024 return -1;
4025 else if (em1->start > em2->start)
4026 return 1;
4027 return 0;
4028}
4029
Filipe Manana8407f552014-09-05 15:14:39 +01004030static int wait_ordered_extents(struct btrfs_trans_handle *trans,
4031 struct inode *inode,
4032 struct btrfs_root *root,
4033 const struct extent_map *em,
4034 const struct list_head *logged_list,
4035 bool *ordered_io_error)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004036{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004037 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004038 struct btrfs_ordered_extent *ordered;
Filipe Manana8407f552014-09-05 15:14:39 +01004039 struct btrfs_root *log = root->log_root;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004040 u64 mod_start = em->mod_start;
4041 u64 mod_len = em->mod_len;
Filipe Manana8407f552014-09-05 15:14:39 +01004042 const bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004043 u64 csum_offset;
4044 u64 csum_len;
Filipe Manana8407f552014-09-05 15:14:39 +01004045 LIST_HEAD(ordered_sums);
4046 int ret = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -04004047
Filipe Manana8407f552014-09-05 15:14:39 +01004048 *ordered_io_error = false;
Josef Bacik70c8a912012-10-11 16:54:30 -04004049
Filipe Manana8407f552014-09-05 15:14:39 +01004050 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
4051 em->block_start == EXTENT_MAP_HOLE)
Josef Bacik70c8a912012-10-11 16:54:30 -04004052 return 0;
4053
Josef Bacik2ab28f32012-10-12 15:27:49 -04004054 /*
Filipe Manana8407f552014-09-05 15:14:39 +01004055 * Wait far any ordered extent that covers our extent map. If it
4056 * finishes without an error, first check and see if our csums are on
4057 * our outstanding ordered extents.
Josef Bacik2ab28f32012-10-12 15:27:49 -04004058 */
Miao Xie827463c2014-01-14 20:31:51 +08004059 list_for_each_entry(ordered, logged_list, log_list) {
Josef Bacik2ab28f32012-10-12 15:27:49 -04004060 struct btrfs_ordered_sum *sum;
4061
4062 if (!mod_len)
4063 break;
4064
Josef Bacik2ab28f32012-10-12 15:27:49 -04004065 if (ordered->file_offset + ordered->len <= mod_start ||
4066 mod_start + mod_len <= ordered->file_offset)
4067 continue;
4068
Filipe Manana8407f552014-09-05 15:14:39 +01004069 if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) &&
4070 !test_bit(BTRFS_ORDERED_IOERR, &ordered->flags) &&
4071 !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
4072 const u64 start = ordered->file_offset;
4073 const u64 end = ordered->file_offset + ordered->len - 1;
4074
4075 WARN_ON(ordered->inode != inode);
4076 filemap_fdatawrite_range(inode->i_mapping, start, end);
4077 }
4078
4079 wait_event(ordered->wait,
4080 (test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) ||
4081 test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)));
4082
4083 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)) {
Filipe Mananab38ef712014-11-13 17:01:45 +00004084 /*
4085 * Clear the AS_EIO/AS_ENOSPC flags from the inode's
4086 * i_mapping flags, so that the next fsync won't get
4087 * an outdated io error too.
4088 */
Miklos Szeredif0312212016-09-16 12:44:21 +02004089 filemap_check_errors(inode->i_mapping);
Filipe Manana8407f552014-09-05 15:14:39 +01004090 *ordered_io_error = true;
4091 break;
4092 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004093 /*
4094 * We are going to copy all the csums on this ordered extent, so
4095 * go ahead and adjust mod_start and mod_len in case this
4096 * ordered extent has already been logged.
4097 */
4098 if (ordered->file_offset > mod_start) {
4099 if (ordered->file_offset + ordered->len >=
4100 mod_start + mod_len)
4101 mod_len = ordered->file_offset - mod_start;
4102 /*
4103 * If we have this case
4104 *
4105 * |--------- logged extent ---------|
4106 * |----- ordered extent ----|
4107 *
4108 * Just don't mess with mod_start and mod_len, we'll
4109 * just end up logging more csums than we need and it
4110 * will be ok.
4111 */
4112 } else {
4113 if (ordered->file_offset + ordered->len <
4114 mod_start + mod_len) {
4115 mod_len = (mod_start + mod_len) -
4116 (ordered->file_offset + ordered->len);
4117 mod_start = ordered->file_offset +
4118 ordered->len;
4119 } else {
4120 mod_len = 0;
4121 }
4122 }
4123
Filipe Manana8407f552014-09-05 15:14:39 +01004124 if (skip_csum)
4125 continue;
4126
Josef Bacik2ab28f32012-10-12 15:27:49 -04004127 /*
4128 * To keep us from looping for the above case of an ordered
4129 * extent that falls inside of the logged extent.
4130 */
4131 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
4132 &ordered->flags))
4133 continue;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004134
Josef Bacik2ab28f32012-10-12 15:27:49 -04004135 list_for_each_entry(sum, &ordered->list, list) {
4136 ret = btrfs_csum_file_blocks(trans, log, sum);
Miao Xie827463c2014-01-14 20:31:51 +08004137 if (ret)
Filipe Manana8407f552014-09-05 15:14:39 +01004138 break;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004139 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004140 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004141
Filipe Manana8407f552014-09-05 15:14:39 +01004142 if (*ordered_io_error || !mod_len || ret || skip_csum)
Josef Bacik2ab28f32012-10-12 15:27:49 -04004143 return ret;
4144
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004145 if (em->compress_type) {
4146 csum_offset = 0;
Filipe Manana8407f552014-09-05 15:14:39 +01004147 csum_len = max(em->block_len, em->orig_block_len);
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004148 } else {
4149 csum_offset = mod_start - em->start;
4150 csum_len = mod_len;
4151 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004152
Josef Bacik70c8a912012-10-11 16:54:30 -04004153 /* block start is already adjusted for the file extent offset. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004154 ret = btrfs_lookup_csums_range(fs_info->csum_root,
Josef Bacik70c8a912012-10-11 16:54:30 -04004155 em->block_start + csum_offset,
4156 em->block_start + csum_offset +
4157 csum_len - 1, &ordered_sums, 0);
4158 if (ret)
4159 return ret;
4160
4161 while (!list_empty(&ordered_sums)) {
4162 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4163 struct btrfs_ordered_sum,
4164 list);
4165 if (!ret)
4166 ret = btrfs_csum_file_blocks(trans, log, sums);
4167 list_del(&sums->list);
4168 kfree(sums);
4169 }
4170
4171 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004172}
4173
Filipe Manana8407f552014-09-05 15:14:39 +01004174static int log_one_extent(struct btrfs_trans_handle *trans,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004175 struct btrfs_inode *inode, struct btrfs_root *root,
Filipe Manana8407f552014-09-05 15:14:39 +01004176 const struct extent_map *em,
4177 struct btrfs_path *path,
4178 const struct list_head *logged_list,
4179 struct btrfs_log_ctx *ctx)
4180{
4181 struct btrfs_root *log = root->log_root;
4182 struct btrfs_file_extent_item *fi;
4183 struct extent_buffer *leaf;
4184 struct btrfs_map_token token;
4185 struct btrfs_key key;
4186 u64 extent_offset = em->start - em->orig_start;
4187 u64 block_len;
4188 int ret;
4189 int extent_inserted = 0;
4190 bool ordered_io_err = false;
4191
David Sterbaf85b7372017-01-20 14:54:07 +01004192 ret = wait_ordered_extents(trans, &inode->vfs_inode, root, em,
4193 logged_list, &ordered_io_err);
Filipe Manana8407f552014-09-05 15:14:39 +01004194 if (ret)
4195 return ret;
4196
4197 if (ordered_io_err) {
4198 ctx->io_err = -EIO;
Liu Boebb70442017-11-21 14:35:40 -07004199 return ctx->io_err;
Filipe Manana8407f552014-09-05 15:14:39 +01004200 }
4201
4202 btrfs_init_map_token(&token);
4203
Nikolay Borisov9d122622017-01-18 00:31:40 +02004204 ret = __btrfs_drop_extents(trans, log, &inode->vfs_inode, path, em->start,
Filipe Manana8407f552014-09-05 15:14:39 +01004205 em->start + em->len, NULL, 0, 1,
4206 sizeof(*fi), &extent_inserted);
4207 if (ret)
4208 return ret;
4209
4210 if (!extent_inserted) {
Nikolay Borisov9d122622017-01-18 00:31:40 +02004211 key.objectid = btrfs_ino(inode);
Filipe Manana8407f552014-09-05 15:14:39 +01004212 key.type = BTRFS_EXTENT_DATA_KEY;
4213 key.offset = em->start;
4214
4215 ret = btrfs_insert_empty_item(trans, log, path, &key,
4216 sizeof(*fi));
4217 if (ret)
4218 return ret;
4219 }
4220 leaf = path->nodes[0];
4221 fi = btrfs_item_ptr(leaf, path->slots[0],
4222 struct btrfs_file_extent_item);
4223
Josef Bacik50d9aa92014-11-21 14:52:38 -05004224 btrfs_set_token_file_extent_generation(leaf, fi, trans->transid,
Filipe Manana8407f552014-09-05 15:14:39 +01004225 &token);
4226 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4227 btrfs_set_token_file_extent_type(leaf, fi,
4228 BTRFS_FILE_EXTENT_PREALLOC,
4229 &token);
4230 else
4231 btrfs_set_token_file_extent_type(leaf, fi,
4232 BTRFS_FILE_EXTENT_REG,
4233 &token);
4234
4235 block_len = max(em->block_len, em->orig_block_len);
4236 if (em->compress_type != BTRFS_COMPRESS_NONE) {
4237 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4238 em->block_start,
4239 &token);
4240 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4241 &token);
4242 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
4243 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4244 em->block_start -
4245 extent_offset, &token);
4246 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4247 &token);
4248 } else {
4249 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
4250 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
4251 &token);
4252 }
4253
4254 btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token);
4255 btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
4256 btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
4257 btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
4258 &token);
4259 btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
4260 btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
4261 btrfs_mark_buffer_dirty(leaf);
4262
4263 btrfs_release_path(path);
4264
4265 return ret;
4266}
4267
Josef Bacik5dc562c2012-08-17 13:14:17 -04004268static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
4269 struct btrfs_root *root,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004270 struct btrfs_inode *inode,
Miao Xie827463c2014-01-14 20:31:51 +08004271 struct btrfs_path *path,
Filipe Manana8407f552014-09-05 15:14:39 +01004272 struct list_head *logged_list,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00004273 struct btrfs_log_ctx *ctx,
4274 const u64 start,
4275 const u64 end)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004276{
Josef Bacik5dc562c2012-08-17 13:14:17 -04004277 struct extent_map *em, *n;
4278 struct list_head extents;
Nikolay Borisov9d122622017-01-18 00:31:40 +02004279 struct extent_map_tree *tree = &inode->extent_tree;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004280 u64 logged_start, logged_end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004281 u64 test_gen;
4282 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004283 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004284
4285 INIT_LIST_HEAD(&extents);
4286
Nikolay Borisov9d122622017-01-18 00:31:40 +02004287 down_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004288 write_lock(&tree->lock);
4289 test_gen = root->fs_info->last_trans_committed;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004290 logged_start = start;
4291 logged_end = end;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004292
4293 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
4294 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004295 /*
4296 * Just an arbitrary number, this can be really CPU intensive
4297 * once we start getting a lot of extents, and really once we
4298 * have a bunch of extents we just want to commit since it will
4299 * be faster.
4300 */
4301 if (++num > 32768) {
4302 list_del_init(&tree->modified_extents);
4303 ret = -EFBIG;
4304 goto process;
4305 }
4306
Josef Bacik5dc562c2012-08-17 13:14:17 -04004307 if (em->generation <= test_gen)
4308 continue;
Josef Bacik8c6c5922017-08-29 10:11:39 -04004309
4310 if (em->start < logged_start)
4311 logged_start = em->start;
4312 if ((em->start + em->len - 1) > logged_end)
4313 logged_end = em->start + em->len - 1;
4314
Josef Bacikff44c6e2012-09-14 12:59:20 -04004315 /* Need a ref to keep it from getting evicted from cache */
Elena Reshetova490b54d2017-03-03 10:55:12 +02004316 refcount_inc(&em->refs);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004317 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004318 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004319 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004320 }
4321
4322 list_sort(NULL, &extents, extent_cmp);
Josef Bacik8c6c5922017-08-29 10:11:39 -04004323 btrfs_get_logged_extents(inode, logged_list, logged_start, logged_end);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004324 /*
4325 * Some ordered extents started by fsync might have completed
4326 * before we could collect them into the list logged_list, which
4327 * means they're gone, not in our logged_list nor in the inode's
4328 * ordered tree. We want the application/user space to know an
4329 * error happened while attempting to persist file data so that
4330 * it can take proper action. If such error happened, we leave
4331 * without writing to the log tree and the fsync must report the
4332 * file data write error and not commit the current transaction.
4333 */
Nikolay Borisov9d122622017-01-18 00:31:40 +02004334 ret = filemap_check_errors(inode->vfs_inode.i_mapping);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004335 if (ret)
4336 ctx->io_err = ret;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004337process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04004338 while (!list_empty(&extents)) {
4339 em = list_entry(extents.next, struct extent_map, list);
4340
4341 list_del_init(&em->list);
4342
4343 /*
4344 * If we had an error we just need to delete everybody from our
4345 * private list.
4346 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04004347 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05004348 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004349 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004350 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04004351 }
4352
4353 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004354
Filipe Manana8407f552014-09-05 15:14:39 +01004355 ret = log_one_extent(trans, inode, root, em, path, logged_list,
4356 ctx);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004357 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05004358 clear_em_logging(tree, em);
4359 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004360 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04004361 WARN_ON(!list_empty(&extents));
4362 write_unlock(&tree->lock);
Nikolay Borisov9d122622017-01-18 00:31:40 +02004363 up_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004364
Josef Bacik5dc562c2012-08-17 13:14:17 -04004365 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004366 return ret;
4367}
4368
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004369static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004370 struct btrfs_path *path, u64 *size_ret)
4371{
4372 struct btrfs_key key;
4373 int ret;
4374
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004375 key.objectid = btrfs_ino(inode);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004376 key.type = BTRFS_INODE_ITEM_KEY;
4377 key.offset = 0;
4378
4379 ret = btrfs_search_slot(NULL, log, &key, path, 0, 0);
4380 if (ret < 0) {
4381 return ret;
4382 } else if (ret > 0) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00004383 *size_ret = 0;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004384 } else {
4385 struct btrfs_inode_item *item;
4386
4387 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4388 struct btrfs_inode_item);
4389 *size_ret = btrfs_inode_size(path->nodes[0], item);
4390 }
4391
4392 btrfs_release_path(path);
4393 return 0;
4394}
4395
Filipe Manana36283bf2015-06-20 00:44:51 +01004396/*
4397 * At the moment we always log all xattrs. This is to figure out at log replay
4398 * time which xattrs must have their deletion replayed. If a xattr is missing
4399 * in the log tree and exists in the fs/subvol tree, we delete it. This is
4400 * because if a xattr is deleted, the inode is fsynced and a power failure
4401 * happens, causing the log to be replayed the next time the fs is mounted,
4402 * we want the xattr to not exist anymore (same behaviour as other filesystems
4403 * with a journal, ext3/4, xfs, f2fs, etc).
4404 */
4405static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans,
4406 struct btrfs_root *root,
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004407 struct btrfs_inode *inode,
Filipe Manana36283bf2015-06-20 00:44:51 +01004408 struct btrfs_path *path,
4409 struct btrfs_path *dst_path)
4410{
4411 int ret;
4412 struct btrfs_key key;
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004413 const u64 ino = btrfs_ino(inode);
Filipe Manana36283bf2015-06-20 00:44:51 +01004414 int ins_nr = 0;
4415 int start_slot = 0;
4416
4417 key.objectid = ino;
4418 key.type = BTRFS_XATTR_ITEM_KEY;
4419 key.offset = 0;
4420
4421 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4422 if (ret < 0)
4423 return ret;
4424
4425 while (true) {
4426 int slot = path->slots[0];
4427 struct extent_buffer *leaf = path->nodes[0];
4428 int nritems = btrfs_header_nritems(leaf);
4429
4430 if (slot >= nritems) {
4431 if (ins_nr > 0) {
4432 u64 last_extent = 0;
4433
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004434 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004435 &last_extent, start_slot,
4436 ins_nr, 1, 0);
4437 /* can't be 1, extent items aren't processed */
4438 ASSERT(ret <= 0);
4439 if (ret < 0)
4440 return ret;
4441 ins_nr = 0;
4442 }
4443 ret = btrfs_next_leaf(root, path);
4444 if (ret < 0)
4445 return ret;
4446 else if (ret > 0)
4447 break;
4448 continue;
4449 }
4450
4451 btrfs_item_key_to_cpu(leaf, &key, slot);
4452 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY)
4453 break;
4454
4455 if (ins_nr == 0)
4456 start_slot = slot;
4457 ins_nr++;
4458 path->slots[0]++;
4459 cond_resched();
4460 }
4461 if (ins_nr > 0) {
4462 u64 last_extent = 0;
4463
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004464 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004465 &last_extent, start_slot,
4466 ins_nr, 1, 0);
4467 /* can't be 1, extent items aren't processed */
4468 ASSERT(ret <= 0);
4469 if (ret < 0)
4470 return ret;
4471 }
4472
4473 return 0;
4474}
4475
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004476/*
4477 * If the no holes feature is enabled we need to make sure any hole between the
4478 * last extent and the i_size of our inode is explicitly marked in the log. This
4479 * is to make sure that doing something like:
4480 *
4481 * 1) create file with 128Kb of data
4482 * 2) truncate file to 64Kb
4483 * 3) truncate file to 256Kb
4484 * 4) fsync file
4485 * 5) <crash/power failure>
4486 * 6) mount fs and trigger log replay
4487 *
4488 * Will give us a file with a size of 256Kb, the first 64Kb of data match what
4489 * the file had in its first 64Kb of data at step 1 and the last 192Kb of the
4490 * file correspond to a hole. The presence of explicit holes in a log tree is
4491 * what guarantees that log replay will remove/adjust file extent items in the
4492 * fs/subvol tree.
4493 *
4494 * Here we do not need to care about holes between extents, that is already done
4495 * by copy_items(). We also only need to do this in the full sync path, where we
4496 * lookup for extents from the fs/subvol tree only. In the fast path case, we
4497 * lookup the list of modified extent maps and if any represents a hole, we
4498 * insert a corresponding extent representing a hole in the log tree.
4499 */
4500static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans,
4501 struct btrfs_root *root,
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004502 struct btrfs_inode *inode,
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004503 struct btrfs_path *path)
4504{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004505 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004506 int ret;
4507 struct btrfs_key key;
4508 u64 hole_start;
4509 u64 hole_size;
4510 struct extent_buffer *leaf;
4511 struct btrfs_root *log = root->log_root;
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004512 const u64 ino = btrfs_ino(inode);
4513 const u64 i_size = i_size_read(&inode->vfs_inode);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004514
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004515 if (!btrfs_fs_incompat(fs_info, NO_HOLES))
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004516 return 0;
4517
4518 key.objectid = ino;
4519 key.type = BTRFS_EXTENT_DATA_KEY;
4520 key.offset = (u64)-1;
4521
4522 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4523 ASSERT(ret != 0);
4524 if (ret < 0)
4525 return ret;
4526
4527 ASSERT(path->slots[0] > 0);
4528 path->slots[0]--;
4529 leaf = path->nodes[0];
4530 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4531
4532 if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) {
4533 /* inode does not have any extents */
4534 hole_start = 0;
4535 hole_size = i_size;
4536 } else {
4537 struct btrfs_file_extent_item *extent;
4538 u64 len;
4539
4540 /*
4541 * If there's an extent beyond i_size, an explicit hole was
4542 * already inserted by copy_items().
4543 */
4544 if (key.offset >= i_size)
4545 return 0;
4546
4547 extent = btrfs_item_ptr(leaf, path->slots[0],
4548 struct btrfs_file_extent_item);
4549
4550 if (btrfs_file_extent_type(leaf, extent) ==
4551 BTRFS_FILE_EXTENT_INLINE) {
4552 len = btrfs_file_extent_inline_len(leaf,
4553 path->slots[0],
4554 extent);
Filipe Manana6399fb52017-07-28 15:22:36 +01004555 ASSERT(len == i_size ||
4556 (len == fs_info->sectorsize &&
4557 btrfs_file_extent_compression(leaf, extent) !=
4558 BTRFS_COMPRESS_NONE));
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004559 return 0;
4560 }
4561
4562 len = btrfs_file_extent_num_bytes(leaf, extent);
4563 /* Last extent goes beyond i_size, no need to log a hole. */
4564 if (key.offset + len > i_size)
4565 return 0;
4566 hole_start = key.offset + len;
4567 hole_size = i_size - hole_start;
4568 }
4569 btrfs_release_path(path);
4570
4571 /* Last extent ends at i_size. */
4572 if (hole_size == 0)
4573 return 0;
4574
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004575 hole_size = ALIGN(hole_size, fs_info->sectorsize);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004576 ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0,
4577 hole_size, 0, hole_size, 0, 0, 0);
4578 return ret;
4579}
4580
Filipe Manana56f23fd2016-03-30 23:37:21 +01004581/*
4582 * When we are logging a new inode X, check if it doesn't have a reference that
4583 * matches the reference from some other inode Y created in a past transaction
4584 * and that was renamed in the current transaction. If we don't do this, then at
4585 * log replay time we can lose inode Y (and all its files if it's a directory):
4586 *
4587 * mkdir /mnt/x
4588 * echo "hello world" > /mnt/x/foobar
4589 * sync
4590 * mv /mnt/x /mnt/y
4591 * mkdir /mnt/x # or touch /mnt/x
4592 * xfs_io -c fsync /mnt/x
4593 * <power fail>
4594 * mount fs, trigger log replay
4595 *
4596 * After the log replay procedure, we would lose the first directory and all its
4597 * files (file foobar).
4598 * For the case where inode Y is not a directory we simply end up losing it:
4599 *
4600 * echo "123" > /mnt/foo
4601 * sync
4602 * mv /mnt/foo /mnt/bar
4603 * echo "abc" > /mnt/foo
4604 * xfs_io -c fsync /mnt/foo
4605 * <power fail>
4606 *
4607 * We also need this for cases where a snapshot entry is replaced by some other
4608 * entry (file or directory) otherwise we end up with an unreplayable log due to
4609 * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as
4610 * if it were a regular entry:
4611 *
4612 * mkdir /mnt/x
4613 * btrfs subvolume snapshot /mnt /mnt/x/snap
4614 * btrfs subvolume delete /mnt/x/snap
4615 * rmdir /mnt/x
4616 * mkdir /mnt/x
4617 * fsync /mnt/x or fsync some new file inside it
4618 * <power fail>
4619 *
4620 * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in
4621 * the same transaction.
4622 */
4623static int btrfs_check_ref_name_override(struct extent_buffer *eb,
4624 const int slot,
4625 const struct btrfs_key *key,
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004626 struct btrfs_inode *inode,
Filipe Manana44f714d2016-06-06 16:11:13 +01004627 u64 *other_ino)
Filipe Manana56f23fd2016-03-30 23:37:21 +01004628{
4629 int ret;
4630 struct btrfs_path *search_path;
4631 char *name = NULL;
4632 u32 name_len = 0;
4633 u32 item_size = btrfs_item_size_nr(eb, slot);
4634 u32 cur_offset = 0;
4635 unsigned long ptr = btrfs_item_ptr_offset(eb, slot);
4636
4637 search_path = btrfs_alloc_path();
4638 if (!search_path)
4639 return -ENOMEM;
4640 search_path->search_commit_root = 1;
4641 search_path->skip_locking = 1;
4642
4643 while (cur_offset < item_size) {
4644 u64 parent;
4645 u32 this_name_len;
4646 u32 this_len;
4647 unsigned long name_ptr;
4648 struct btrfs_dir_item *di;
4649
4650 if (key->type == BTRFS_INODE_REF_KEY) {
4651 struct btrfs_inode_ref *iref;
4652
4653 iref = (struct btrfs_inode_ref *)(ptr + cur_offset);
4654 parent = key->offset;
4655 this_name_len = btrfs_inode_ref_name_len(eb, iref);
4656 name_ptr = (unsigned long)(iref + 1);
4657 this_len = sizeof(*iref) + this_name_len;
4658 } else {
4659 struct btrfs_inode_extref *extref;
4660
4661 extref = (struct btrfs_inode_extref *)(ptr +
4662 cur_offset);
4663 parent = btrfs_inode_extref_parent(eb, extref);
4664 this_name_len = btrfs_inode_extref_name_len(eb, extref);
4665 name_ptr = (unsigned long)&extref->name;
4666 this_len = sizeof(*extref) + this_name_len;
4667 }
4668
4669 if (this_name_len > name_len) {
4670 char *new_name;
4671
4672 new_name = krealloc(name, this_name_len, GFP_NOFS);
4673 if (!new_name) {
4674 ret = -ENOMEM;
4675 goto out;
4676 }
4677 name_len = this_name_len;
4678 name = new_name;
4679 }
4680
4681 read_extent_buffer(eb, name, name_ptr, this_name_len);
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004682 di = btrfs_lookup_dir_item(NULL, inode->root, search_path,
4683 parent, name, this_name_len, 0);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004684 if (di && !IS_ERR(di)) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004685 struct btrfs_key di_key;
4686
4687 btrfs_dir_item_key_to_cpu(search_path->nodes[0],
4688 di, &di_key);
4689 if (di_key.type == BTRFS_INODE_ITEM_KEY) {
4690 ret = 1;
4691 *other_ino = di_key.objectid;
4692 } else {
4693 ret = -EAGAIN;
4694 }
Filipe Manana56f23fd2016-03-30 23:37:21 +01004695 goto out;
4696 } else if (IS_ERR(di)) {
4697 ret = PTR_ERR(di);
4698 goto out;
4699 }
4700 btrfs_release_path(search_path);
4701
4702 cur_offset += this_len;
4703 }
4704 ret = 0;
4705out:
4706 btrfs_free_path(search_path);
4707 kfree(name);
4708 return ret;
4709}
4710
Chris Masone02119d2008-09-05 16:13:11 -04004711/* log a single inode in the tree log.
4712 * At least one parent directory for this inode must exist in the tree
4713 * or be logged already.
4714 *
4715 * Any items from this inode changed by the current transaction are copied
4716 * to the log tree. An extra reference is taken on any extents in this
4717 * file, allowing us to avoid a whole pile of corner cases around logging
4718 * blocks that have been removed from the tree.
4719 *
4720 * See LOG_INODE_ALL and related defines for a description of what inode_only
4721 * does.
4722 *
4723 * This handles both files and directories.
4724 */
Chris Mason12fcfd22009-03-24 10:24:20 -04004725static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004726 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01004727 int inode_only,
4728 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +01004729 const loff_t end,
4730 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004731{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004732 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04004733 struct btrfs_path *path;
4734 struct btrfs_path *dst_path;
4735 struct btrfs_key min_key;
4736 struct btrfs_key max_key;
4737 struct btrfs_root *log = root->log_root;
Miao Xie827463c2014-01-14 20:31:51 +08004738 LIST_HEAD(logged_list);
Josef Bacik16e75492013-10-22 12:18:51 -04004739 u64 last_extent = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004740 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004741 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004742 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004743 int ins_start_slot = 0;
4744 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004745 bool fast_search = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004746 u64 ino = btrfs_ino(inode);
4747 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004748 u64 logged_isize = 0;
Filipe Mananae4545de2015-06-17 12:49:23 +01004749 bool need_log_inode_item = true;
Chris Masone02119d2008-09-05 16:13:11 -04004750
Chris Masone02119d2008-09-05 16:13:11 -04004751 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004752 if (!path)
4753 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04004754 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004755 if (!dst_path) {
4756 btrfs_free_path(path);
4757 return -ENOMEM;
4758 }
Chris Masone02119d2008-09-05 16:13:11 -04004759
Li Zefan33345d012011-04-20 10:31:50 +08004760 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04004761 min_key.type = BTRFS_INODE_ITEM_KEY;
4762 min_key.offset = 0;
4763
Li Zefan33345d012011-04-20 10:31:50 +08004764 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04004765
Chris Mason12fcfd22009-03-24 10:24:20 -04004766
Josef Bacik5dc562c2012-08-17 13:14:17 -04004767 /* today the code can only do partial logging of directories */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004768 if (S_ISDIR(inode->vfs_inode.i_mode) ||
Miao Xie5269b672012-11-01 07:35:23 +00004769 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004770 &inode->runtime_flags) &&
Liu Bo781feef2016-11-30 16:20:25 -08004771 inode_only >= LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04004772 max_key.type = BTRFS_XATTR_ITEM_KEY;
4773 else
4774 max_key.type = (u8)-1;
4775 max_key.offset = (u64)-1;
4776
Filipe Manana2c2c4522015-01-13 16:40:04 +00004777 /*
4778 * Only run delayed items if we are a dir or a new file.
4779 * Otherwise commit the delayed inode only, which is needed in
4780 * order for the log replay code to mark inodes for link count
4781 * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items).
4782 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004783 if (S_ISDIR(inode->vfs_inode.i_mode) ||
4784 inode->generation > fs_info->last_trans_committed)
4785 ret = btrfs_commit_inode_delayed_items(trans, inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004786 else
Nikolay Borisova59108a2017-01-18 00:31:48 +02004787 ret = btrfs_commit_inode_delayed_inode(inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004788
4789 if (ret) {
4790 btrfs_free_path(path);
4791 btrfs_free_path(dst_path);
4792 return ret;
Miao Xie16cdcec2011-04-22 18:12:22 +08004793 }
4794
Liu Bo781feef2016-11-30 16:20:25 -08004795 if (inode_only == LOG_OTHER_INODE) {
4796 inode_only = LOG_INODE_EXISTS;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004797 mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING);
Liu Bo781feef2016-11-30 16:20:25 -08004798 } else {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004799 mutex_lock(&inode->log_mutex);
Liu Bo781feef2016-11-30 16:20:25 -08004800 }
Chris Masone02119d2008-09-05 16:13:11 -04004801
Filipe Manana5e33a2b2016-02-25 23:19:38 +00004802 /*
Chris Masone02119d2008-09-05 16:13:11 -04004803 * a brute force approach to making sure we get the most uptodate
4804 * copies of everything.
4805 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004806 if (S_ISDIR(inode->vfs_inode.i_mode)) {
Chris Masone02119d2008-09-05 16:13:11 -04004807 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
4808
Filipe Manana4f764e52015-02-23 19:53:35 +00004809 if (inode_only == LOG_INODE_EXISTS)
4810 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08004811 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04004812 } else {
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004813 if (inode_only == LOG_INODE_EXISTS) {
4814 /*
4815 * Make sure the new inode item we write to the log has
4816 * the same isize as the current one (if it exists).
4817 * This is necessary to prevent data loss after log
4818 * replay, and also to prevent doing a wrong expanding
4819 * truncate - for e.g. create file, write 4K into offset
4820 * 0, fsync, write 4K into offset 4096, add hard link,
4821 * fsync some other file (to sync log), power fail - if
4822 * we use the inode's current i_size, after log replay
4823 * we get a 8Kb file, with the last 4Kb extent as a hole
4824 * (zeroes), as if an expanding truncate happened,
4825 * instead of getting a file of 4Kb only.
4826 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004827 err = logged_inode_size(log, inode, path, &logged_isize);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004828 if (err)
4829 goto out_unlock;
4830 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004831 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004832 &inode->runtime_flags)) {
Filipe Mananaa7429942015-02-13 16:56:14 +00004833 if (inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004834 max_key.type = BTRFS_XATTR_ITEM_KEY;
Filipe Mananaa7429942015-02-13 16:56:14 +00004835 ret = drop_objectid_items(trans, log, path, ino,
4836 max_key.type);
4837 } else {
4838 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004839 &inode->runtime_flags);
Filipe Mananaa7429942015-02-13 16:56:14 +00004840 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004841 &inode->runtime_flags);
Chris Mason28ed1342014-12-17 09:41:04 -08004842 while(1) {
4843 ret = btrfs_truncate_inode_items(trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004844 log, &inode->vfs_inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08004845 if (ret != -EAGAIN)
4846 break;
4847 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004848 }
Filipe Manana4f764e52015-02-23 19:53:35 +00004849 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004850 &inode->runtime_flags) ||
Josef Bacik6cfab852013-11-12 16:25:58 -05004851 inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004852 if (inode_only == LOG_INODE_ALL)
Josef Bacika95249b2012-10-11 16:17:34 -04004853 fast_search = true;
Filipe Manana4f764e52015-02-23 19:53:35 +00004854 max_key.type = BTRFS_XATTR_ITEM_KEY;
Josef Bacika95249b2012-10-11 16:17:34 -04004855 ret = drop_objectid_items(trans, log, path, ino,
4856 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004857 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00004858 if (inode_only == LOG_INODE_ALL)
4859 fast_search = true;
Josef Bacika95249b2012-10-11 16:17:34 -04004860 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004861 }
Josef Bacika95249b2012-10-11 16:17:34 -04004862
Chris Masone02119d2008-09-05 16:13:11 -04004863 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004864 if (ret) {
4865 err = ret;
4866 goto out_unlock;
4867 }
Chris Masone02119d2008-09-05 16:13:11 -04004868
Chris Masond3977122009-01-05 21:25:51 -05004869 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004870 ins_nr = 0;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004871 ret = btrfs_search_forward(root, &min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00004872 path, trans->transid);
Liu Bofb770ae2016-07-05 12:10:14 -07004873 if (ret < 0) {
4874 err = ret;
4875 goto out_unlock;
4876 }
Chris Masone02119d2008-09-05 16:13:11 -04004877 if (ret != 0)
4878 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004879again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04004880 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08004881 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04004882 break;
4883 if (min_key.type > max_key.type)
4884 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004885
Filipe Mananae4545de2015-06-17 12:49:23 +01004886 if (min_key.type == BTRFS_INODE_ITEM_KEY)
4887 need_log_inode_item = false;
4888
Filipe Manana56f23fd2016-03-30 23:37:21 +01004889 if ((min_key.type == BTRFS_INODE_REF_KEY ||
4890 min_key.type == BTRFS_INODE_EXTREF_KEY) &&
Nikolay Borisova59108a2017-01-18 00:31:48 +02004891 inode->generation == trans->transid) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004892 u64 other_ino = 0;
4893
Filipe Manana56f23fd2016-03-30 23:37:21 +01004894 ret = btrfs_check_ref_name_override(path->nodes[0],
Nikolay Borisova59108a2017-01-18 00:31:48 +02004895 path->slots[0], &min_key, inode,
4896 &other_ino);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004897 if (ret < 0) {
4898 err = ret;
4899 goto out_unlock;
Filipe Manana28a23592016-08-23 21:13:51 +01004900 } else if (ret > 0 && ctx &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004901 other_ino != btrfs_ino(BTRFS_I(ctx->inode))) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004902 struct btrfs_key inode_key;
4903 struct inode *other_inode;
4904
4905 if (ins_nr > 0) {
4906 ins_nr++;
4907 } else {
4908 ins_nr = 1;
4909 ins_start_slot = path->slots[0];
4910 }
Nikolay Borisova59108a2017-01-18 00:31:48 +02004911 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana44f714d2016-06-06 16:11:13 +01004912 &last_extent, ins_start_slot,
4913 ins_nr, inode_only,
4914 logged_isize);
4915 if (ret < 0) {
4916 err = ret;
4917 goto out_unlock;
4918 }
4919 ins_nr = 0;
4920 btrfs_release_path(path);
4921 inode_key.objectid = other_ino;
4922 inode_key.type = BTRFS_INODE_ITEM_KEY;
4923 inode_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004924 other_inode = btrfs_iget(fs_info->sb,
Filipe Manana44f714d2016-06-06 16:11:13 +01004925 &inode_key, root,
4926 NULL);
4927 /*
4928 * If the other inode that had a conflicting dir
4929 * entry was deleted in the current transaction,
4930 * we don't need to do more work nor fallback to
4931 * a transaction commit.
4932 */
4933 if (IS_ERR(other_inode) &&
4934 PTR_ERR(other_inode) == -ENOENT) {
4935 goto next_key;
4936 } else if (IS_ERR(other_inode)) {
4937 err = PTR_ERR(other_inode);
4938 goto out_unlock;
4939 }
4940 /*
4941 * We are safe logging the other inode without
4942 * acquiring its i_mutex as long as we log with
4943 * the LOG_INODE_EXISTS mode. We're safe against
4944 * concurrent renames of the other inode as well
4945 * because during a rename we pin the log and
4946 * update the log with the new name before we
4947 * unpin it.
4948 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004949 err = btrfs_log_inode(trans, root,
4950 BTRFS_I(other_inode),
4951 LOG_OTHER_INODE, 0, LLONG_MAX,
4952 ctx);
Filipe Manana44f714d2016-06-06 16:11:13 +01004953 iput(other_inode);
4954 if (err)
4955 goto out_unlock;
4956 else
4957 goto next_key;
Filipe Manana56f23fd2016-03-30 23:37:21 +01004958 }
4959 }
4960
Filipe Manana36283bf2015-06-20 00:44:51 +01004961 /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */
4962 if (min_key.type == BTRFS_XATTR_ITEM_KEY) {
4963 if (ins_nr == 0)
4964 goto next_slot;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004965 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004966 &last_extent, ins_start_slot,
4967 ins_nr, inode_only, logged_isize);
4968 if (ret < 0) {
4969 err = ret;
4970 goto out_unlock;
4971 }
4972 ins_nr = 0;
4973 if (ret) {
4974 btrfs_release_path(path);
4975 continue;
4976 }
4977 goto next_slot;
4978 }
4979
Chris Mason31ff1cd2008-09-11 16:17:57 -04004980 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
4981 ins_nr++;
4982 goto next_slot;
4983 } else if (!ins_nr) {
4984 ins_start_slot = path->slots[0];
4985 ins_nr = 1;
4986 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04004987 }
4988
Nikolay Borisova59108a2017-01-18 00:31:48 +02004989 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004990 ins_start_slot, ins_nr, inode_only,
4991 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004992 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004993 err = ret;
4994 goto out_unlock;
Rasmus Villemoesa71db862014-06-20 21:51:43 +02004995 }
4996 if (ret) {
Josef Bacik16e75492013-10-22 12:18:51 -04004997 ins_nr = 0;
4998 btrfs_release_path(path);
4999 continue;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005000 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04005001 ins_nr = 1;
5002 ins_start_slot = path->slots[0];
5003next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04005004
Chris Mason3a5f1d42008-09-11 15:53:37 -04005005 nritems = btrfs_header_nritems(path->nodes[0]);
5006 path->slots[0]++;
5007 if (path->slots[0] < nritems) {
5008 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
5009 path->slots[0]);
5010 goto again;
5011 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04005012 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005013 ret = copy_items(trans, inode, dst_path, path,
Josef Bacik16e75492013-10-22 12:18:51 -04005014 &last_extent, ins_start_slot,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005015 ins_nr, inode_only, logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04005016 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005017 err = ret;
5018 goto out_unlock;
5019 }
Josef Bacik16e75492013-10-22 12:18:51 -04005020 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04005021 ins_nr = 0;
5022 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005023 btrfs_release_path(path);
Filipe Manana44f714d2016-06-06 16:11:13 +01005024next_key:
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005025 if (min_key.offset < (u64)-1) {
Chris Masone02119d2008-09-05 16:13:11 -04005026 min_key.offset++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005027 } else if (min_key.type < max_key.type) {
Chris Masone02119d2008-09-05 16:13:11 -04005028 min_key.type++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005029 min_key.offset = 0;
5030 } else {
Chris Masone02119d2008-09-05 16:13:11 -04005031 break;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01005032 }
Chris Masone02119d2008-09-05 16:13:11 -04005033 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04005034 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005035 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00005036 ins_start_slot, ins_nr, inode_only,
5037 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04005038 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005039 err = ret;
5040 goto out_unlock;
5041 }
Josef Bacik16e75492013-10-22 12:18:51 -04005042 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04005043 ins_nr = 0;
5044 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04005045
Filipe Manana36283bf2015-06-20 00:44:51 +01005046 btrfs_release_path(path);
5047 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005048 err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path);
Filipe Manana36283bf2015-06-20 00:44:51 +01005049 if (err)
5050 goto out_unlock;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005051 if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) {
5052 btrfs_release_path(path);
5053 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005054 err = btrfs_log_trailing_hole(trans, root, inode, path);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01005055 if (err)
5056 goto out_unlock;
5057 }
Josef Bacika95249b2012-10-11 16:17:34 -04005058log_extents:
Josef Bacikf3b15cc2013-07-22 12:54:30 -04005059 btrfs_release_path(path);
5060 btrfs_release_path(dst_path);
Filipe Mananae4545de2015-06-17 12:49:23 +01005061 if (need_log_inode_item) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005062 err = log_inode_item(trans, log, dst_path, inode);
Filipe Mananae4545de2015-06-17 12:49:23 +01005063 if (err)
5064 goto out_unlock;
5065 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04005066 if (fast_search) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02005067 ret = btrfs_log_changed_extents(trans, root, inode, dst_path,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00005068 &logged_list, ctx, start, end);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005069 if (ret) {
5070 err = ret;
5071 goto out_unlock;
5072 }
Josef Bacikd006a042013-11-12 20:54:09 -05005073 } else if (inode_only == LOG_INODE_ALL) {
Liu Bo06d3d222012-08-27 10:52:19 -06005074 struct extent_map *em, *n;
5075
Filipe Manana49dae1b2014-09-06 22:34:39 +01005076 write_lock(&em_tree->lock);
5077 /*
5078 * We can't just remove every em if we're called for a ranged
5079 * fsync - that is, one that doesn't cover the whole possible
5080 * file range (0 to LLONG_MAX). This is because we can have
5081 * em's that fall outside the range we're logging and therefore
5082 * their ordered operations haven't completed yet
5083 * (btrfs_finish_ordered_io() not invoked yet). This means we
5084 * didn't get their respective file extent item in the fs/subvol
5085 * tree yet, and need to let the next fast fsync (one which
5086 * consults the list of modified extent maps) find the em so
5087 * that it logs a matching file extent item and waits for the
5088 * respective ordered operation to complete (if it's still
5089 * running).
5090 *
5091 * Removing every em outside the range we're logging would make
5092 * the next fast fsync not log their matching file extent items,
5093 * therefore making us lose data after a log replay.
5094 */
5095 list_for_each_entry_safe(em, n, &em_tree->modified_extents,
5096 list) {
5097 const u64 mod_end = em->mod_start + em->mod_len - 1;
5098
5099 if (em->mod_start >= start && mod_end <= end)
5100 list_del_init(&em->list);
5101 }
5102 write_unlock(&em_tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04005103 }
5104
Nikolay Borisova59108a2017-01-18 00:31:48 +02005105 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) {
5106 ret = log_directory_changes(trans, root, inode, path, dst_path,
5107 ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005108 if (ret) {
5109 err = ret;
5110 goto out_unlock;
5111 }
Chris Masone02119d2008-09-05 16:13:11 -04005112 }
Filipe Manana49dae1b2014-09-06 22:34:39 +01005113
Nikolay Borisova59108a2017-01-18 00:31:48 +02005114 spin_lock(&inode->lock);
5115 inode->logged_trans = trans->transid;
5116 inode->last_log_commit = inode->last_sub_trans;
5117 spin_unlock(&inode->lock);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005118out_unlock:
Miao Xie827463c2014-01-14 20:31:51 +08005119 if (unlikely(err))
5120 btrfs_put_logged_extents(&logged_list);
5121 else
5122 btrfs_submit_logged_extents(&logged_list, log);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005123 mutex_unlock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04005124
5125 btrfs_free_path(path);
5126 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005127 return err;
Chris Masone02119d2008-09-05 16:13:11 -04005128}
5129
Chris Mason12fcfd22009-03-24 10:24:20 -04005130/*
Filipe Manana2be63d52016-02-12 11:34:23 +00005131 * Check if we must fallback to a transaction commit when logging an inode.
5132 * This must be called after logging the inode and is used only in the context
5133 * when fsyncing an inode requires the need to log some other inode - in which
5134 * case we can't lock the i_mutex of each other inode we need to log as that
5135 * can lead to deadlocks with concurrent fsync against other inodes (as we can
5136 * log inodes up or down in the hierarchy) or rename operations for example. So
5137 * we take the log_mutex of the inode after we have logged it and then check for
5138 * its last_unlink_trans value - this is safe because any task setting
5139 * last_unlink_trans must take the log_mutex and it must do this before it does
5140 * the actual unlink operation, so if we do this check before a concurrent task
5141 * sets last_unlink_trans it means we've logged a consistent version/state of
5142 * all the inode items, otherwise we are not sure and must do a transaction
Nicholas D Steeves01327612016-05-19 21:18:45 -04005143 * commit (the concurrent task might have only updated last_unlink_trans before
Filipe Manana2be63d52016-02-12 11:34:23 +00005144 * we logged the inode or it might have also done the unlink).
5145 */
5146static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans,
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005147 struct btrfs_inode *inode)
Filipe Manana2be63d52016-02-12 11:34:23 +00005148{
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005149 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Filipe Manana2be63d52016-02-12 11:34:23 +00005150 bool ret = false;
5151
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005152 mutex_lock(&inode->log_mutex);
5153 if (inode->last_unlink_trans > fs_info->last_trans_committed) {
Filipe Manana2be63d52016-02-12 11:34:23 +00005154 /*
5155 * Make sure any commits to the log are forced to be full
5156 * commits.
5157 */
5158 btrfs_set_log_full_commit(fs_info, trans);
5159 ret = true;
5160 }
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005161 mutex_unlock(&inode->log_mutex);
Filipe Manana2be63d52016-02-12 11:34:23 +00005162
5163 return ret;
5164}
5165
5166/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005167 * follow the dentry parent pointers up the chain and see if any
5168 * of the directories in it require a full commit before they can
5169 * be logged. Returns zero if nothing special needs to be done or 1 if
5170 * a full commit is required.
5171 */
5172static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005173 struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005174 struct dentry *parent,
5175 struct super_block *sb,
5176 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04005177{
Chris Mason12fcfd22009-03-24 10:24:20 -04005178 int ret = 0;
Josef Bacik6a912212010-11-20 09:48:00 +00005179 struct dentry *old_parent = NULL;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005180 struct btrfs_inode *orig_inode = inode;
Chris Masone02119d2008-09-05 16:13:11 -04005181
Chris Masonaf4176b2009-03-24 10:24:31 -04005182 /*
5183 * for regular files, if its inode is already on disk, we don't
5184 * have to worry about the parents at all. This is because
5185 * we can use the last_unlink_trans field to record renames
5186 * and other fun in this file.
5187 */
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005188 if (S_ISREG(inode->vfs_inode.i_mode) &&
5189 inode->generation <= last_committed &&
5190 inode->last_unlink_trans <= last_committed)
5191 goto out;
Chris Masonaf4176b2009-03-24 10:24:31 -04005192
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005193 if (!S_ISDIR(inode->vfs_inode.i_mode)) {
Al Virofc640052016-04-10 01:33:30 -04005194 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005195 goto out;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005196 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005197 }
5198
5199 while (1) {
Josef Bacikde2b5302013-09-11 09:36:30 -04005200 /*
5201 * If we are logging a directory then we start with our inode,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005202 * not our parent's inode, so we need to skip setting the
Josef Bacikde2b5302013-09-11 09:36:30 -04005203 * logged_trans so that further down in the log code we don't
5204 * think this inode has already been logged.
5205 */
5206 if (inode != orig_inode)
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005207 inode->logged_trans = trans->transid;
Chris Mason12fcfd22009-03-24 10:24:20 -04005208 smp_mb();
5209
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005210 if (btrfs_must_commit_transaction(trans, inode)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005211 ret = 1;
5212 break;
5213 }
5214
Al Virofc640052016-04-10 01:33:30 -04005215 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005216 break;
5217
Filipe Manana44f714d2016-06-06 16:11:13 +01005218 if (IS_ROOT(parent)) {
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005219 inode = BTRFS_I(d_inode(parent));
5220 if (btrfs_must_commit_transaction(trans, inode))
Filipe Manana44f714d2016-06-06 16:11:13 +01005221 ret = 1;
Chris Mason12fcfd22009-03-24 10:24:20 -04005222 break;
Filipe Manana44f714d2016-06-06 16:11:13 +01005223 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005224
Josef Bacik6a912212010-11-20 09:48:00 +00005225 parent = dget_parent(parent);
5226 dput(old_parent);
5227 old_parent = parent;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005228 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005229
5230 }
Josef Bacik6a912212010-11-20 09:48:00 +00005231 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04005232out:
Chris Masone02119d2008-09-05 16:13:11 -04005233 return ret;
5234}
5235
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005236struct btrfs_dir_list {
5237 u64 ino;
5238 struct list_head list;
5239};
5240
5241/*
5242 * Log the inodes of the new dentries of a directory. See log_dir_items() for
5243 * details about the why it is needed.
5244 * This is a recursive operation - if an existing dentry corresponds to a
5245 * directory, that directory's new entries are logged too (same behaviour as
5246 * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes
5247 * the dentries point to we do not lock their i_mutex, otherwise lockdep
5248 * complains about the following circular lock dependency / possible deadlock:
5249 *
5250 * CPU0 CPU1
5251 * ---- ----
5252 * lock(&type->i_mutex_dir_key#3/2);
5253 * lock(sb_internal#2);
5254 * lock(&type->i_mutex_dir_key#3/2);
5255 * lock(&sb->s_type->i_mutex_key#14);
5256 *
5257 * Where sb_internal is the lock (a counter that works as a lock) acquired by
5258 * sb_start_intwrite() in btrfs_start_transaction().
5259 * Not locking i_mutex of the inodes is still safe because:
5260 *
5261 * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible
5262 * that while logging the inode new references (names) are added or removed
5263 * from the inode, leaving the logged inode item with a link count that does
5264 * not match the number of logged inode reference items. This is fine because
5265 * at log replay time we compute the real number of links and correct the
5266 * link count in the inode item (see replay_one_buffer() and
5267 * link_to_fixup_dir());
5268 *
5269 * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that
5270 * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and
5271 * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item
5272 * has a size that doesn't match the sum of the lengths of all the logged
5273 * names. This does not result in a problem because if a dir_item key is
5274 * logged but its matching dir_index key is not logged, at log replay time we
5275 * don't use it to replay the respective name (see replay_one_name()). On the
5276 * other hand if only the dir_index key ends up being logged, the respective
5277 * name is added to the fs/subvol tree with both the dir_item and dir_index
5278 * keys created (see replay_one_name()).
5279 * The directory's inode item with a wrong i_size is not a problem as well,
5280 * since we don't use it at log replay time to set the i_size in the inode
5281 * item of the fs/subvol tree (see overwrite_item()).
5282 */
5283static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
5284 struct btrfs_root *root,
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005285 struct btrfs_inode *start_inode,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005286 struct btrfs_log_ctx *ctx)
5287{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005288 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005289 struct btrfs_root *log = root->log_root;
5290 struct btrfs_path *path;
5291 LIST_HEAD(dir_list);
5292 struct btrfs_dir_list *dir_elem;
5293 int ret = 0;
5294
5295 path = btrfs_alloc_path();
5296 if (!path)
5297 return -ENOMEM;
5298
5299 dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS);
5300 if (!dir_elem) {
5301 btrfs_free_path(path);
5302 return -ENOMEM;
5303 }
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005304 dir_elem->ino = btrfs_ino(start_inode);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005305 list_add_tail(&dir_elem->list, &dir_list);
5306
5307 while (!list_empty(&dir_list)) {
5308 struct extent_buffer *leaf;
5309 struct btrfs_key min_key;
5310 int nritems;
5311 int i;
5312
5313 dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list,
5314 list);
5315 if (ret)
5316 goto next_dir_inode;
5317
5318 min_key.objectid = dir_elem->ino;
5319 min_key.type = BTRFS_DIR_ITEM_KEY;
5320 min_key.offset = 0;
5321again:
5322 btrfs_release_path(path);
5323 ret = btrfs_search_forward(log, &min_key, path, trans->transid);
5324 if (ret < 0) {
5325 goto next_dir_inode;
5326 } else if (ret > 0) {
5327 ret = 0;
5328 goto next_dir_inode;
5329 }
5330
5331process_leaf:
5332 leaf = path->nodes[0];
5333 nritems = btrfs_header_nritems(leaf);
5334 for (i = path->slots[0]; i < nritems; i++) {
5335 struct btrfs_dir_item *di;
5336 struct btrfs_key di_key;
5337 struct inode *di_inode;
5338 struct btrfs_dir_list *new_dir_elem;
5339 int log_mode = LOG_INODE_EXISTS;
5340 int type;
5341
5342 btrfs_item_key_to_cpu(leaf, &min_key, i);
5343 if (min_key.objectid != dir_elem->ino ||
5344 min_key.type != BTRFS_DIR_ITEM_KEY)
5345 goto next_dir_inode;
5346
5347 di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item);
5348 type = btrfs_dir_type(leaf, di);
5349 if (btrfs_dir_transid(leaf, di) < trans->transid &&
5350 type != BTRFS_FT_DIR)
5351 continue;
5352 btrfs_dir_item_key_to_cpu(leaf, di, &di_key);
5353 if (di_key.type == BTRFS_ROOT_ITEM_KEY)
5354 continue;
5355
Robbie Koec125cf2016-10-28 10:48:26 +08005356 btrfs_release_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005357 di_inode = btrfs_iget(fs_info->sb, &di_key, root, NULL);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005358 if (IS_ERR(di_inode)) {
5359 ret = PTR_ERR(di_inode);
5360 goto next_dir_inode;
5361 }
5362
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02005363 if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005364 iput(di_inode);
Robbie Koec125cf2016-10-28 10:48:26 +08005365 break;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005366 }
5367
5368 ctx->log_new_dentries = false;
Filipe Manana3f9749f2016-04-25 04:45:02 +01005369 if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005370 log_mode = LOG_INODE_ALL;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005371 ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode),
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005372 log_mode, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005373 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005374 btrfs_must_commit_transaction(trans, BTRFS_I(di_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005375 ret = 1;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005376 iput(di_inode);
5377 if (ret)
5378 goto next_dir_inode;
5379 if (ctx->log_new_dentries) {
5380 new_dir_elem = kmalloc(sizeof(*new_dir_elem),
5381 GFP_NOFS);
5382 if (!new_dir_elem) {
5383 ret = -ENOMEM;
5384 goto next_dir_inode;
5385 }
5386 new_dir_elem->ino = di_key.objectid;
5387 list_add_tail(&new_dir_elem->list, &dir_list);
5388 }
5389 break;
5390 }
5391 if (i == nritems) {
5392 ret = btrfs_next_leaf(log, path);
5393 if (ret < 0) {
5394 goto next_dir_inode;
5395 } else if (ret > 0) {
5396 ret = 0;
5397 goto next_dir_inode;
5398 }
5399 goto process_leaf;
5400 }
5401 if (min_key.offset < (u64)-1) {
5402 min_key.offset++;
5403 goto again;
5404 }
5405next_dir_inode:
5406 list_del(&dir_elem->list);
5407 kfree(dir_elem);
5408 }
5409
5410 btrfs_free_path(path);
5411 return ret;
5412}
5413
Filipe Manana18aa0922015-08-05 16:49:08 +01005414static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005415 struct btrfs_inode *inode,
Filipe Manana18aa0922015-08-05 16:49:08 +01005416 struct btrfs_log_ctx *ctx)
5417{
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005418 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Filipe Manana18aa0922015-08-05 16:49:08 +01005419 int ret;
5420 struct btrfs_path *path;
5421 struct btrfs_key key;
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005422 struct btrfs_root *root = inode->root;
5423 const u64 ino = btrfs_ino(inode);
Filipe Manana18aa0922015-08-05 16:49:08 +01005424
5425 path = btrfs_alloc_path();
5426 if (!path)
5427 return -ENOMEM;
5428 path->skip_locking = 1;
5429 path->search_commit_root = 1;
5430
5431 key.objectid = ino;
5432 key.type = BTRFS_INODE_REF_KEY;
5433 key.offset = 0;
5434 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5435 if (ret < 0)
5436 goto out;
5437
5438 while (true) {
5439 struct extent_buffer *leaf = path->nodes[0];
5440 int slot = path->slots[0];
5441 u32 cur_offset = 0;
5442 u32 item_size;
5443 unsigned long ptr;
5444
5445 if (slot >= btrfs_header_nritems(leaf)) {
5446 ret = btrfs_next_leaf(root, path);
5447 if (ret < 0)
5448 goto out;
5449 else if (ret > 0)
5450 break;
5451 continue;
5452 }
5453
5454 btrfs_item_key_to_cpu(leaf, &key, slot);
5455 /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */
5456 if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY)
5457 break;
5458
5459 item_size = btrfs_item_size_nr(leaf, slot);
5460 ptr = btrfs_item_ptr_offset(leaf, slot);
5461 while (cur_offset < item_size) {
5462 struct btrfs_key inode_key;
5463 struct inode *dir_inode;
5464
5465 inode_key.type = BTRFS_INODE_ITEM_KEY;
5466 inode_key.offset = 0;
5467
5468 if (key.type == BTRFS_INODE_EXTREF_KEY) {
5469 struct btrfs_inode_extref *extref;
5470
5471 extref = (struct btrfs_inode_extref *)
5472 (ptr + cur_offset);
5473 inode_key.objectid = btrfs_inode_extref_parent(
5474 leaf, extref);
5475 cur_offset += sizeof(*extref);
5476 cur_offset += btrfs_inode_extref_name_len(leaf,
5477 extref);
5478 } else {
5479 inode_key.objectid = key.offset;
5480 cur_offset = item_size;
5481 }
5482
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005483 dir_inode = btrfs_iget(fs_info->sb, &inode_key,
Filipe Manana18aa0922015-08-05 16:49:08 +01005484 root, NULL);
5485 /* If parent inode was deleted, skip it. */
5486 if (IS_ERR(dir_inode))
5487 continue;
5488
Filipe Manana657ed1a2016-04-06 17:11:56 +01005489 if (ctx)
5490 ctx->log_new_dentries = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005491 ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode),
Filipe Manana18aa0922015-08-05 16:49:08 +01005492 LOG_INODE_ALL, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005493 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005494 btrfs_must_commit_transaction(trans, BTRFS_I(dir_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005495 ret = 1;
Filipe Manana657ed1a2016-04-06 17:11:56 +01005496 if (!ret && ctx && ctx->log_new_dentries)
5497 ret = log_new_dir_dentries(trans, root,
David Sterbaf85b7372017-01-20 14:54:07 +01005498 BTRFS_I(dir_inode), ctx);
Filipe Manana18aa0922015-08-05 16:49:08 +01005499 iput(dir_inode);
5500 if (ret)
5501 goto out;
5502 }
5503 path->slots[0]++;
5504 }
5505 ret = 0;
5506out:
5507 btrfs_free_path(path);
5508 return ret;
5509}
5510
Chris Masone02119d2008-09-05 16:13:11 -04005511/*
5512 * helper function around btrfs_log_inode to make sure newly created
5513 * parent directories also end up in the log. A minimal inode and backref
5514 * only logging is done of any parent directories that are older than
5515 * the last committed transaction
5516 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005517static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005518 struct btrfs_root *root,
5519 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005520 struct dentry *parent,
5521 const loff_t start,
5522 const loff_t end,
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005523 int inode_only,
Miao Xie8b050d32014-02-20 18:08:58 +08005524 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005525{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005526 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04005527 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00005528 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04005529 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005530 u64 last_committed = fs_info->last_trans_committed;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005531 bool log_dentries = false;
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005532 struct btrfs_inode *orig_inode = inode;
Chris Mason12fcfd22009-03-24 10:24:20 -04005533
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005534 sb = inode->vfs_inode.i_sb;
Chris Mason12fcfd22009-03-24 10:24:20 -04005535
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005536 if (btrfs_test_opt(fs_info, NOTREELOG)) {
Sage Weil3a5e1402009-04-02 16:49:40 -04005537 ret = 1;
5538 goto end_no_trans;
5539 }
5540
Miao Xie995946d2014-04-02 19:51:06 +08005541 /*
5542 * The prev transaction commit doesn't complete, we need do
5543 * full commit by ourselves.
5544 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005545 if (fs_info->last_trans_log_full_commit >
5546 fs_info->last_trans_committed) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005547 ret = 1;
5548 goto end_no_trans;
5549 }
5550
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005551 if (root != inode->root || btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005552 ret = 1;
5553 goto end_no_trans;
5554 }
5555
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005556 ret = check_parent_dirs_for_sync(trans, inode, parent, sb,
5557 last_committed);
Chris Mason12fcfd22009-03-24 10:24:20 -04005558 if (ret)
5559 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04005560
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005561 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04005562 ret = BTRFS_NO_LOG_SYNC;
5563 goto end_no_trans;
5564 }
5565
Miao Xie8b050d32014-02-20 18:08:58 +08005566 ret = start_log_trans(trans, root, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005567 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +08005568 goto end_no_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005569
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005570 ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005571 if (ret)
5572 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005573
Chris Masonaf4176b2009-03-24 10:24:31 -04005574 /*
5575 * for regular files, if its inode is already on disk, we don't
5576 * have to worry about the parents at all. This is because
5577 * we can use the last_unlink_trans field to record renames
5578 * and other fun in this file.
5579 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005580 if (S_ISREG(inode->vfs_inode.i_mode) &&
5581 inode->generation <= last_committed &&
5582 inode->last_unlink_trans <= last_committed) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005583 ret = 0;
5584 goto end_trans;
5585 }
Chris Masonaf4176b2009-03-24 10:24:31 -04005586
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005587 if (S_ISDIR(inode->vfs_inode.i_mode) && ctx && ctx->log_new_dentries)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005588 log_dentries = true;
5589
Filipe Manana18aa0922015-08-05 16:49:08 +01005590 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005591 * On unlink we must make sure all our current and old parent directory
Filipe Manana18aa0922015-08-05 16:49:08 +01005592 * inodes are fully logged. This is to prevent leaving dangling
5593 * directory index entries in directories that were our parents but are
5594 * not anymore. Not doing this results in old parent directory being
5595 * impossible to delete after log replay (rmdir will always fail with
5596 * error -ENOTEMPTY).
5597 *
5598 * Example 1:
5599 *
5600 * mkdir testdir
5601 * touch testdir/foo
5602 * ln testdir/foo testdir/bar
5603 * sync
5604 * unlink testdir/bar
5605 * xfs_io -c fsync testdir/foo
5606 * <power failure>
5607 * mount fs, triggers log replay
5608 *
5609 * If we don't log the parent directory (testdir), after log replay the
5610 * directory still has an entry pointing to the file inode using the bar
5611 * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and
5612 * the file inode has a link count of 1.
5613 *
5614 * Example 2:
5615 *
5616 * mkdir testdir
5617 * touch foo
5618 * ln foo testdir/foo2
5619 * ln foo testdir/foo3
5620 * sync
5621 * unlink testdir/foo3
5622 * xfs_io -c fsync foo
5623 * <power failure>
5624 * mount fs, triggers log replay
5625 *
5626 * Similar as the first example, after log replay the parent directory
5627 * testdir still has an entry pointing to the inode file with name foo3
5628 * but the file inode does not have a matching BTRFS_INODE_REF_KEY item
5629 * and has a link count of 2.
5630 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005631 if (inode->last_unlink_trans > last_committed) {
Filipe Manana18aa0922015-08-05 16:49:08 +01005632 ret = btrfs_log_all_parents(trans, orig_inode, ctx);
5633 if (ret)
5634 goto end_trans;
5635 }
5636
Chris Masond3977122009-01-05 21:25:51 -05005637 while (1) {
Al Virofc640052016-04-10 01:33:30 -04005638 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Masone02119d2008-09-05 16:13:11 -04005639 break;
5640
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005641 inode = BTRFS_I(d_inode(parent));
5642 if (root != inode->root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005643 break;
5644
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005645 if (inode->generation > last_committed) {
5646 ret = btrfs_log_inode(trans, root, inode,
5647 LOG_INODE_EXISTS, 0, LLONG_MAX, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005648 if (ret)
5649 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005650 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005651 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04005652 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04005653
Josef Bacik6a912212010-11-20 09:48:00 +00005654 parent = dget_parent(parent);
5655 dput(old_parent);
5656 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04005657 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005658 if (log_dentries)
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005659 ret = log_new_dir_dentries(trans, root, orig_inode, ctx);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005660 else
5661 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005662end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00005663 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005664 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005665 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005666 ret = 1;
5667 }
Miao Xie8b050d32014-02-20 18:08:58 +08005668
5669 if (ret)
5670 btrfs_remove_log_ctx(root, ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04005671 btrfs_end_log_trans(root);
5672end_no_trans:
5673 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005674}
5675
5676/*
5677 * it is not safe to log dentry if the chunk root has added new
5678 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
5679 * If this returns 1, you must commit the transaction to safely get your
5680 * data on disk.
5681 */
5682int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08005683 struct btrfs_root *root, struct dentry *dentry,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005684 const loff_t start,
5685 const loff_t end,
Miao Xie8b050d32014-02-20 18:08:58 +08005686 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005687{
Josef Bacik6a912212010-11-20 09:48:00 +00005688 struct dentry *parent = dget_parent(dentry);
5689 int ret;
5690
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005691 ret = btrfs_log_inode_parent(trans, root, BTRFS_I(d_inode(dentry)),
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005692 parent, start, end, LOG_INODE_ALL, ctx);
Josef Bacik6a912212010-11-20 09:48:00 +00005693 dput(parent);
5694
5695 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005696}
5697
5698/*
5699 * should be called during mount to recover any replay any log trees
5700 * from the FS
5701 */
5702int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
5703{
5704 int ret;
5705 struct btrfs_path *path;
5706 struct btrfs_trans_handle *trans;
5707 struct btrfs_key key;
5708 struct btrfs_key found_key;
5709 struct btrfs_key tmp_key;
5710 struct btrfs_root *log;
5711 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
5712 struct walk_control wc = {
5713 .process_func = process_one_buffer,
5714 .stage = 0,
5715 };
5716
Chris Masone02119d2008-09-05 16:13:11 -04005717 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005718 if (!path)
5719 return -ENOMEM;
5720
Josef Bacikafcdd122016-09-02 15:40:02 -04005721 set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005722
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005723 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005724 if (IS_ERR(trans)) {
5725 ret = PTR_ERR(trans);
5726 goto error;
5727 }
Chris Masone02119d2008-09-05 16:13:11 -04005728
5729 wc.trans = trans;
5730 wc.pin = 1;
5731
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005732 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005733 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005734 btrfs_handle_fs_error(fs_info, ret,
5735 "Failed to pin buffers while recovering log root tree.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005736 goto error;
5737 }
Chris Masone02119d2008-09-05 16:13:11 -04005738
5739again:
5740 key.objectid = BTRFS_TREE_LOG_OBJECTID;
5741 key.offset = (u64)-1;
David Sterba962a2982014-06-04 18:41:45 +02005742 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04005743
Chris Masond3977122009-01-05 21:25:51 -05005744 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04005745 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005746
5747 if (ret < 0) {
Anand Jain34d97002016-03-16 16:43:06 +08005748 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005749 "Couldn't find tree log root.");
5750 goto error;
5751 }
Chris Masone02119d2008-09-05 16:13:11 -04005752 if (ret > 0) {
5753 if (path->slots[0] == 0)
5754 break;
5755 path->slots[0]--;
5756 }
5757 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
5758 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02005759 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005760 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
5761 break;
5762
Miao Xiecb517ea2013-05-15 07:48:19 +00005763 log = btrfs_read_fs_root(log_root_tree, &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005764 if (IS_ERR(log)) {
5765 ret = PTR_ERR(log);
Anand Jain34d97002016-03-16 16:43:06 +08005766 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005767 "Couldn't read tree log root.");
5768 goto error;
5769 }
Chris Masone02119d2008-09-05 16:13:11 -04005770
5771 tmp_key.objectid = found_key.offset;
5772 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
5773 tmp_key.offset = (u64)-1;
5774
5775 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005776 if (IS_ERR(wc.replay_dest)) {
5777 ret = PTR_ERR(wc.replay_dest);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005778 free_extent_buffer(log->node);
5779 free_extent_buffer(log->commit_root);
5780 kfree(log);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005781 btrfs_handle_fs_error(fs_info, ret,
5782 "Couldn't read target root for tree log recovery.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005783 goto error;
5784 }
Chris Masone02119d2008-09-05 16:13:11 -04005785
Yan Zheng07d400a2009-01-06 11:42:00 -05005786 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005787 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04005788 ret = walk_log_tree(trans, log, &wc);
Chris Masone02119d2008-09-05 16:13:11 -04005789
Josef Bacikb50c6e22013-04-25 15:55:30 -04005790 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
Chris Masone02119d2008-09-05 16:13:11 -04005791 ret = fixup_inode_link_counts(trans, wc.replay_dest,
5792 path);
Chris Masone02119d2008-09-05 16:13:11 -04005793 }
Chris Masone02119d2008-09-05 16:13:11 -04005794
Liu Bo900c9982018-01-25 11:02:56 -07005795 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
5796 struct btrfs_root *root = wc.replay_dest;
5797
5798 btrfs_release_path(path);
5799
5800 /*
5801 * We have just replayed everything, and the highest
5802 * objectid of fs roots probably has changed in case
5803 * some inode_item's got replayed.
5804 *
5805 * root->objectid_mutex is not acquired as log replay
5806 * could only happen during mount.
5807 */
5808 ret = btrfs_find_highest_objectid(root,
5809 &root->highest_objectid);
5810 }
5811
Chris Masone02119d2008-09-05 16:13:11 -04005812 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05005813 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04005814 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04005815 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04005816 kfree(log);
5817
Josef Bacikb50c6e22013-04-25 15:55:30 -04005818 if (ret)
5819 goto error;
5820
Chris Masone02119d2008-09-05 16:13:11 -04005821 if (found_key.offset == 0)
5822 break;
5823 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005824 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005825
5826 /* step one is to pin it all, step two is to replay just inodes */
5827 if (wc.pin) {
5828 wc.pin = 0;
5829 wc.process_func = replay_one_buffer;
5830 wc.stage = LOG_WALK_REPLAY_INODES;
5831 goto again;
5832 }
5833 /* step three is to replay everything */
5834 if (wc.stage < LOG_WALK_REPLAY_ALL) {
5835 wc.stage++;
5836 goto again;
5837 }
5838
5839 btrfs_free_path(path);
5840
Josef Bacikabefa552013-04-24 16:40:05 -04005841 /* step 4: commit the transaction, which also unpins the blocks */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005842 ret = btrfs_commit_transaction(trans);
Josef Bacikabefa552013-04-24 16:40:05 -04005843 if (ret)
5844 return ret;
5845
Chris Masone02119d2008-09-05 16:13:11 -04005846 free_extent_buffer(log_root_tree->node);
5847 log_root_tree->log_root = NULL;
Josef Bacikafcdd122016-09-02 15:40:02 -04005848 clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005849 kfree(log_root_tree);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005850
Josef Bacikabefa552013-04-24 16:40:05 -04005851 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005852error:
Josef Bacikb50c6e22013-04-25 15:55:30 -04005853 if (wc.trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005854 btrfs_end_transaction(wc.trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005855 btrfs_free_path(path);
5856 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005857}
Chris Mason12fcfd22009-03-24 10:24:20 -04005858
5859/*
5860 * there are some corner cases where we want to force a full
5861 * commit instead of allowing a directory to be logged.
5862 *
5863 * They revolve around files there were unlinked from the directory, and
5864 * this function updates the parent directory so that a full commit is
5865 * properly done if it is fsync'd later after the unlinks are done.
Filipe Manana2be63d52016-02-12 11:34:23 +00005866 *
5867 * Must be called before the unlink operations (updates to the subvolume tree,
5868 * inodes, etc) are done.
Chris Mason12fcfd22009-03-24 10:24:20 -04005869 */
5870void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005871 struct btrfs_inode *dir, struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005872 int for_rename)
5873{
5874 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005875 * when we're logging a file, if it hasn't been renamed
5876 * or unlinked, and its inode is fully committed on disk,
5877 * we don't have to worry about walking up the directory chain
5878 * to log its parents.
5879 *
5880 * So, we use the last_unlink_trans field to put this transid
5881 * into the file. When the file is logged we check it and
5882 * don't log the parents if the file is fully on disk.
5883 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005884 mutex_lock(&inode->log_mutex);
5885 inode->last_unlink_trans = trans->transid;
5886 mutex_unlock(&inode->log_mutex);
Chris Masonaf4176b2009-03-24 10:24:31 -04005887
5888 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005889 * if this directory was already logged any new
5890 * names for this file/dir will get recorded
5891 */
5892 smp_mb();
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005893 if (dir->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005894 return;
5895
5896 /*
5897 * if the inode we're about to unlink was logged,
5898 * the log will be properly updated for any new names
5899 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005900 if (inode->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005901 return;
5902
5903 /*
5904 * when renaming files across directories, if the directory
5905 * there we're unlinking from gets fsync'd later on, there's
5906 * no way to find the destination directory later and fsync it
5907 * properly. So, we have to be conservative and force commits
5908 * so the new name gets discovered.
5909 */
5910 if (for_rename)
5911 goto record;
5912
5913 /* we can safely do the unlink without any special recording */
5914 return;
5915
5916record:
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005917 mutex_lock(&dir->log_mutex);
5918 dir->last_unlink_trans = trans->transid;
5919 mutex_unlock(&dir->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04005920}
5921
5922/*
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005923 * Make sure that if someone attempts to fsync the parent directory of a deleted
5924 * snapshot, it ends up triggering a transaction commit. This is to guarantee
5925 * that after replaying the log tree of the parent directory's root we will not
5926 * see the snapshot anymore and at log replay time we will not see any log tree
5927 * corresponding to the deleted snapshot's root, which could lead to replaying
5928 * it after replaying the log tree of the parent directory (which would replay
5929 * the snapshot delete operation).
Filipe Manana2be63d52016-02-12 11:34:23 +00005930 *
5931 * Must be called before the actual snapshot destroy operation (updates to the
5932 * parent root and tree of tree roots trees, etc) are done.
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005933 */
5934void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
Nikolay Borisov43663552017-01-18 00:31:29 +02005935 struct btrfs_inode *dir)
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005936{
Nikolay Borisov43663552017-01-18 00:31:29 +02005937 mutex_lock(&dir->log_mutex);
5938 dir->last_unlink_trans = trans->transid;
5939 mutex_unlock(&dir->log_mutex);
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005940}
5941
5942/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005943 * Call this after adding a new name for a file and it will properly
5944 * update the log to reflect the new name.
5945 *
5946 * It will return zero if all goes well, and it will return 1 if a
5947 * full transaction commit is required.
5948 */
5949int btrfs_log_new_name(struct btrfs_trans_handle *trans,
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005950 struct btrfs_inode *inode, struct btrfs_inode *old_dir,
Chris Mason12fcfd22009-03-24 10:24:20 -04005951 struct dentry *parent)
5952{
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005953 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
David Sterbaf85b7372017-01-20 14:54:07 +01005954 struct btrfs_root *root = inode->root;
Chris Mason12fcfd22009-03-24 10:24:20 -04005955
5956 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005957 * this will force the logging code to walk the dentry chain
5958 * up for the file
5959 */
Filipe Manana9a6509c2018-02-28 15:55:40 +00005960 if (!S_ISDIR(inode->vfs_inode.i_mode))
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005961 inode->last_unlink_trans = trans->transid;
Chris Masonaf4176b2009-03-24 10:24:31 -04005962
5963 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005964 * if this inode hasn't been logged and directory we're renaming it
5965 * from hasn't been logged, we don't need to log it
5966 */
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005967 if (inode->logged_trans <= fs_info->last_trans_committed &&
5968 (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed))
Chris Mason12fcfd22009-03-24 10:24:20 -04005969 return 0;
5970
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005971 return btrfs_log_inode_parent(trans, root, inode, parent, 0,
Edmund Nadolski41a1ead2017-11-20 13:24:47 -07005972 LLONG_MAX, LOG_INODE_EXISTS, NULL);
Chris Mason12fcfd22009-03-24 10:24:20 -04005973}
5974