blob: ccfe9fe7754a8d4d80fd3e5b1f0a1d2f2118e4e6 [file] [log] [blame]
Chris Masone02119d2008-09-05 16:13:11 -04001/*
2 * Copyright (C) 2008 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Miao Xiec6adc9c2013-05-28 10:05:39 +000021#include <linux/blkdev.h>
Josef Bacik5dc562c2012-08-17 13:14:17 -040022#include <linux/list_sort.h>
Miao Xie995946d2014-04-02 19:51:06 +080023#include "tree-log.h"
Chris Masone02119d2008-09-05 16:13:11 -040024#include "disk-io.h"
25#include "locking.h"
26#include "print-tree.h"
Mark Fashehf1863732012-08-08 11:32:27 -070027#include "backref.h"
Mark Fashehf1863732012-08-08 11:32:27 -070028#include "hash.h"
Anand Jainebb87652016-03-10 17:26:59 +080029#include "compression.h"
Qu Wenruodf2c95f2016-08-15 10:36:52 +080030#include "qgroup.h"
Chris Masone02119d2008-09-05 16:13:11 -040031
32/* magic values for the inode_only field in btrfs_log_inode:
33 *
34 * LOG_INODE_ALL means to log everything
35 * LOG_INODE_EXISTS means to log just enough to recreate the inode
36 * during log replay
37 */
38#define LOG_INODE_ALL 0
39#define LOG_INODE_EXISTS 1
Liu Bo781feef2016-11-30 16:20:25 -080040#define LOG_OTHER_INODE 2
Chris Masone02119d2008-09-05 16:13:11 -040041
42/*
Chris Mason12fcfd22009-03-24 10:24:20 -040043 * directory trouble cases
44 *
45 * 1) on rename or unlink, if the inode being unlinked isn't in the fsync
46 * log, we must force a full commit before doing an fsync of the directory
47 * where the unlink was done.
48 * ---> record transid of last unlink/rename per directory
49 *
50 * mkdir foo/some_dir
51 * normal commit
52 * rename foo/some_dir foo2/some_dir
53 * mkdir foo/some_dir
54 * fsync foo/some_dir/some_file
55 *
56 * The fsync above will unlink the original some_dir without recording
57 * it in its new location (foo2). After a crash, some_dir will be gone
58 * unless the fsync of some_file forces a full commit
59 *
60 * 2) we must log any new names for any file or dir that is in the fsync
61 * log. ---> check inode while renaming/linking.
62 *
63 * 2a) we must log any new names for any file or dir during rename
64 * when the directory they are being removed from was logged.
65 * ---> check inode and old parent dir during rename
66 *
67 * 2a is actually the more important variant. With the extra logging
68 * a crash might unlink the old name without recreating the new one
69 *
70 * 3) after a crash, we must go through any directories with a link count
71 * of zero and redo the rm -rf
72 *
73 * mkdir f1/foo
74 * normal commit
75 * rm -rf f1/foo
76 * fsync(f1)
77 *
78 * The directory f1 was fully removed from the FS, but fsync was never
79 * called on f1, only its parent dir. After a crash the rm -rf must
80 * be replayed. This must be able to recurse down the entire
81 * directory tree. The inode link count fixup code takes care of the
82 * ugly details.
83 */
84
85/*
Chris Masone02119d2008-09-05 16:13:11 -040086 * stages for the tree walking. The first
87 * stage (0) is to only pin down the blocks we find
88 * the second stage (1) is to make sure that all the inodes
89 * we find in the log are created in the subvolume.
90 *
91 * The last stage is to deal with directories and links and extents
92 * and all the other fun semantics
93 */
94#define LOG_WALK_PIN_ONLY 0
95#define LOG_WALK_REPLAY_INODES 1
Josef Bacikdd8e7212013-09-11 11:57:23 -040096#define LOG_WALK_REPLAY_DIR_INDEX 2
97#define LOG_WALK_REPLAY_ALL 3
Chris Masone02119d2008-09-05 16:13:11 -040098
Chris Mason12fcfd22009-03-24 10:24:20 -040099static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +0200100 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +0100101 int inode_only,
102 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +0100103 const loff_t end,
104 struct btrfs_log_ctx *ctx);
Yan Zhengec051c02009-01-05 15:43:42 -0500105static int link_to_fixup_dir(struct btrfs_trans_handle *trans,
106 struct btrfs_root *root,
107 struct btrfs_path *path, u64 objectid);
Chris Mason12fcfd22009-03-24 10:24:20 -0400108static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
109 struct btrfs_root *root,
110 struct btrfs_root *log,
111 struct btrfs_path *path,
112 u64 dirid, int del_all);
Chris Masone02119d2008-09-05 16:13:11 -0400113
114/*
115 * tree logging is a special write ahead log used to make sure that
116 * fsyncs and O_SYNCs can happen without doing full tree commits.
117 *
118 * Full tree commits are expensive because they require commonly
119 * modified blocks to be recowed, creating many dirty pages in the
120 * extent tree an 4x-6x higher write load than ext3.
121 *
122 * Instead of doing a tree commit on every fsync, we use the
123 * key ranges and transaction ids to find items for a given file or directory
124 * that have changed in this transaction. Those items are copied into
125 * a special tree (one per subvolume root), that tree is written to disk
126 * and then the fsync is considered complete.
127 *
128 * After a crash, items are copied out of the log-tree back into the
129 * subvolume tree. Any file data extents found are recorded in the extent
130 * allocation tree, and the log-tree freed.
131 *
132 * The log tree is read three times, once to pin down all the extents it is
133 * using in ram and once, once to create all the inodes logged in the tree
134 * and once to do all the other items.
135 */
136
137/*
Chris Masone02119d2008-09-05 16:13:11 -0400138 * start a sub transaction and setup the log tree
139 * this increments the log tree writer count to make the people
140 * syncing the tree wait for us to finish
141 */
142static int start_log_trans(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +0800143 struct btrfs_root *root,
144 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -0400145{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400146 struct btrfs_fs_info *fs_info = root->fs_info;
Zhaolei34eb2a52015-08-17 18:44:45 +0800147 int ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500148
149 mutex_lock(&root->log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800150
Yan Zheng7237f182009-01-21 12:54:03 -0500151 if (root->log_root) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400152 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xie50471a32014-02-20 18:08:57 +0800153 ret = -EAGAIN;
154 goto out;
155 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800156
Josef Bacikff782e02009-10-08 15:30:04 -0400157 if (!root->log_start_pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800158 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Zhaolei34eb2a52015-08-17 18:44:45 +0800159 root->log_start_pid = current->pid;
Josef Bacikff782e02009-10-08 15:30:04 -0400160 } else if (root->log_start_pid != current->pid) {
Miao Xie27cdeb72014-04-02 19:51:05 +0800161 set_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
Josef Bacikff782e02009-10-08 15:30:04 -0400162 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800163 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400164 mutex_lock(&fs_info->tree_log_mutex);
165 if (!fs_info->log_root_tree)
166 ret = btrfs_init_log_root_tree(trans, fs_info);
167 mutex_unlock(&fs_info->tree_log_mutex);
Zhaolei34eb2a52015-08-17 18:44:45 +0800168 if (ret)
169 goto out;
Josef Bacikff782e02009-10-08 15:30:04 -0400170
Chris Masone02119d2008-09-05 16:13:11 -0400171 ret = btrfs_add_log_tree(trans, root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400172 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +0800173 goto out;
Zhaolei34eb2a52015-08-17 18:44:45 +0800174
175 clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
176 root->log_start_pid = current->pid;
Chris Masone02119d2008-09-05 16:13:11 -0400177 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800178
Miao Xie2ecb7922012-09-06 04:04:27 -0600179 atomic_inc(&root->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -0500180 atomic_inc(&root->log_writers);
Miao Xie8b050d32014-02-20 18:08:58 +0800181 if (ctx) {
Zhaolei34eb2a52015-08-17 18:44:45 +0800182 int index = root->log_transid % 2;
Miao Xie8b050d32014-02-20 18:08:58 +0800183 list_add_tail(&ctx->list, &root->log_ctxs[index]);
Miao Xied1433de2014-02-20 18:08:59 +0800184 ctx->log_transid = root->log_transid;
Miao Xie8b050d32014-02-20 18:08:58 +0800185 }
Zhaolei34eb2a52015-08-17 18:44:45 +0800186
Miao Xiee87ac132014-02-20 18:08:53 +0800187out:
Yan Zheng7237f182009-01-21 12:54:03 -0500188 mutex_unlock(&root->log_mutex);
Miao Xiee87ac132014-02-20 18:08:53 +0800189 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400190}
191
192/*
193 * returns 0 if there was a log transaction running and we were able
194 * to join, or returns -ENOENT if there were not transactions
195 * in progress
196 */
197static int join_running_log_trans(struct btrfs_root *root)
198{
199 int ret = -ENOENT;
200
201 smp_mb();
202 if (!root->log_root)
203 return -ENOENT;
204
Yan Zheng7237f182009-01-21 12:54:03 -0500205 mutex_lock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400206 if (root->log_root) {
207 ret = 0;
Yan Zheng7237f182009-01-21 12:54:03 -0500208 atomic_inc(&root->log_writers);
Chris Masone02119d2008-09-05 16:13:11 -0400209 }
Yan Zheng7237f182009-01-21 12:54:03 -0500210 mutex_unlock(&root->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -0400211 return ret;
212}
213
214/*
Chris Mason12fcfd22009-03-24 10:24:20 -0400215 * This either makes the current running log transaction wait
216 * until you call btrfs_end_log_trans() or it makes any future
217 * log transactions wait until you call btrfs_end_log_trans()
218 */
219int btrfs_pin_log_trans(struct btrfs_root *root)
220{
221 int ret = -ENOENT;
222
223 mutex_lock(&root->log_mutex);
224 atomic_inc(&root->log_writers);
225 mutex_unlock(&root->log_mutex);
226 return ret;
227}
228
229/*
Chris Masone02119d2008-09-05 16:13:11 -0400230 * indicate we're done making changes to the log tree
231 * and wake up anyone waiting to do a sync
232 */
Jeff Mahoney143bede2012-03-01 14:56:26 +0100233void btrfs_end_log_trans(struct btrfs_root *root)
Chris Masone02119d2008-09-05 16:13:11 -0400234{
Yan Zheng7237f182009-01-21 12:54:03 -0500235 if (atomic_dec_and_test(&root->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +0100236 /*
237 * Implicit memory barrier after atomic_dec_and_test
238 */
Yan Zheng7237f182009-01-21 12:54:03 -0500239 if (waitqueue_active(&root->log_writer_wait))
240 wake_up(&root->log_writer_wait);
241 }
Chris Masone02119d2008-09-05 16:13:11 -0400242}
243
244
245/*
246 * the walk control struct is used to pass state down the chain when
247 * processing the log tree. The stage field tells us which part
248 * of the log tree processing we are currently doing. The others
249 * are state fields used for that specific part
250 */
251struct walk_control {
252 /* should we free the extent on disk when done? This is used
253 * at transaction commit time while freeing a log tree
254 */
255 int free;
256
257 /* should we write out the extent buffer? This is used
258 * while flushing the log tree to disk during a sync
259 */
260 int write;
261
262 /* should we wait for the extent buffer io to finish? Also used
263 * while flushing the log tree to disk for a sync
264 */
265 int wait;
266
267 /* pin only walk, we record which extents on disk belong to the
268 * log trees
269 */
270 int pin;
271
272 /* what stage of the replay code we're currently in */
273 int stage;
274
275 /* the root we are currently replaying */
276 struct btrfs_root *replay_dest;
277
278 /* the trans handle for the current replay */
279 struct btrfs_trans_handle *trans;
280
281 /* the function that gets used to process blocks we find in the
282 * tree. Note the extent_buffer might not be up to date when it is
283 * passed in, and it must be checked or read if you need the data
284 * inside it
285 */
286 int (*process_func)(struct btrfs_root *log, struct extent_buffer *eb,
287 struct walk_control *wc, u64 gen);
288};
289
290/*
291 * process_func used to pin down extents, write them or wait on them
292 */
293static int process_one_buffer(struct btrfs_root *log,
294 struct extent_buffer *eb,
295 struct walk_control *wc, u64 gen)
296{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400297 struct btrfs_fs_info *fs_info = log->fs_info;
Josef Bacikb50c6e22013-04-25 15:55:30 -0400298 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400299
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400300 /*
301 * If this fs is mixed then we need to be able to process the leaves to
302 * pin down any logged extents, so we have to read the block.
303 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400304 if (btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400305 ret = btrfs_read_buffer(eb, gen);
306 if (ret)
307 return ret;
308 }
309
Josef Bacikb50c6e22013-04-25 15:55:30 -0400310 if (wc->pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400311 ret = btrfs_pin_extent_for_log_replay(fs_info, eb->start,
312 eb->len);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400313
314 if (!ret && btrfs_buffer_uptodate(eb, gen, 0)) {
Josef Bacik8c2a1a32013-06-06 13:19:32 -0400315 if (wc->pin && btrfs_header_level(eb) == 0)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400316 ret = btrfs_exclude_logged_extents(fs_info, eb);
Chris Masone02119d2008-09-05 16:13:11 -0400317 if (wc->write)
318 btrfs_write_tree_block(eb);
319 if (wc->wait)
320 btrfs_wait_tree_block_writeback(eb);
321 }
Josef Bacikb50c6e22013-04-25 15:55:30 -0400322 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400323}
324
325/*
326 * Item overwrite used by replay and tree logging. eb, slot and key all refer
327 * to the src data we are copying out.
328 *
329 * root is the tree we are copying into, and path is a scratch
330 * path for use in this function (it should be released on entry and
331 * will be released on exit).
332 *
333 * If the key is already in the destination tree the existing item is
334 * overwritten. If the existing item isn't big enough, it is extended.
335 * If it is too large, it is truncated.
336 *
337 * If the key isn't in the destination yet, a new item is inserted.
338 */
339static noinline int overwrite_item(struct btrfs_trans_handle *trans,
340 struct btrfs_root *root,
341 struct btrfs_path *path,
342 struct extent_buffer *eb, int slot,
343 struct btrfs_key *key)
344{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400345 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400346 int ret;
347 u32 item_size;
348 u64 saved_i_size = 0;
349 int save_old_i_size = 0;
350 unsigned long src_ptr;
351 unsigned long dst_ptr;
352 int overwrite_root = 0;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000353 bool inode_item = key->type == BTRFS_INODE_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -0400354
355 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID)
356 overwrite_root = 1;
357
358 item_size = btrfs_item_size_nr(eb, slot);
359 src_ptr = btrfs_item_ptr_offset(eb, slot);
360
361 /* look for the key in the destination tree */
362 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000363 if (ret < 0)
364 return ret;
365
Chris Masone02119d2008-09-05 16:13:11 -0400366 if (ret == 0) {
367 char *src_copy;
368 char *dst_copy;
369 u32 dst_size = btrfs_item_size_nr(path->nodes[0],
370 path->slots[0]);
371 if (dst_size != item_size)
372 goto insert;
373
374 if (item_size == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200375 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400376 return 0;
377 }
378 dst_copy = kmalloc(item_size, GFP_NOFS);
379 src_copy = kmalloc(item_size, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000380 if (!dst_copy || !src_copy) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200381 btrfs_release_path(path);
liubo2a29edc2011-01-26 06:22:08 +0000382 kfree(dst_copy);
383 kfree(src_copy);
384 return -ENOMEM;
385 }
Chris Masone02119d2008-09-05 16:13:11 -0400386
387 read_extent_buffer(eb, src_copy, src_ptr, item_size);
388
389 dst_ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
390 read_extent_buffer(path->nodes[0], dst_copy, dst_ptr,
391 item_size);
392 ret = memcmp(dst_copy, src_copy, item_size);
393
394 kfree(dst_copy);
395 kfree(src_copy);
396 /*
397 * they have the same contents, just return, this saves
398 * us from cowing blocks in the destination tree and doing
399 * extra writes that may not have been done by a previous
400 * sync
401 */
402 if (ret == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200403 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400404 return 0;
405 }
406
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000407 /*
408 * We need to load the old nbytes into the inode so when we
409 * replay the extents we've logged we get the right nbytes.
410 */
411 if (inode_item) {
412 struct btrfs_inode_item *item;
413 u64 nbytes;
Josef Bacikd5554382013-09-11 14:17:00 -0400414 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000415
416 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
417 struct btrfs_inode_item);
418 nbytes = btrfs_inode_nbytes(path->nodes[0], item);
419 item = btrfs_item_ptr(eb, slot,
420 struct btrfs_inode_item);
421 btrfs_set_inode_nbytes(eb, item, nbytes);
Josef Bacikd5554382013-09-11 14:17:00 -0400422
423 /*
424 * If this is a directory we need to reset the i_size to
425 * 0 so that we can set it up properly when replaying
426 * the rest of the items in this log.
427 */
428 mode = btrfs_inode_mode(eb, item);
429 if (S_ISDIR(mode))
430 btrfs_set_inode_size(eb, item, 0);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000431 }
432 } else if (inode_item) {
433 struct btrfs_inode_item *item;
Josef Bacikd5554382013-09-11 14:17:00 -0400434 u32 mode;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000435
436 /*
437 * New inode, set nbytes to 0 so that the nbytes comes out
438 * properly when we replay the extents.
439 */
440 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
441 btrfs_set_inode_nbytes(eb, item, 0);
Josef Bacikd5554382013-09-11 14:17:00 -0400442
443 /*
444 * If this is a directory we need to reset the i_size to 0 so
445 * that we can set it up properly when replaying the rest of
446 * the items in this log.
447 */
448 mode = btrfs_inode_mode(eb, item);
449 if (S_ISDIR(mode))
450 btrfs_set_inode_size(eb, item, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400451 }
452insert:
David Sterbab3b4aa72011-04-21 01:20:15 +0200453 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400454 /* try to insert the key into the destination tree */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000455 path->skip_release_on_error = 1;
Chris Masone02119d2008-09-05 16:13:11 -0400456 ret = btrfs_insert_empty_item(trans, root, path,
457 key, item_size);
Filipe Mananadf8d1162015-01-14 01:52:25 +0000458 path->skip_release_on_error = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400459
460 /* make sure any existing item is the correct size */
Filipe Mananadf8d1162015-01-14 01:52:25 +0000461 if (ret == -EEXIST || ret == -EOVERFLOW) {
Chris Masone02119d2008-09-05 16:13:11 -0400462 u32 found_size;
463 found_size = btrfs_item_size_nr(path->nodes[0],
464 path->slots[0]);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100465 if (found_size > item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400466 btrfs_truncate_item(fs_info, path, item_size, 1);
Jeff Mahoney143bede2012-03-01 14:56:26 +0100467 else if (found_size < item_size)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400468 btrfs_extend_item(fs_info, path,
Jeff Mahoney143bede2012-03-01 14:56:26 +0100469 item_size - found_size);
Chris Masone02119d2008-09-05 16:13:11 -0400470 } else if (ret) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -0400471 return ret;
Chris Masone02119d2008-09-05 16:13:11 -0400472 }
473 dst_ptr = btrfs_item_ptr_offset(path->nodes[0],
474 path->slots[0]);
475
476 /* don't overwrite an existing inode if the generation number
477 * was logged as zero. This is done when the tree logging code
478 * is just logging an inode to make sure it exists after recovery.
479 *
480 * Also, don't overwrite i_size on directories during replay.
481 * log replay inserts and removes directory items based on the
482 * state of the tree found in the subvolume, and i_size is modified
483 * as it goes
484 */
485 if (key->type == BTRFS_INODE_ITEM_KEY && ret == -EEXIST) {
486 struct btrfs_inode_item *src_item;
487 struct btrfs_inode_item *dst_item;
488
489 src_item = (struct btrfs_inode_item *)src_ptr;
490 dst_item = (struct btrfs_inode_item *)dst_ptr;
491
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000492 if (btrfs_inode_generation(eb, src_item) == 0) {
493 struct extent_buffer *dst_eb = path->nodes[0];
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000494 const u64 ino_size = btrfs_inode_size(eb, src_item);
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000495
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000496 /*
497 * For regular files an ino_size == 0 is used only when
498 * logging that an inode exists, as part of a directory
499 * fsync, and the inode wasn't fsynced before. In this
500 * case don't set the size of the inode in the fs/subvol
501 * tree, otherwise we would be throwing valid data away.
502 */
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000503 if (S_ISREG(btrfs_inode_mode(eb, src_item)) &&
Filipe Manana2f2ff0e2015-03-20 17:19:46 +0000504 S_ISREG(btrfs_inode_mode(dst_eb, dst_item)) &&
505 ino_size != 0) {
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000506 struct btrfs_map_token token;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000507
508 btrfs_init_map_token(&token);
509 btrfs_set_token_inode_size(dst_eb, dst_item,
510 ino_size, &token);
511 }
Chris Masone02119d2008-09-05 16:13:11 -0400512 goto no_copy;
Filipe Manana1a4bcf42015-02-13 12:30:56 +0000513 }
Chris Masone02119d2008-09-05 16:13:11 -0400514
515 if (overwrite_root &&
516 S_ISDIR(btrfs_inode_mode(eb, src_item)) &&
517 S_ISDIR(btrfs_inode_mode(path->nodes[0], dst_item))) {
518 save_old_i_size = 1;
519 saved_i_size = btrfs_inode_size(path->nodes[0],
520 dst_item);
521 }
522 }
523
524 copy_extent_buffer(path->nodes[0], eb, dst_ptr,
525 src_ptr, item_size);
526
527 if (save_old_i_size) {
528 struct btrfs_inode_item *dst_item;
529 dst_item = (struct btrfs_inode_item *)dst_ptr;
530 btrfs_set_inode_size(path->nodes[0], dst_item, saved_i_size);
531 }
532
533 /* make sure the generation is filled in */
534 if (key->type == BTRFS_INODE_ITEM_KEY) {
535 struct btrfs_inode_item *dst_item;
536 dst_item = (struct btrfs_inode_item *)dst_ptr;
537 if (btrfs_inode_generation(path->nodes[0], dst_item) == 0) {
538 btrfs_set_inode_generation(path->nodes[0], dst_item,
539 trans->transid);
540 }
541 }
542no_copy:
543 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200544 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400545 return 0;
546}
547
548/*
549 * simple helper to read an inode off the disk from a given root
550 * This can only be called for subvolume roots and not for the log
551 */
552static noinline struct inode *read_one_inode(struct btrfs_root *root,
553 u64 objectid)
554{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400555 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -0400556 struct inode *inode;
Chris Masone02119d2008-09-05 16:13:11 -0400557
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400558 key.objectid = objectid;
559 key.type = BTRFS_INODE_ITEM_KEY;
560 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +0000561 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400562 if (IS_ERR(inode)) {
563 inode = NULL;
564 } else if (is_bad_inode(inode)) {
Chris Masone02119d2008-09-05 16:13:11 -0400565 iput(inode);
566 inode = NULL;
567 }
568 return inode;
569}
570
571/* replays a single extent in 'eb' at 'slot' with 'key' into the
572 * subvolume 'root'. path is released on entry and should be released
573 * on exit.
574 *
575 * extents in the log tree have not been allocated out of the extent
576 * tree yet. So, this completes the allocation, taking a reference
577 * as required if the extent already exists or creating a new extent
578 * if it isn't in the extent allocation tree yet.
579 *
580 * The extent is inserted into the file, dropping any existing extents
581 * from the file that overlap the new one.
582 */
583static noinline int replay_one_extent(struct btrfs_trans_handle *trans,
584 struct btrfs_root *root,
585 struct btrfs_path *path,
586 struct extent_buffer *eb, int slot,
587 struct btrfs_key *key)
588{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400589 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400590 int found_type;
Chris Masone02119d2008-09-05 16:13:11 -0400591 u64 extent_end;
Chris Masone02119d2008-09-05 16:13:11 -0400592 u64 start = key->offset;
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000593 u64 nbytes = 0;
Chris Masone02119d2008-09-05 16:13:11 -0400594 struct btrfs_file_extent_item *item;
595 struct inode *inode = NULL;
596 unsigned long size;
597 int ret = 0;
598
599 item = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
600 found_type = btrfs_file_extent_type(eb, item);
601
Yan Zhengd899e052008-10-30 14:25:28 -0400602 if (found_type == BTRFS_FILE_EXTENT_REG ||
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000603 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
604 nbytes = btrfs_file_extent_num_bytes(eb, item);
605 extent_end = start + nbytes;
606
607 /*
608 * We don't add to the inodes nbytes if we are prealloc or a
609 * hole.
610 */
611 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
612 nbytes = 0;
613 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -0800614 size = btrfs_file_extent_inline_len(eb, slot, item);
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000615 nbytes = btrfs_file_extent_ram_bytes(eb, item);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400616 extent_end = ALIGN(start + size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400617 fs_info->sectorsize);
Chris Masone02119d2008-09-05 16:13:11 -0400618 } else {
619 ret = 0;
620 goto out;
621 }
622
623 inode = read_one_inode(root, key->objectid);
624 if (!inode) {
625 ret = -EIO;
626 goto out;
627 }
628
629 /*
630 * first check to see if we already have this extent in the
631 * file. This must be done before the btrfs_drop_extents run
632 * so we don't try to drop this extent.
633 */
David Sterbaf85b7372017-01-20 14:54:07 +0100634 ret = btrfs_lookup_file_extent(trans, root, path,
635 btrfs_ino(BTRFS_I(inode)), start, 0);
Chris Masone02119d2008-09-05 16:13:11 -0400636
Yan Zhengd899e052008-10-30 14:25:28 -0400637 if (ret == 0 &&
638 (found_type == BTRFS_FILE_EXTENT_REG ||
639 found_type == BTRFS_FILE_EXTENT_PREALLOC)) {
Chris Masone02119d2008-09-05 16:13:11 -0400640 struct btrfs_file_extent_item cmp1;
641 struct btrfs_file_extent_item cmp2;
642 struct btrfs_file_extent_item *existing;
643 struct extent_buffer *leaf;
644
645 leaf = path->nodes[0];
646 existing = btrfs_item_ptr(leaf, path->slots[0],
647 struct btrfs_file_extent_item);
648
649 read_extent_buffer(eb, &cmp1, (unsigned long)item,
650 sizeof(cmp1));
651 read_extent_buffer(leaf, &cmp2, (unsigned long)existing,
652 sizeof(cmp2));
653
654 /*
655 * we already have a pointer to this exact extent,
656 * we don't have to do anything
657 */
658 if (memcmp(&cmp1, &cmp2, sizeof(cmp1)) == 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200659 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400660 goto out;
661 }
662 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200663 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400664
665 /* drop any overlapping extents */
Josef Bacik26714852012-08-29 12:24:27 -0400666 ret = btrfs_drop_extents(trans, root, inode, start, extent_end, 1);
Josef Bacik36508602013-04-25 16:23:32 -0400667 if (ret)
668 goto out;
Chris Masone02119d2008-09-05 16:13:11 -0400669
Yan Zheng07d400a2009-01-06 11:42:00 -0500670 if (found_type == BTRFS_FILE_EXTENT_REG ||
671 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400672 u64 offset;
Yan Zheng07d400a2009-01-06 11:42:00 -0500673 unsigned long dest_offset;
674 struct btrfs_key ins;
Chris Masone02119d2008-09-05 16:13:11 -0400675
Filipe Manana3168021c2017-02-01 14:58:02 +0000676 if (btrfs_file_extent_disk_bytenr(eb, item) == 0 &&
677 btrfs_fs_incompat(fs_info, NO_HOLES))
678 goto update_inode;
679
Yan Zheng07d400a2009-01-06 11:42:00 -0500680 ret = btrfs_insert_empty_item(trans, root, path, key,
681 sizeof(*item));
Josef Bacik36508602013-04-25 16:23:32 -0400682 if (ret)
683 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500684 dest_offset = btrfs_item_ptr_offset(path->nodes[0],
685 path->slots[0]);
686 copy_extent_buffer(path->nodes[0], eb, dest_offset,
687 (unsigned long)item, sizeof(*item));
688
689 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item);
690 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item);
691 ins.type = BTRFS_EXTENT_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400692 offset = key->offset - btrfs_file_extent_offset(eb, item);
Yan Zheng07d400a2009-01-06 11:42:00 -0500693
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800694 /*
695 * Manually record dirty extent, as here we did a shallow
696 * file extent item copy and skip normal backref update,
697 * but modifying extent tree all by ourselves.
698 * So need to manually record dirty extent for qgroup,
699 * as the owner of the file extent changed from log tree
700 * (doesn't affect qgroup) to fs/file tree(affects qgroup)
701 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400702 ret = btrfs_qgroup_trace_extent(trans, fs_info,
Qu Wenruodf2c95f2016-08-15 10:36:52 +0800703 btrfs_file_extent_disk_bytenr(eb, item),
704 btrfs_file_extent_disk_num_bytes(eb, item),
705 GFP_NOFS);
706 if (ret < 0)
707 goto out;
708
Yan Zheng07d400a2009-01-06 11:42:00 -0500709 if (ins.objectid > 0) {
710 u64 csum_start;
711 u64 csum_end;
712 LIST_HEAD(ordered_sums);
713 /*
714 * is this extent already allocated in the extent
715 * allocation tree? If so, just add a reference
716 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400717 ret = btrfs_lookup_data_extent(fs_info, ins.objectid,
Yan Zheng07d400a2009-01-06 11:42:00 -0500718 ins.offset);
719 if (ret == 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400720 ret = btrfs_inc_extent_ref(trans, fs_info,
Yan Zheng07d400a2009-01-06 11:42:00 -0500721 ins.objectid, ins.offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400722 0, root->root_key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +0100723 key->objectid, offset);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400724 if (ret)
725 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500726 } else {
727 /*
728 * insert the extent pointer in the extent
729 * allocation tree
730 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400731 ret = btrfs_alloc_logged_file_extent(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400732 fs_info,
733 root->root_key.objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400734 key->objectid, offset, &ins);
Josef Bacikb50c6e22013-04-25 15:55:30 -0400735 if (ret)
736 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500737 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200738 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500739
740 if (btrfs_file_extent_compression(eb, item)) {
741 csum_start = ins.objectid;
742 csum_end = csum_start + ins.offset;
743 } else {
744 csum_start = ins.objectid +
745 btrfs_file_extent_offset(eb, item);
746 csum_end = csum_start +
747 btrfs_file_extent_num_bytes(eb, item);
748 }
749
750 ret = btrfs_lookup_csums_range(root->log_root,
751 csum_start, csum_end - 1,
Arne Jansena2de7332011-03-08 14:14:00 +0100752 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -0400753 if (ret)
754 goto out;
Filipe Mananab84b8392015-08-19 11:09:40 +0100755 /*
756 * Now delete all existing cums in the csum root that
757 * cover our range. We do this because we can have an
758 * extent that is completely referenced by one file
759 * extent item and partially referenced by another
760 * file extent item (like after using the clone or
761 * extent_same ioctls). In this case if we end up doing
762 * the replay of the one that partially references the
763 * extent first, and we do not do the csum deletion
764 * below, we can get 2 csum items in the csum tree that
765 * overlap each other. For example, imagine our log has
766 * the two following file extent items:
767 *
768 * key (257 EXTENT_DATA 409600)
769 * extent data disk byte 12845056 nr 102400
770 * extent data offset 20480 nr 20480 ram 102400
771 *
772 * key (257 EXTENT_DATA 819200)
773 * extent data disk byte 12845056 nr 102400
774 * extent data offset 0 nr 102400 ram 102400
775 *
776 * Where the second one fully references the 100K extent
777 * that starts at disk byte 12845056, and the log tree
778 * has a single csum item that covers the entire range
779 * of the extent:
780 *
781 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
782 *
783 * After the first file extent item is replayed, the
784 * csum tree gets the following csum item:
785 *
786 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
787 *
788 * Which covers the 20K sub-range starting at offset 20K
789 * of our extent. Now when we replay the second file
790 * extent item, if we do not delete existing csum items
791 * that cover any of its blocks, we end up getting two
792 * csum items in our csum tree that overlap each other:
793 *
794 * key (EXTENT_CSUM EXTENT_CSUM 12845056) itemsize 100
795 * key (EXTENT_CSUM EXTENT_CSUM 12865536) itemsize 20
796 *
797 * Which is a problem, because after this anyone trying
798 * to lookup up for the checksum of any block of our
799 * extent starting at an offset of 40K or higher, will
800 * end up looking at the second csum item only, which
801 * does not contain the checksum for any block starting
802 * at offset 40K or higher of our extent.
803 */
Yan Zheng07d400a2009-01-06 11:42:00 -0500804 while (!list_empty(&ordered_sums)) {
805 struct btrfs_ordered_sum *sums;
806 sums = list_entry(ordered_sums.next,
807 struct btrfs_ordered_sum,
808 list);
Josef Bacik36508602013-04-25 16:23:32 -0400809 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400810 ret = btrfs_del_csums(trans, fs_info,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -0400811 sums->bytenr,
812 sums->len);
Filipe Mananab84b8392015-08-19 11:09:40 +0100813 if (!ret)
Josef Bacik36508602013-04-25 16:23:32 -0400814 ret = btrfs_csum_file_blocks(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400815 fs_info->csum_root, sums);
Yan Zheng07d400a2009-01-06 11:42:00 -0500816 list_del(&sums->list);
817 kfree(sums);
818 }
Josef Bacik36508602013-04-25 16:23:32 -0400819 if (ret)
820 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500821 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +0200822 btrfs_release_path(path);
Yan Zheng07d400a2009-01-06 11:42:00 -0500823 }
824 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
825 /* inline extents are easy, we just overwrite them */
826 ret = overwrite_item(trans, root, path, eb, slot, key);
Josef Bacik36508602013-04-25 16:23:32 -0400827 if (ret)
828 goto out;
Yan Zheng07d400a2009-01-06 11:42:00 -0500829 }
830
Josef Bacik4bc4bee2013-04-05 20:50:09 +0000831 inode_add_bytes(inode, nbytes);
Filipe Manana3168021c2017-02-01 14:58:02 +0000832update_inode:
Tsutomu Itohb9959292012-06-25 21:25:22 -0600833 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -0400834out:
835 if (inode)
836 iput(inode);
837 return ret;
838}
839
840/*
841 * when cleaning up conflicts between the directory names in the
842 * subvolume, directory names in the log and directory names in the
843 * inode back references, we may have to unlink inodes from directories.
844 *
845 * This is a helper function to do the unlink of a specific directory
846 * item
847 */
848static noinline int drop_one_dir_item(struct btrfs_trans_handle *trans,
849 struct btrfs_root *root,
850 struct btrfs_path *path,
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200851 struct btrfs_inode *dir,
Chris Masone02119d2008-09-05 16:13:11 -0400852 struct btrfs_dir_item *di)
853{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400854 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -0400855 struct inode *inode;
856 char *name;
857 int name_len;
858 struct extent_buffer *leaf;
859 struct btrfs_key location;
860 int ret;
861
862 leaf = path->nodes[0];
863
864 btrfs_dir_item_key_to_cpu(leaf, di, &location);
865 name_len = btrfs_dir_name_len(leaf, di);
866 name = kmalloc(name_len, GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +0000867 if (!name)
868 return -ENOMEM;
869
Chris Masone02119d2008-09-05 16:13:11 -0400870 read_extent_buffer(leaf, name, (unsigned long)(di + 1), name_len);
David Sterbab3b4aa72011-04-21 01:20:15 +0200871 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400872
873 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000874 if (!inode) {
Josef Bacik36508602013-04-25 16:23:32 -0400875 ret = -EIO;
876 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +0000877 }
Chris Masone02119d2008-09-05 16:13:11 -0400878
Yan Zhengec051c02009-01-05 15:43:42 -0500879 ret = link_to_fixup_dir(trans, root, path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -0400880 if (ret)
881 goto out;
Chris Mason12fcfd22009-03-24 10:24:20 -0400882
Nikolay Borisov207e7d92017-01-18 00:31:45 +0200883 ret = btrfs_unlink_inode(trans, root, dir, BTRFS_I(inode), name,
884 name_len);
Josef Bacik36508602013-04-25 16:23:32 -0400885 if (ret)
886 goto out;
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +0100887 else
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400888 ret = btrfs_run_delayed_items(trans, fs_info);
Josef Bacik36508602013-04-25 16:23:32 -0400889out:
890 kfree(name);
891 iput(inode);
Chris Masone02119d2008-09-05 16:13:11 -0400892 return ret;
893}
894
895/*
896 * helper function to see if a given name and sequence number found
897 * in an inode back reference are already in a directory and correctly
898 * point to this inode
899 */
900static noinline int inode_in_dir(struct btrfs_root *root,
901 struct btrfs_path *path,
902 u64 dirid, u64 objectid, u64 index,
903 const char *name, int name_len)
904{
905 struct btrfs_dir_item *di;
906 struct btrfs_key location;
907 int match = 0;
908
909 di = btrfs_lookup_dir_index_item(NULL, root, path, dirid,
910 index, name, name_len, 0);
911 if (di && !IS_ERR(di)) {
912 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
913 if (location.objectid != objectid)
914 goto out;
915 } else
916 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +0200917 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400918
919 di = btrfs_lookup_dir_item(NULL, root, path, dirid, name, name_len, 0);
920 if (di && !IS_ERR(di)) {
921 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &location);
922 if (location.objectid != objectid)
923 goto out;
924 } else
925 goto out;
926 match = 1;
927out:
David Sterbab3b4aa72011-04-21 01:20:15 +0200928 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -0400929 return match;
930}
931
932/*
933 * helper function to check a log tree for a named back reference in
934 * an inode. This is used to decide if a back reference that is
935 * found in the subvolume conflicts with what we find in the log.
936 *
937 * inode backreferences may have multiple refs in a single item,
938 * during replay we process one reference at a time, and we don't
939 * want to delete valid links to a file from the subvolume if that
940 * link is also in the log.
941 */
942static noinline int backref_in_log(struct btrfs_root *log,
943 struct btrfs_key *key,
Mark Fashehf1863732012-08-08 11:32:27 -0700944 u64 ref_objectid,
Filipe Mananadf8d1162015-01-14 01:52:25 +0000945 const char *name, int namelen)
Chris Masone02119d2008-09-05 16:13:11 -0400946{
947 struct btrfs_path *path;
948 struct btrfs_inode_ref *ref;
949 unsigned long ptr;
950 unsigned long ptr_end;
951 unsigned long name_ptr;
952 int found_name_len;
953 int item_size;
954 int ret;
955 int match = 0;
956
957 path = btrfs_alloc_path();
liubo2a29edc2011-01-26 06:22:08 +0000958 if (!path)
959 return -ENOMEM;
960
Chris Masone02119d2008-09-05 16:13:11 -0400961 ret = btrfs_search_slot(NULL, log, key, path, 0, 0);
962 if (ret != 0)
963 goto out;
964
Chris Masone02119d2008-09-05 16:13:11 -0400965 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700966
967 if (key->type == BTRFS_INODE_EXTREF_KEY) {
968 if (btrfs_find_name_in_ext_backref(path, ref_objectid,
969 name, namelen, NULL))
970 match = 1;
971
972 goto out;
973 }
974
975 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Chris Masone02119d2008-09-05 16:13:11 -0400976 ptr_end = ptr + item_size;
977 while (ptr < ptr_end) {
978 ref = (struct btrfs_inode_ref *)ptr;
979 found_name_len = btrfs_inode_ref_name_len(path->nodes[0], ref);
980 if (found_name_len == namelen) {
981 name_ptr = (unsigned long)(ref + 1);
982 ret = memcmp_extent_buffer(path->nodes[0], name,
983 name_ptr, namelen);
984 if (ret == 0) {
985 match = 1;
986 goto out;
987 }
988 }
989 ptr = (unsigned long)(ref + 1) + found_name_len;
990 }
991out:
992 btrfs_free_path(path);
993 return match;
994}
995
Jan Schmidt5a1d7842012-08-17 14:04:41 -0700996static inline int __add_inode_ref(struct btrfs_trans_handle *trans,
997 struct btrfs_root *root,
998 struct btrfs_path *path,
999 struct btrfs_root *log_root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001000 struct btrfs_inode *dir,
1001 struct btrfs_inode *inode,
Mark Fashehf1863732012-08-08 11:32:27 -07001002 u64 inode_objectid, u64 parent_objectid,
1003 u64 ref_index, char *name, int namelen,
1004 int *search_done)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001005{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001006 struct btrfs_fs_info *fs_info = root->fs_info;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001007 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001008 char *victim_name;
1009 int victim_name_len;
1010 struct extent_buffer *leaf;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001011 struct btrfs_dir_item *di;
Mark Fashehf1863732012-08-08 11:32:27 -07001012 struct btrfs_key search_key;
1013 struct btrfs_inode_extref *extref;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001014
Mark Fashehf1863732012-08-08 11:32:27 -07001015again:
1016 /* Search old style refs */
1017 search_key.objectid = inode_objectid;
1018 search_key.type = BTRFS_INODE_REF_KEY;
1019 search_key.offset = parent_objectid;
1020 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001021 if (ret == 0) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001022 struct btrfs_inode_ref *victim_ref;
1023 unsigned long ptr;
1024 unsigned long ptr_end;
Mark Fashehf1863732012-08-08 11:32:27 -07001025
1026 leaf = path->nodes[0];
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001027
1028 /* are we trying to overwrite a back ref for the root directory
1029 * if so, just jump out, we're done
1030 */
Mark Fashehf1863732012-08-08 11:32:27 -07001031 if (search_key.objectid == search_key.offset)
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001032 return 1;
1033
1034 /* check all the names in this back reference to see
1035 * if they are in the log. if so, we allow them to stay
1036 * otherwise they must be unlinked as a conflict
1037 */
1038 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
1039 ptr_end = ptr + btrfs_item_size_nr(leaf, path->slots[0]);
1040 while (ptr < ptr_end) {
1041 victim_ref = (struct btrfs_inode_ref *)ptr;
1042 victim_name_len = btrfs_inode_ref_name_len(leaf,
1043 victim_ref);
1044 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001045 if (!victim_name)
1046 return -ENOMEM;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001047
1048 read_extent_buffer(leaf, victim_name,
1049 (unsigned long)(victim_ref + 1),
1050 victim_name_len);
1051
Mark Fashehf1863732012-08-08 11:32:27 -07001052 if (!backref_in_log(log_root, &search_key,
1053 parent_objectid,
1054 victim_name,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001055 victim_name_len)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001056 inc_nlink(&inode->vfs_inode);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001057 btrfs_release_path(path);
1058
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001059 ret = btrfs_unlink_inode(trans, root, dir, inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001060 victim_name, victim_name_len);
Mark Fashehf1863732012-08-08 11:32:27 -07001061 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001062 if (ret)
1063 return ret;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001064 ret = btrfs_run_delayed_items(trans, fs_info);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001065 if (ret)
1066 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001067 *search_done = 1;
1068 goto again;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001069 }
1070 kfree(victim_name);
Mark Fashehf1863732012-08-08 11:32:27 -07001071
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001072 ptr = (unsigned long)(victim_ref + 1) + victim_name_len;
1073 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001074
1075 /*
1076 * NOTE: we have searched root tree and checked the
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -08001077 * corresponding ref, it does not need to check again.
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001078 */
1079 *search_done = 1;
1080 }
1081 btrfs_release_path(path);
1082
Mark Fashehf1863732012-08-08 11:32:27 -07001083 /* Same search but for extended refs */
1084 extref = btrfs_lookup_inode_extref(NULL, root, path, name, namelen,
1085 inode_objectid, parent_objectid, 0,
1086 0);
1087 if (!IS_ERR_OR_NULL(extref)) {
1088 u32 item_size;
1089 u32 cur_offset = 0;
1090 unsigned long base;
1091 struct inode *victim_parent;
1092
1093 leaf = path->nodes[0];
1094
1095 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1096 base = btrfs_item_ptr_offset(leaf, path->slots[0]);
1097
1098 while (cur_offset < item_size) {
Quentin Casasnovasdd9ef132015-03-03 16:31:38 +01001099 extref = (struct btrfs_inode_extref *)(base + cur_offset);
Mark Fashehf1863732012-08-08 11:32:27 -07001100
1101 victim_name_len = btrfs_inode_extref_name_len(leaf, extref);
1102
1103 if (btrfs_inode_extref_parent(leaf, extref) != parent_objectid)
1104 goto next;
1105
1106 victim_name = kmalloc(victim_name_len, GFP_NOFS);
Josef Bacik36508602013-04-25 16:23:32 -04001107 if (!victim_name)
1108 return -ENOMEM;
Mark Fashehf1863732012-08-08 11:32:27 -07001109 read_extent_buffer(leaf, victim_name, (unsigned long)&extref->name,
1110 victim_name_len);
1111
1112 search_key.objectid = inode_objectid;
1113 search_key.type = BTRFS_INODE_EXTREF_KEY;
1114 search_key.offset = btrfs_extref_hash(parent_objectid,
1115 victim_name,
1116 victim_name_len);
1117 ret = 0;
1118 if (!backref_in_log(log_root, &search_key,
1119 parent_objectid, victim_name,
1120 victim_name_len)) {
1121 ret = -ENOENT;
1122 victim_parent = read_one_inode(root,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001123 parent_objectid);
Mark Fashehf1863732012-08-08 11:32:27 -07001124 if (victim_parent) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001125 inc_nlink(&inode->vfs_inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001126 btrfs_release_path(path);
1127
1128 ret = btrfs_unlink_inode(trans, root,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001129 BTRFS_I(victim_parent),
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001130 inode,
Nikolay Borisov4ec59342017-01-18 00:31:44 +02001131 victim_name,
1132 victim_name_len);
Filipe David Borba Mananaada9af22013-08-05 09:25:47 +01001133 if (!ret)
1134 ret = btrfs_run_delayed_items(
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001135 trans,
1136 fs_info);
Mark Fashehf1863732012-08-08 11:32:27 -07001137 }
Mark Fashehf1863732012-08-08 11:32:27 -07001138 iput(victim_parent);
1139 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001140 if (ret)
1141 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001142 *search_done = 1;
1143 goto again;
1144 }
1145 kfree(victim_name);
Josef Bacik36508602013-04-25 16:23:32 -04001146 if (ret)
1147 return ret;
Mark Fashehf1863732012-08-08 11:32:27 -07001148next:
1149 cur_offset += victim_name_len + sizeof(*extref);
1150 }
1151 *search_done = 1;
1152 }
1153 btrfs_release_path(path);
1154
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001155 /* look for a conflicting sequence number */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001156 di = btrfs_lookup_dir_index_item(trans, root, path, btrfs_ino(dir),
Mark Fashehf1863732012-08-08 11:32:27 -07001157 ref_index, name, namelen, 0);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001158 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001159 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001160 if (ret)
1161 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001162 }
1163 btrfs_release_path(path);
1164
1165 /* look for a conflicing name */
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001166 di = btrfs_lookup_dir_item(trans, root, path, btrfs_ino(dir),
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001167 name, namelen, 0);
1168 if (di && !IS_ERR(di)) {
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001169 ret = drop_one_dir_item(trans, root, path, dir, di);
Josef Bacik36508602013-04-25 16:23:32 -04001170 if (ret)
1171 return ret;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001172 }
1173 btrfs_release_path(path);
1174
1175 return 0;
1176}
Chris Masone02119d2008-09-05 16:13:11 -04001177
Mark Fashehf1863732012-08-08 11:32:27 -07001178static int extref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1179 u32 *namelen, char **name, u64 *index,
1180 u64 *parent_objectid)
1181{
1182 struct btrfs_inode_extref *extref;
1183
1184 extref = (struct btrfs_inode_extref *)ref_ptr;
1185
1186 *namelen = btrfs_inode_extref_name_len(eb, extref);
1187 *name = kmalloc(*namelen, GFP_NOFS);
1188 if (*name == NULL)
1189 return -ENOMEM;
1190
1191 read_extent_buffer(eb, *name, (unsigned long)&extref->name,
1192 *namelen);
1193
1194 *index = btrfs_inode_extref_index(eb, extref);
1195 if (parent_objectid)
1196 *parent_objectid = btrfs_inode_extref_parent(eb, extref);
1197
1198 return 0;
1199}
1200
1201static int ref_get_fields(struct extent_buffer *eb, unsigned long ref_ptr,
1202 u32 *namelen, char **name, u64 *index)
1203{
1204 struct btrfs_inode_ref *ref;
1205
1206 ref = (struct btrfs_inode_ref *)ref_ptr;
1207
1208 *namelen = btrfs_inode_ref_name_len(eb, ref);
1209 *name = kmalloc(*namelen, GFP_NOFS);
1210 if (*name == NULL)
1211 return -ENOMEM;
1212
1213 read_extent_buffer(eb, *name, (unsigned long)(ref + 1), *namelen);
1214
1215 *index = btrfs_inode_ref_index(eb, ref);
1216
1217 return 0;
1218}
1219
Chris Masone02119d2008-09-05 16:13:11 -04001220/*
1221 * replay one inode back reference item found in the log tree.
1222 * eb, slot and key refer to the buffer and key found in the log tree.
1223 * root is the destination we are replaying into, and path is for temp
1224 * use by this function. (it should be released on return).
1225 */
1226static noinline int add_inode_ref(struct btrfs_trans_handle *trans,
1227 struct btrfs_root *root,
1228 struct btrfs_root *log,
1229 struct btrfs_path *path,
1230 struct extent_buffer *eb, int slot,
1231 struct btrfs_key *key)
1232{
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001233 struct inode *dir = NULL;
1234 struct inode *inode = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001235 unsigned long ref_ptr;
1236 unsigned long ref_end;
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001237 char *name = NULL;
liubo34f3e4f2011-08-06 08:35:23 +00001238 int namelen;
1239 int ret;
liuboc622ae62011-03-26 08:01:12 -04001240 int search_done = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001241 int log_ref_ver = 0;
1242 u64 parent_objectid;
1243 u64 inode_objectid;
Chris Masonf46dbe32012-10-09 11:17:20 -04001244 u64 ref_index = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001245 int ref_struct_size;
1246
1247 ref_ptr = btrfs_item_ptr_offset(eb, slot);
1248 ref_end = ref_ptr + btrfs_item_size_nr(eb, slot);
1249
1250 if (key->type == BTRFS_INODE_EXTREF_KEY) {
1251 struct btrfs_inode_extref *r;
1252
1253 ref_struct_size = sizeof(struct btrfs_inode_extref);
1254 log_ref_ver = 1;
1255 r = (struct btrfs_inode_extref *)ref_ptr;
1256 parent_objectid = btrfs_inode_extref_parent(eb, r);
1257 } else {
1258 ref_struct_size = sizeof(struct btrfs_inode_ref);
1259 parent_objectid = key->offset;
1260 }
1261 inode_objectid = key->objectid;
Chris Masone02119d2008-09-05 16:13:11 -04001262
Chris Masone02119d2008-09-05 16:13:11 -04001263 /*
1264 * it is possible that we didn't log all the parent directories
1265 * for a given inode. If we don't find the dir, just don't
1266 * copy the back ref in. The link count fixup code will take
1267 * care of the rest
1268 */
Mark Fashehf1863732012-08-08 11:32:27 -07001269 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001270 if (!dir) {
1271 ret = -ENOENT;
1272 goto out;
1273 }
Chris Masone02119d2008-09-05 16:13:11 -04001274
Mark Fashehf1863732012-08-08 11:32:27 -07001275 inode = read_one_inode(root, inode_objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001276 if (!inode) {
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001277 ret = -EIO;
1278 goto out;
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001279 }
Chris Masone02119d2008-09-05 16:13:11 -04001280
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001281 while (ref_ptr < ref_end) {
Mark Fashehf1863732012-08-08 11:32:27 -07001282 if (log_ref_ver) {
1283 ret = extref_get_fields(eb, ref_ptr, &namelen, &name,
1284 &ref_index, &parent_objectid);
1285 /*
1286 * parent object can change from one array
1287 * item to another.
1288 */
1289 if (!dir)
1290 dir = read_one_inode(root, parent_objectid);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001291 if (!dir) {
1292 ret = -ENOENT;
1293 goto out;
1294 }
Mark Fashehf1863732012-08-08 11:32:27 -07001295 } else {
1296 ret = ref_get_fields(eb, ref_ptr, &namelen, &name,
1297 &ref_index);
1298 }
1299 if (ret)
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001300 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001301
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001302 /* if we already have a perfect match, we're done */
David Sterbaf85b7372017-01-20 14:54:07 +01001303 if (!inode_in_dir(root, path, btrfs_ino(BTRFS_I(dir)),
1304 btrfs_ino(BTRFS_I(inode)), ref_index,
1305 name, namelen)) {
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001306 /*
1307 * look for a conflicting back reference in the
1308 * metadata. if we find one we have to unlink that name
1309 * of the file before we add our new link. Later on, we
1310 * overwrite any existing back reference, and we don't
1311 * want to create dangling pointers in the directory.
1312 */
Chris Masone02119d2008-09-05 16:13:11 -04001313
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001314 if (!search_done) {
1315 ret = __add_inode_ref(trans, root, path, log,
Nikolay Borisov94c91a12017-01-18 00:31:46 +02001316 BTRFS_I(dir),
David Sterbad75eefd2017-02-10 20:20:19 +01001317 BTRFS_I(inode),
Mark Fashehf1863732012-08-08 11:32:27 -07001318 inode_objectid,
1319 parent_objectid,
1320 ref_index, name, namelen,
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001321 &search_done);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001322 if (ret) {
1323 if (ret == 1)
1324 ret = 0;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001325 goto out;
Josef Bacik36508602013-04-25 16:23:32 -04001326 }
Chris Masone02119d2008-09-05 16:13:11 -04001327 }
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001328
1329 /* insert our name */
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001330 ret = btrfs_add_link(trans, BTRFS_I(dir),
1331 BTRFS_I(inode),
1332 name, namelen, 0, ref_index);
Josef Bacik36508602013-04-25 16:23:32 -04001333 if (ret)
1334 goto out;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001335
1336 btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001337 }
liuboc622ae62011-03-26 08:01:12 -04001338
Mark Fashehf1863732012-08-08 11:32:27 -07001339 ref_ptr = (unsigned long)(ref_ptr + ref_struct_size) + namelen;
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001340 kfree(name);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001341 name = NULL;
Mark Fashehf1863732012-08-08 11:32:27 -07001342 if (log_ref_ver) {
1343 iput(dir);
1344 dir = NULL;
1345 }
Chris Masone02119d2008-09-05 16:13:11 -04001346 }
Chris Masone02119d2008-09-05 16:13:11 -04001347
1348 /* finally write the back reference in the inode */
1349 ret = overwrite_item(trans, root, path, eb, slot, key);
Jan Schmidt5a1d7842012-08-17 14:04:41 -07001350out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001351 btrfs_release_path(path);
Geyslan G. Bem03b2f082013-10-11 15:35:45 -03001352 kfree(name);
Chris Masone02119d2008-09-05 16:13:11 -04001353 iput(dir);
1354 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001355 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001356}
1357
Yan, Zhengc71bf092009-11-12 09:34:40 +00001358static int insert_orphan_item(struct btrfs_trans_handle *trans,
David Sterba9c4f61f2015-01-02 19:12:57 +01001359 struct btrfs_root *root, u64 ino)
Yan, Zhengc71bf092009-11-12 09:34:40 +00001360{
1361 int ret;
David Sterba381cf652015-01-02 18:45:16 +01001362
David Sterba9c4f61f2015-01-02 19:12:57 +01001363 ret = btrfs_insert_orphan_item(trans, root, ino);
1364 if (ret == -EEXIST)
1365 ret = 0;
David Sterba381cf652015-01-02 18:45:16 +01001366
Yan, Zhengc71bf092009-11-12 09:34:40 +00001367 return ret;
1368}
1369
Mark Fashehf1863732012-08-08 11:32:27 -07001370static int count_inode_extrefs(struct btrfs_root *root,
Nikolay Borisov36283652017-01-18 00:31:49 +02001371 struct btrfs_inode *inode, struct btrfs_path *path)
Chris Masone02119d2008-09-05 16:13:11 -04001372{
Mark Fashehf1863732012-08-08 11:32:27 -07001373 int ret = 0;
1374 int name_len;
1375 unsigned int nlink = 0;
1376 u32 item_size;
1377 u32 cur_offset = 0;
Nikolay Borisov36283652017-01-18 00:31:49 +02001378 u64 inode_objectid = btrfs_ino(inode);
Mark Fashehf1863732012-08-08 11:32:27 -07001379 u64 offset = 0;
1380 unsigned long ptr;
1381 struct btrfs_inode_extref *extref;
1382 struct extent_buffer *leaf;
1383
1384 while (1) {
1385 ret = btrfs_find_one_extref(root, inode_objectid, offset, path,
1386 &extref, &offset);
1387 if (ret)
1388 break;
1389
1390 leaf = path->nodes[0];
1391 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1392 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
Filipe Manana2c2c4522015-01-13 16:40:04 +00001393 cur_offset = 0;
Mark Fashehf1863732012-08-08 11:32:27 -07001394
1395 while (cur_offset < item_size) {
1396 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
1397 name_len = btrfs_inode_extref_name_len(leaf, extref);
1398
1399 nlink++;
1400
1401 cur_offset += name_len + sizeof(*extref);
1402 }
1403
1404 offset++;
1405 btrfs_release_path(path);
1406 }
1407 btrfs_release_path(path);
1408
Filipe Manana2c2c4522015-01-13 16:40:04 +00001409 if (ret < 0 && ret != -ENOENT)
Mark Fashehf1863732012-08-08 11:32:27 -07001410 return ret;
1411 return nlink;
1412}
1413
1414static int count_inode_refs(struct btrfs_root *root,
Nikolay Borisovf329e312017-01-18 00:31:50 +02001415 struct btrfs_inode *inode, struct btrfs_path *path)
Mark Fashehf1863732012-08-08 11:32:27 -07001416{
Chris Masone02119d2008-09-05 16:13:11 -04001417 int ret;
1418 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -07001419 unsigned int nlink = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001420 unsigned long ptr;
1421 unsigned long ptr_end;
1422 int name_len;
Nikolay Borisovf329e312017-01-18 00:31:50 +02001423 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04001424
Li Zefan33345d012011-04-20 10:31:50 +08001425 key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04001426 key.type = BTRFS_INODE_REF_KEY;
1427 key.offset = (u64)-1;
1428
Chris Masond3977122009-01-05 21:25:51 -05001429 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001430 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1431 if (ret < 0)
1432 break;
1433 if (ret > 0) {
1434 if (path->slots[0] == 0)
1435 break;
1436 path->slots[0]--;
1437 }
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001438process_slot:
Chris Masone02119d2008-09-05 16:13:11 -04001439 btrfs_item_key_to_cpu(path->nodes[0], &key,
1440 path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08001441 if (key.objectid != ino ||
Chris Masone02119d2008-09-05 16:13:11 -04001442 key.type != BTRFS_INODE_REF_KEY)
1443 break;
1444 ptr = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
1445 ptr_end = ptr + btrfs_item_size_nr(path->nodes[0],
1446 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05001447 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001448 struct btrfs_inode_ref *ref;
1449
1450 ref = (struct btrfs_inode_ref *)ptr;
1451 name_len = btrfs_inode_ref_name_len(path->nodes[0],
1452 ref);
1453 ptr = (unsigned long)(ref + 1) + name_len;
1454 nlink++;
1455 }
1456
1457 if (key.offset == 0)
1458 break;
Filipe David Borba Mananae93ae262013-10-14 22:49:11 +01001459 if (path->slots[0] > 0) {
1460 path->slots[0]--;
1461 goto process_slot;
1462 }
Chris Masone02119d2008-09-05 16:13:11 -04001463 key.offset--;
David Sterbab3b4aa72011-04-21 01:20:15 +02001464 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001465 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001466 btrfs_release_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -07001467
1468 return nlink;
1469}
1470
1471/*
1472 * There are a few corners where the link count of the file can't
1473 * be properly maintained during replay. So, instead of adding
1474 * lots of complexity to the log code, we just scan the backrefs
1475 * for any file that has been through replay.
1476 *
1477 * The scan will update the link count on the inode to reflect the
1478 * number of back refs found. If it goes down to zero, the iput
1479 * will free the inode.
1480 */
1481static noinline int fixup_inode_link_count(struct btrfs_trans_handle *trans,
1482 struct btrfs_root *root,
1483 struct inode *inode)
1484{
1485 struct btrfs_path *path;
1486 int ret;
1487 u64 nlink = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001488 u64 ino = btrfs_ino(BTRFS_I(inode));
Mark Fashehf1863732012-08-08 11:32:27 -07001489
1490 path = btrfs_alloc_path();
1491 if (!path)
1492 return -ENOMEM;
1493
Nikolay Borisovf329e312017-01-18 00:31:50 +02001494 ret = count_inode_refs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001495 if (ret < 0)
1496 goto out;
1497
1498 nlink = ret;
1499
Nikolay Borisov36283652017-01-18 00:31:49 +02001500 ret = count_inode_extrefs(root, BTRFS_I(inode), path);
Mark Fashehf1863732012-08-08 11:32:27 -07001501 if (ret < 0)
1502 goto out;
1503
1504 nlink += ret;
1505
1506 ret = 0;
1507
Chris Masone02119d2008-09-05 16:13:11 -04001508 if (nlink != inode->i_nlink) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02001509 set_nlink(inode, nlink);
Chris Masone02119d2008-09-05 16:13:11 -04001510 btrfs_update_inode(trans, root, inode);
1511 }
Chris Mason8d5bf1c2008-09-11 15:51:21 -04001512 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001513
Yan, Zhengc71bf092009-11-12 09:34:40 +00001514 if (inode->i_nlink == 0) {
1515 if (S_ISDIR(inode->i_mode)) {
1516 ret = replay_dir_deletes(trans, root, NULL, path,
Li Zefan33345d012011-04-20 10:31:50 +08001517 ino, 1);
Josef Bacik36508602013-04-25 16:23:32 -04001518 if (ret)
1519 goto out;
Yan, Zhengc71bf092009-11-12 09:34:40 +00001520 }
Li Zefan33345d012011-04-20 10:31:50 +08001521 ret = insert_orphan_item(trans, root, ino);
Chris Mason12fcfd22009-03-24 10:24:20 -04001522 }
Chris Mason12fcfd22009-03-24 10:24:20 -04001523
Mark Fashehf1863732012-08-08 11:32:27 -07001524out:
1525 btrfs_free_path(path);
1526 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001527}
1528
1529static noinline int fixup_inode_link_counts(struct btrfs_trans_handle *trans,
1530 struct btrfs_root *root,
1531 struct btrfs_path *path)
1532{
1533 int ret;
1534 struct btrfs_key key;
1535 struct inode *inode;
1536
1537 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
1538 key.type = BTRFS_ORPHAN_ITEM_KEY;
1539 key.offset = (u64)-1;
Chris Masond3977122009-01-05 21:25:51 -05001540 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04001541 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1542 if (ret < 0)
1543 break;
1544
1545 if (ret == 1) {
1546 if (path->slots[0] == 0)
1547 break;
1548 path->slots[0]--;
1549 }
1550
1551 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1552 if (key.objectid != BTRFS_TREE_LOG_FIXUP_OBJECTID ||
1553 key.type != BTRFS_ORPHAN_ITEM_KEY)
1554 break;
1555
1556 ret = btrfs_del_item(trans, root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001557 if (ret)
1558 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001559
David Sterbab3b4aa72011-04-21 01:20:15 +02001560 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001561 inode = read_one_inode(root, key.offset);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001562 if (!inode)
1563 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001564
1565 ret = fixup_inode_link_count(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001566 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04001567 if (ret)
1568 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001569
Chris Mason12fcfd22009-03-24 10:24:20 -04001570 /*
1571 * fixup on a directory may create new entries,
1572 * make sure we always look for the highset possible
1573 * offset
1574 */
1575 key.offset = (u64)-1;
Chris Masone02119d2008-09-05 16:13:11 -04001576 }
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001577 ret = 0;
1578out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001579 btrfs_release_path(path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00001580 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001581}
1582
1583
1584/*
1585 * record a given inode in the fixup dir so we can check its link
1586 * count when replay is done. The link count is incremented here
1587 * so the inode won't go away until we check it
1588 */
1589static noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans,
1590 struct btrfs_root *root,
1591 struct btrfs_path *path,
1592 u64 objectid)
1593{
1594 struct btrfs_key key;
1595 int ret = 0;
1596 struct inode *inode;
1597
1598 inode = read_one_inode(root, objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001599 if (!inode)
1600 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001601
1602 key.objectid = BTRFS_TREE_LOG_FIXUP_OBJECTID;
David Sterba962a2982014-06-04 18:41:45 +02001603 key.type = BTRFS_ORPHAN_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04001604 key.offset = objectid;
1605
1606 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1607
David Sterbab3b4aa72011-04-21 01:20:15 +02001608 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001609 if (ret == 0) {
Josef Bacik9bf7a482013-03-01 13:35:47 -05001610 if (!inode->i_nlink)
1611 set_nlink(inode, 1);
1612 else
Zach Brown8b558c52013-10-16 12:10:34 -07001613 inc_nlink(inode);
Tsutomu Itohb9959292012-06-25 21:25:22 -06001614 ret = btrfs_update_inode(trans, root, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001615 } else if (ret == -EEXIST) {
1616 ret = 0;
1617 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001618 BUG(); /* Logic Error */
Chris Masone02119d2008-09-05 16:13:11 -04001619 }
1620 iput(inode);
1621
1622 return ret;
1623}
1624
1625/*
1626 * when replaying the log for a directory, we only insert names
1627 * for inodes that actually exist. This means an fsync on a directory
1628 * does not implicitly fsync all the new files in it
1629 */
1630static noinline int insert_one_name(struct btrfs_trans_handle *trans,
1631 struct btrfs_root *root,
Chris Masone02119d2008-09-05 16:13:11 -04001632 u64 dirid, u64 index,
Zhaolei60d53eb2015-08-17 18:44:46 +08001633 char *name, int name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001634 struct btrfs_key *location)
1635{
1636 struct inode *inode;
1637 struct inode *dir;
1638 int ret;
1639
1640 inode = read_one_inode(root, location->objectid);
1641 if (!inode)
1642 return -ENOENT;
1643
1644 dir = read_one_inode(root, dirid);
1645 if (!dir) {
1646 iput(inode);
1647 return -EIO;
1648 }
Josef Bacikd5554382013-09-11 14:17:00 -04001649
Nikolay Borisovdb0a6692017-02-20 13:51:08 +02001650 ret = btrfs_add_link(trans, BTRFS_I(dir), BTRFS_I(inode), name,
1651 name_len, 1, index);
Chris Masone02119d2008-09-05 16:13:11 -04001652
1653 /* FIXME, put inode into FIXUP list */
1654
1655 iput(inode);
1656 iput(dir);
1657 return ret;
1658}
1659
1660/*
Filipe Mananadf8d1162015-01-14 01:52:25 +00001661 * Return true if an inode reference exists in the log for the given name,
1662 * inode and parent inode.
1663 */
1664static bool name_in_log_ref(struct btrfs_root *log_root,
1665 const char *name, const int name_len,
1666 const u64 dirid, const u64 ino)
1667{
1668 struct btrfs_key search_key;
1669
1670 search_key.objectid = ino;
1671 search_key.type = BTRFS_INODE_REF_KEY;
1672 search_key.offset = dirid;
1673 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1674 return true;
1675
1676 search_key.type = BTRFS_INODE_EXTREF_KEY;
1677 search_key.offset = btrfs_extref_hash(dirid, name, name_len);
1678 if (backref_in_log(log_root, &search_key, dirid, name, name_len))
1679 return true;
1680
1681 return false;
1682}
1683
1684/*
Chris Masone02119d2008-09-05 16:13:11 -04001685 * take a single entry in a log directory item and replay it into
1686 * the subvolume.
1687 *
1688 * if a conflicting item exists in the subdirectory already,
1689 * the inode it points to is unlinked and put into the link count
1690 * fix up tree.
1691 *
1692 * If a name from the log points to a file or directory that does
1693 * not exist in the FS, it is skipped. fsyncs on directories
1694 * do not force down inodes inside that directory, just changes to the
1695 * names or unlinks in a directory.
Filipe Mananabb53eda2015-07-15 23:26:43 +01001696 *
1697 * Returns < 0 on error, 0 if the name wasn't replayed (dentry points to a
1698 * non-existing inode) and 1 if the name was replayed.
Chris Masone02119d2008-09-05 16:13:11 -04001699 */
1700static noinline int replay_one_name(struct btrfs_trans_handle *trans,
1701 struct btrfs_root *root,
1702 struct btrfs_path *path,
1703 struct extent_buffer *eb,
1704 struct btrfs_dir_item *di,
1705 struct btrfs_key *key)
1706{
1707 char *name;
1708 int name_len;
1709 struct btrfs_dir_item *dst_di;
1710 struct btrfs_key found_key;
1711 struct btrfs_key log_key;
1712 struct inode *dir;
Chris Masone02119d2008-09-05 16:13:11 -04001713 u8 log_type;
Chris Mason4bef0842008-09-08 11:18:08 -04001714 int exists;
Josef Bacik36508602013-04-25 16:23:32 -04001715 int ret = 0;
Josef Bacikd5554382013-09-11 14:17:00 -04001716 bool update_size = (key->type == BTRFS_DIR_INDEX_KEY);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001717 bool name_added = false;
Chris Masone02119d2008-09-05 16:13:11 -04001718
1719 dir = read_one_inode(root, key->objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00001720 if (!dir)
1721 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001722
1723 name_len = btrfs_dir_name_len(eb, di);
1724 name = kmalloc(name_len, GFP_NOFS);
Filipe David Borba Manana2bac3252013-08-04 19:58:57 +01001725 if (!name) {
1726 ret = -ENOMEM;
1727 goto out;
1728 }
liubo2a29edc2011-01-26 06:22:08 +00001729
Chris Masone02119d2008-09-05 16:13:11 -04001730 log_type = btrfs_dir_type(eb, di);
1731 read_extent_buffer(eb, name, (unsigned long)(di + 1),
1732 name_len);
1733
1734 btrfs_dir_item_key_to_cpu(eb, di, &log_key);
Chris Mason4bef0842008-09-08 11:18:08 -04001735 exists = btrfs_lookup_inode(trans, root, path, &log_key, 0);
1736 if (exists == 0)
1737 exists = 1;
1738 else
1739 exists = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02001740 btrfs_release_path(path);
Chris Mason4bef0842008-09-08 11:18:08 -04001741
Chris Masone02119d2008-09-05 16:13:11 -04001742 if (key->type == BTRFS_DIR_ITEM_KEY) {
1743 dst_di = btrfs_lookup_dir_item(trans, root, path, key->objectid,
1744 name, name_len, 1);
Chris Masond3977122009-01-05 21:25:51 -05001745 } else if (key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04001746 dst_di = btrfs_lookup_dir_index_item(trans, root, path,
1747 key->objectid,
1748 key->offset, name,
1749 name_len, 1);
1750 } else {
Josef Bacik36508602013-04-25 16:23:32 -04001751 /* Corruption */
1752 ret = -EINVAL;
1753 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001754 }
David Sterbac7040052011-04-19 18:00:01 +02001755 if (IS_ERR_OR_NULL(dst_di)) {
Chris Masone02119d2008-09-05 16:13:11 -04001756 /* we need a sequence number to insert, so we only
1757 * do inserts for the BTRFS_DIR_INDEX_KEY types
1758 */
1759 if (key->type != BTRFS_DIR_INDEX_KEY)
1760 goto out;
1761 goto insert;
1762 }
1763
1764 btrfs_dir_item_key_to_cpu(path->nodes[0], dst_di, &found_key);
1765 /* the existing item matches the logged item */
1766 if (found_key.objectid == log_key.objectid &&
1767 found_key.type == log_key.type &&
1768 found_key.offset == log_key.offset &&
1769 btrfs_dir_type(path->nodes[0], dst_di) == log_type) {
Filipe Mananaa2cc11d2014-09-08 22:53:18 +01001770 update_size = false;
Chris Masone02119d2008-09-05 16:13:11 -04001771 goto out;
1772 }
1773
1774 /*
1775 * don't drop the conflicting directory entry if the inode
1776 * for the new entry doesn't exist
1777 */
Chris Mason4bef0842008-09-08 11:18:08 -04001778 if (!exists)
Chris Masone02119d2008-09-05 16:13:11 -04001779 goto out;
1780
Nikolay Borisov207e7d92017-01-18 00:31:45 +02001781 ret = drop_one_dir_item(trans, root, path, BTRFS_I(dir), dst_di);
Josef Bacik36508602013-04-25 16:23:32 -04001782 if (ret)
1783 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001784
1785 if (key->type == BTRFS_DIR_INDEX_KEY)
1786 goto insert;
1787out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001788 btrfs_release_path(path);
Josef Bacikd5554382013-09-11 14:17:00 -04001789 if (!ret && update_size) {
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02001790 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + name_len * 2);
Josef Bacikd5554382013-09-11 14:17:00 -04001791 ret = btrfs_update_inode(trans, root, dir);
1792 }
Chris Masone02119d2008-09-05 16:13:11 -04001793 kfree(name);
1794 iput(dir);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001795 if (!ret && name_added)
1796 ret = 1;
Josef Bacik36508602013-04-25 16:23:32 -04001797 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001798
1799insert:
Filipe Mananadf8d1162015-01-14 01:52:25 +00001800 if (name_in_log_ref(root->log_root, name, name_len,
1801 key->objectid, log_key.objectid)) {
1802 /* The dentry will be added later. */
1803 ret = 0;
1804 update_size = false;
1805 goto out;
1806 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001807 btrfs_release_path(path);
Zhaolei60d53eb2015-08-17 18:44:46 +08001808 ret = insert_one_name(trans, root, key->objectid, key->offset,
1809 name, name_len, &log_key);
Filipe Mananadf8d1162015-01-14 01:52:25 +00001810 if (ret && ret != -ENOENT && ret != -EEXIST)
Josef Bacik36508602013-04-25 16:23:32 -04001811 goto out;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001812 if (!ret)
1813 name_added = true;
Josef Bacikd5554382013-09-11 14:17:00 -04001814 update_size = false;
Josef Bacik36508602013-04-25 16:23:32 -04001815 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001816 goto out;
1817}
1818
1819/*
1820 * find all the names in a directory item and reconcile them into
1821 * the subvolume. Only BTRFS_DIR_ITEM_KEY types will have more than
1822 * one name in a directory item, but the same code gets used for
1823 * both directory index types
1824 */
1825static noinline int replay_one_dir_item(struct btrfs_trans_handle *trans,
1826 struct btrfs_root *root,
1827 struct btrfs_path *path,
1828 struct extent_buffer *eb, int slot,
1829 struct btrfs_key *key)
1830{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001831 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001832 int ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001833 u32 item_size = btrfs_item_size_nr(eb, slot);
1834 struct btrfs_dir_item *di;
1835 int name_len;
1836 unsigned long ptr;
1837 unsigned long ptr_end;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001838 struct btrfs_path *fixup_path = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04001839
1840 ptr = btrfs_item_ptr_offset(eb, slot);
1841 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05001842 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04001843 di = (struct btrfs_dir_item *)ptr;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001844 if (verify_dir_item(fs_info, eb, di))
Josef Bacik22a94d42011-03-16 16:47:17 -04001845 return -EIO;
Chris Masone02119d2008-09-05 16:13:11 -04001846 name_len = btrfs_dir_name_len(eb, di);
1847 ret = replay_one_name(trans, root, path, eb, di, key);
Filipe Mananabb53eda2015-07-15 23:26:43 +01001848 if (ret < 0)
1849 break;
Chris Masone02119d2008-09-05 16:13:11 -04001850 ptr = (unsigned long)(di + 1);
1851 ptr += name_len;
Filipe Mananabb53eda2015-07-15 23:26:43 +01001852
1853 /*
1854 * If this entry refers to a non-directory (directories can not
1855 * have a link count > 1) and it was added in the transaction
1856 * that was not committed, make sure we fixup the link count of
1857 * the inode it the entry points to. Otherwise something like
1858 * the following would result in a directory pointing to an
1859 * inode with a wrong link that does not account for this dir
1860 * entry:
1861 *
1862 * mkdir testdir
1863 * touch testdir/foo
1864 * touch testdir/bar
1865 * sync
1866 *
1867 * ln testdir/bar testdir/bar_link
1868 * ln testdir/foo testdir/foo_link
1869 * xfs_io -c "fsync" testdir/bar
1870 *
1871 * <power failure>
1872 *
1873 * mount fs, log replay happens
1874 *
1875 * File foo would remain with a link count of 1 when it has two
1876 * entries pointing to it in the directory testdir. This would
1877 * make it impossible to ever delete the parent directory has
1878 * it would result in stale dentries that can never be deleted.
1879 */
1880 if (ret == 1 && btrfs_dir_type(eb, di) != BTRFS_FT_DIR) {
1881 struct btrfs_key di_key;
1882
1883 if (!fixup_path) {
1884 fixup_path = btrfs_alloc_path();
1885 if (!fixup_path) {
1886 ret = -ENOMEM;
1887 break;
1888 }
1889 }
1890
1891 btrfs_dir_item_key_to_cpu(eb, di, &di_key);
1892 ret = link_to_fixup_dir(trans, root, fixup_path,
1893 di_key.objectid);
1894 if (ret)
1895 break;
1896 }
1897 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04001898 }
Filipe Mananabb53eda2015-07-15 23:26:43 +01001899 btrfs_free_path(fixup_path);
1900 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04001901}
1902
1903/*
1904 * directory replay has two parts. There are the standard directory
1905 * items in the log copied from the subvolume, and range items
1906 * created in the log while the subvolume was logged.
1907 *
1908 * The range items tell us which parts of the key space the log
1909 * is authoritative for. During replay, if a key in the subvolume
1910 * directory is in a logged range item, but not actually in the log
1911 * that means it was deleted from the directory before the fsync
1912 * and should be removed.
1913 */
1914static noinline int find_dir_range(struct btrfs_root *root,
1915 struct btrfs_path *path,
1916 u64 dirid, int key_type,
1917 u64 *start_ret, u64 *end_ret)
1918{
1919 struct btrfs_key key;
1920 u64 found_end;
1921 struct btrfs_dir_log_item *item;
1922 int ret;
1923 int nritems;
1924
1925 if (*start_ret == (u64)-1)
1926 return 1;
1927
1928 key.objectid = dirid;
1929 key.type = key_type;
1930 key.offset = *start_ret;
1931
1932 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1933 if (ret < 0)
1934 goto out;
1935 if (ret > 0) {
1936 if (path->slots[0] == 0)
1937 goto out;
1938 path->slots[0]--;
1939 }
1940 if (ret != 0)
1941 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1942
1943 if (key.type != key_type || key.objectid != dirid) {
1944 ret = 1;
1945 goto next;
1946 }
1947 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1948 struct btrfs_dir_log_item);
1949 found_end = btrfs_dir_log_end(path->nodes[0], item);
1950
1951 if (*start_ret >= key.offset && *start_ret <= found_end) {
1952 ret = 0;
1953 *start_ret = key.offset;
1954 *end_ret = found_end;
1955 goto out;
1956 }
1957 ret = 1;
1958next:
1959 /* check the next slot in the tree to see if it is a valid item */
1960 nritems = btrfs_header_nritems(path->nodes[0]);
Robbie Ko2a7bf532016-10-07 17:30:47 +08001961 path->slots[0]++;
Chris Masone02119d2008-09-05 16:13:11 -04001962 if (path->slots[0] >= nritems) {
1963 ret = btrfs_next_leaf(root, path);
1964 if (ret)
1965 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04001966 }
1967
1968 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1969
1970 if (key.type != key_type || key.objectid != dirid) {
1971 ret = 1;
1972 goto out;
1973 }
1974 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1975 struct btrfs_dir_log_item);
1976 found_end = btrfs_dir_log_end(path->nodes[0], item);
1977 *start_ret = key.offset;
1978 *end_ret = found_end;
1979 ret = 0;
1980out:
David Sterbab3b4aa72011-04-21 01:20:15 +02001981 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001982 return ret;
1983}
1984
1985/*
1986 * this looks for a given directory item in the log. If the directory
1987 * item is not in the log, the item is removed and the inode it points
1988 * to is unlinked
1989 */
1990static noinline int check_item_in_log(struct btrfs_trans_handle *trans,
1991 struct btrfs_root *root,
1992 struct btrfs_root *log,
1993 struct btrfs_path *path,
1994 struct btrfs_path *log_path,
1995 struct inode *dir,
1996 struct btrfs_key *dir_key)
1997{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001998 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04001999 int ret;
2000 struct extent_buffer *eb;
2001 int slot;
2002 u32 item_size;
2003 struct btrfs_dir_item *di;
2004 struct btrfs_dir_item *log_di;
2005 int name_len;
2006 unsigned long ptr;
2007 unsigned long ptr_end;
2008 char *name;
2009 struct inode *inode;
2010 struct btrfs_key location;
2011
2012again:
2013 eb = path->nodes[0];
2014 slot = path->slots[0];
2015 item_size = btrfs_item_size_nr(eb, slot);
2016 ptr = btrfs_item_ptr_offset(eb, slot);
2017 ptr_end = ptr + item_size;
Chris Masond3977122009-01-05 21:25:51 -05002018 while (ptr < ptr_end) {
Chris Masone02119d2008-09-05 16:13:11 -04002019 di = (struct btrfs_dir_item *)ptr;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002020 if (verify_dir_item(fs_info, eb, di)) {
Josef Bacik22a94d42011-03-16 16:47:17 -04002021 ret = -EIO;
2022 goto out;
2023 }
2024
Chris Masone02119d2008-09-05 16:13:11 -04002025 name_len = btrfs_dir_name_len(eb, di);
2026 name = kmalloc(name_len, GFP_NOFS);
2027 if (!name) {
2028 ret = -ENOMEM;
2029 goto out;
2030 }
2031 read_extent_buffer(eb, name, (unsigned long)(di + 1),
2032 name_len);
2033 log_di = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04002034 if (log && dir_key->type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002035 log_di = btrfs_lookup_dir_item(trans, log, log_path,
2036 dir_key->objectid,
2037 name, name_len, 0);
Chris Mason12fcfd22009-03-24 10:24:20 -04002038 } else if (log && dir_key->type == BTRFS_DIR_INDEX_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002039 log_di = btrfs_lookup_dir_index_item(trans, log,
2040 log_path,
2041 dir_key->objectid,
2042 dir_key->offset,
2043 name, name_len, 0);
2044 }
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002045 if (!log_di || (IS_ERR(log_di) && PTR_ERR(log_di) == -ENOENT)) {
Chris Masone02119d2008-09-05 16:13:11 -04002046 btrfs_dir_item_key_to_cpu(eb, di, &location);
David Sterbab3b4aa72011-04-21 01:20:15 +02002047 btrfs_release_path(path);
2048 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002049 inode = read_one_inode(root, location.objectid);
Tsutomu Itohc00e9492011-04-28 09:10:23 +00002050 if (!inode) {
2051 kfree(name);
2052 return -EIO;
2053 }
Chris Masone02119d2008-09-05 16:13:11 -04002054
2055 ret = link_to_fixup_dir(trans, root,
2056 path, location.objectid);
Josef Bacik36508602013-04-25 16:23:32 -04002057 if (ret) {
2058 kfree(name);
2059 iput(inode);
2060 goto out;
2061 }
2062
Zach Brown8b558c52013-10-16 12:10:34 -07002063 inc_nlink(inode);
Nikolay Borisov4ec59342017-01-18 00:31:44 +02002064 ret = btrfs_unlink_inode(trans, root, BTRFS_I(dir),
2065 BTRFS_I(inode), name, name_len);
Josef Bacik36508602013-04-25 16:23:32 -04002066 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002067 ret = btrfs_run_delayed_items(trans, fs_info);
Chris Masone02119d2008-09-05 16:13:11 -04002068 kfree(name);
2069 iput(inode);
Josef Bacik36508602013-04-25 16:23:32 -04002070 if (ret)
2071 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002072
2073 /* there might still be more names under this key
2074 * check and repeat if required
2075 */
2076 ret = btrfs_search_slot(NULL, root, dir_key, path,
2077 0, 0);
2078 if (ret == 0)
2079 goto again;
2080 ret = 0;
2081 goto out;
Filipe David Borba Manana269d0402013-10-28 17:39:21 +00002082 } else if (IS_ERR(log_di)) {
2083 kfree(name);
2084 return PTR_ERR(log_di);
Chris Masone02119d2008-09-05 16:13:11 -04002085 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002086 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002087 kfree(name);
2088
2089 ptr = (unsigned long)(di + 1);
2090 ptr += name_len;
2091 }
2092 ret = 0;
2093out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002094 btrfs_release_path(path);
2095 btrfs_release_path(log_path);
Chris Masone02119d2008-09-05 16:13:11 -04002096 return ret;
2097}
2098
Filipe Manana4f764e52015-02-23 19:53:35 +00002099static int replay_xattr_deletes(struct btrfs_trans_handle *trans,
2100 struct btrfs_root *root,
2101 struct btrfs_root *log,
2102 struct btrfs_path *path,
2103 const u64 ino)
2104{
2105 struct btrfs_key search_key;
2106 struct btrfs_path *log_path;
2107 int i;
2108 int nritems;
2109 int ret;
2110
2111 log_path = btrfs_alloc_path();
2112 if (!log_path)
2113 return -ENOMEM;
2114
2115 search_key.objectid = ino;
2116 search_key.type = BTRFS_XATTR_ITEM_KEY;
2117 search_key.offset = 0;
2118again:
2119 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
2120 if (ret < 0)
2121 goto out;
2122process_leaf:
2123 nritems = btrfs_header_nritems(path->nodes[0]);
2124 for (i = path->slots[0]; i < nritems; i++) {
2125 struct btrfs_key key;
2126 struct btrfs_dir_item *di;
2127 struct btrfs_dir_item *log_di;
2128 u32 total_size;
2129 u32 cur;
2130
2131 btrfs_item_key_to_cpu(path->nodes[0], &key, i);
2132 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY) {
2133 ret = 0;
2134 goto out;
2135 }
2136
2137 di = btrfs_item_ptr(path->nodes[0], i, struct btrfs_dir_item);
2138 total_size = btrfs_item_size_nr(path->nodes[0], i);
2139 cur = 0;
2140 while (cur < total_size) {
2141 u16 name_len = btrfs_dir_name_len(path->nodes[0], di);
2142 u16 data_len = btrfs_dir_data_len(path->nodes[0], di);
2143 u32 this_len = sizeof(*di) + name_len + data_len;
2144 char *name;
2145
2146 name = kmalloc(name_len, GFP_NOFS);
2147 if (!name) {
2148 ret = -ENOMEM;
2149 goto out;
2150 }
2151 read_extent_buffer(path->nodes[0], name,
2152 (unsigned long)(di + 1), name_len);
2153
2154 log_di = btrfs_lookup_xattr(NULL, log, log_path, ino,
2155 name, name_len, 0);
2156 btrfs_release_path(log_path);
2157 if (!log_di) {
2158 /* Doesn't exist in log tree, so delete it. */
2159 btrfs_release_path(path);
2160 di = btrfs_lookup_xattr(trans, root, path, ino,
2161 name, name_len, -1);
2162 kfree(name);
2163 if (IS_ERR(di)) {
2164 ret = PTR_ERR(di);
2165 goto out;
2166 }
2167 ASSERT(di);
2168 ret = btrfs_delete_one_dir_name(trans, root,
2169 path, di);
2170 if (ret)
2171 goto out;
2172 btrfs_release_path(path);
2173 search_key = key;
2174 goto again;
2175 }
2176 kfree(name);
2177 if (IS_ERR(log_di)) {
2178 ret = PTR_ERR(log_di);
2179 goto out;
2180 }
2181 cur += this_len;
2182 di = (struct btrfs_dir_item *)((char *)di + this_len);
2183 }
2184 }
2185 ret = btrfs_next_leaf(root, path);
2186 if (ret > 0)
2187 ret = 0;
2188 else if (ret == 0)
2189 goto process_leaf;
2190out:
2191 btrfs_free_path(log_path);
2192 btrfs_release_path(path);
2193 return ret;
2194}
2195
2196
Chris Masone02119d2008-09-05 16:13:11 -04002197/*
2198 * deletion replay happens before we copy any new directory items
2199 * out of the log or out of backreferences from inodes. It
2200 * scans the log to find ranges of keys that log is authoritative for,
2201 * and then scans the directory to find items in those ranges that are
2202 * not present in the log.
2203 *
2204 * Anything we don't find in the log is unlinked and removed from the
2205 * directory.
2206 */
2207static noinline int replay_dir_deletes(struct btrfs_trans_handle *trans,
2208 struct btrfs_root *root,
2209 struct btrfs_root *log,
2210 struct btrfs_path *path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002211 u64 dirid, int del_all)
Chris Masone02119d2008-09-05 16:13:11 -04002212{
2213 u64 range_start;
2214 u64 range_end;
2215 int key_type = BTRFS_DIR_LOG_ITEM_KEY;
2216 int ret = 0;
2217 struct btrfs_key dir_key;
2218 struct btrfs_key found_key;
2219 struct btrfs_path *log_path;
2220 struct inode *dir;
2221
2222 dir_key.objectid = dirid;
2223 dir_key.type = BTRFS_DIR_ITEM_KEY;
2224 log_path = btrfs_alloc_path();
2225 if (!log_path)
2226 return -ENOMEM;
2227
2228 dir = read_one_inode(root, dirid);
2229 /* it isn't an error if the inode isn't there, that can happen
2230 * because we replay the deletes before we copy in the inode item
2231 * from the log
2232 */
2233 if (!dir) {
2234 btrfs_free_path(log_path);
2235 return 0;
2236 }
2237again:
2238 range_start = 0;
2239 range_end = 0;
Chris Masond3977122009-01-05 21:25:51 -05002240 while (1) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002241 if (del_all)
2242 range_end = (u64)-1;
2243 else {
2244 ret = find_dir_range(log, path, dirid, key_type,
2245 &range_start, &range_end);
2246 if (ret != 0)
2247 break;
2248 }
Chris Masone02119d2008-09-05 16:13:11 -04002249
2250 dir_key.offset = range_start;
Chris Masond3977122009-01-05 21:25:51 -05002251 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002252 int nritems;
2253 ret = btrfs_search_slot(NULL, root, &dir_key, path,
2254 0, 0);
2255 if (ret < 0)
2256 goto out;
2257
2258 nritems = btrfs_header_nritems(path->nodes[0]);
2259 if (path->slots[0] >= nritems) {
2260 ret = btrfs_next_leaf(root, path);
2261 if (ret)
2262 break;
2263 }
2264 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2265 path->slots[0]);
2266 if (found_key.objectid != dirid ||
2267 found_key.type != dir_key.type)
2268 goto next_type;
2269
2270 if (found_key.offset > range_end)
2271 break;
2272
2273 ret = check_item_in_log(trans, root, log, path,
Chris Mason12fcfd22009-03-24 10:24:20 -04002274 log_path, dir,
2275 &found_key);
Josef Bacik36508602013-04-25 16:23:32 -04002276 if (ret)
2277 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002278 if (found_key.offset == (u64)-1)
2279 break;
2280 dir_key.offset = found_key.offset + 1;
2281 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002282 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002283 if (range_end == (u64)-1)
2284 break;
2285 range_start = range_end + 1;
2286 }
2287
2288next_type:
2289 ret = 0;
2290 if (key_type == BTRFS_DIR_LOG_ITEM_KEY) {
2291 key_type = BTRFS_DIR_LOG_INDEX_KEY;
2292 dir_key.type = BTRFS_DIR_INDEX_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02002293 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002294 goto again;
2295 }
2296out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002297 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002298 btrfs_free_path(log_path);
2299 iput(dir);
2300 return ret;
2301}
2302
2303/*
2304 * the process_func used to replay items from the log tree. This
2305 * gets called in two different stages. The first stage just looks
2306 * for inodes and makes sure they are all copied into the subvolume.
2307 *
2308 * The second stage copies all the other item types from the log into
2309 * the subvolume. The two stage approach is slower, but gets rid of
2310 * lots of complexity around inodes referencing other inodes that exist
2311 * only in the log (references come from either directory items or inode
2312 * back refs).
2313 */
2314static int replay_one_buffer(struct btrfs_root *log, struct extent_buffer *eb,
2315 struct walk_control *wc, u64 gen)
2316{
2317 int nritems;
2318 struct btrfs_path *path;
2319 struct btrfs_root *root = wc->replay_dest;
2320 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002321 int level;
2322 int i;
2323 int ret;
2324
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002325 ret = btrfs_read_buffer(eb, gen);
2326 if (ret)
2327 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002328
2329 level = btrfs_header_level(eb);
2330
2331 if (level != 0)
2332 return 0;
2333
2334 path = btrfs_alloc_path();
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002335 if (!path)
2336 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002337
2338 nritems = btrfs_header_nritems(eb);
2339 for (i = 0; i < nritems; i++) {
2340 btrfs_item_key_to_cpu(eb, &key, i);
Chris Masone02119d2008-09-05 16:13:11 -04002341
2342 /* inode keys are done during the first stage */
2343 if (key.type == BTRFS_INODE_ITEM_KEY &&
2344 wc->stage == LOG_WALK_REPLAY_INODES) {
Chris Masone02119d2008-09-05 16:13:11 -04002345 struct btrfs_inode_item *inode_item;
2346 u32 mode;
2347
2348 inode_item = btrfs_item_ptr(eb, i,
2349 struct btrfs_inode_item);
Filipe Manana4f764e52015-02-23 19:53:35 +00002350 ret = replay_xattr_deletes(wc->trans, root, log,
2351 path, key.objectid);
2352 if (ret)
2353 break;
Chris Masone02119d2008-09-05 16:13:11 -04002354 mode = btrfs_inode_mode(eb, inode_item);
2355 if (S_ISDIR(mode)) {
2356 ret = replay_dir_deletes(wc->trans,
Chris Mason12fcfd22009-03-24 10:24:20 -04002357 root, log, path, key.objectid, 0);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002358 if (ret)
2359 break;
Chris Masone02119d2008-09-05 16:13:11 -04002360 }
2361 ret = overwrite_item(wc->trans, root, path,
2362 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002363 if (ret)
2364 break;
Chris Masone02119d2008-09-05 16:13:11 -04002365
Yan, Zhengc71bf092009-11-12 09:34:40 +00002366 /* for regular files, make sure corresponding
Nicholas D Steeves01327612016-05-19 21:18:45 -04002367 * orphan item exist. extents past the new EOF
Yan, Zhengc71bf092009-11-12 09:34:40 +00002368 * will be truncated later by orphan cleanup.
Chris Masone02119d2008-09-05 16:13:11 -04002369 */
2370 if (S_ISREG(mode)) {
Yan, Zhengc71bf092009-11-12 09:34:40 +00002371 ret = insert_orphan_item(wc->trans, root,
2372 key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002373 if (ret)
2374 break;
Chris Masone02119d2008-09-05 16:13:11 -04002375 }
Yan, Zhengc71bf092009-11-12 09:34:40 +00002376
Chris Masone02119d2008-09-05 16:13:11 -04002377 ret = link_to_fixup_dir(wc->trans, root,
2378 path, key.objectid);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002379 if (ret)
2380 break;
Chris Masone02119d2008-09-05 16:13:11 -04002381 }
Josef Bacikdd8e7212013-09-11 11:57:23 -04002382
2383 if (key.type == BTRFS_DIR_INDEX_KEY &&
2384 wc->stage == LOG_WALK_REPLAY_DIR_INDEX) {
2385 ret = replay_one_dir_item(wc->trans, root, path,
2386 eb, i, &key);
2387 if (ret)
2388 break;
2389 }
2390
Chris Masone02119d2008-09-05 16:13:11 -04002391 if (wc->stage < LOG_WALK_REPLAY_ALL)
2392 continue;
2393
2394 /* these keys are simply copied */
2395 if (key.type == BTRFS_XATTR_ITEM_KEY) {
2396 ret = overwrite_item(wc->trans, root, path,
2397 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002398 if (ret)
2399 break;
Liu Bo2da1c662013-05-26 13:50:29 +00002400 } else if (key.type == BTRFS_INODE_REF_KEY ||
2401 key.type == BTRFS_INODE_EXTREF_KEY) {
Mark Fashehf1863732012-08-08 11:32:27 -07002402 ret = add_inode_ref(wc->trans, root, log, path,
2403 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002404 if (ret && ret != -ENOENT)
2405 break;
2406 ret = 0;
Chris Masone02119d2008-09-05 16:13:11 -04002407 } else if (key.type == BTRFS_EXTENT_DATA_KEY) {
2408 ret = replay_one_extent(wc->trans, root, path,
2409 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002410 if (ret)
2411 break;
Josef Bacikdd8e7212013-09-11 11:57:23 -04002412 } else if (key.type == BTRFS_DIR_ITEM_KEY) {
Chris Masone02119d2008-09-05 16:13:11 -04002413 ret = replay_one_dir_item(wc->trans, root, path,
2414 eb, i, &key);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002415 if (ret)
2416 break;
Chris Masone02119d2008-09-05 16:13:11 -04002417 }
2418 }
2419 btrfs_free_path(path);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002420 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002421}
2422
Chris Masond3977122009-01-05 21:25:51 -05002423static noinline int walk_down_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002424 struct btrfs_root *root,
2425 struct btrfs_path *path, int *level,
2426 struct walk_control *wc)
2427{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002428 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002429 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002430 u64 bytenr;
2431 u64 ptr_gen;
2432 struct extent_buffer *next;
2433 struct extent_buffer *cur;
2434 struct extent_buffer *parent;
2435 u32 blocksize;
2436 int ret = 0;
2437
2438 WARN_ON(*level < 0);
2439 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2440
Chris Masond3977122009-01-05 21:25:51 -05002441 while (*level > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002442 WARN_ON(*level < 0);
2443 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2444 cur = path->nodes[*level];
2445
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05302446 WARN_ON(btrfs_header_level(cur) != *level);
Chris Masone02119d2008-09-05 16:13:11 -04002447
2448 if (path->slots[*level] >=
2449 btrfs_header_nritems(cur))
2450 break;
2451
2452 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
2453 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002454 blocksize = fs_info->nodesize;
Chris Masone02119d2008-09-05 16:13:11 -04002455
2456 parent = path->nodes[*level];
2457 root_owner = btrfs_header_owner(parent);
Chris Masone02119d2008-09-05 16:13:11 -04002458
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002459 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07002460 if (IS_ERR(next))
2461 return PTR_ERR(next);
Chris Masone02119d2008-09-05 16:13:11 -04002462
Chris Masone02119d2008-09-05 16:13:11 -04002463 if (*level == 1) {
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002464 ret = wc->process_func(root, next, wc, ptr_gen);
Josef Bacikb50c6e22013-04-25 15:55:30 -04002465 if (ret) {
2466 free_extent_buffer(next);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002467 return ret;
Josef Bacikb50c6e22013-04-25 15:55:30 -04002468 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002469
Chris Masone02119d2008-09-05 16:13:11 -04002470 path->slots[*level]++;
2471 if (wc->free) {
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002472 ret = btrfs_read_buffer(next, ptr_gen);
2473 if (ret) {
2474 free_extent_buffer(next);
2475 return ret;
2476 }
Chris Masone02119d2008-09-05 16:13:11 -04002477
Josef Bacik681ae502013-10-07 15:11:00 -04002478 if (trans) {
2479 btrfs_tree_lock(next);
2480 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002481 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002482 btrfs_wait_tree_block_writeback(next);
2483 btrfs_tree_unlock(next);
2484 }
Chris Masone02119d2008-09-05 16:13:11 -04002485
Chris Masone02119d2008-09-05 16:13:11 -04002486 WARN_ON(root_owner !=
2487 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002488 ret = btrfs_free_and_pin_reserved_extent(
2489 fs_info, bytenr,
2490 blocksize);
Josef Bacik36508602013-04-25 16:23:32 -04002491 if (ret) {
2492 free_extent_buffer(next);
2493 return ret;
2494 }
Chris Masone02119d2008-09-05 16:13:11 -04002495 }
2496 free_extent_buffer(next);
2497 continue;
2498 }
Tsutomu Itoh018642a2012-05-29 18:10:13 +09002499 ret = btrfs_read_buffer(next, ptr_gen);
2500 if (ret) {
2501 free_extent_buffer(next);
2502 return ret;
2503 }
Chris Masone02119d2008-09-05 16:13:11 -04002504
2505 WARN_ON(*level <= 0);
2506 if (path->nodes[*level-1])
2507 free_extent_buffer(path->nodes[*level-1]);
2508 path->nodes[*level-1] = next;
2509 *level = btrfs_header_level(next);
2510 path->slots[*level] = 0;
2511 cond_resched();
2512 }
2513 WARN_ON(*level < 0);
2514 WARN_ON(*level >= BTRFS_MAX_LEVEL);
2515
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002516 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
Chris Masone02119d2008-09-05 16:13:11 -04002517
2518 cond_resched();
2519 return 0;
2520}
2521
Chris Masond3977122009-01-05 21:25:51 -05002522static noinline int walk_up_log_tree(struct btrfs_trans_handle *trans,
Chris Masone02119d2008-09-05 16:13:11 -04002523 struct btrfs_root *root,
2524 struct btrfs_path *path, int *level,
2525 struct walk_control *wc)
2526{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002527 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002528 u64 root_owner;
Chris Masone02119d2008-09-05 16:13:11 -04002529 int i;
2530 int slot;
2531 int ret;
2532
Chris Masond3977122009-01-05 21:25:51 -05002533 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
Chris Masone02119d2008-09-05 16:13:11 -04002534 slot = path->slots[i];
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002535 if (slot + 1 < btrfs_header_nritems(path->nodes[i])) {
Chris Masone02119d2008-09-05 16:13:11 -04002536 path->slots[i]++;
2537 *level = i;
2538 WARN_ON(*level == 0);
2539 return 0;
2540 } else {
Zheng Yan31840ae2008-09-23 13:14:14 -04002541 struct extent_buffer *parent;
2542 if (path->nodes[*level] == root->node)
2543 parent = path->nodes[*level];
2544 else
2545 parent = path->nodes[*level + 1];
2546
2547 root_owner = btrfs_header_owner(parent);
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002548 ret = wc->process_func(root, path->nodes[*level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002549 btrfs_header_generation(path->nodes[*level]));
Mark Fasheh1e5063d2011-07-12 10:46:06 -07002550 if (ret)
2551 return ret;
2552
Chris Masone02119d2008-09-05 16:13:11 -04002553 if (wc->free) {
2554 struct extent_buffer *next;
2555
2556 next = path->nodes[*level];
2557
Josef Bacik681ae502013-10-07 15:11:00 -04002558 if (trans) {
2559 btrfs_tree_lock(next);
2560 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002561 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002562 btrfs_wait_tree_block_writeback(next);
2563 btrfs_tree_unlock(next);
2564 }
Chris Masone02119d2008-09-05 16:13:11 -04002565
Chris Masone02119d2008-09-05 16:13:11 -04002566 WARN_ON(root_owner != BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002567 ret = btrfs_free_and_pin_reserved_extent(
2568 fs_info,
Chris Masone02119d2008-09-05 16:13:11 -04002569 path->nodes[*level]->start,
Chris Masond00aff02008-09-11 15:54:42 -04002570 path->nodes[*level]->len);
Josef Bacik36508602013-04-25 16:23:32 -04002571 if (ret)
2572 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04002573 }
2574 free_extent_buffer(path->nodes[*level]);
2575 path->nodes[*level] = NULL;
2576 *level = i + 1;
2577 }
2578 }
2579 return 1;
2580}
2581
2582/*
2583 * drop the reference count on the tree rooted at 'snap'. This traverses
2584 * the tree freeing any blocks that have a ref count of zero after being
2585 * decremented.
2586 */
2587static int walk_log_tree(struct btrfs_trans_handle *trans,
2588 struct btrfs_root *log, struct walk_control *wc)
2589{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002590 struct btrfs_fs_info *fs_info = log->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002591 int ret = 0;
2592 int wret;
2593 int level;
2594 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -04002595 int orig_level;
2596
2597 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00002598 if (!path)
2599 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04002600
2601 level = btrfs_header_level(log->node);
2602 orig_level = level;
2603 path->nodes[level] = log->node;
2604 extent_buffer_get(log->node);
2605 path->slots[level] = 0;
2606
Chris Masond3977122009-01-05 21:25:51 -05002607 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04002608 wret = walk_down_log_tree(trans, log, path, &level, wc);
2609 if (wret > 0)
2610 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002611 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002612 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002613 goto out;
2614 }
Chris Masone02119d2008-09-05 16:13:11 -04002615
2616 wret = walk_up_log_tree(trans, log, path, &level, wc);
2617 if (wret > 0)
2618 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002619 if (wret < 0) {
Chris Masone02119d2008-09-05 16:13:11 -04002620 ret = wret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002621 goto out;
2622 }
Chris Masone02119d2008-09-05 16:13:11 -04002623 }
2624
2625 /* was the root node processed? if not, catch it here */
2626 if (path->nodes[orig_level]) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002627 ret = wc->process_func(log, path->nodes[orig_level], wc,
Chris Masone02119d2008-09-05 16:13:11 -04002628 btrfs_header_generation(path->nodes[orig_level]));
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002629 if (ret)
2630 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002631 if (wc->free) {
2632 struct extent_buffer *next;
2633
2634 next = path->nodes[orig_level];
2635
Josef Bacik681ae502013-10-07 15:11:00 -04002636 if (trans) {
2637 btrfs_tree_lock(next);
2638 btrfs_set_lock_blocking(next);
David Sterba7c302b42017-02-10 18:47:57 +01002639 clean_tree_block(fs_info, next);
Josef Bacik681ae502013-10-07 15:11:00 -04002640 btrfs_wait_tree_block_writeback(next);
2641 btrfs_tree_unlock(next);
2642 }
Chris Masone02119d2008-09-05 16:13:11 -04002643
Chris Masone02119d2008-09-05 16:13:11 -04002644 WARN_ON(log->root_key.objectid !=
2645 BTRFS_TREE_LOG_OBJECTID);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002646 ret = btrfs_free_and_pin_reserved_extent(fs_info,
2647 next->start, next->len);
Josef Bacik36508602013-04-25 16:23:32 -04002648 if (ret)
2649 goto out;
Chris Masone02119d2008-09-05 16:13:11 -04002650 }
2651 }
2652
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002653out:
Chris Masone02119d2008-09-05 16:13:11 -04002654 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04002655 return ret;
2656}
2657
Yan Zheng7237f182009-01-21 12:54:03 -05002658/*
2659 * helper function to update the item for a given subvolumes log root
2660 * in the tree of log roots
2661 */
2662static int update_log_root(struct btrfs_trans_handle *trans,
2663 struct btrfs_root *log)
2664{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002665 struct btrfs_fs_info *fs_info = log->fs_info;
Yan Zheng7237f182009-01-21 12:54:03 -05002666 int ret;
2667
2668 if (log->log_transid == 1) {
2669 /* insert root item on the first sync */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002670 ret = btrfs_insert_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002671 &log->root_key, &log->root_item);
2672 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002673 ret = btrfs_update_root(trans, fs_info->log_root_tree,
Yan Zheng7237f182009-01-21 12:54:03 -05002674 &log->root_key, &log->root_item);
2675 }
2676 return ret;
2677}
2678
Zhaolei60d53eb2015-08-17 18:44:46 +08002679static void wait_log_commit(struct btrfs_root *root, int transid)
Chris Masone02119d2008-09-05 16:13:11 -04002680{
2681 DEFINE_WAIT(wait);
Yan Zheng7237f182009-01-21 12:54:03 -05002682 int index = transid % 2;
Chris Masone02119d2008-09-05 16:13:11 -04002683
Yan Zheng7237f182009-01-21 12:54:03 -05002684 /*
2685 * we only allow two pending log transactions at a time,
2686 * so we know that if ours is more than 2 older than the
2687 * current transaction, we're done
2688 */
Chris Masone02119d2008-09-05 16:13:11 -04002689 do {
Yan Zheng7237f182009-01-21 12:54:03 -05002690 prepare_to_wait(&root->log_commit_wait[index],
2691 &wait, TASK_UNINTERRUPTIBLE);
2692 mutex_unlock(&root->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04002693
Miao Xied1433de2014-02-20 18:08:59 +08002694 if (root->log_transid_committed < transid &&
Yan Zheng7237f182009-01-21 12:54:03 -05002695 atomic_read(&root->log_commit[index]))
Chris Masone02119d2008-09-05 16:13:11 -04002696 schedule();
Chris Mason12fcfd22009-03-24 10:24:20 -04002697
Yan Zheng7237f182009-01-21 12:54:03 -05002698 finish_wait(&root->log_commit_wait[index], &wait);
2699 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002700 } while (root->log_transid_committed < transid &&
Yan Zheng7237f182009-01-21 12:54:03 -05002701 atomic_read(&root->log_commit[index]));
Yan Zheng7237f182009-01-21 12:54:03 -05002702}
2703
Zhaolei60d53eb2015-08-17 18:44:46 +08002704static void wait_for_writer(struct btrfs_root *root)
Yan Zheng7237f182009-01-21 12:54:03 -05002705{
2706 DEFINE_WAIT(wait);
Miao Xie8b050d32014-02-20 18:08:58 +08002707
2708 while (atomic_read(&root->log_writers)) {
Yan Zheng7237f182009-01-21 12:54:03 -05002709 prepare_to_wait(&root->log_writer_wait,
2710 &wait, TASK_UNINTERRUPTIBLE);
2711 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002712 if (atomic_read(&root->log_writers))
Yan Zheng7237f182009-01-21 12:54:03 -05002713 schedule();
Yan Zheng7237f182009-01-21 12:54:03 -05002714 finish_wait(&root->log_writer_wait, &wait);
Filipe Manana575849e2015-02-11 11:12:39 +00002715 mutex_lock(&root->log_mutex);
Yan Zheng7237f182009-01-21 12:54:03 -05002716 }
Chris Masone02119d2008-09-05 16:13:11 -04002717}
2718
Miao Xie8b050d32014-02-20 18:08:58 +08002719static inline void btrfs_remove_log_ctx(struct btrfs_root *root,
2720 struct btrfs_log_ctx *ctx)
2721{
2722 if (!ctx)
2723 return;
2724
2725 mutex_lock(&root->log_mutex);
2726 list_del_init(&ctx->list);
2727 mutex_unlock(&root->log_mutex);
2728}
2729
2730/*
2731 * Invoked in log mutex context, or be sure there is no other task which
2732 * can access the list.
2733 */
2734static inline void btrfs_remove_all_log_ctxs(struct btrfs_root *root,
2735 int index, int error)
2736{
2737 struct btrfs_log_ctx *ctx;
Chris Mason570dd452016-10-27 10:42:20 -07002738 struct btrfs_log_ctx *safe;
Miao Xie8b050d32014-02-20 18:08:58 +08002739
Chris Mason570dd452016-10-27 10:42:20 -07002740 list_for_each_entry_safe(ctx, safe, &root->log_ctxs[index], list) {
2741 list_del_init(&ctx->list);
Miao Xie8b050d32014-02-20 18:08:58 +08002742 ctx->log_ret = error;
Chris Mason570dd452016-10-27 10:42:20 -07002743 }
Miao Xie8b050d32014-02-20 18:08:58 +08002744
2745 INIT_LIST_HEAD(&root->log_ctxs[index]);
2746}
2747
Chris Masone02119d2008-09-05 16:13:11 -04002748/*
2749 * btrfs_sync_log does sends a given tree log down to the disk and
2750 * updates the super blocks to record it. When this call is done,
Chris Mason12fcfd22009-03-24 10:24:20 -04002751 * you know that any inodes previously logged are safely on disk only
2752 * if it returns 0.
2753 *
2754 * Any other return value means you need to call btrfs_commit_transaction.
2755 * Some of the edge cases for fsyncing directories that have had unlinks
2756 * or renames done in the past mean that sometimes the only safe
2757 * fsync is to commit the whole FS. When btrfs_sync_log returns -EAGAIN,
2758 * that has happened.
Chris Masone02119d2008-09-05 16:13:11 -04002759 */
2760int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08002761 struct btrfs_root *root, struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04002762{
Yan Zheng7237f182009-01-21 12:54:03 -05002763 int index1;
2764 int index2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002765 int mark;
Chris Masone02119d2008-09-05 16:13:11 -04002766 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002767 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04002768 struct btrfs_root *log = root->log_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002769 struct btrfs_root *log_root_tree = fs_info->log_root_tree;
Miao Xiebb14a592014-02-20 18:08:56 +08002770 int log_transid = 0;
Miao Xie8b050d32014-02-20 18:08:58 +08002771 struct btrfs_log_ctx root_log_ctx;
Miao Xiec6adc9c2013-05-28 10:05:39 +00002772 struct blk_plug plug;
Chris Masone02119d2008-09-05 16:13:11 -04002773
Yan Zheng7237f182009-01-21 12:54:03 -05002774 mutex_lock(&root->log_mutex);
Miao Xied1433de2014-02-20 18:08:59 +08002775 log_transid = ctx->log_transid;
2776 if (root->log_transid_committed >= log_transid) {
Yan Zheng7237f182009-01-21 12:54:03 -05002777 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002778 return ctx->log_ret;
Chris Masone02119d2008-09-05 16:13:11 -04002779 }
Miao Xied1433de2014-02-20 18:08:59 +08002780
2781 index1 = log_transid % 2;
2782 if (atomic_read(&root->log_commit[index1])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08002783 wait_log_commit(root, log_transid);
Miao Xied1433de2014-02-20 18:08:59 +08002784 mutex_unlock(&root->log_mutex);
2785 return ctx->log_ret;
2786 }
2787 ASSERT(log_transid == root->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002788 atomic_set(&root->log_commit[index1], 1);
2789
2790 /* wait for previous tree log sync to complete */
2791 if (atomic_read(&root->log_commit[(index1 + 1) % 2]))
Zhaolei60d53eb2015-08-17 18:44:46 +08002792 wait_log_commit(root, log_transid - 1);
Miao Xie48cab2e2014-02-20 18:08:52 +08002793
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002794 while (1) {
Miao Xie2ecb7922012-09-06 04:04:27 -06002795 int batch = atomic_read(&root->log_batch);
Chris Masoncd354ad2011-10-20 15:45:37 -04002796 /* when we're on an ssd, just kick the log commit out */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002797 if (!btrfs_test_opt(fs_info, SSD) &&
Miao Xie27cdeb72014-04-02 19:51:05 +08002798 test_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state)) {
Yan, Zheng86df7eb2009-10-14 09:24:59 -04002799 mutex_unlock(&root->log_mutex);
2800 schedule_timeout_uninterruptible(1);
2801 mutex_lock(&root->log_mutex);
2802 }
Zhaolei60d53eb2015-08-17 18:44:46 +08002803 wait_for_writer(root);
Miao Xie2ecb7922012-09-06 04:04:27 -06002804 if (batch == atomic_read(&root->log_batch))
Chris Masone02119d2008-09-05 16:13:11 -04002805 break;
2806 }
Chris Masond0c803c2008-09-11 16:17:57 -04002807
Chris Mason12fcfd22009-03-24 10:24:20 -04002808 /* bail out if we need to do a full commit */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002809 if (btrfs_need_log_full_commit(fs_info, trans)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04002810 ret = -EAGAIN;
Josef Bacik2ab28f32012-10-12 15:27:49 -04002811 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002812 mutex_unlock(&root->log_mutex);
2813 goto out;
2814 }
2815
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002816 if (log_transid % 2 == 0)
2817 mark = EXTENT_DIRTY;
2818 else
2819 mark = EXTENT_NEW;
2820
Chris Mason690587d2009-10-13 13:29:19 -04002821 /* we start IO on all the marked extents here, but we don't actually
2822 * wait for them until later.
2823 */
Miao Xiec6adc9c2013-05-28 10:05:39 +00002824 blk_start_plug(&plug);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002825 ret = btrfs_write_marked_extents(fs_info, &log->dirty_log_pages, mark);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002826 if (ret) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002827 blk_finish_plug(&plug);
Jeff Mahoney66642832016-06-10 18:19:25 -04002828 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002829 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002830 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002831 mutex_unlock(&root->log_mutex);
2832 goto out;
2833 }
Yan Zheng7237f182009-01-21 12:54:03 -05002834
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002835 btrfs_set_root_node(&log->root_item, log->node);
Yan Zheng7237f182009-01-21 12:54:03 -05002836
Yan Zheng7237f182009-01-21 12:54:03 -05002837 root->log_transid++;
2838 log->log_transid = root->log_transid;
Josef Bacikff782e02009-10-08 15:30:04 -04002839 root->log_start_pid = 0;
Yan Zheng7237f182009-01-21 12:54:03 -05002840 /*
Yan, Zheng8cef4e12009-11-12 09:33:26 +00002841 * IO has been started, blocks of the log tree have WRITTEN flag set
2842 * in their headers. new modifications of the log will be written to
2843 * new positions. so it's safe to allow log writers to go in.
Yan Zheng7237f182009-01-21 12:54:03 -05002844 */
2845 mutex_unlock(&root->log_mutex);
2846
Filipe Manana28a23592016-08-23 21:13:51 +01002847 btrfs_init_log_ctx(&root_log_ctx, NULL);
Miao Xied1433de2014-02-20 18:08:59 +08002848
Yan Zheng7237f182009-01-21 12:54:03 -05002849 mutex_lock(&log_root_tree->log_mutex);
Miao Xie2ecb7922012-09-06 04:04:27 -06002850 atomic_inc(&log_root_tree->log_batch);
Yan Zheng7237f182009-01-21 12:54:03 -05002851 atomic_inc(&log_root_tree->log_writers);
Miao Xied1433de2014-02-20 18:08:59 +08002852
2853 index2 = log_root_tree->log_transid % 2;
2854 list_add_tail(&root_log_ctx.list, &log_root_tree->log_ctxs[index2]);
2855 root_log_ctx.log_transid = log_root_tree->log_transid;
2856
Yan Zheng7237f182009-01-21 12:54:03 -05002857 mutex_unlock(&log_root_tree->log_mutex);
2858
2859 ret = update_log_root(trans, log);
Yan Zheng7237f182009-01-21 12:54:03 -05002860
2861 mutex_lock(&log_root_tree->log_mutex);
2862 if (atomic_dec_and_test(&log_root_tree->log_writers)) {
David Sterba779adf02015-02-16 19:39:00 +01002863 /*
2864 * Implicit memory barrier after atomic_dec_and_test
2865 */
Yan Zheng7237f182009-01-21 12:54:03 -05002866 if (waitqueue_active(&log_root_tree->log_writer_wait))
2867 wake_up(&log_root_tree->log_writer_wait);
2868 }
2869
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002870 if (ret) {
Miao Xied1433de2014-02-20 18:08:59 +08002871 if (!list_empty(&root_log_ctx.list))
2872 list_del_init(&root_log_ctx.list);
2873
Miao Xiec6adc9c2013-05-28 10:05:39 +00002874 blk_finish_plug(&plug);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002875 btrfs_set_log_full_commit(fs_info, trans);
Miao Xie995946d2014-04-02 19:51:06 +08002876
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002877 if (ret != -ENOSPC) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002878 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002879 mutex_unlock(&log_root_tree->log_mutex);
2880 goto out;
2881 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002882 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002883 btrfs_free_logged_extents(log, log_transid);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04002884 mutex_unlock(&log_root_tree->log_mutex);
2885 ret = -EAGAIN;
2886 goto out;
2887 }
2888
Miao Xied1433de2014-02-20 18:08:59 +08002889 if (log_root_tree->log_transid_committed >= root_log_ctx.log_transid) {
Forrest Liu3da5ab52015-01-30 19:42:12 +08002890 blk_finish_plug(&plug);
Chris Masoncbd60aa2016-09-06 05:37:40 -07002891 list_del_init(&root_log_ctx.list);
Miao Xied1433de2014-02-20 18:08:59 +08002892 mutex_unlock(&log_root_tree->log_mutex);
2893 ret = root_log_ctx.log_ret;
2894 goto out;
2895 }
Miao Xie8b050d32014-02-20 18:08:58 +08002896
Miao Xied1433de2014-02-20 18:08:59 +08002897 index2 = root_log_ctx.log_transid % 2;
Yan Zheng7237f182009-01-21 12:54:03 -05002898 if (atomic_read(&log_root_tree->log_commit[index2])) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002899 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002900 ret = btrfs_wait_tree_log_extents(log, mark);
Josef Bacik50d9aa92014-11-21 14:52:38 -05002901 btrfs_wait_logged_extents(trans, log, log_transid);
Zhaolei60d53eb2015-08-17 18:44:46 +08002902 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08002903 root_log_ctx.log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002904 mutex_unlock(&log_root_tree->log_mutex);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002905 if (!ret)
2906 ret = root_log_ctx.log_ret;
Yan Zheng7237f182009-01-21 12:54:03 -05002907 goto out;
2908 }
Miao Xied1433de2014-02-20 18:08:59 +08002909 ASSERT(root_log_ctx.log_transid == log_root_tree->log_transid);
Yan Zheng7237f182009-01-21 12:54:03 -05002910 atomic_set(&log_root_tree->log_commit[index2], 1);
2911
Chris Mason12fcfd22009-03-24 10:24:20 -04002912 if (atomic_read(&log_root_tree->log_commit[(index2 + 1) % 2])) {
Zhaolei60d53eb2015-08-17 18:44:46 +08002913 wait_log_commit(log_root_tree,
Miao Xied1433de2014-02-20 18:08:59 +08002914 root_log_ctx.log_transid - 1);
Chris Mason12fcfd22009-03-24 10:24:20 -04002915 }
Yan Zheng7237f182009-01-21 12:54:03 -05002916
Zhaolei60d53eb2015-08-17 18:44:46 +08002917 wait_for_writer(log_root_tree);
Chris Mason12fcfd22009-03-24 10:24:20 -04002918
2919 /*
2920 * now that we've moved on to the tree of log tree roots,
2921 * check the full commit flag again
2922 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002923 if (btrfs_need_log_full_commit(fs_info, trans)) {
Miao Xiec6adc9c2013-05-28 10:05:39 +00002924 blk_finish_plug(&plug);
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002925 btrfs_wait_tree_log_extents(log, mark);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002926 btrfs_free_logged_extents(log, log_transid);
Chris Mason12fcfd22009-03-24 10:24:20 -04002927 mutex_unlock(&log_root_tree->log_mutex);
2928 ret = -EAGAIN;
2929 goto out_wake_log_root;
2930 }
Yan Zheng7237f182009-01-21 12:54:03 -05002931
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002932 ret = btrfs_write_marked_extents(fs_info,
Miao Xiec6adc9c2013-05-28 10:05:39 +00002933 &log_root_tree->dirty_log_pages,
2934 EXTENT_DIRTY | EXTENT_NEW);
2935 blk_finish_plug(&plug);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002936 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002937 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04002938 btrfs_abort_transaction(trans, ret);
Josef Bacik2ab28f32012-10-12 15:27:49 -04002939 btrfs_free_logged_extents(log, log_transid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002940 mutex_unlock(&log_root_tree->log_mutex);
2941 goto out_wake_log_root;
2942 }
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002943 ret = btrfs_wait_tree_log_extents(log, mark);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002944 if (!ret)
Jeff Mahoneybf89d382016-09-09 20:42:44 -04002945 ret = btrfs_wait_tree_log_extents(log_root_tree,
2946 EXTENT_NEW | EXTENT_DIRTY);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002947 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002948 btrfs_set_log_full_commit(fs_info, trans);
Filipe Manana5ab5e442014-11-13 16:59:53 +00002949 btrfs_free_logged_extents(log, log_transid);
2950 mutex_unlock(&log_root_tree->log_mutex);
2951 goto out_wake_log_root;
2952 }
Josef Bacik50d9aa92014-11-21 14:52:38 -05002953 btrfs_wait_logged_extents(trans, log, log_transid);
Chris Masone02119d2008-09-05 16:13:11 -04002954
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002955 btrfs_set_super_log_root(fs_info->super_for_commit,
2956 log_root_tree->node->start);
2957 btrfs_set_super_log_root_level(fs_info->super_for_commit,
2958 btrfs_header_level(log_root_tree->node));
Chris Masone02119d2008-09-05 16:13:11 -04002959
Yan Zheng7237f182009-01-21 12:54:03 -05002960 log_root_tree->log_transid++;
Yan Zheng7237f182009-01-21 12:54:03 -05002961 mutex_unlock(&log_root_tree->log_mutex);
2962
2963 /*
2964 * nobody else is going to jump in and write the the ctree
2965 * super here because the log_commit atomic below is protecting
2966 * us. We must be called with a transaction handle pinning
2967 * the running transaction open, so a full commit can't hop
2968 * in and cause problems either.
2969 */
David Sterbaeece6a92017-02-10 19:04:32 +01002970 ret = write_all_supers(fs_info, 1);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002971 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002972 btrfs_set_log_full_commit(fs_info, trans);
Jeff Mahoney66642832016-06-10 18:19:25 -04002973 btrfs_abort_transaction(trans, ret);
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002974 goto out_wake_log_root;
2975 }
Yan Zheng7237f182009-01-21 12:54:03 -05002976
Chris Mason257c62e2009-10-13 13:21:08 -04002977 mutex_lock(&root->log_mutex);
2978 if (root->last_log_commit < log_transid)
2979 root->last_log_commit = log_transid;
2980 mutex_unlock(&root->log_mutex);
2981
Chris Mason12fcfd22009-03-24 10:24:20 -04002982out_wake_log_root:
Chris Mason570dd452016-10-27 10:42:20 -07002983 mutex_lock(&log_root_tree->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08002984 btrfs_remove_all_log_ctxs(log_root_tree, index2, ret);
2985
Miao Xied1433de2014-02-20 18:08:59 +08002986 log_root_tree->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05002987 atomic_set(&log_root_tree->log_commit[index2], 0);
Miao Xied1433de2014-02-20 18:08:59 +08002988 mutex_unlock(&log_root_tree->log_mutex);
2989
David Sterba33a9eca2015-10-10 18:35:10 +02002990 /*
2991 * The barrier before waitqueue_active is implied by mutex_unlock
2992 */
Yan Zheng7237f182009-01-21 12:54:03 -05002993 if (waitqueue_active(&log_root_tree->log_commit_wait[index2]))
2994 wake_up(&log_root_tree->log_commit_wait[index2]);
Chris Masone02119d2008-09-05 16:13:11 -04002995out:
Miao Xied1433de2014-02-20 18:08:59 +08002996 mutex_lock(&root->log_mutex);
Chris Mason570dd452016-10-27 10:42:20 -07002997 btrfs_remove_all_log_ctxs(root, index1, ret);
Miao Xied1433de2014-02-20 18:08:59 +08002998 root->log_transid_committed++;
Yan Zheng7237f182009-01-21 12:54:03 -05002999 atomic_set(&root->log_commit[index1], 0);
Miao Xied1433de2014-02-20 18:08:59 +08003000 mutex_unlock(&root->log_mutex);
Miao Xie8b050d32014-02-20 18:08:58 +08003001
David Sterba33a9eca2015-10-10 18:35:10 +02003002 /*
3003 * The barrier before waitqueue_active is implied by mutex_unlock
3004 */
Yan Zheng7237f182009-01-21 12:54:03 -05003005 if (waitqueue_active(&root->log_commit_wait[index1]))
3006 wake_up(&root->log_commit_wait[index1]);
Chris Masonb31eabd2011-01-31 16:48:24 -05003007 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003008}
3009
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003010static void free_log_tree(struct btrfs_trans_handle *trans,
3011 struct btrfs_root *log)
Chris Masone02119d2008-09-05 16:13:11 -04003012{
3013 int ret;
Chris Masond0c803c2008-09-11 16:17:57 -04003014 u64 start;
3015 u64 end;
Chris Masone02119d2008-09-05 16:13:11 -04003016 struct walk_control wc = {
3017 .free = 1,
3018 .process_func = process_one_buffer
3019 };
3020
Josef Bacik681ae502013-10-07 15:11:00 -04003021 ret = walk_log_tree(trans, log, &wc);
3022 /* I don't think this can happen but just in case */
3023 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003024 btrfs_abort_transaction(trans, ret);
Chris Masone02119d2008-09-05 16:13:11 -04003025
Chris Masond3977122009-01-05 21:25:51 -05003026 while (1) {
Chris Masond0c803c2008-09-11 16:17:57 -04003027 ret = find_first_extent_bit(&log->dirty_log_pages,
Josef Bacike6138872012-09-27 17:07:30 -04003028 0, &start, &end, EXTENT_DIRTY | EXTENT_NEW,
3029 NULL);
Chris Masond0c803c2008-09-11 16:17:57 -04003030 if (ret)
3031 break;
3032
Yan, Zheng8cef4e12009-11-12 09:33:26 +00003033 clear_extent_bits(&log->dirty_log_pages, start, end,
David Sterba91166212016-04-26 23:54:39 +02003034 EXTENT_DIRTY | EXTENT_NEW);
Chris Masond0c803c2008-09-11 16:17:57 -04003035 }
3036
Josef Bacik2ab28f32012-10-12 15:27:49 -04003037 /*
3038 * We may have short-circuited the log tree with the full commit logic
3039 * and left ordered extents on our list, so clear these out to keep us
3040 * from leaking inodes and memory.
3041 */
3042 btrfs_free_logged_extents(log, 0);
3043 btrfs_free_logged_extents(log, 1);
3044
Yan Zheng7237f182009-01-21 12:54:03 -05003045 free_extent_buffer(log->node);
3046 kfree(log);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003047}
3048
3049/*
3050 * free all the extents used by the tree log. This should be called
3051 * at commit time of the full transaction
3052 */
3053int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root)
3054{
3055 if (root->log_root) {
3056 free_log_tree(trans, root->log_root);
3057 root->log_root = NULL;
3058 }
3059 return 0;
3060}
3061
3062int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
3063 struct btrfs_fs_info *fs_info)
3064{
3065 if (fs_info->log_root_tree) {
3066 free_log_tree(trans, fs_info->log_root_tree);
3067 fs_info->log_root_tree = NULL;
3068 }
Chris Masone02119d2008-09-05 16:13:11 -04003069 return 0;
3070}
3071
3072/*
Chris Masone02119d2008-09-05 16:13:11 -04003073 * If both a file and directory are logged, and unlinks or renames are
3074 * mixed in, we have a few interesting corners:
3075 *
3076 * create file X in dir Y
3077 * link file X to X.link in dir Y
3078 * fsync file X
3079 * unlink file X but leave X.link
3080 * fsync dir Y
3081 *
3082 * After a crash we would expect only X.link to exist. But file X
3083 * didn't get fsync'd again so the log has back refs for X and X.link.
3084 *
3085 * We solve this by removing directory entries and inode backrefs from the
3086 * log when a file that was logged in the current transaction is
3087 * unlinked. Any later fsync will include the updated log entries, and
3088 * we'll be able to reconstruct the proper directory items from backrefs.
3089 *
3090 * This optimizations allows us to avoid relogging the entire inode
3091 * or the entire directory.
3092 */
3093int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
3094 struct btrfs_root *root,
3095 const char *name, int name_len,
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003096 struct btrfs_inode *dir, u64 index)
Chris Masone02119d2008-09-05 16:13:11 -04003097{
3098 struct btrfs_root *log;
3099 struct btrfs_dir_item *di;
3100 struct btrfs_path *path;
3101 int ret;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003102 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003103 int bytes_del = 0;
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003104 u64 dir_ino = btrfs_ino(dir);
Chris Masone02119d2008-09-05 16:13:11 -04003105
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003106 if (dir->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003107 return 0;
3108
Chris Masone02119d2008-09-05 16:13:11 -04003109 ret = join_running_log_trans(root);
3110 if (ret)
3111 return 0;
3112
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003113 mutex_lock(&dir->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003114
3115 log = root->log_root;
3116 path = btrfs_alloc_path();
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003117 if (!path) {
3118 err = -ENOMEM;
3119 goto out_unlock;
3120 }
liubo2a29edc2011-01-26 06:22:08 +00003121
Li Zefan33345d012011-04-20 10:31:50 +08003122 di = btrfs_lookup_dir_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003123 name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003124 if (IS_ERR(di)) {
3125 err = PTR_ERR(di);
3126 goto fail;
3127 }
3128 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003129 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3130 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003131 if (ret) {
3132 err = ret;
3133 goto fail;
3134 }
Chris Masone02119d2008-09-05 16:13:11 -04003135 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003136 btrfs_release_path(path);
Li Zefan33345d012011-04-20 10:31:50 +08003137 di = btrfs_lookup_dir_index_item(trans, log, path, dir_ino,
Chris Masone02119d2008-09-05 16:13:11 -04003138 index, name, name_len, -1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003139 if (IS_ERR(di)) {
3140 err = PTR_ERR(di);
3141 goto fail;
3142 }
3143 if (di) {
Chris Masone02119d2008-09-05 16:13:11 -04003144 ret = btrfs_delete_one_dir_name(trans, log, path, di);
3145 bytes_del += name_len;
Josef Bacik36508602013-04-25 16:23:32 -04003146 if (ret) {
3147 err = ret;
3148 goto fail;
3149 }
Chris Masone02119d2008-09-05 16:13:11 -04003150 }
3151
3152 /* update the directory size in the log to reflect the names
3153 * we have removed
3154 */
3155 if (bytes_del) {
3156 struct btrfs_key key;
3157
Li Zefan33345d012011-04-20 10:31:50 +08003158 key.objectid = dir_ino;
Chris Masone02119d2008-09-05 16:13:11 -04003159 key.offset = 0;
3160 key.type = BTRFS_INODE_ITEM_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02003161 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003162
3163 ret = btrfs_search_slot(trans, log, &key, path, 0, 1);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003164 if (ret < 0) {
3165 err = ret;
3166 goto fail;
3167 }
Chris Masone02119d2008-09-05 16:13:11 -04003168 if (ret == 0) {
3169 struct btrfs_inode_item *item;
3170 u64 i_size;
3171
3172 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3173 struct btrfs_inode_item);
3174 i_size = btrfs_inode_size(path->nodes[0], item);
3175 if (i_size > bytes_del)
3176 i_size -= bytes_del;
3177 else
3178 i_size = 0;
3179 btrfs_set_inode_size(path->nodes[0], item, i_size);
3180 btrfs_mark_buffer_dirty(path->nodes[0]);
3181 } else
3182 ret = 0;
David Sterbab3b4aa72011-04-21 01:20:15 +02003183 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003184 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003185fail:
Chris Masone02119d2008-09-05 16:13:11 -04003186 btrfs_free_path(path);
Tsutomu Itoha62f44a2011-04-25 19:43:51 -04003187out_unlock:
Nikolay Borisov49f34d12017-01-18 00:31:32 +02003188 mutex_unlock(&dir->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003189 if (ret == -ENOSPC) {
Miao Xie995946d2014-04-02 19:51:06 +08003190 btrfs_set_log_full_commit(root->fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003191 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003192 } else if (ret < 0)
Jeff Mahoney66642832016-06-10 18:19:25 -04003193 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003194
Chris Mason12fcfd22009-03-24 10:24:20 -04003195 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003196
Andi Kleen411fc6b2010-10-29 15:14:31 -04003197 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003198}
3199
3200/* see comments for btrfs_del_dir_entries_in_log */
3201int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
3202 struct btrfs_root *root,
3203 const char *name, int name_len,
Nikolay Borisova491abb2017-01-18 00:31:33 +02003204 struct btrfs_inode *inode, u64 dirid)
Chris Masone02119d2008-09-05 16:13:11 -04003205{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003206 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04003207 struct btrfs_root *log;
3208 u64 index;
3209 int ret;
3210
Nikolay Borisova491abb2017-01-18 00:31:33 +02003211 if (inode->logged_trans < trans->transid)
Chris Mason3a5f1d42008-09-11 15:53:37 -04003212 return 0;
3213
Chris Masone02119d2008-09-05 16:13:11 -04003214 ret = join_running_log_trans(root);
3215 if (ret)
3216 return 0;
3217 log = root->log_root;
Nikolay Borisova491abb2017-01-18 00:31:33 +02003218 mutex_lock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04003219
Nikolay Borisova491abb2017-01-18 00:31:33 +02003220 ret = btrfs_del_inode_ref(trans, log, name, name_len, btrfs_ino(inode),
Chris Masone02119d2008-09-05 16:13:11 -04003221 dirid, &index);
Nikolay Borisova491abb2017-01-18 00:31:33 +02003222 mutex_unlock(&inode->log_mutex);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003223 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003224 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003225 ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003226 } else if (ret < 0 && ret != -ENOENT)
Jeff Mahoney66642832016-06-10 18:19:25 -04003227 btrfs_abort_transaction(trans, ret);
Chris Mason12fcfd22009-03-24 10:24:20 -04003228 btrfs_end_log_trans(root);
Chris Masone02119d2008-09-05 16:13:11 -04003229
Chris Masone02119d2008-09-05 16:13:11 -04003230 return ret;
3231}
3232
3233/*
3234 * creates a range item in the log for 'dirid'. first_offset and
3235 * last_offset tell us which parts of the key space the log should
3236 * be considered authoritative for.
3237 */
3238static noinline int insert_dir_log_key(struct btrfs_trans_handle *trans,
3239 struct btrfs_root *log,
3240 struct btrfs_path *path,
3241 int key_type, u64 dirid,
3242 u64 first_offset, u64 last_offset)
3243{
3244 int ret;
3245 struct btrfs_key key;
3246 struct btrfs_dir_log_item *item;
3247
3248 key.objectid = dirid;
3249 key.offset = first_offset;
3250 if (key_type == BTRFS_DIR_ITEM_KEY)
3251 key.type = BTRFS_DIR_LOG_ITEM_KEY;
3252 else
3253 key.type = BTRFS_DIR_LOG_INDEX_KEY;
3254 ret = btrfs_insert_empty_item(trans, log, path, &key, sizeof(*item));
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003255 if (ret)
3256 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003257
3258 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3259 struct btrfs_dir_log_item);
3260 btrfs_set_dir_log_end(path->nodes[0], item, last_offset);
3261 btrfs_mark_buffer_dirty(path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003262 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003263 return 0;
3264}
3265
3266/*
3267 * log all the items included in the current transaction for a given
3268 * directory. This also creates the range items in the log tree required
3269 * to replay anything deleted before the fsync
3270 */
3271static noinline int log_dir_items(struct btrfs_trans_handle *trans,
Nikolay Borisov684a5772017-01-18 00:31:41 +02003272 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003273 struct btrfs_path *path,
3274 struct btrfs_path *dst_path, int key_type,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003275 struct btrfs_log_ctx *ctx,
Chris Masone02119d2008-09-05 16:13:11 -04003276 u64 min_offset, u64 *last_offset_ret)
3277{
3278 struct btrfs_key min_key;
Chris Masone02119d2008-09-05 16:13:11 -04003279 struct btrfs_root *log = root->log_root;
3280 struct extent_buffer *src;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003281 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003282 int ret;
3283 int i;
3284 int nritems;
3285 u64 first_offset = min_offset;
3286 u64 last_offset = (u64)-1;
Nikolay Borisov684a5772017-01-18 00:31:41 +02003287 u64 ino = btrfs_ino(inode);
Chris Masone02119d2008-09-05 16:13:11 -04003288
3289 log = root->log_root;
Chris Masone02119d2008-09-05 16:13:11 -04003290
Li Zefan33345d012011-04-20 10:31:50 +08003291 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003292 min_key.type = key_type;
3293 min_key.offset = min_offset;
3294
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01003295 ret = btrfs_search_forward(root, &min_key, path, trans->transid);
Chris Masone02119d2008-09-05 16:13:11 -04003296
3297 /*
3298 * we didn't find anything from this transaction, see if there
3299 * is anything at all
3300 */
Li Zefan33345d012011-04-20 10:31:50 +08003301 if (ret != 0 || min_key.objectid != ino || min_key.type != key_type) {
3302 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04003303 min_key.type = key_type;
3304 min_key.offset = (u64)-1;
David Sterbab3b4aa72011-04-21 01:20:15 +02003305 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003306 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
3307 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003308 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003309 return ret;
3310 }
Li Zefan33345d012011-04-20 10:31:50 +08003311 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003312
3313 /* if ret == 0 there are items for this type,
3314 * create a range to tell us the last key of this type.
3315 * otherwise, there are no items in this directory after
3316 * *min_offset, and we create a range to indicate that.
3317 */
3318 if (ret == 0) {
3319 struct btrfs_key tmp;
3320 btrfs_item_key_to_cpu(path->nodes[0], &tmp,
3321 path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -05003322 if (key_type == tmp.type)
Chris Masone02119d2008-09-05 16:13:11 -04003323 first_offset = max(min_offset, tmp.offset) + 1;
Chris Masone02119d2008-09-05 16:13:11 -04003324 }
3325 goto done;
3326 }
3327
3328 /* go backward to find any previous key */
Li Zefan33345d012011-04-20 10:31:50 +08003329 ret = btrfs_previous_item(root, path, ino, key_type);
Chris Masone02119d2008-09-05 16:13:11 -04003330 if (ret == 0) {
3331 struct btrfs_key tmp;
3332 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
3333 if (key_type == tmp.type) {
3334 first_offset = tmp.offset;
3335 ret = overwrite_item(trans, log, dst_path,
3336 path->nodes[0], path->slots[0],
3337 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003338 if (ret) {
3339 err = ret;
3340 goto done;
3341 }
Chris Masone02119d2008-09-05 16:13:11 -04003342 }
3343 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003344 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003345
3346 /* find the first key from this transaction again */
3347 ret = btrfs_search_slot(NULL, root, &min_key, path, 0, 0);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303348 if (WARN_ON(ret != 0))
Chris Masone02119d2008-09-05 16:13:11 -04003349 goto done;
Chris Masone02119d2008-09-05 16:13:11 -04003350
3351 /*
3352 * we have a block from this transaction, log every item in it
3353 * from our directory
3354 */
Chris Masond3977122009-01-05 21:25:51 -05003355 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003356 struct btrfs_key tmp;
3357 src = path->nodes[0];
3358 nritems = btrfs_header_nritems(src);
3359 for (i = path->slots[0]; i < nritems; i++) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003360 struct btrfs_dir_item *di;
3361
Chris Masone02119d2008-09-05 16:13:11 -04003362 btrfs_item_key_to_cpu(src, &min_key, i);
3363
Li Zefan33345d012011-04-20 10:31:50 +08003364 if (min_key.objectid != ino || min_key.type != key_type)
Chris Masone02119d2008-09-05 16:13:11 -04003365 goto done;
3366 ret = overwrite_item(trans, log, dst_path, src, i,
3367 &min_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003368 if (ret) {
3369 err = ret;
3370 goto done;
3371 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003372
3373 /*
3374 * We must make sure that when we log a directory entry,
3375 * the corresponding inode, after log replay, has a
3376 * matching link count. For example:
3377 *
3378 * touch foo
3379 * mkdir mydir
3380 * sync
3381 * ln foo mydir/bar
3382 * xfs_io -c "fsync" mydir
3383 * <crash>
3384 * <mount fs and log replay>
3385 *
3386 * Would result in a fsync log that when replayed, our
3387 * file inode would have a link count of 1, but we get
3388 * two directory entries pointing to the same inode.
3389 * After removing one of the names, it would not be
3390 * possible to remove the other name, which resulted
3391 * always in stale file handle errors, and would not
3392 * be possible to rmdir the parent directory, since
3393 * its i_size could never decrement to the value
3394 * BTRFS_EMPTY_DIR_SIZE, resulting in -ENOTEMPTY errors.
3395 */
3396 di = btrfs_item_ptr(src, i, struct btrfs_dir_item);
3397 btrfs_dir_item_key_to_cpu(src, di, &tmp);
3398 if (ctx &&
3399 (btrfs_dir_transid(src, di) == trans->transid ||
3400 btrfs_dir_type(src, di) == BTRFS_FT_DIR) &&
3401 tmp.type != BTRFS_ROOT_ITEM_KEY)
3402 ctx->log_new_dentries = true;
Chris Masone02119d2008-09-05 16:13:11 -04003403 }
3404 path->slots[0] = nritems;
3405
3406 /*
3407 * look ahead to the next item and see if it is also
3408 * from this directory and from this transaction
3409 */
3410 ret = btrfs_next_leaf(root, path);
3411 if (ret == 1) {
3412 last_offset = (u64)-1;
3413 goto done;
3414 }
3415 btrfs_item_key_to_cpu(path->nodes[0], &tmp, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +08003416 if (tmp.objectid != ino || tmp.type != key_type) {
Chris Masone02119d2008-09-05 16:13:11 -04003417 last_offset = (u64)-1;
3418 goto done;
3419 }
3420 if (btrfs_header_generation(path->nodes[0]) != trans->transid) {
3421 ret = overwrite_item(trans, log, dst_path,
3422 path->nodes[0], path->slots[0],
3423 &tmp);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003424 if (ret)
3425 err = ret;
3426 else
3427 last_offset = tmp.offset;
Chris Masone02119d2008-09-05 16:13:11 -04003428 goto done;
3429 }
3430 }
3431done:
David Sterbab3b4aa72011-04-21 01:20:15 +02003432 btrfs_release_path(path);
3433 btrfs_release_path(dst_path);
Chris Masone02119d2008-09-05 16:13:11 -04003434
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003435 if (err == 0) {
3436 *last_offset_ret = last_offset;
3437 /*
3438 * insert the log range keys to indicate where the log
3439 * is valid
3440 */
3441 ret = insert_dir_log_key(trans, log, path, key_type,
Li Zefan33345d012011-04-20 10:31:50 +08003442 ino, first_offset, last_offset);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003443 if (ret)
3444 err = ret;
3445 }
3446 return err;
Chris Masone02119d2008-09-05 16:13:11 -04003447}
3448
3449/*
3450 * logging directories is very similar to logging inodes, We find all the items
3451 * from the current transaction and write them to the log.
3452 *
3453 * The recovery code scans the directory in the subvolume, and if it finds a
3454 * key in the range logged that is not present in the log tree, then it means
3455 * that dir entry was unlinked during the transaction.
3456 *
3457 * In order for that scan to work, we must include one key smaller than
3458 * the smallest logged by this transaction and one key larger than the largest
3459 * key logged by this transaction.
3460 */
3461static noinline int log_directory_changes(struct btrfs_trans_handle *trans,
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003462 struct btrfs_root *root, struct btrfs_inode *inode,
Chris Masone02119d2008-09-05 16:13:11 -04003463 struct btrfs_path *path,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00003464 struct btrfs_path *dst_path,
3465 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04003466{
3467 u64 min_key;
3468 u64 max_key;
3469 int ret;
3470 int key_type = BTRFS_DIR_ITEM_KEY;
3471
3472again:
3473 min_key = 0;
3474 max_key = 0;
Chris Masond3977122009-01-05 21:25:51 -05003475 while (1) {
Nikolay Borisovdbf39ea2017-01-18 00:31:42 +02003476 ret = log_dir_items(trans, root, inode, path, dst_path, key_type,
3477 ctx, min_key, &max_key);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003478 if (ret)
3479 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003480 if (max_key == (u64)-1)
3481 break;
3482 min_key = max_key + 1;
3483 }
3484
3485 if (key_type == BTRFS_DIR_ITEM_KEY) {
3486 key_type = BTRFS_DIR_INDEX_KEY;
3487 goto again;
3488 }
3489 return 0;
3490}
3491
3492/*
3493 * a helper function to drop items from the log before we relog an
3494 * inode. max_key_type indicates the highest item type to remove.
3495 * This cannot be run for file data extents because it does not
3496 * free the extents they point to.
3497 */
3498static int drop_objectid_items(struct btrfs_trans_handle *trans,
3499 struct btrfs_root *log,
3500 struct btrfs_path *path,
3501 u64 objectid, int max_key_type)
3502{
3503 int ret;
3504 struct btrfs_key key;
3505 struct btrfs_key found_key;
Josef Bacik18ec90d2012-09-28 11:56:28 -04003506 int start_slot;
Chris Masone02119d2008-09-05 16:13:11 -04003507
3508 key.objectid = objectid;
3509 key.type = max_key_type;
3510 key.offset = (u64)-1;
3511
Chris Masond3977122009-01-05 21:25:51 -05003512 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04003513 ret = btrfs_search_slot(trans, log, &key, path, -1, 1);
Josef Bacik36508602013-04-25 16:23:32 -04003514 BUG_ON(ret == 0); /* Logic error */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003515 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04003516 break;
3517
3518 if (path->slots[0] == 0)
3519 break;
3520
3521 path->slots[0]--;
3522 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
3523 path->slots[0]);
3524
3525 if (found_key.objectid != objectid)
3526 break;
3527
Josef Bacik18ec90d2012-09-28 11:56:28 -04003528 found_key.offset = 0;
3529 found_key.type = 0;
3530 ret = btrfs_bin_search(path->nodes[0], &found_key, 0,
3531 &start_slot);
3532
3533 ret = btrfs_del_items(trans, log, path, start_slot,
3534 path->slots[0] - start_slot + 1);
3535 /*
3536 * If start slot isn't 0 then we don't need to re-search, we've
3537 * found the last guy with the objectid in this tree.
3538 */
3539 if (ret || start_slot != 0)
Tsutomu Itoh65a246c2011-05-19 04:37:44 +00003540 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02003541 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04003542 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003543 btrfs_release_path(path);
Josef Bacik5bdbeb22012-05-29 16:59:49 -04003544 if (ret > 0)
3545 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003546 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04003547}
3548
Josef Bacik94edf4a2012-09-25 14:56:25 -04003549static void fill_inode_item(struct btrfs_trans_handle *trans,
3550 struct extent_buffer *leaf,
3551 struct btrfs_inode_item *item,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003552 struct inode *inode, int log_inode_only,
3553 u64 logged_isize)
Josef Bacik94edf4a2012-09-25 14:56:25 -04003554{
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003555 struct btrfs_map_token token;
Josef Bacik94edf4a2012-09-25 14:56:25 -04003556
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003557 btrfs_init_map_token(&token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003558
3559 if (log_inode_only) {
3560 /* set the generation to zero so the recover code
3561 * can tell the difference between an logging
3562 * just to say 'this inode exists' and a logging
3563 * to say 'update this inode with these values'
3564 */
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003565 btrfs_set_token_inode_generation(leaf, item, 0, &token);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003566 btrfs_set_token_inode_size(leaf, item, logged_isize, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003567 } else {
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003568 btrfs_set_token_inode_generation(leaf, item,
3569 BTRFS_I(inode)->generation,
3570 &token);
3571 btrfs_set_token_inode_size(leaf, item, inode->i_size, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003572 }
3573
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003574 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3575 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3576 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3577 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
3578
David Sterbaa937b972014-12-12 17:39:12 +01003579 btrfs_set_token_timespec_sec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003580 inode->i_atime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003581 btrfs_set_token_timespec_nsec(leaf, &item->atime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003582 inode->i_atime.tv_nsec, &token);
3583
David Sterbaa937b972014-12-12 17:39:12 +01003584 btrfs_set_token_timespec_sec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003585 inode->i_mtime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003586 btrfs_set_token_timespec_nsec(leaf, &item->mtime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003587 inode->i_mtime.tv_nsec, &token);
3588
David Sterbaa937b972014-12-12 17:39:12 +01003589 btrfs_set_token_timespec_sec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003590 inode->i_ctime.tv_sec, &token);
David Sterbaa937b972014-12-12 17:39:12 +01003591 btrfs_set_token_timespec_nsec(leaf, &item->ctime,
Josef Bacik0b1c6cc2012-10-23 16:03:44 -04003592 inode->i_ctime.tv_nsec, &token);
3593
3594 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3595 &token);
3596
3597 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3598 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3599 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3600 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3601 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003602}
3603
Josef Bacika95249b2012-10-11 16:17:34 -04003604static int log_inode_item(struct btrfs_trans_handle *trans,
3605 struct btrfs_root *log, struct btrfs_path *path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003606 struct btrfs_inode *inode)
Josef Bacika95249b2012-10-11 16:17:34 -04003607{
3608 struct btrfs_inode_item *inode_item;
Josef Bacika95249b2012-10-11 16:17:34 -04003609 int ret;
3610
Filipe David Borba Mananaefd0c402013-10-07 21:20:44 +01003611 ret = btrfs_insert_empty_item(trans, log, path,
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003612 &inode->location, sizeof(*inode_item));
Josef Bacika95249b2012-10-11 16:17:34 -04003613 if (ret && ret != -EEXIST)
3614 return ret;
3615 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3616 struct btrfs_inode_item);
Nikolay Borisov6d889a32017-01-18 00:31:47 +02003617 fill_inode_item(trans, path->nodes[0], inode_item, &inode->vfs_inode,
3618 0, 0);
Josef Bacika95249b2012-10-11 16:17:34 -04003619 btrfs_release_path(path);
3620 return 0;
3621}
3622
Chris Mason31ff1cd2008-09-11 16:17:57 -04003623static noinline int copy_items(struct btrfs_trans_handle *trans,
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003624 struct btrfs_inode *inode,
Chris Mason31ff1cd2008-09-11 16:17:57 -04003625 struct btrfs_path *dst_path,
Josef Bacik16e75492013-10-22 12:18:51 -04003626 struct btrfs_path *src_path, u64 *last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003627 int start_slot, int nr, int inode_only,
3628 u64 logged_isize)
Chris Mason31ff1cd2008-09-11 16:17:57 -04003629{
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003630 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003631 unsigned long src_offset;
3632 unsigned long dst_offset;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003633 struct btrfs_root *log = inode->root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003634 struct btrfs_file_extent_item *extent;
3635 struct btrfs_inode_item *inode_item;
Josef Bacik16e75492013-10-22 12:18:51 -04003636 struct extent_buffer *src = src_path->nodes[0];
3637 struct btrfs_key first_key, last_key, key;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003638 int ret;
3639 struct btrfs_key *ins_keys;
3640 u32 *ins_sizes;
3641 char *ins_data;
3642 int i;
Chris Masond20f7042008-12-08 16:58:54 -05003643 struct list_head ordered_sums;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003644 int skip_csum = inode->flags & BTRFS_INODE_NODATASUM;
Josef Bacik16e75492013-10-22 12:18:51 -04003645 bool has_extents = false;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003646 bool need_find_last_extent = true;
Josef Bacik16e75492013-10-22 12:18:51 -04003647 bool done = false;
Chris Masond20f7042008-12-08 16:58:54 -05003648
3649 INIT_LIST_HEAD(&ordered_sums);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003650
3651 ins_data = kmalloc(nr * sizeof(struct btrfs_key) +
3652 nr * sizeof(u32), GFP_NOFS);
liubo2a29edc2011-01-26 06:22:08 +00003653 if (!ins_data)
3654 return -ENOMEM;
3655
Josef Bacik16e75492013-10-22 12:18:51 -04003656 first_key.objectid = (u64)-1;
3657
Chris Mason31ff1cd2008-09-11 16:17:57 -04003658 ins_sizes = (u32 *)ins_data;
3659 ins_keys = (struct btrfs_key *)(ins_data + nr * sizeof(u32));
3660
3661 for (i = 0; i < nr; i++) {
3662 ins_sizes[i] = btrfs_item_size_nr(src, i + start_slot);
3663 btrfs_item_key_to_cpu(src, ins_keys + i, i + start_slot);
3664 }
3665 ret = btrfs_insert_empty_items(trans, log, dst_path,
3666 ins_keys, ins_sizes, nr);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003667 if (ret) {
3668 kfree(ins_data);
3669 return ret;
3670 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003671
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003672 for (i = 0; i < nr; i++, dst_path->slots[0]++) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003673 dst_offset = btrfs_item_ptr_offset(dst_path->nodes[0],
3674 dst_path->slots[0]);
3675
3676 src_offset = btrfs_item_ptr_offset(src, start_slot + i);
3677
Josef Bacik16e75492013-10-22 12:18:51 -04003678 if ((i == (nr - 1)))
3679 last_key = ins_keys[i];
3680
Josef Bacik94edf4a2012-09-25 14:56:25 -04003681 if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003682 inode_item = btrfs_item_ptr(dst_path->nodes[0],
3683 dst_path->slots[0],
3684 struct btrfs_inode_item);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003685 fill_inode_item(trans, dst_path->nodes[0], inode_item,
David Sterbaf85b7372017-01-20 14:54:07 +01003686 &inode->vfs_inode,
3687 inode_only == LOG_INODE_EXISTS,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00003688 logged_isize);
Josef Bacik94edf4a2012-09-25 14:56:25 -04003689 } else {
3690 copy_extent_buffer(dst_path->nodes[0], src, dst_offset,
3691 src_offset, ins_sizes[i]);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003692 }
Josef Bacik94edf4a2012-09-25 14:56:25 -04003693
Josef Bacik16e75492013-10-22 12:18:51 -04003694 /*
3695 * We set need_find_last_extent here in case we know we were
3696 * processing other items and then walk into the first extent in
3697 * the inode. If we don't hit an extent then nothing changes,
3698 * we'll do the last search the next time around.
3699 */
3700 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY) {
3701 has_extents = true;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003702 if (first_key.objectid == (u64)-1)
Josef Bacik16e75492013-10-22 12:18:51 -04003703 first_key = ins_keys[i];
3704 } else {
3705 need_find_last_extent = false;
3706 }
3707
Chris Mason31ff1cd2008-09-11 16:17:57 -04003708 /* take a reference on file data extents so that truncates
3709 * or deletes of this inode don't have to relog the inode
3710 * again
3711 */
David Sterba962a2982014-06-04 18:41:45 +02003712 if (ins_keys[i].type == BTRFS_EXTENT_DATA_KEY &&
Liu Bod2794402012-08-29 01:07:56 -06003713 !skip_csum) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04003714 int found_type;
3715 extent = btrfs_item_ptr(src, start_slot + i,
3716 struct btrfs_file_extent_item);
3717
liubo8e531cd2011-05-06 10:36:09 +08003718 if (btrfs_file_extent_generation(src, extent) < trans->transid)
3719 continue;
3720
Chris Mason31ff1cd2008-09-11 16:17:57 -04003721 found_type = btrfs_file_extent_type(src, extent);
Josef Bacik6f1fed72012-09-26 11:07:06 -04003722 if (found_type == BTRFS_FILE_EXTENT_REG) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003723 u64 ds, dl, cs, cl;
3724 ds = btrfs_file_extent_disk_bytenr(src,
3725 extent);
3726 /* ds == 0 is a hole */
3727 if (ds == 0)
3728 continue;
3729
3730 dl = btrfs_file_extent_disk_num_bytes(src,
3731 extent);
3732 cs = btrfs_file_extent_offset(src, extent);
3733 cl = btrfs_file_extent_num_bytes(src,
Joe Perchesa419aef2009-08-18 11:18:35 -07003734 extent);
Chris Mason580afd72008-12-08 19:15:39 -05003735 if (btrfs_file_extent_compression(src,
3736 extent)) {
3737 cs = 0;
3738 cl = dl;
3739 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003740
3741 ret = btrfs_lookup_csums_range(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003742 fs_info->csum_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003743 ds + cs, ds + cs + cl - 1,
Arne Jansena2de7332011-03-08 14:14:00 +01003744 &ordered_sums, 0);
Josef Bacik36508602013-04-25 16:23:32 -04003745 if (ret) {
3746 btrfs_release_path(dst_path);
3747 kfree(ins_data);
3748 return ret;
3749 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003750 }
3751 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04003752 }
3753
3754 btrfs_mark_buffer_dirty(dst_path->nodes[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02003755 btrfs_release_path(dst_path);
Chris Mason31ff1cd2008-09-11 16:17:57 -04003756 kfree(ins_data);
Chris Masond20f7042008-12-08 16:58:54 -05003757
3758 /*
3759 * we have to do this after the loop above to avoid changing the
3760 * log tree while trying to change the log tree.
3761 */
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003762 ret = 0;
Chris Masond3977122009-01-05 21:25:51 -05003763 while (!list_empty(&ordered_sums)) {
Chris Masond20f7042008-12-08 16:58:54 -05003764 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
3765 struct btrfs_ordered_sum,
3766 list);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003767 if (!ret)
3768 ret = btrfs_csum_file_blocks(trans, log, sums);
Chris Masond20f7042008-12-08 16:58:54 -05003769 list_del(&sums->list);
3770 kfree(sums);
3771 }
Josef Bacik16e75492013-10-22 12:18:51 -04003772
3773 if (!has_extents)
3774 return ret;
3775
Filipe Manana74121f7c2014-08-07 12:00:44 +01003776 if (need_find_last_extent && *last_extent == first_key.offset) {
3777 /*
3778 * We don't have any leafs between our current one and the one
3779 * we processed before that can have file extent items for our
3780 * inode (and have a generation number smaller than our current
3781 * transaction id).
3782 */
3783 need_find_last_extent = false;
3784 }
3785
Josef Bacik16e75492013-10-22 12:18:51 -04003786 /*
3787 * Because we use btrfs_search_forward we could skip leaves that were
3788 * not modified and then assume *last_extent is valid when it really
3789 * isn't. So back up to the previous leaf and read the end of the last
3790 * extent before we go and fill in holes.
3791 */
3792 if (need_find_last_extent) {
3793 u64 len;
3794
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003795 ret = btrfs_prev_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003796 if (ret < 0)
3797 return ret;
3798 if (ret)
3799 goto fill_holes;
3800 if (src_path->slots[0])
3801 src_path->slots[0]--;
3802 src = src_path->nodes[0];
3803 btrfs_item_key_to_cpu(src, &key, src_path->slots[0]);
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003804 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003805 key.type != BTRFS_EXTENT_DATA_KEY)
3806 goto fill_holes;
3807 extent = btrfs_item_ptr(src, src_path->slots[0],
3808 struct btrfs_file_extent_item);
3809 if (btrfs_file_extent_type(src, extent) ==
3810 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003811 len = btrfs_file_extent_inline_len(src,
3812 src_path->slots[0],
3813 extent);
Josef Bacik16e75492013-10-22 12:18:51 -04003814 *last_extent = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003815 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003816 } else {
3817 len = btrfs_file_extent_num_bytes(src, extent);
3818 *last_extent = key.offset + len;
3819 }
3820 }
3821fill_holes:
3822 /* So we did prev_leaf, now we need to move to the next leaf, but a few
3823 * things could have happened
3824 *
3825 * 1) A merge could have happened, so we could currently be on a leaf
3826 * that holds what we were copying in the first place.
3827 * 2) A split could have happened, and now not all of the items we want
3828 * are on the same leaf.
3829 *
3830 * So we need to adjust how we search for holes, we need to drop the
3831 * path and re-search for the first extent key we found, and then walk
3832 * forward until we hit the last one we copied.
3833 */
3834 if (need_find_last_extent) {
3835 /* btrfs_prev_leaf could return 1 without releasing the path */
3836 btrfs_release_path(src_path);
David Sterbaf85b7372017-01-20 14:54:07 +01003837 ret = btrfs_search_slot(NULL, inode->root, &first_key,
3838 src_path, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04003839 if (ret < 0)
3840 return ret;
3841 ASSERT(ret == 0);
3842 src = src_path->nodes[0];
3843 i = src_path->slots[0];
3844 } else {
3845 i = start_slot;
3846 }
3847
3848 /*
3849 * Ok so here we need to go through and fill in any holes we may have
3850 * to make sure that holes are punched for those areas in case they had
3851 * extents previously.
3852 */
3853 while (!done) {
3854 u64 offset, len;
3855 u64 extent_end;
3856
3857 if (i >= btrfs_header_nritems(src_path->nodes[0])) {
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003858 ret = btrfs_next_leaf(inode->root, src_path);
Josef Bacik16e75492013-10-22 12:18:51 -04003859 if (ret < 0)
3860 return ret;
3861 ASSERT(ret == 0);
3862 src = src_path->nodes[0];
3863 i = 0;
3864 }
3865
3866 btrfs_item_key_to_cpu(src, &key, i);
3867 if (!btrfs_comp_cpu_keys(&key, &last_key))
3868 done = true;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003869 if (key.objectid != btrfs_ino(inode) ||
Josef Bacik16e75492013-10-22 12:18:51 -04003870 key.type != BTRFS_EXTENT_DATA_KEY) {
3871 i++;
3872 continue;
3873 }
3874 extent = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
3875 if (btrfs_file_extent_type(src, extent) ==
3876 BTRFS_FILE_EXTENT_INLINE) {
Chris Mason514ac8a2014-01-03 21:07:00 -08003877 len = btrfs_file_extent_inline_len(src, i, extent);
Jeff Mahoneyda170662016-06-15 09:22:56 -04003878 extent_end = ALIGN(key.offset + len,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003879 fs_info->sectorsize);
Josef Bacik16e75492013-10-22 12:18:51 -04003880 } else {
3881 len = btrfs_file_extent_num_bytes(src, extent);
3882 extent_end = key.offset + len;
3883 }
3884 i++;
3885
3886 if (*last_extent == key.offset) {
3887 *last_extent = extent_end;
3888 continue;
3889 }
3890 offset = *last_extent;
3891 len = key.offset - *last_extent;
Nikolay Borisov44d70e12017-01-18 00:31:36 +02003892 ret = btrfs_insert_file_extent(trans, log, btrfs_ino(inode),
David Sterbaf85b7372017-01-20 14:54:07 +01003893 offset, 0, 0, len, 0, len, 0, 0, 0);
Josef Bacik16e75492013-10-22 12:18:51 -04003894 if (ret)
3895 break;
Filipe Manana74121f7c2014-08-07 12:00:44 +01003896 *last_extent = extent_end;
Josef Bacik16e75492013-10-22 12:18:51 -04003897 }
3898 /*
3899 * Need to let the callers know we dropped the path so they should
3900 * re-search.
3901 */
3902 if (!ret && need_find_last_extent)
3903 ret = 1;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04003904 return ret;
Chris Mason31ff1cd2008-09-11 16:17:57 -04003905}
3906
Josef Bacik5dc562c2012-08-17 13:14:17 -04003907static int extent_cmp(void *priv, struct list_head *a, struct list_head *b)
3908{
3909 struct extent_map *em1, *em2;
3910
3911 em1 = list_entry(a, struct extent_map, list);
3912 em2 = list_entry(b, struct extent_map, list);
3913
3914 if (em1->start < em2->start)
3915 return -1;
3916 else if (em1->start > em2->start)
3917 return 1;
3918 return 0;
3919}
3920
Filipe Manana8407f552014-09-05 15:14:39 +01003921static int wait_ordered_extents(struct btrfs_trans_handle *trans,
3922 struct inode *inode,
3923 struct btrfs_root *root,
3924 const struct extent_map *em,
3925 const struct list_head *logged_list,
3926 bool *ordered_io_error)
Josef Bacik5dc562c2012-08-17 13:14:17 -04003927{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003928 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003929 struct btrfs_ordered_extent *ordered;
Filipe Manana8407f552014-09-05 15:14:39 +01003930 struct btrfs_root *log = root->log_root;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003931 u64 mod_start = em->mod_start;
3932 u64 mod_len = em->mod_len;
Filipe Manana8407f552014-09-05 15:14:39 +01003933 const bool skip_csum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Josef Bacik2ab28f32012-10-12 15:27:49 -04003934 u64 csum_offset;
3935 u64 csum_len;
Filipe Manana8407f552014-09-05 15:14:39 +01003936 LIST_HEAD(ordered_sums);
3937 int ret = 0;
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003938
Filipe Manana8407f552014-09-05 15:14:39 +01003939 *ordered_io_error = false;
Josef Bacik70c8a912012-10-11 16:54:30 -04003940
Filipe Manana8407f552014-09-05 15:14:39 +01003941 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
3942 em->block_start == EXTENT_MAP_HOLE)
Josef Bacik70c8a912012-10-11 16:54:30 -04003943 return 0;
3944
Josef Bacik2ab28f32012-10-12 15:27:49 -04003945 /*
Filipe Manana8407f552014-09-05 15:14:39 +01003946 * Wait far any ordered extent that covers our extent map. If it
3947 * finishes without an error, first check and see if our csums are on
3948 * our outstanding ordered extents.
Josef Bacik2ab28f32012-10-12 15:27:49 -04003949 */
Miao Xie827463c2014-01-14 20:31:51 +08003950 list_for_each_entry(ordered, logged_list, log_list) {
Josef Bacik2ab28f32012-10-12 15:27:49 -04003951 struct btrfs_ordered_sum *sum;
3952
3953 if (!mod_len)
3954 break;
3955
Josef Bacik2ab28f32012-10-12 15:27:49 -04003956 if (ordered->file_offset + ordered->len <= mod_start ||
3957 mod_start + mod_len <= ordered->file_offset)
3958 continue;
3959
Filipe Manana8407f552014-09-05 15:14:39 +01003960 if (!test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) &&
3961 !test_bit(BTRFS_ORDERED_IOERR, &ordered->flags) &&
3962 !test_bit(BTRFS_ORDERED_DIRECT, &ordered->flags)) {
3963 const u64 start = ordered->file_offset;
3964 const u64 end = ordered->file_offset + ordered->len - 1;
3965
3966 WARN_ON(ordered->inode != inode);
3967 filemap_fdatawrite_range(inode->i_mapping, start, end);
3968 }
3969
3970 wait_event(ordered->wait,
3971 (test_bit(BTRFS_ORDERED_IO_DONE, &ordered->flags) ||
3972 test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)));
3973
3974 if (test_bit(BTRFS_ORDERED_IOERR, &ordered->flags)) {
Filipe Mananab38ef712014-11-13 17:01:45 +00003975 /*
3976 * Clear the AS_EIO/AS_ENOSPC flags from the inode's
3977 * i_mapping flags, so that the next fsync won't get
3978 * an outdated io error too.
3979 */
Miklos Szeredif0312212016-09-16 12:44:21 +02003980 filemap_check_errors(inode->i_mapping);
Filipe Manana8407f552014-09-05 15:14:39 +01003981 *ordered_io_error = true;
3982 break;
3983 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04003984 /*
3985 * We are going to copy all the csums on this ordered extent, so
3986 * go ahead and adjust mod_start and mod_len in case this
3987 * ordered extent has already been logged.
3988 */
3989 if (ordered->file_offset > mod_start) {
3990 if (ordered->file_offset + ordered->len >=
3991 mod_start + mod_len)
3992 mod_len = ordered->file_offset - mod_start;
3993 /*
3994 * If we have this case
3995 *
3996 * |--------- logged extent ---------|
3997 * |----- ordered extent ----|
3998 *
3999 * Just don't mess with mod_start and mod_len, we'll
4000 * just end up logging more csums than we need and it
4001 * will be ok.
4002 */
4003 } else {
4004 if (ordered->file_offset + ordered->len <
4005 mod_start + mod_len) {
4006 mod_len = (mod_start + mod_len) -
4007 (ordered->file_offset + ordered->len);
4008 mod_start = ordered->file_offset +
4009 ordered->len;
4010 } else {
4011 mod_len = 0;
4012 }
4013 }
4014
Filipe Manana8407f552014-09-05 15:14:39 +01004015 if (skip_csum)
4016 continue;
4017
Josef Bacik2ab28f32012-10-12 15:27:49 -04004018 /*
4019 * To keep us from looping for the above case of an ordered
4020 * extent that falls inside of the logged extent.
4021 */
4022 if (test_and_set_bit(BTRFS_ORDERED_LOGGED_CSUM,
4023 &ordered->flags))
4024 continue;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004025
Josef Bacik2ab28f32012-10-12 15:27:49 -04004026 list_for_each_entry(sum, &ordered->list, list) {
4027 ret = btrfs_csum_file_blocks(trans, log, sum);
Miao Xie827463c2014-01-14 20:31:51 +08004028 if (ret)
Filipe Manana8407f552014-09-05 15:14:39 +01004029 break;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004030 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004031 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004032
Filipe Manana8407f552014-09-05 15:14:39 +01004033 if (*ordered_io_error || !mod_len || ret || skip_csum)
Josef Bacik2ab28f32012-10-12 15:27:49 -04004034 return ret;
4035
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004036 if (em->compress_type) {
4037 csum_offset = 0;
Filipe Manana8407f552014-09-05 15:14:39 +01004038 csum_len = max(em->block_len, em->orig_block_len);
Filipe David Borba Manana488111a2013-10-28 16:30:29 +00004039 } else {
4040 csum_offset = mod_start - em->start;
4041 csum_len = mod_len;
4042 }
Josef Bacik2ab28f32012-10-12 15:27:49 -04004043
Josef Bacik70c8a912012-10-11 16:54:30 -04004044 /* block start is already adjusted for the file extent offset. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004045 ret = btrfs_lookup_csums_range(fs_info->csum_root,
Josef Bacik70c8a912012-10-11 16:54:30 -04004046 em->block_start + csum_offset,
4047 em->block_start + csum_offset +
4048 csum_len - 1, &ordered_sums, 0);
4049 if (ret)
4050 return ret;
4051
4052 while (!list_empty(&ordered_sums)) {
4053 struct btrfs_ordered_sum *sums = list_entry(ordered_sums.next,
4054 struct btrfs_ordered_sum,
4055 list);
4056 if (!ret)
4057 ret = btrfs_csum_file_blocks(trans, log, sums);
4058 list_del(&sums->list);
4059 kfree(sums);
4060 }
4061
4062 return ret;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004063}
4064
Filipe Manana8407f552014-09-05 15:14:39 +01004065static int log_one_extent(struct btrfs_trans_handle *trans,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004066 struct btrfs_inode *inode, struct btrfs_root *root,
Filipe Manana8407f552014-09-05 15:14:39 +01004067 const struct extent_map *em,
4068 struct btrfs_path *path,
4069 const struct list_head *logged_list,
4070 struct btrfs_log_ctx *ctx)
4071{
4072 struct btrfs_root *log = root->log_root;
4073 struct btrfs_file_extent_item *fi;
4074 struct extent_buffer *leaf;
4075 struct btrfs_map_token token;
4076 struct btrfs_key key;
4077 u64 extent_offset = em->start - em->orig_start;
4078 u64 block_len;
4079 int ret;
4080 int extent_inserted = 0;
4081 bool ordered_io_err = false;
4082
David Sterbaf85b7372017-01-20 14:54:07 +01004083 ret = wait_ordered_extents(trans, &inode->vfs_inode, root, em,
4084 logged_list, &ordered_io_err);
Filipe Manana8407f552014-09-05 15:14:39 +01004085 if (ret)
4086 return ret;
4087
4088 if (ordered_io_err) {
4089 ctx->io_err = -EIO;
4090 return 0;
4091 }
4092
4093 btrfs_init_map_token(&token);
4094
Nikolay Borisov9d122622017-01-18 00:31:40 +02004095 ret = __btrfs_drop_extents(trans, log, &inode->vfs_inode, path, em->start,
Filipe Manana8407f552014-09-05 15:14:39 +01004096 em->start + em->len, NULL, 0, 1,
4097 sizeof(*fi), &extent_inserted);
4098 if (ret)
4099 return ret;
4100
4101 if (!extent_inserted) {
Nikolay Borisov9d122622017-01-18 00:31:40 +02004102 key.objectid = btrfs_ino(inode);
Filipe Manana8407f552014-09-05 15:14:39 +01004103 key.type = BTRFS_EXTENT_DATA_KEY;
4104 key.offset = em->start;
4105
4106 ret = btrfs_insert_empty_item(trans, log, path, &key,
4107 sizeof(*fi));
4108 if (ret)
4109 return ret;
4110 }
4111 leaf = path->nodes[0];
4112 fi = btrfs_item_ptr(leaf, path->slots[0],
4113 struct btrfs_file_extent_item);
4114
Josef Bacik50d9aa92014-11-21 14:52:38 -05004115 btrfs_set_token_file_extent_generation(leaf, fi, trans->transid,
Filipe Manana8407f552014-09-05 15:14:39 +01004116 &token);
4117 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
4118 btrfs_set_token_file_extent_type(leaf, fi,
4119 BTRFS_FILE_EXTENT_PREALLOC,
4120 &token);
4121 else
4122 btrfs_set_token_file_extent_type(leaf, fi,
4123 BTRFS_FILE_EXTENT_REG,
4124 &token);
4125
4126 block_len = max(em->block_len, em->orig_block_len);
4127 if (em->compress_type != BTRFS_COMPRESS_NONE) {
4128 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4129 em->block_start,
4130 &token);
4131 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4132 &token);
4133 } else if (em->block_start < EXTENT_MAP_LAST_BYTE) {
4134 btrfs_set_token_file_extent_disk_bytenr(leaf, fi,
4135 em->block_start -
4136 extent_offset, &token);
4137 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, block_len,
4138 &token);
4139 } else {
4140 btrfs_set_token_file_extent_disk_bytenr(leaf, fi, 0, &token);
4141 btrfs_set_token_file_extent_disk_num_bytes(leaf, fi, 0,
4142 &token);
4143 }
4144
4145 btrfs_set_token_file_extent_offset(leaf, fi, extent_offset, &token);
4146 btrfs_set_token_file_extent_num_bytes(leaf, fi, em->len, &token);
4147 btrfs_set_token_file_extent_ram_bytes(leaf, fi, em->ram_bytes, &token);
4148 btrfs_set_token_file_extent_compression(leaf, fi, em->compress_type,
4149 &token);
4150 btrfs_set_token_file_extent_encryption(leaf, fi, 0, &token);
4151 btrfs_set_token_file_extent_other_encoding(leaf, fi, 0, &token);
4152 btrfs_mark_buffer_dirty(leaf);
4153
4154 btrfs_release_path(path);
4155
4156 return ret;
4157}
4158
Josef Bacik5dc562c2012-08-17 13:14:17 -04004159static int btrfs_log_changed_extents(struct btrfs_trans_handle *trans,
4160 struct btrfs_root *root,
Nikolay Borisov9d122622017-01-18 00:31:40 +02004161 struct btrfs_inode *inode,
Miao Xie827463c2014-01-14 20:31:51 +08004162 struct btrfs_path *path,
Filipe Manana8407f552014-09-05 15:14:39 +01004163 struct list_head *logged_list,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00004164 struct btrfs_log_ctx *ctx,
4165 const u64 start,
4166 const u64 end)
Josef Bacik5dc562c2012-08-17 13:14:17 -04004167{
Josef Bacik5dc562c2012-08-17 13:14:17 -04004168 struct extent_map *em, *n;
4169 struct list_head extents;
Nikolay Borisov9d122622017-01-18 00:31:40 +02004170 struct extent_map_tree *tree = &inode->extent_tree;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004171 u64 test_gen;
4172 int ret = 0;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004173 int num = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004174
4175 INIT_LIST_HEAD(&extents);
4176
Nikolay Borisov9d122622017-01-18 00:31:40 +02004177 down_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004178 write_lock(&tree->lock);
4179 test_gen = root->fs_info->last_trans_committed;
4180
4181 list_for_each_entry_safe(em, n, &tree->modified_extents, list) {
4182 list_del_init(&em->list);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004183
4184 /*
4185 * Just an arbitrary number, this can be really CPU intensive
4186 * once we start getting a lot of extents, and really once we
4187 * have a bunch of extents we just want to commit since it will
4188 * be faster.
4189 */
4190 if (++num > 32768) {
4191 list_del_init(&tree->modified_extents);
4192 ret = -EFBIG;
4193 goto process;
4194 }
4195
Josef Bacik5dc562c2012-08-17 13:14:17 -04004196 if (em->generation <= test_gen)
4197 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04004198 /* Need a ref to keep it from getting evicted from cache */
Elena Reshetova490b54d2017-03-03 10:55:12 +02004199 refcount_inc(&em->refs);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004200 set_bit(EXTENT_FLAG_LOGGING, &em->flags);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004201 list_add_tail(&em->list, &extents);
Josef Bacik2ab28f32012-10-12 15:27:49 -04004202 num++;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004203 }
4204
4205 list_sort(NULL, &extents, extent_cmp);
Nikolay Borisov9d122622017-01-18 00:31:40 +02004206 btrfs_get_logged_extents(inode, logged_list, start, end);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004207 /*
4208 * Some ordered extents started by fsync might have completed
4209 * before we could collect them into the list logged_list, which
4210 * means they're gone, not in our logged_list nor in the inode's
4211 * ordered tree. We want the application/user space to know an
4212 * error happened while attempting to persist file data so that
4213 * it can take proper action. If such error happened, we leave
4214 * without writing to the log tree and the fsync must report the
4215 * file data write error and not commit the current transaction.
4216 */
Nikolay Borisov9d122622017-01-18 00:31:40 +02004217 ret = filemap_check_errors(inode->vfs_inode.i_mapping);
Filipe Manana5f9a8a52016-05-12 13:53:36 +01004218 if (ret)
4219 ctx->io_err = ret;
Josef Bacik2ab28f32012-10-12 15:27:49 -04004220process:
Josef Bacik5dc562c2012-08-17 13:14:17 -04004221 while (!list_empty(&extents)) {
4222 em = list_entry(extents.next, struct extent_map, list);
4223
4224 list_del_init(&em->list);
4225
4226 /*
4227 * If we had an error we just need to delete everybody from our
4228 * private list.
4229 */
Josef Bacikff44c6e2012-09-14 12:59:20 -04004230 if (ret) {
Josef Bacik201a9032013-01-24 12:02:07 -05004231 clear_em_logging(tree, em);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004232 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004233 continue;
Josef Bacikff44c6e2012-09-14 12:59:20 -04004234 }
4235
4236 write_unlock(&tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004237
Filipe Manana8407f552014-09-05 15:14:39 +01004238 ret = log_one_extent(trans, inode, root, em, path, logged_list,
4239 ctx);
Josef Bacikff44c6e2012-09-14 12:59:20 -04004240 write_lock(&tree->lock);
Josef Bacik201a9032013-01-24 12:02:07 -05004241 clear_em_logging(tree, em);
4242 free_extent_map(em);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004243 }
Josef Bacikff44c6e2012-09-14 12:59:20 -04004244 WARN_ON(!list_empty(&extents));
4245 write_unlock(&tree->lock);
Nikolay Borisov9d122622017-01-18 00:31:40 +02004246 up_write(&inode->dio_sem);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004247
Josef Bacik5dc562c2012-08-17 13:14:17 -04004248 btrfs_release_path(path);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004249 return ret;
4250}
4251
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004252static int logged_inode_size(struct btrfs_root *log, struct btrfs_inode *inode,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004253 struct btrfs_path *path, u64 *size_ret)
4254{
4255 struct btrfs_key key;
4256 int ret;
4257
Nikolay Borisov481b01c2017-01-18 00:31:34 +02004258 key.objectid = btrfs_ino(inode);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004259 key.type = BTRFS_INODE_ITEM_KEY;
4260 key.offset = 0;
4261
4262 ret = btrfs_search_slot(NULL, log, &key, path, 0, 0);
4263 if (ret < 0) {
4264 return ret;
4265 } else if (ret > 0) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00004266 *size_ret = 0;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004267 } else {
4268 struct btrfs_inode_item *item;
4269
4270 item = btrfs_item_ptr(path->nodes[0], path->slots[0],
4271 struct btrfs_inode_item);
4272 *size_ret = btrfs_inode_size(path->nodes[0], item);
4273 }
4274
4275 btrfs_release_path(path);
4276 return 0;
4277}
4278
Filipe Manana36283bf2015-06-20 00:44:51 +01004279/*
4280 * At the moment we always log all xattrs. This is to figure out at log replay
4281 * time which xattrs must have their deletion replayed. If a xattr is missing
4282 * in the log tree and exists in the fs/subvol tree, we delete it. This is
4283 * because if a xattr is deleted, the inode is fsynced and a power failure
4284 * happens, causing the log to be replayed the next time the fs is mounted,
4285 * we want the xattr to not exist anymore (same behaviour as other filesystems
4286 * with a journal, ext3/4, xfs, f2fs, etc).
4287 */
4288static int btrfs_log_all_xattrs(struct btrfs_trans_handle *trans,
4289 struct btrfs_root *root,
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004290 struct btrfs_inode *inode,
Filipe Manana36283bf2015-06-20 00:44:51 +01004291 struct btrfs_path *path,
4292 struct btrfs_path *dst_path)
4293{
4294 int ret;
4295 struct btrfs_key key;
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004296 const u64 ino = btrfs_ino(inode);
Filipe Manana36283bf2015-06-20 00:44:51 +01004297 int ins_nr = 0;
4298 int start_slot = 0;
4299
4300 key.objectid = ino;
4301 key.type = BTRFS_XATTR_ITEM_KEY;
4302 key.offset = 0;
4303
4304 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4305 if (ret < 0)
4306 return ret;
4307
4308 while (true) {
4309 int slot = path->slots[0];
4310 struct extent_buffer *leaf = path->nodes[0];
4311 int nritems = btrfs_header_nritems(leaf);
4312
4313 if (slot >= nritems) {
4314 if (ins_nr > 0) {
4315 u64 last_extent = 0;
4316
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004317 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004318 &last_extent, start_slot,
4319 ins_nr, 1, 0);
4320 /* can't be 1, extent items aren't processed */
4321 ASSERT(ret <= 0);
4322 if (ret < 0)
4323 return ret;
4324 ins_nr = 0;
4325 }
4326 ret = btrfs_next_leaf(root, path);
4327 if (ret < 0)
4328 return ret;
4329 else if (ret > 0)
4330 break;
4331 continue;
4332 }
4333
4334 btrfs_item_key_to_cpu(leaf, &key, slot);
4335 if (key.objectid != ino || key.type != BTRFS_XATTR_ITEM_KEY)
4336 break;
4337
4338 if (ins_nr == 0)
4339 start_slot = slot;
4340 ins_nr++;
4341 path->slots[0]++;
4342 cond_resched();
4343 }
4344 if (ins_nr > 0) {
4345 u64 last_extent = 0;
4346
Nikolay Borisov1a93c362017-01-18 00:31:37 +02004347 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004348 &last_extent, start_slot,
4349 ins_nr, 1, 0);
4350 /* can't be 1, extent items aren't processed */
4351 ASSERT(ret <= 0);
4352 if (ret < 0)
4353 return ret;
4354 }
4355
4356 return 0;
4357}
4358
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004359/*
4360 * If the no holes feature is enabled we need to make sure any hole between the
4361 * last extent and the i_size of our inode is explicitly marked in the log. This
4362 * is to make sure that doing something like:
4363 *
4364 * 1) create file with 128Kb of data
4365 * 2) truncate file to 64Kb
4366 * 3) truncate file to 256Kb
4367 * 4) fsync file
4368 * 5) <crash/power failure>
4369 * 6) mount fs and trigger log replay
4370 *
4371 * Will give us a file with a size of 256Kb, the first 64Kb of data match what
4372 * the file had in its first 64Kb of data at step 1 and the last 192Kb of the
4373 * file correspond to a hole. The presence of explicit holes in a log tree is
4374 * what guarantees that log replay will remove/adjust file extent items in the
4375 * fs/subvol tree.
4376 *
4377 * Here we do not need to care about holes between extents, that is already done
4378 * by copy_items(). We also only need to do this in the full sync path, where we
4379 * lookup for extents from the fs/subvol tree only. In the fast path case, we
4380 * lookup the list of modified extent maps and if any represents a hole, we
4381 * insert a corresponding extent representing a hole in the log tree.
4382 */
4383static int btrfs_log_trailing_hole(struct btrfs_trans_handle *trans,
4384 struct btrfs_root *root,
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004385 struct btrfs_inode *inode,
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004386 struct btrfs_path *path)
4387{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004388 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004389 int ret;
4390 struct btrfs_key key;
4391 u64 hole_start;
4392 u64 hole_size;
4393 struct extent_buffer *leaf;
4394 struct btrfs_root *log = root->log_root;
Nikolay Borisova0308dd2017-01-18 00:31:38 +02004395 const u64 ino = btrfs_ino(inode);
4396 const u64 i_size = i_size_read(&inode->vfs_inode);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004397
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004398 if (!btrfs_fs_incompat(fs_info, NO_HOLES))
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004399 return 0;
4400
4401 key.objectid = ino;
4402 key.type = BTRFS_EXTENT_DATA_KEY;
4403 key.offset = (u64)-1;
4404
4405 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4406 ASSERT(ret != 0);
4407 if (ret < 0)
4408 return ret;
4409
4410 ASSERT(path->slots[0] > 0);
4411 path->slots[0]--;
4412 leaf = path->nodes[0];
4413 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4414
4415 if (key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY) {
4416 /* inode does not have any extents */
4417 hole_start = 0;
4418 hole_size = i_size;
4419 } else {
4420 struct btrfs_file_extent_item *extent;
4421 u64 len;
4422
4423 /*
4424 * If there's an extent beyond i_size, an explicit hole was
4425 * already inserted by copy_items().
4426 */
4427 if (key.offset >= i_size)
4428 return 0;
4429
4430 extent = btrfs_item_ptr(leaf, path->slots[0],
4431 struct btrfs_file_extent_item);
4432
4433 if (btrfs_file_extent_type(leaf, extent) ==
4434 BTRFS_FILE_EXTENT_INLINE) {
4435 len = btrfs_file_extent_inline_len(leaf,
4436 path->slots[0],
4437 extent);
4438 ASSERT(len == i_size);
4439 return 0;
4440 }
4441
4442 len = btrfs_file_extent_num_bytes(leaf, extent);
4443 /* Last extent goes beyond i_size, no need to log a hole. */
4444 if (key.offset + len > i_size)
4445 return 0;
4446 hole_start = key.offset + len;
4447 hole_size = i_size - hole_start;
4448 }
4449 btrfs_release_path(path);
4450
4451 /* Last extent ends at i_size. */
4452 if (hole_size == 0)
4453 return 0;
4454
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004455 hole_size = ALIGN(hole_size, fs_info->sectorsize);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004456 ret = btrfs_insert_file_extent(trans, log, ino, hole_start, 0, 0,
4457 hole_size, 0, hole_size, 0, 0, 0);
4458 return ret;
4459}
4460
Filipe Manana56f23fd2016-03-30 23:37:21 +01004461/*
4462 * When we are logging a new inode X, check if it doesn't have a reference that
4463 * matches the reference from some other inode Y created in a past transaction
4464 * and that was renamed in the current transaction. If we don't do this, then at
4465 * log replay time we can lose inode Y (and all its files if it's a directory):
4466 *
4467 * mkdir /mnt/x
4468 * echo "hello world" > /mnt/x/foobar
4469 * sync
4470 * mv /mnt/x /mnt/y
4471 * mkdir /mnt/x # or touch /mnt/x
4472 * xfs_io -c fsync /mnt/x
4473 * <power fail>
4474 * mount fs, trigger log replay
4475 *
4476 * After the log replay procedure, we would lose the first directory and all its
4477 * files (file foobar).
4478 * For the case where inode Y is not a directory we simply end up losing it:
4479 *
4480 * echo "123" > /mnt/foo
4481 * sync
4482 * mv /mnt/foo /mnt/bar
4483 * echo "abc" > /mnt/foo
4484 * xfs_io -c fsync /mnt/foo
4485 * <power fail>
4486 *
4487 * We also need this for cases where a snapshot entry is replaced by some other
4488 * entry (file or directory) otherwise we end up with an unreplayable log due to
4489 * attempts to delete the snapshot entry (entry of type BTRFS_ROOT_ITEM_KEY) as
4490 * if it were a regular entry:
4491 *
4492 * mkdir /mnt/x
4493 * btrfs subvolume snapshot /mnt /mnt/x/snap
4494 * btrfs subvolume delete /mnt/x/snap
4495 * rmdir /mnt/x
4496 * mkdir /mnt/x
4497 * fsync /mnt/x or fsync some new file inside it
4498 * <power fail>
4499 *
4500 * The snapshot delete, rmdir of x, mkdir of a new x and the fsync all happen in
4501 * the same transaction.
4502 */
4503static int btrfs_check_ref_name_override(struct extent_buffer *eb,
4504 const int slot,
4505 const struct btrfs_key *key,
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004506 struct btrfs_inode *inode,
Filipe Manana44f714d2016-06-06 16:11:13 +01004507 u64 *other_ino)
Filipe Manana56f23fd2016-03-30 23:37:21 +01004508{
4509 int ret;
4510 struct btrfs_path *search_path;
4511 char *name = NULL;
4512 u32 name_len = 0;
4513 u32 item_size = btrfs_item_size_nr(eb, slot);
4514 u32 cur_offset = 0;
4515 unsigned long ptr = btrfs_item_ptr_offset(eb, slot);
4516
4517 search_path = btrfs_alloc_path();
4518 if (!search_path)
4519 return -ENOMEM;
4520 search_path->search_commit_root = 1;
4521 search_path->skip_locking = 1;
4522
4523 while (cur_offset < item_size) {
4524 u64 parent;
4525 u32 this_name_len;
4526 u32 this_len;
4527 unsigned long name_ptr;
4528 struct btrfs_dir_item *di;
4529
4530 if (key->type == BTRFS_INODE_REF_KEY) {
4531 struct btrfs_inode_ref *iref;
4532
4533 iref = (struct btrfs_inode_ref *)(ptr + cur_offset);
4534 parent = key->offset;
4535 this_name_len = btrfs_inode_ref_name_len(eb, iref);
4536 name_ptr = (unsigned long)(iref + 1);
4537 this_len = sizeof(*iref) + this_name_len;
4538 } else {
4539 struct btrfs_inode_extref *extref;
4540
4541 extref = (struct btrfs_inode_extref *)(ptr +
4542 cur_offset);
4543 parent = btrfs_inode_extref_parent(eb, extref);
4544 this_name_len = btrfs_inode_extref_name_len(eb, extref);
4545 name_ptr = (unsigned long)&extref->name;
4546 this_len = sizeof(*extref) + this_name_len;
4547 }
4548
4549 if (this_name_len > name_len) {
4550 char *new_name;
4551
4552 new_name = krealloc(name, this_name_len, GFP_NOFS);
4553 if (!new_name) {
4554 ret = -ENOMEM;
4555 goto out;
4556 }
4557 name_len = this_name_len;
4558 name = new_name;
4559 }
4560
4561 read_extent_buffer(eb, name, name_ptr, this_name_len);
Nikolay Borisov4791c8f2017-01-18 00:31:35 +02004562 di = btrfs_lookup_dir_item(NULL, inode->root, search_path,
4563 parent, name, this_name_len, 0);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004564 if (di && !IS_ERR(di)) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004565 struct btrfs_key di_key;
4566
4567 btrfs_dir_item_key_to_cpu(search_path->nodes[0],
4568 di, &di_key);
4569 if (di_key.type == BTRFS_INODE_ITEM_KEY) {
4570 ret = 1;
4571 *other_ino = di_key.objectid;
4572 } else {
4573 ret = -EAGAIN;
4574 }
Filipe Manana56f23fd2016-03-30 23:37:21 +01004575 goto out;
4576 } else if (IS_ERR(di)) {
4577 ret = PTR_ERR(di);
4578 goto out;
4579 }
4580 btrfs_release_path(search_path);
4581
4582 cur_offset += this_len;
4583 }
4584 ret = 0;
4585out:
4586 btrfs_free_path(search_path);
4587 kfree(name);
4588 return ret;
4589}
4590
Chris Masone02119d2008-09-05 16:13:11 -04004591/* log a single inode in the tree log.
4592 * At least one parent directory for this inode must exist in the tree
4593 * or be logged already.
4594 *
4595 * Any items from this inode changed by the current transaction are copied
4596 * to the log tree. An extra reference is taken on any extents in this
4597 * file, allowing us to avoid a whole pile of corner cases around logging
4598 * blocks that have been removed from the tree.
4599 *
4600 * See LOG_INODE_ALL and related defines for a description of what inode_only
4601 * does.
4602 *
4603 * This handles both files and directories.
4604 */
Chris Mason12fcfd22009-03-24 10:24:20 -04004605static int btrfs_log_inode(struct btrfs_trans_handle *trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004606 struct btrfs_root *root, struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01004607 int inode_only,
4608 const loff_t start,
Filipe Manana8407f552014-09-05 15:14:39 +01004609 const loff_t end,
4610 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04004611{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004612 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04004613 struct btrfs_path *path;
4614 struct btrfs_path *dst_path;
4615 struct btrfs_key min_key;
4616 struct btrfs_key max_key;
4617 struct btrfs_root *log = root->log_root;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004618 struct extent_buffer *src = NULL;
Miao Xie827463c2014-01-14 20:31:51 +08004619 LIST_HEAD(logged_list);
Josef Bacik16e75492013-10-22 12:18:51 -04004620 u64 last_extent = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004621 int err = 0;
Chris Masone02119d2008-09-05 16:13:11 -04004622 int ret;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004623 int nritems;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004624 int ins_start_slot = 0;
4625 int ins_nr;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004626 bool fast_search = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004627 u64 ino = btrfs_ino(inode);
4628 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004629 u64 logged_isize = 0;
Filipe Mananae4545de2015-06-17 12:49:23 +01004630 bool need_log_inode_item = true;
Chris Masone02119d2008-09-05 16:13:11 -04004631
Chris Masone02119d2008-09-05 16:13:11 -04004632 path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004633 if (!path)
4634 return -ENOMEM;
Chris Masone02119d2008-09-05 16:13:11 -04004635 dst_path = btrfs_alloc_path();
Tsutomu Itoh5df67082011-02-01 09:17:35 +00004636 if (!dst_path) {
4637 btrfs_free_path(path);
4638 return -ENOMEM;
4639 }
Chris Masone02119d2008-09-05 16:13:11 -04004640
Li Zefan33345d012011-04-20 10:31:50 +08004641 min_key.objectid = ino;
Chris Masone02119d2008-09-05 16:13:11 -04004642 min_key.type = BTRFS_INODE_ITEM_KEY;
4643 min_key.offset = 0;
4644
Li Zefan33345d012011-04-20 10:31:50 +08004645 max_key.objectid = ino;
Chris Mason12fcfd22009-03-24 10:24:20 -04004646
Chris Mason12fcfd22009-03-24 10:24:20 -04004647
Josef Bacik5dc562c2012-08-17 13:14:17 -04004648 /* today the code can only do partial logging of directories */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004649 if (S_ISDIR(inode->vfs_inode.i_mode) ||
Miao Xie5269b672012-11-01 07:35:23 +00004650 (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004651 &inode->runtime_flags) &&
Liu Bo781feef2016-11-30 16:20:25 -08004652 inode_only >= LOG_INODE_EXISTS))
Chris Masone02119d2008-09-05 16:13:11 -04004653 max_key.type = BTRFS_XATTR_ITEM_KEY;
4654 else
4655 max_key.type = (u8)-1;
4656 max_key.offset = (u64)-1;
4657
Filipe Manana2c2c4522015-01-13 16:40:04 +00004658 /*
4659 * Only run delayed items if we are a dir or a new file.
4660 * Otherwise commit the delayed inode only, which is needed in
4661 * order for the log replay code to mark inodes for link count
4662 * fixup (create temporary BTRFS_TREE_LOG_FIXUP_OBJECTID items).
4663 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004664 if (S_ISDIR(inode->vfs_inode.i_mode) ||
4665 inode->generation > fs_info->last_trans_committed)
4666 ret = btrfs_commit_inode_delayed_items(trans, inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004667 else
Nikolay Borisova59108a2017-01-18 00:31:48 +02004668 ret = btrfs_commit_inode_delayed_inode(inode);
Filipe Manana2c2c4522015-01-13 16:40:04 +00004669
4670 if (ret) {
4671 btrfs_free_path(path);
4672 btrfs_free_path(dst_path);
4673 return ret;
Miao Xie16cdcec2011-04-22 18:12:22 +08004674 }
4675
Liu Bo781feef2016-11-30 16:20:25 -08004676 if (inode_only == LOG_OTHER_INODE) {
4677 inode_only = LOG_INODE_EXISTS;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004678 mutex_lock_nested(&inode->log_mutex, SINGLE_DEPTH_NESTING);
Liu Bo781feef2016-11-30 16:20:25 -08004679 } else {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004680 mutex_lock(&inode->log_mutex);
Liu Bo781feef2016-11-30 16:20:25 -08004681 }
Chris Masone02119d2008-09-05 16:13:11 -04004682
Filipe Manana5e33a2b2016-02-25 23:19:38 +00004683 /*
Chris Masone02119d2008-09-05 16:13:11 -04004684 * a brute force approach to making sure we get the most uptodate
4685 * copies of everything.
4686 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004687 if (S_ISDIR(inode->vfs_inode.i_mode)) {
Chris Masone02119d2008-09-05 16:13:11 -04004688 int max_key_type = BTRFS_DIR_LOG_INDEX_KEY;
4689
Filipe Manana4f764e52015-02-23 19:53:35 +00004690 if (inode_only == LOG_INODE_EXISTS)
4691 max_key_type = BTRFS_XATTR_ITEM_KEY;
Li Zefan33345d012011-04-20 10:31:50 +08004692 ret = drop_objectid_items(trans, log, path, ino, max_key_type);
Chris Masone02119d2008-09-05 16:13:11 -04004693 } else {
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004694 if (inode_only == LOG_INODE_EXISTS) {
4695 /*
4696 * Make sure the new inode item we write to the log has
4697 * the same isize as the current one (if it exists).
4698 * This is necessary to prevent data loss after log
4699 * replay, and also to prevent doing a wrong expanding
4700 * truncate - for e.g. create file, write 4K into offset
4701 * 0, fsync, write 4K into offset 4096, add hard link,
4702 * fsync some other file (to sync log), power fail - if
4703 * we use the inode's current i_size, after log replay
4704 * we get a 8Kb file, with the last 4Kb extent as a hole
4705 * (zeroes), as if an expanding truncate happened,
4706 * instead of getting a file of 4Kb only.
4707 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004708 err = logged_inode_size(log, inode, path, &logged_isize);
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004709 if (err)
4710 goto out_unlock;
4711 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004712 if (test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004713 &inode->runtime_flags)) {
Filipe Mananaa7429942015-02-13 16:56:14 +00004714 if (inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004715 max_key.type = BTRFS_XATTR_ITEM_KEY;
Filipe Mananaa7429942015-02-13 16:56:14 +00004716 ret = drop_objectid_items(trans, log, path, ino,
4717 max_key.type);
4718 } else {
4719 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004720 &inode->runtime_flags);
Filipe Mananaa7429942015-02-13 16:56:14 +00004721 clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004722 &inode->runtime_flags);
Chris Mason28ed1342014-12-17 09:41:04 -08004723 while(1) {
4724 ret = btrfs_truncate_inode_items(trans,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004725 log, &inode->vfs_inode, 0, 0);
Chris Mason28ed1342014-12-17 09:41:04 -08004726 if (ret != -EAGAIN)
4727 break;
4728 }
Filipe Mananaa7429942015-02-13 16:56:14 +00004729 }
Filipe Manana4f764e52015-02-23 19:53:35 +00004730 } else if (test_and_clear_bit(BTRFS_INODE_COPY_EVERYTHING,
Nikolay Borisova59108a2017-01-18 00:31:48 +02004731 &inode->runtime_flags) ||
Josef Bacik6cfab852013-11-12 16:25:58 -05004732 inode_only == LOG_INODE_EXISTS) {
Filipe Manana4f764e52015-02-23 19:53:35 +00004733 if (inode_only == LOG_INODE_ALL)
Josef Bacika95249b2012-10-11 16:17:34 -04004734 fast_search = true;
Filipe Manana4f764e52015-02-23 19:53:35 +00004735 max_key.type = BTRFS_XATTR_ITEM_KEY;
Josef Bacika95249b2012-10-11 16:17:34 -04004736 ret = drop_objectid_items(trans, log, path, ino,
4737 max_key.type);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004738 } else {
Liu Bo183f37f2012-11-01 06:38:47 +00004739 if (inode_only == LOG_INODE_ALL)
4740 fast_search = true;
Josef Bacika95249b2012-10-11 16:17:34 -04004741 goto log_extents;
Josef Bacik5dc562c2012-08-17 13:14:17 -04004742 }
Josef Bacika95249b2012-10-11 16:17:34 -04004743
Chris Masone02119d2008-09-05 16:13:11 -04004744 }
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004745 if (ret) {
4746 err = ret;
4747 goto out_unlock;
4748 }
Chris Masone02119d2008-09-05 16:13:11 -04004749
Chris Masond3977122009-01-05 21:25:51 -05004750 while (1) {
Chris Mason31ff1cd2008-09-11 16:17:57 -04004751 ins_nr = 0;
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01004752 ret = btrfs_search_forward(root, &min_key,
Eric Sandeende78b512013-01-31 18:21:12 +00004753 path, trans->transid);
Liu Bofb770ae2016-07-05 12:10:14 -07004754 if (ret < 0) {
4755 err = ret;
4756 goto out_unlock;
4757 }
Chris Masone02119d2008-09-05 16:13:11 -04004758 if (ret != 0)
4759 break;
Chris Mason3a5f1d42008-09-11 15:53:37 -04004760again:
Chris Mason31ff1cd2008-09-11 16:17:57 -04004761 /* note, ins_nr might be > 0 here, cleanup outside the loop */
Li Zefan33345d012011-04-20 10:31:50 +08004762 if (min_key.objectid != ino)
Chris Masone02119d2008-09-05 16:13:11 -04004763 break;
4764 if (min_key.type > max_key.type)
4765 break;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004766
Filipe Mananae4545de2015-06-17 12:49:23 +01004767 if (min_key.type == BTRFS_INODE_ITEM_KEY)
4768 need_log_inode_item = false;
4769
Filipe Manana56f23fd2016-03-30 23:37:21 +01004770 if ((min_key.type == BTRFS_INODE_REF_KEY ||
4771 min_key.type == BTRFS_INODE_EXTREF_KEY) &&
Nikolay Borisova59108a2017-01-18 00:31:48 +02004772 inode->generation == trans->transid) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004773 u64 other_ino = 0;
4774
Filipe Manana56f23fd2016-03-30 23:37:21 +01004775 ret = btrfs_check_ref_name_override(path->nodes[0],
Nikolay Borisova59108a2017-01-18 00:31:48 +02004776 path->slots[0], &min_key, inode,
4777 &other_ino);
Filipe Manana56f23fd2016-03-30 23:37:21 +01004778 if (ret < 0) {
4779 err = ret;
4780 goto out_unlock;
Filipe Manana28a23592016-08-23 21:13:51 +01004781 } else if (ret > 0 && ctx &&
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004782 other_ino != btrfs_ino(BTRFS_I(ctx->inode))) {
Filipe Manana44f714d2016-06-06 16:11:13 +01004783 struct btrfs_key inode_key;
4784 struct inode *other_inode;
4785
4786 if (ins_nr > 0) {
4787 ins_nr++;
4788 } else {
4789 ins_nr = 1;
4790 ins_start_slot = path->slots[0];
4791 }
Nikolay Borisova59108a2017-01-18 00:31:48 +02004792 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana44f714d2016-06-06 16:11:13 +01004793 &last_extent, ins_start_slot,
4794 ins_nr, inode_only,
4795 logged_isize);
4796 if (ret < 0) {
4797 err = ret;
4798 goto out_unlock;
4799 }
4800 ins_nr = 0;
4801 btrfs_release_path(path);
4802 inode_key.objectid = other_ino;
4803 inode_key.type = BTRFS_INODE_ITEM_KEY;
4804 inode_key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004805 other_inode = btrfs_iget(fs_info->sb,
Filipe Manana44f714d2016-06-06 16:11:13 +01004806 &inode_key, root,
4807 NULL);
4808 /*
4809 * If the other inode that had a conflicting dir
4810 * entry was deleted in the current transaction,
4811 * we don't need to do more work nor fallback to
4812 * a transaction commit.
4813 */
4814 if (IS_ERR(other_inode) &&
4815 PTR_ERR(other_inode) == -ENOENT) {
4816 goto next_key;
4817 } else if (IS_ERR(other_inode)) {
4818 err = PTR_ERR(other_inode);
4819 goto out_unlock;
4820 }
4821 /*
4822 * We are safe logging the other inode without
4823 * acquiring its i_mutex as long as we log with
4824 * the LOG_INODE_EXISTS mode. We're safe against
4825 * concurrent renames of the other inode as well
4826 * because during a rename we pin the log and
4827 * update the log with the new name before we
4828 * unpin it.
4829 */
Nikolay Borisova59108a2017-01-18 00:31:48 +02004830 err = btrfs_log_inode(trans, root,
4831 BTRFS_I(other_inode),
4832 LOG_OTHER_INODE, 0, LLONG_MAX,
4833 ctx);
Filipe Manana44f714d2016-06-06 16:11:13 +01004834 iput(other_inode);
4835 if (err)
4836 goto out_unlock;
4837 else
4838 goto next_key;
Filipe Manana56f23fd2016-03-30 23:37:21 +01004839 }
4840 }
4841
Filipe Manana36283bf2015-06-20 00:44:51 +01004842 /* Skip xattrs, we log them later with btrfs_log_all_xattrs() */
4843 if (min_key.type == BTRFS_XATTR_ITEM_KEY) {
4844 if (ins_nr == 0)
4845 goto next_slot;
Nikolay Borisova59108a2017-01-18 00:31:48 +02004846 ret = copy_items(trans, inode, dst_path, path,
Filipe Manana36283bf2015-06-20 00:44:51 +01004847 &last_extent, ins_start_slot,
4848 ins_nr, inode_only, logged_isize);
4849 if (ret < 0) {
4850 err = ret;
4851 goto out_unlock;
4852 }
4853 ins_nr = 0;
4854 if (ret) {
4855 btrfs_release_path(path);
4856 continue;
4857 }
4858 goto next_slot;
4859 }
4860
Chris Masone02119d2008-09-05 16:13:11 -04004861 src = path->nodes[0];
Chris Mason31ff1cd2008-09-11 16:17:57 -04004862 if (ins_nr && ins_start_slot + ins_nr == path->slots[0]) {
4863 ins_nr++;
4864 goto next_slot;
4865 } else if (!ins_nr) {
4866 ins_start_slot = path->slots[0];
4867 ins_nr = 1;
4868 goto next_slot;
Chris Masone02119d2008-09-05 16:13:11 -04004869 }
4870
Nikolay Borisova59108a2017-01-18 00:31:48 +02004871 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004872 ins_start_slot, ins_nr, inode_only,
4873 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004874 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004875 err = ret;
4876 goto out_unlock;
Rasmus Villemoesa71db862014-06-20 21:51:43 +02004877 }
4878 if (ret) {
Josef Bacik16e75492013-10-22 12:18:51 -04004879 ins_nr = 0;
4880 btrfs_release_path(path);
4881 continue;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004882 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004883 ins_nr = 1;
4884 ins_start_slot = path->slots[0];
4885next_slot:
Chris Masone02119d2008-09-05 16:13:11 -04004886
Chris Mason3a5f1d42008-09-11 15:53:37 -04004887 nritems = btrfs_header_nritems(path->nodes[0]);
4888 path->slots[0]++;
4889 if (path->slots[0] < nritems) {
4890 btrfs_item_key_to_cpu(path->nodes[0], &min_key,
4891 path->slots[0]);
4892 goto again;
4893 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004894 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004895 ret = copy_items(trans, inode, dst_path, path,
Josef Bacik16e75492013-10-22 12:18:51 -04004896 &last_extent, ins_start_slot,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004897 ins_nr, inode_only, logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004898 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004899 err = ret;
4900 goto out_unlock;
4901 }
Josef Bacik16e75492013-10-22 12:18:51 -04004902 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004903 ins_nr = 0;
4904 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004905 btrfs_release_path(path);
Filipe Manana44f714d2016-06-06 16:11:13 +01004906next_key:
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004907 if (min_key.offset < (u64)-1) {
Chris Masone02119d2008-09-05 16:13:11 -04004908 min_key.offset++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004909 } else if (min_key.type < max_key.type) {
Chris Masone02119d2008-09-05 16:13:11 -04004910 min_key.type++;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004911 min_key.offset = 0;
4912 } else {
Chris Masone02119d2008-09-05 16:13:11 -04004913 break;
Filipe David Borba Manana3d41d702013-10-01 17:06:53 +01004914 }
Chris Masone02119d2008-09-05 16:13:11 -04004915 }
Chris Mason31ff1cd2008-09-11 16:17:57 -04004916 if (ins_nr) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004917 ret = copy_items(trans, inode, dst_path, path, &last_extent,
Filipe Manana1a4bcf42015-02-13 12:30:56 +00004918 ins_start_slot, ins_nr, inode_only,
4919 logged_isize);
Josef Bacik16e75492013-10-22 12:18:51 -04004920 if (ret < 0) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004921 err = ret;
4922 goto out_unlock;
4923 }
Josef Bacik16e75492013-10-22 12:18:51 -04004924 ret = 0;
Chris Mason31ff1cd2008-09-11 16:17:57 -04004925 ins_nr = 0;
4926 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04004927
Filipe Manana36283bf2015-06-20 00:44:51 +01004928 btrfs_release_path(path);
4929 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02004930 err = btrfs_log_all_xattrs(trans, root, inode, path, dst_path);
Filipe Manana36283bf2015-06-20 00:44:51 +01004931 if (err)
4932 goto out_unlock;
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004933 if (max_key.type >= BTRFS_EXTENT_DATA_KEY && !fast_search) {
4934 btrfs_release_path(path);
4935 btrfs_release_path(dst_path);
Nikolay Borisova59108a2017-01-18 00:31:48 +02004936 err = btrfs_log_trailing_hole(trans, root, inode, path);
Filipe Mananaa89ca6f2015-06-25 04:17:46 +01004937 if (err)
4938 goto out_unlock;
4939 }
Josef Bacika95249b2012-10-11 16:17:34 -04004940log_extents:
Josef Bacikf3b15cc2013-07-22 12:54:30 -04004941 btrfs_release_path(path);
4942 btrfs_release_path(dst_path);
Filipe Mananae4545de2015-06-17 12:49:23 +01004943 if (need_log_inode_item) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004944 err = log_inode_item(trans, log, dst_path, inode);
Filipe Mananae4545de2015-06-17 12:49:23 +01004945 if (err)
4946 goto out_unlock;
4947 }
Josef Bacik5dc562c2012-08-17 13:14:17 -04004948 if (fast_search) {
Nikolay Borisova59108a2017-01-18 00:31:48 +02004949 ret = btrfs_log_changed_extents(trans, root, inode, dst_path,
Filipe Mananade0ee0e2016-01-21 10:17:54 +00004950 &logged_list, ctx, start, end);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004951 if (ret) {
4952 err = ret;
4953 goto out_unlock;
4954 }
Josef Bacikd006a042013-11-12 20:54:09 -05004955 } else if (inode_only == LOG_INODE_ALL) {
Liu Bo06d3d222012-08-27 10:52:19 -06004956 struct extent_map *em, *n;
4957
Filipe Manana49dae1b2014-09-06 22:34:39 +01004958 write_lock(&em_tree->lock);
4959 /*
4960 * We can't just remove every em if we're called for a ranged
4961 * fsync - that is, one that doesn't cover the whole possible
4962 * file range (0 to LLONG_MAX). This is because we can have
4963 * em's that fall outside the range we're logging and therefore
4964 * their ordered operations haven't completed yet
4965 * (btrfs_finish_ordered_io() not invoked yet). This means we
4966 * didn't get their respective file extent item in the fs/subvol
4967 * tree yet, and need to let the next fast fsync (one which
4968 * consults the list of modified extent maps) find the em so
4969 * that it logs a matching file extent item and waits for the
4970 * respective ordered operation to complete (if it's still
4971 * running).
4972 *
4973 * Removing every em outside the range we're logging would make
4974 * the next fast fsync not log their matching file extent items,
4975 * therefore making us lose data after a log replay.
4976 */
4977 list_for_each_entry_safe(em, n, &em_tree->modified_extents,
4978 list) {
4979 const u64 mod_end = em->mod_start + em->mod_len - 1;
4980
4981 if (em->mod_start >= start && mod_end <= end)
4982 list_del_init(&em->list);
4983 }
4984 write_unlock(&em_tree->lock);
Josef Bacik5dc562c2012-08-17 13:14:17 -04004985 }
4986
Nikolay Borisova59108a2017-01-18 00:31:48 +02004987 if (inode_only == LOG_INODE_ALL && S_ISDIR(inode->vfs_inode.i_mode)) {
4988 ret = log_directory_changes(trans, root, inode, path, dst_path,
4989 ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04004990 if (ret) {
4991 err = ret;
4992 goto out_unlock;
4993 }
Chris Masone02119d2008-09-05 16:13:11 -04004994 }
Filipe Manana49dae1b2014-09-06 22:34:39 +01004995
Nikolay Borisova59108a2017-01-18 00:31:48 +02004996 spin_lock(&inode->lock);
4997 inode->logged_trans = trans->transid;
4998 inode->last_log_commit = inode->last_sub_trans;
4999 spin_unlock(&inode->lock);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005000out_unlock:
Miao Xie827463c2014-01-14 20:31:51 +08005001 if (unlikely(err))
5002 btrfs_put_logged_extents(&logged_list);
5003 else
5004 btrfs_submit_logged_extents(&logged_list, log);
Nikolay Borisova59108a2017-01-18 00:31:48 +02005005 mutex_unlock(&inode->log_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04005006
5007 btrfs_free_path(path);
5008 btrfs_free_path(dst_path);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005009 return err;
Chris Masone02119d2008-09-05 16:13:11 -04005010}
5011
Chris Mason12fcfd22009-03-24 10:24:20 -04005012/*
Filipe Manana2be63d52016-02-12 11:34:23 +00005013 * Check if we must fallback to a transaction commit when logging an inode.
5014 * This must be called after logging the inode and is used only in the context
5015 * when fsyncing an inode requires the need to log some other inode - in which
5016 * case we can't lock the i_mutex of each other inode we need to log as that
5017 * can lead to deadlocks with concurrent fsync against other inodes (as we can
5018 * log inodes up or down in the hierarchy) or rename operations for example. So
5019 * we take the log_mutex of the inode after we have logged it and then check for
5020 * its last_unlink_trans value - this is safe because any task setting
5021 * last_unlink_trans must take the log_mutex and it must do this before it does
5022 * the actual unlink operation, so if we do this check before a concurrent task
5023 * sets last_unlink_trans it means we've logged a consistent version/state of
5024 * all the inode items, otherwise we are not sure and must do a transaction
Nicholas D Steeves01327612016-05-19 21:18:45 -04005025 * commit (the concurrent task might have only updated last_unlink_trans before
Filipe Manana2be63d52016-02-12 11:34:23 +00005026 * we logged the inode or it might have also done the unlink).
5027 */
5028static bool btrfs_must_commit_transaction(struct btrfs_trans_handle *trans,
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005029 struct btrfs_inode *inode)
Filipe Manana2be63d52016-02-12 11:34:23 +00005030{
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005031 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Filipe Manana2be63d52016-02-12 11:34:23 +00005032 bool ret = false;
5033
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005034 mutex_lock(&inode->log_mutex);
5035 if (inode->last_unlink_trans > fs_info->last_trans_committed) {
Filipe Manana2be63d52016-02-12 11:34:23 +00005036 /*
5037 * Make sure any commits to the log are forced to be full
5038 * commits.
5039 */
5040 btrfs_set_log_full_commit(fs_info, trans);
5041 ret = true;
5042 }
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005043 mutex_unlock(&inode->log_mutex);
Filipe Manana2be63d52016-02-12 11:34:23 +00005044
5045 return ret;
5046}
5047
5048/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005049 * follow the dentry parent pointers up the chain and see if any
5050 * of the directories in it require a full commit before they can
5051 * be logged. Returns zero if nothing special needs to be done or 1 if
5052 * a full commit is required.
5053 */
5054static noinline int check_parent_dirs_for_sync(struct btrfs_trans_handle *trans,
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005055 struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005056 struct dentry *parent,
5057 struct super_block *sb,
5058 u64 last_committed)
Chris Masone02119d2008-09-05 16:13:11 -04005059{
Chris Mason12fcfd22009-03-24 10:24:20 -04005060 int ret = 0;
Josef Bacik6a912212010-11-20 09:48:00 +00005061 struct dentry *old_parent = NULL;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005062 struct btrfs_inode *orig_inode = inode;
Chris Masone02119d2008-09-05 16:13:11 -04005063
Chris Masonaf4176b2009-03-24 10:24:31 -04005064 /*
5065 * for regular files, if its inode is already on disk, we don't
5066 * have to worry about the parents at all. This is because
5067 * we can use the last_unlink_trans field to record renames
5068 * and other fun in this file.
5069 */
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005070 if (S_ISREG(inode->vfs_inode.i_mode) &&
5071 inode->generation <= last_committed &&
5072 inode->last_unlink_trans <= last_committed)
5073 goto out;
Chris Masonaf4176b2009-03-24 10:24:31 -04005074
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005075 if (!S_ISDIR(inode->vfs_inode.i_mode)) {
Al Virofc640052016-04-10 01:33:30 -04005076 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005077 goto out;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005078 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005079 }
5080
5081 while (1) {
Josef Bacikde2b5302013-09-11 09:36:30 -04005082 /*
5083 * If we are logging a directory then we start with our inode,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005084 * not our parent's inode, so we need to skip setting the
Josef Bacikde2b5302013-09-11 09:36:30 -04005085 * logged_trans so that further down in the log code we don't
5086 * think this inode has already been logged.
5087 */
5088 if (inode != orig_inode)
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005089 inode->logged_trans = trans->transid;
Chris Mason12fcfd22009-03-24 10:24:20 -04005090 smp_mb();
5091
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005092 if (btrfs_must_commit_transaction(trans, inode)) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005093 ret = 1;
5094 break;
5095 }
5096
Al Virofc640052016-04-10 01:33:30 -04005097 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Mason12fcfd22009-03-24 10:24:20 -04005098 break;
5099
Filipe Manana44f714d2016-06-06 16:11:13 +01005100 if (IS_ROOT(parent)) {
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005101 inode = BTRFS_I(d_inode(parent));
5102 if (btrfs_must_commit_transaction(trans, inode))
Filipe Manana44f714d2016-06-06 16:11:13 +01005103 ret = 1;
Chris Mason12fcfd22009-03-24 10:24:20 -04005104 break;
Filipe Manana44f714d2016-06-06 16:11:13 +01005105 }
Chris Mason12fcfd22009-03-24 10:24:20 -04005106
Josef Bacik6a912212010-11-20 09:48:00 +00005107 parent = dget_parent(parent);
5108 dput(old_parent);
5109 old_parent = parent;
Nikolay Borisovaefa6112017-02-20 13:51:00 +02005110 inode = BTRFS_I(d_inode(parent));
Chris Mason12fcfd22009-03-24 10:24:20 -04005111
5112 }
Josef Bacik6a912212010-11-20 09:48:00 +00005113 dput(old_parent);
Chris Mason12fcfd22009-03-24 10:24:20 -04005114out:
Chris Masone02119d2008-09-05 16:13:11 -04005115 return ret;
5116}
5117
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005118struct btrfs_dir_list {
5119 u64 ino;
5120 struct list_head list;
5121};
5122
5123/*
5124 * Log the inodes of the new dentries of a directory. See log_dir_items() for
5125 * details about the why it is needed.
5126 * This is a recursive operation - if an existing dentry corresponds to a
5127 * directory, that directory's new entries are logged too (same behaviour as
5128 * ext3/4, xfs, f2fs, reiserfs, nilfs2). Note that when logging the inodes
5129 * the dentries point to we do not lock their i_mutex, otherwise lockdep
5130 * complains about the following circular lock dependency / possible deadlock:
5131 *
5132 * CPU0 CPU1
5133 * ---- ----
5134 * lock(&type->i_mutex_dir_key#3/2);
5135 * lock(sb_internal#2);
5136 * lock(&type->i_mutex_dir_key#3/2);
5137 * lock(&sb->s_type->i_mutex_key#14);
5138 *
5139 * Where sb_internal is the lock (a counter that works as a lock) acquired by
5140 * sb_start_intwrite() in btrfs_start_transaction().
5141 * Not locking i_mutex of the inodes is still safe because:
5142 *
5143 * 1) For regular files we log with a mode of LOG_INODE_EXISTS. It's possible
5144 * that while logging the inode new references (names) are added or removed
5145 * from the inode, leaving the logged inode item with a link count that does
5146 * not match the number of logged inode reference items. This is fine because
5147 * at log replay time we compute the real number of links and correct the
5148 * link count in the inode item (see replay_one_buffer() and
5149 * link_to_fixup_dir());
5150 *
5151 * 2) For directories we log with a mode of LOG_INODE_ALL. It's possible that
5152 * while logging the inode's items new items with keys BTRFS_DIR_ITEM_KEY and
5153 * BTRFS_DIR_INDEX_KEY are added to fs/subvol tree and the logged inode item
5154 * has a size that doesn't match the sum of the lengths of all the logged
5155 * names. This does not result in a problem because if a dir_item key is
5156 * logged but its matching dir_index key is not logged, at log replay time we
5157 * don't use it to replay the respective name (see replay_one_name()). On the
5158 * other hand if only the dir_index key ends up being logged, the respective
5159 * name is added to the fs/subvol tree with both the dir_item and dir_index
5160 * keys created (see replay_one_name()).
5161 * The directory's inode item with a wrong i_size is not a problem as well,
5162 * since we don't use it at log replay time to set the i_size in the inode
5163 * item of the fs/subvol tree (see overwrite_item()).
5164 */
5165static int log_new_dir_dentries(struct btrfs_trans_handle *trans,
5166 struct btrfs_root *root,
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005167 struct btrfs_inode *start_inode,
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005168 struct btrfs_log_ctx *ctx)
5169{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005170 struct btrfs_fs_info *fs_info = root->fs_info;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005171 struct btrfs_root *log = root->log_root;
5172 struct btrfs_path *path;
5173 LIST_HEAD(dir_list);
5174 struct btrfs_dir_list *dir_elem;
5175 int ret = 0;
5176
5177 path = btrfs_alloc_path();
5178 if (!path)
5179 return -ENOMEM;
5180
5181 dir_elem = kmalloc(sizeof(*dir_elem), GFP_NOFS);
5182 if (!dir_elem) {
5183 btrfs_free_path(path);
5184 return -ENOMEM;
5185 }
Nikolay Borisov51cc0d32017-01-18 00:31:43 +02005186 dir_elem->ino = btrfs_ino(start_inode);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005187 list_add_tail(&dir_elem->list, &dir_list);
5188
5189 while (!list_empty(&dir_list)) {
5190 struct extent_buffer *leaf;
5191 struct btrfs_key min_key;
5192 int nritems;
5193 int i;
5194
5195 dir_elem = list_first_entry(&dir_list, struct btrfs_dir_list,
5196 list);
5197 if (ret)
5198 goto next_dir_inode;
5199
5200 min_key.objectid = dir_elem->ino;
5201 min_key.type = BTRFS_DIR_ITEM_KEY;
5202 min_key.offset = 0;
5203again:
5204 btrfs_release_path(path);
5205 ret = btrfs_search_forward(log, &min_key, path, trans->transid);
5206 if (ret < 0) {
5207 goto next_dir_inode;
5208 } else if (ret > 0) {
5209 ret = 0;
5210 goto next_dir_inode;
5211 }
5212
5213process_leaf:
5214 leaf = path->nodes[0];
5215 nritems = btrfs_header_nritems(leaf);
5216 for (i = path->slots[0]; i < nritems; i++) {
5217 struct btrfs_dir_item *di;
5218 struct btrfs_key di_key;
5219 struct inode *di_inode;
5220 struct btrfs_dir_list *new_dir_elem;
5221 int log_mode = LOG_INODE_EXISTS;
5222 int type;
5223
5224 btrfs_item_key_to_cpu(leaf, &min_key, i);
5225 if (min_key.objectid != dir_elem->ino ||
5226 min_key.type != BTRFS_DIR_ITEM_KEY)
5227 goto next_dir_inode;
5228
5229 di = btrfs_item_ptr(leaf, i, struct btrfs_dir_item);
5230 type = btrfs_dir_type(leaf, di);
5231 if (btrfs_dir_transid(leaf, di) < trans->transid &&
5232 type != BTRFS_FT_DIR)
5233 continue;
5234 btrfs_dir_item_key_to_cpu(leaf, di, &di_key);
5235 if (di_key.type == BTRFS_ROOT_ITEM_KEY)
5236 continue;
5237
Robbie Koec125cf2016-10-28 10:48:26 +08005238 btrfs_release_path(path);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005239 di_inode = btrfs_iget(fs_info->sb, &di_key, root, NULL);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005240 if (IS_ERR(di_inode)) {
5241 ret = PTR_ERR(di_inode);
5242 goto next_dir_inode;
5243 }
5244
Nikolay Borisov0f8939b2017-01-18 00:31:30 +02005245 if (btrfs_inode_in_log(BTRFS_I(di_inode), trans->transid)) {
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005246 iput(di_inode);
Robbie Koec125cf2016-10-28 10:48:26 +08005247 break;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005248 }
5249
5250 ctx->log_new_dentries = false;
Filipe Manana3f9749f2016-04-25 04:45:02 +01005251 if (type == BTRFS_FT_DIR || type == BTRFS_FT_SYMLINK)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005252 log_mode = LOG_INODE_ALL;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005253 ret = btrfs_log_inode(trans, root, BTRFS_I(di_inode),
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005254 log_mode, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005255 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005256 btrfs_must_commit_transaction(trans, BTRFS_I(di_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005257 ret = 1;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005258 iput(di_inode);
5259 if (ret)
5260 goto next_dir_inode;
5261 if (ctx->log_new_dentries) {
5262 new_dir_elem = kmalloc(sizeof(*new_dir_elem),
5263 GFP_NOFS);
5264 if (!new_dir_elem) {
5265 ret = -ENOMEM;
5266 goto next_dir_inode;
5267 }
5268 new_dir_elem->ino = di_key.objectid;
5269 list_add_tail(&new_dir_elem->list, &dir_list);
5270 }
5271 break;
5272 }
5273 if (i == nritems) {
5274 ret = btrfs_next_leaf(log, path);
5275 if (ret < 0) {
5276 goto next_dir_inode;
5277 } else if (ret > 0) {
5278 ret = 0;
5279 goto next_dir_inode;
5280 }
5281 goto process_leaf;
5282 }
5283 if (min_key.offset < (u64)-1) {
5284 min_key.offset++;
5285 goto again;
5286 }
5287next_dir_inode:
5288 list_del(&dir_elem->list);
5289 kfree(dir_elem);
5290 }
5291
5292 btrfs_free_path(path);
5293 return ret;
5294}
5295
Filipe Manana18aa0922015-08-05 16:49:08 +01005296static int btrfs_log_all_parents(struct btrfs_trans_handle *trans,
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005297 struct btrfs_inode *inode,
Filipe Manana18aa0922015-08-05 16:49:08 +01005298 struct btrfs_log_ctx *ctx)
5299{
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005300 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Filipe Manana18aa0922015-08-05 16:49:08 +01005301 int ret;
5302 struct btrfs_path *path;
5303 struct btrfs_key key;
Nikolay Borisovd0a0b782017-02-20 13:50:30 +02005304 struct btrfs_root *root = inode->root;
5305 const u64 ino = btrfs_ino(inode);
Filipe Manana18aa0922015-08-05 16:49:08 +01005306
5307 path = btrfs_alloc_path();
5308 if (!path)
5309 return -ENOMEM;
5310 path->skip_locking = 1;
5311 path->search_commit_root = 1;
5312
5313 key.objectid = ino;
5314 key.type = BTRFS_INODE_REF_KEY;
5315 key.offset = 0;
5316 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5317 if (ret < 0)
5318 goto out;
5319
5320 while (true) {
5321 struct extent_buffer *leaf = path->nodes[0];
5322 int slot = path->slots[0];
5323 u32 cur_offset = 0;
5324 u32 item_size;
5325 unsigned long ptr;
5326
5327 if (slot >= btrfs_header_nritems(leaf)) {
5328 ret = btrfs_next_leaf(root, path);
5329 if (ret < 0)
5330 goto out;
5331 else if (ret > 0)
5332 break;
5333 continue;
5334 }
5335
5336 btrfs_item_key_to_cpu(leaf, &key, slot);
5337 /* BTRFS_INODE_EXTREF_KEY is BTRFS_INODE_REF_KEY + 1 */
5338 if (key.objectid != ino || key.type > BTRFS_INODE_EXTREF_KEY)
5339 break;
5340
5341 item_size = btrfs_item_size_nr(leaf, slot);
5342 ptr = btrfs_item_ptr_offset(leaf, slot);
5343 while (cur_offset < item_size) {
5344 struct btrfs_key inode_key;
5345 struct inode *dir_inode;
5346
5347 inode_key.type = BTRFS_INODE_ITEM_KEY;
5348 inode_key.offset = 0;
5349
5350 if (key.type == BTRFS_INODE_EXTREF_KEY) {
5351 struct btrfs_inode_extref *extref;
5352
5353 extref = (struct btrfs_inode_extref *)
5354 (ptr + cur_offset);
5355 inode_key.objectid = btrfs_inode_extref_parent(
5356 leaf, extref);
5357 cur_offset += sizeof(*extref);
5358 cur_offset += btrfs_inode_extref_name_len(leaf,
5359 extref);
5360 } else {
5361 inode_key.objectid = key.offset;
5362 cur_offset = item_size;
5363 }
5364
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005365 dir_inode = btrfs_iget(fs_info->sb, &inode_key,
Filipe Manana18aa0922015-08-05 16:49:08 +01005366 root, NULL);
5367 /* If parent inode was deleted, skip it. */
5368 if (IS_ERR(dir_inode))
5369 continue;
5370
Filipe Manana657ed1a2016-04-06 17:11:56 +01005371 if (ctx)
5372 ctx->log_new_dentries = false;
Nikolay Borisova59108a2017-01-18 00:31:48 +02005373 ret = btrfs_log_inode(trans, root, BTRFS_I(dir_inode),
Filipe Manana18aa0922015-08-05 16:49:08 +01005374 LOG_INODE_ALL, 0, LLONG_MAX, ctx);
Filipe Manana2be63d52016-02-12 11:34:23 +00005375 if (!ret &&
Nikolay Borisovab1717b2017-01-18 00:31:27 +02005376 btrfs_must_commit_transaction(trans, BTRFS_I(dir_inode)))
Filipe Manana2be63d52016-02-12 11:34:23 +00005377 ret = 1;
Filipe Manana657ed1a2016-04-06 17:11:56 +01005378 if (!ret && ctx && ctx->log_new_dentries)
5379 ret = log_new_dir_dentries(trans, root,
David Sterbaf85b7372017-01-20 14:54:07 +01005380 BTRFS_I(dir_inode), ctx);
Filipe Manana18aa0922015-08-05 16:49:08 +01005381 iput(dir_inode);
5382 if (ret)
5383 goto out;
5384 }
5385 path->slots[0]++;
5386 }
5387 ret = 0;
5388out:
5389 btrfs_free_path(path);
5390 return ret;
5391}
5392
Chris Masone02119d2008-09-05 16:13:11 -04005393/*
5394 * helper function around btrfs_log_inode to make sure newly created
5395 * parent directories also end up in the log. A minimal inode and backref
5396 * only logging is done of any parent directories that are older than
5397 * the last committed transaction
5398 */
Eric Sandeen48a3b632013-04-25 20:41:01 +00005399static int btrfs_log_inode_parent(struct btrfs_trans_handle *trans,
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005400 struct btrfs_root *root,
5401 struct btrfs_inode *inode,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005402 struct dentry *parent,
5403 const loff_t start,
5404 const loff_t end,
5405 int exists_only,
Miao Xie8b050d32014-02-20 18:08:58 +08005406 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005407{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005408 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason12fcfd22009-03-24 10:24:20 -04005409 int inode_only = exists_only ? LOG_INODE_EXISTS : LOG_INODE_ALL;
Chris Masone02119d2008-09-05 16:13:11 -04005410 struct super_block *sb;
Josef Bacik6a912212010-11-20 09:48:00 +00005411 struct dentry *old_parent = NULL;
Chris Mason12fcfd22009-03-24 10:24:20 -04005412 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005413 u64 last_committed = fs_info->last_trans_committed;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005414 bool log_dentries = false;
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005415 struct btrfs_inode *orig_inode = inode;
Chris Mason12fcfd22009-03-24 10:24:20 -04005416
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005417 sb = inode->vfs_inode.i_sb;
Chris Mason12fcfd22009-03-24 10:24:20 -04005418
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005419 if (btrfs_test_opt(fs_info, NOTREELOG)) {
Sage Weil3a5e1402009-04-02 16:49:40 -04005420 ret = 1;
5421 goto end_no_trans;
5422 }
5423
Miao Xie995946d2014-04-02 19:51:06 +08005424 /*
5425 * The prev transaction commit doesn't complete, we need do
5426 * full commit by ourselves.
5427 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005428 if (fs_info->last_trans_log_full_commit >
5429 fs_info->last_trans_committed) {
Chris Mason12fcfd22009-03-24 10:24:20 -04005430 ret = 1;
5431 goto end_no_trans;
5432 }
5433
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005434 if (root != inode->root || btrfs_root_refs(&root->root_item) == 0) {
Yan, Zheng76dda932009-09-21 16:00:26 -04005435 ret = 1;
5436 goto end_no_trans;
5437 }
5438
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005439 ret = check_parent_dirs_for_sync(trans, inode, parent, sb,
5440 last_committed);
Chris Mason12fcfd22009-03-24 10:24:20 -04005441 if (ret)
5442 goto end_no_trans;
Chris Masone02119d2008-09-05 16:13:11 -04005443
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005444 if (btrfs_inode_in_log(inode, trans->transid)) {
Chris Mason257c62e2009-10-13 13:21:08 -04005445 ret = BTRFS_NO_LOG_SYNC;
5446 goto end_no_trans;
5447 }
5448
Miao Xie8b050d32014-02-20 18:08:58 +08005449 ret = start_log_trans(trans, root, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005450 if (ret)
Miao Xiee87ac132014-02-20 18:08:53 +08005451 goto end_no_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005452
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005453 ret = btrfs_log_inode(trans, root, inode, inode_only, start, end, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005454 if (ret)
5455 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005456
Chris Masonaf4176b2009-03-24 10:24:31 -04005457 /*
5458 * for regular files, if its inode is already on disk, we don't
5459 * have to worry about the parents at all. This is because
5460 * we can use the last_unlink_trans field to record renames
5461 * and other fun in this file.
5462 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005463 if (S_ISREG(inode->vfs_inode.i_mode) &&
5464 inode->generation <= last_committed &&
5465 inode->last_unlink_trans <= last_committed) {
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005466 ret = 0;
5467 goto end_trans;
5468 }
Chris Masonaf4176b2009-03-24 10:24:31 -04005469
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005470 if (S_ISDIR(inode->vfs_inode.i_mode) && ctx && ctx->log_new_dentries)
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005471 log_dentries = true;
5472
Filipe Manana18aa0922015-08-05 16:49:08 +01005473 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005474 * On unlink we must make sure all our current and old parent directory
Filipe Manana18aa0922015-08-05 16:49:08 +01005475 * inodes are fully logged. This is to prevent leaving dangling
5476 * directory index entries in directories that were our parents but are
5477 * not anymore. Not doing this results in old parent directory being
5478 * impossible to delete after log replay (rmdir will always fail with
5479 * error -ENOTEMPTY).
5480 *
5481 * Example 1:
5482 *
5483 * mkdir testdir
5484 * touch testdir/foo
5485 * ln testdir/foo testdir/bar
5486 * sync
5487 * unlink testdir/bar
5488 * xfs_io -c fsync testdir/foo
5489 * <power failure>
5490 * mount fs, triggers log replay
5491 *
5492 * If we don't log the parent directory (testdir), after log replay the
5493 * directory still has an entry pointing to the file inode using the bar
5494 * name, but a matching BTRFS_INODE_[REF|EXTREF]_KEY does not exist and
5495 * the file inode has a link count of 1.
5496 *
5497 * Example 2:
5498 *
5499 * mkdir testdir
5500 * touch foo
5501 * ln foo testdir/foo2
5502 * ln foo testdir/foo3
5503 * sync
5504 * unlink testdir/foo3
5505 * xfs_io -c fsync foo
5506 * <power failure>
5507 * mount fs, triggers log replay
5508 *
5509 * Similar as the first example, after log replay the parent directory
5510 * testdir still has an entry pointing to the inode file with name foo3
5511 * but the file inode does not have a matching BTRFS_INODE_REF_KEY item
5512 * and has a link count of 2.
5513 */
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005514 if (inode->last_unlink_trans > last_committed) {
Filipe Manana18aa0922015-08-05 16:49:08 +01005515 ret = btrfs_log_all_parents(trans, orig_inode, ctx);
5516 if (ret)
5517 goto end_trans;
5518 }
5519
Chris Masond3977122009-01-05 21:25:51 -05005520 while (1) {
Al Virofc640052016-04-10 01:33:30 -04005521 if (!parent || d_really_is_negative(parent) || sb != parent->d_sb)
Chris Masone02119d2008-09-05 16:13:11 -04005522 break;
5523
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005524 inode = BTRFS_I(d_inode(parent));
5525 if (root != inode->root)
Yan, Zheng76dda932009-09-21 16:00:26 -04005526 break;
5527
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005528 if (inode->generation > last_committed) {
5529 ret = btrfs_log_inode(trans, root, inode,
5530 LOG_INODE_EXISTS, 0, LLONG_MAX, ctx);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005531 if (ret)
5532 goto end_trans;
Chris Mason12fcfd22009-03-24 10:24:20 -04005533 }
Yan, Zheng76dda932009-09-21 16:00:26 -04005534 if (IS_ROOT(parent))
Chris Masone02119d2008-09-05 16:13:11 -04005535 break;
Chris Mason12fcfd22009-03-24 10:24:20 -04005536
Josef Bacik6a912212010-11-20 09:48:00 +00005537 parent = dget_parent(parent);
5538 dput(old_parent);
5539 old_parent = parent;
Chris Masone02119d2008-09-05 16:13:11 -04005540 }
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005541 if (log_dentries)
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005542 ret = log_new_dir_dentries(trans, root, orig_inode, ctx);
Filipe Manana2f2ff0e2015-03-20 17:19:46 +00005543 else
5544 ret = 0;
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005545end_trans:
Josef Bacik6a912212010-11-20 09:48:00 +00005546 dput(old_parent);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005547 if (ret < 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005548 btrfs_set_log_full_commit(fs_info, trans);
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005549 ret = 1;
5550 }
Miao Xie8b050d32014-02-20 18:08:58 +08005551
5552 if (ret)
5553 btrfs_remove_log_ctx(root, ctx);
Chris Mason12fcfd22009-03-24 10:24:20 -04005554 btrfs_end_log_trans(root);
5555end_no_trans:
5556 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005557}
5558
5559/*
5560 * it is not safe to log dentry if the chunk root has added new
5561 * chunks. This returns 0 if the dentry was logged, and 1 otherwise.
5562 * If this returns 1, you must commit the transaction to safely get your
5563 * data on disk.
5564 */
5565int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +08005566 struct btrfs_root *root, struct dentry *dentry,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005567 const loff_t start,
5568 const loff_t end,
Miao Xie8b050d32014-02-20 18:08:58 +08005569 struct btrfs_log_ctx *ctx)
Chris Masone02119d2008-09-05 16:13:11 -04005570{
Josef Bacik6a912212010-11-20 09:48:00 +00005571 struct dentry *parent = dget_parent(dentry);
5572 int ret;
5573
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005574 ret = btrfs_log_inode_parent(trans, root, BTRFS_I(d_inode(dentry)),
5575 parent, start, end, 0, ctx);
Josef Bacik6a912212010-11-20 09:48:00 +00005576 dput(parent);
5577
5578 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005579}
5580
5581/*
5582 * should be called during mount to recover any replay any log trees
5583 * from the FS
5584 */
5585int btrfs_recover_log_trees(struct btrfs_root *log_root_tree)
5586{
5587 int ret;
5588 struct btrfs_path *path;
5589 struct btrfs_trans_handle *trans;
5590 struct btrfs_key key;
5591 struct btrfs_key found_key;
5592 struct btrfs_key tmp_key;
5593 struct btrfs_root *log;
5594 struct btrfs_fs_info *fs_info = log_root_tree->fs_info;
5595 struct walk_control wc = {
5596 .process_func = process_one_buffer,
5597 .stage = 0,
5598 };
5599
Chris Masone02119d2008-09-05 16:13:11 -04005600 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005601 if (!path)
5602 return -ENOMEM;
5603
Josef Bacikafcdd122016-09-02 15:40:02 -04005604 set_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005605
Yan, Zheng4a500fd2010-05-16 10:49:59 -04005606 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005607 if (IS_ERR(trans)) {
5608 ret = PTR_ERR(trans);
5609 goto error;
5610 }
Chris Masone02119d2008-09-05 16:13:11 -04005611
5612 wc.trans = trans;
5613 wc.pin = 1;
5614
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00005615 ret = walk_log_tree(trans, log_root_tree, &wc);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005616 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005617 btrfs_handle_fs_error(fs_info, ret,
5618 "Failed to pin buffers while recovering log root tree.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005619 goto error;
5620 }
Chris Masone02119d2008-09-05 16:13:11 -04005621
5622again:
5623 key.objectid = BTRFS_TREE_LOG_OBJECTID;
5624 key.offset = (u64)-1;
David Sterba962a2982014-06-04 18:41:45 +02005625 key.type = BTRFS_ROOT_ITEM_KEY;
Chris Masone02119d2008-09-05 16:13:11 -04005626
Chris Masond3977122009-01-05 21:25:51 -05005627 while (1) {
Chris Masone02119d2008-09-05 16:13:11 -04005628 ret = btrfs_search_slot(NULL, log_root_tree, &key, path, 0, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005629
5630 if (ret < 0) {
Anand Jain34d97002016-03-16 16:43:06 +08005631 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005632 "Couldn't find tree log root.");
5633 goto error;
5634 }
Chris Masone02119d2008-09-05 16:13:11 -04005635 if (ret > 0) {
5636 if (path->slots[0] == 0)
5637 break;
5638 path->slots[0]--;
5639 }
5640 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
5641 path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02005642 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005643 if (found_key.objectid != BTRFS_TREE_LOG_OBJECTID)
5644 break;
5645
Miao Xiecb517ea2013-05-15 07:48:19 +00005646 log = btrfs_read_fs_root(log_root_tree, &found_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005647 if (IS_ERR(log)) {
5648 ret = PTR_ERR(log);
Anand Jain34d97002016-03-16 16:43:06 +08005649 btrfs_handle_fs_error(fs_info, ret,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005650 "Couldn't read tree log root.");
5651 goto error;
5652 }
Chris Masone02119d2008-09-05 16:13:11 -04005653
5654 tmp_key.objectid = found_key.offset;
5655 tmp_key.type = BTRFS_ROOT_ITEM_KEY;
5656 tmp_key.offset = (u64)-1;
5657
5658 wc.replay_dest = btrfs_read_fs_root_no_name(fs_info, &tmp_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005659 if (IS_ERR(wc.replay_dest)) {
5660 ret = PTR_ERR(wc.replay_dest);
Josef Bacikb50c6e22013-04-25 15:55:30 -04005661 free_extent_buffer(log->node);
5662 free_extent_buffer(log->commit_root);
5663 kfree(log);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005664 btrfs_handle_fs_error(fs_info, ret,
5665 "Couldn't read target root for tree log recovery.");
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005666 goto error;
5667 }
Chris Masone02119d2008-09-05 16:13:11 -04005668
Yan Zheng07d400a2009-01-06 11:42:00 -05005669 wc.replay_dest->log_root = log;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04005670 btrfs_record_root_in_trans(trans, wc.replay_dest);
Chris Masone02119d2008-09-05 16:13:11 -04005671 ret = walk_log_tree(trans, log, &wc);
Chris Masone02119d2008-09-05 16:13:11 -04005672
Josef Bacikb50c6e22013-04-25 15:55:30 -04005673 if (!ret && wc.stage == LOG_WALK_REPLAY_ALL) {
Chris Masone02119d2008-09-05 16:13:11 -04005674 ret = fixup_inode_link_counts(trans, wc.replay_dest,
5675 path);
Chris Masone02119d2008-09-05 16:13:11 -04005676 }
Chris Masone02119d2008-09-05 16:13:11 -04005677
5678 key.offset = found_key.offset - 1;
Yan Zheng07d400a2009-01-06 11:42:00 -05005679 wc.replay_dest->log_root = NULL;
Chris Masone02119d2008-09-05 16:13:11 -04005680 free_extent_buffer(log->node);
Chris Masonb263c2c2009-06-11 11:24:47 -04005681 free_extent_buffer(log->commit_root);
Chris Masone02119d2008-09-05 16:13:11 -04005682 kfree(log);
5683
Josef Bacikb50c6e22013-04-25 15:55:30 -04005684 if (ret)
5685 goto error;
5686
Chris Masone02119d2008-09-05 16:13:11 -04005687 if (found_key.offset == 0)
5688 break;
5689 }
David Sterbab3b4aa72011-04-21 01:20:15 +02005690 btrfs_release_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04005691
5692 /* step one is to pin it all, step two is to replay just inodes */
5693 if (wc.pin) {
5694 wc.pin = 0;
5695 wc.process_func = replay_one_buffer;
5696 wc.stage = LOG_WALK_REPLAY_INODES;
5697 goto again;
5698 }
5699 /* step three is to replay everything */
5700 if (wc.stage < LOG_WALK_REPLAY_ALL) {
5701 wc.stage++;
5702 goto again;
5703 }
5704
5705 btrfs_free_path(path);
5706
Josef Bacikabefa552013-04-24 16:40:05 -04005707 /* step 4: commit the transaction, which also unpins the blocks */
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005708 ret = btrfs_commit_transaction(trans);
Josef Bacikabefa552013-04-24 16:40:05 -04005709 if (ret)
5710 return ret;
5711
Chris Masone02119d2008-09-05 16:13:11 -04005712 free_extent_buffer(log_root_tree->node);
5713 log_root_tree->log_root = NULL;
Josef Bacikafcdd122016-09-02 15:40:02 -04005714 clear_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags);
Chris Masone02119d2008-09-05 16:13:11 -04005715 kfree(log_root_tree);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005716
Josef Bacikabefa552013-04-24 16:40:05 -04005717 return 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005718error:
Josef Bacikb50c6e22013-04-25 15:55:30 -04005719 if (wc.trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005720 btrfs_end_transaction(wc.trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005721 btrfs_free_path(path);
5722 return ret;
Chris Masone02119d2008-09-05 16:13:11 -04005723}
Chris Mason12fcfd22009-03-24 10:24:20 -04005724
5725/*
5726 * there are some corner cases where we want to force a full
5727 * commit instead of allowing a directory to be logged.
5728 *
5729 * They revolve around files there were unlinked from the directory, and
5730 * this function updates the parent directory so that a full commit is
5731 * properly done if it is fsync'd later after the unlinks are done.
Filipe Manana2be63d52016-02-12 11:34:23 +00005732 *
5733 * Must be called before the unlink operations (updates to the subvolume tree,
5734 * inodes, etc) are done.
Chris Mason12fcfd22009-03-24 10:24:20 -04005735 */
5736void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005737 struct btrfs_inode *dir, struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -04005738 int for_rename)
5739{
5740 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005741 * when we're logging a file, if it hasn't been renamed
5742 * or unlinked, and its inode is fully committed on disk,
5743 * we don't have to worry about walking up the directory chain
5744 * to log its parents.
5745 *
5746 * So, we use the last_unlink_trans field to put this transid
5747 * into the file. When the file is logged we check it and
5748 * don't log the parents if the file is fully on disk.
5749 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005750 mutex_lock(&inode->log_mutex);
5751 inode->last_unlink_trans = trans->transid;
5752 mutex_unlock(&inode->log_mutex);
Chris Masonaf4176b2009-03-24 10:24:31 -04005753
5754 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005755 * if this directory was already logged any new
5756 * names for this file/dir will get recorded
5757 */
5758 smp_mb();
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005759 if (dir->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005760 return;
5761
5762 /*
5763 * if the inode we're about to unlink was logged,
5764 * the log will be properly updated for any new names
5765 */
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005766 if (inode->logged_trans == trans->transid)
Chris Mason12fcfd22009-03-24 10:24:20 -04005767 return;
5768
5769 /*
5770 * when renaming files across directories, if the directory
5771 * there we're unlinking from gets fsync'd later on, there's
5772 * no way to find the destination directory later and fsync it
5773 * properly. So, we have to be conservative and force commits
5774 * so the new name gets discovered.
5775 */
5776 if (for_rename)
5777 goto record;
5778
5779 /* we can safely do the unlink without any special recording */
5780 return;
5781
5782record:
Nikolay Borisov4176bdb2017-01-18 00:31:28 +02005783 mutex_lock(&dir->log_mutex);
5784 dir->last_unlink_trans = trans->transid;
5785 mutex_unlock(&dir->log_mutex);
Chris Mason12fcfd22009-03-24 10:24:20 -04005786}
5787
5788/*
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005789 * Make sure that if someone attempts to fsync the parent directory of a deleted
5790 * snapshot, it ends up triggering a transaction commit. This is to guarantee
5791 * that after replaying the log tree of the parent directory's root we will not
5792 * see the snapshot anymore and at log replay time we will not see any log tree
5793 * corresponding to the deleted snapshot's root, which could lead to replaying
5794 * it after replaying the log tree of the parent directory (which would replay
5795 * the snapshot delete operation).
Filipe Manana2be63d52016-02-12 11:34:23 +00005796 *
5797 * Must be called before the actual snapshot destroy operation (updates to the
5798 * parent root and tree of tree roots trees, etc) are done.
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005799 */
5800void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
Nikolay Borisov43663552017-01-18 00:31:29 +02005801 struct btrfs_inode *dir)
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005802{
Nikolay Borisov43663552017-01-18 00:31:29 +02005803 mutex_lock(&dir->log_mutex);
5804 dir->last_unlink_trans = trans->transid;
5805 mutex_unlock(&dir->log_mutex);
Filipe Manana1ec9a1a2016-02-10 10:42:25 +00005806}
5807
5808/*
Chris Mason12fcfd22009-03-24 10:24:20 -04005809 * Call this after adding a new name for a file and it will properly
5810 * update the log to reflect the new name.
5811 *
5812 * It will return zero if all goes well, and it will return 1 if a
5813 * full transaction commit is required.
5814 */
5815int btrfs_log_new_name(struct btrfs_trans_handle *trans,
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005816 struct btrfs_inode *inode, struct btrfs_inode *old_dir,
Chris Mason12fcfd22009-03-24 10:24:20 -04005817 struct dentry *parent)
5818{
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005819 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
David Sterbaf85b7372017-01-20 14:54:07 +01005820 struct btrfs_root *root = inode->root;
Chris Mason12fcfd22009-03-24 10:24:20 -04005821
5822 /*
Chris Masonaf4176b2009-03-24 10:24:31 -04005823 * this will force the logging code to walk the dentry chain
5824 * up for the file
5825 */
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005826 if (S_ISREG(inode->vfs_inode.i_mode))
5827 inode->last_unlink_trans = trans->transid;
Chris Masonaf4176b2009-03-24 10:24:31 -04005828
5829 /*
Chris Mason12fcfd22009-03-24 10:24:20 -04005830 * if this inode hasn't been logged and directory we're renaming it
5831 * from hasn't been logged, we don't need to log it
5832 */
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +02005833 if (inode->logged_trans <= fs_info->last_trans_committed &&
5834 (!old_dir || old_dir->logged_trans <= fs_info->last_trans_committed))
Chris Mason12fcfd22009-03-24 10:24:20 -04005835 return 0;
5836
Nikolay Borisov19df27a2017-02-20 13:51:01 +02005837 return btrfs_log_inode_parent(trans, root, inode, parent, 0,
Filipe Manana49dae1b2014-09-06 22:34:39 +01005838 LLONG_MAX, 1, NULL);
Chris Mason12fcfd22009-03-24 10:24:20 -04005839}
5840