blob: 7bb9f557ee3d66d98698c90242c759559b6a7f67 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Chris Mason1e1d2702007-03-15 19:03:33 -04006#include "ctree.h"
Josef Bacik26c2c452021-12-03 17:18:03 -05007#include "inode-item.h"
Chris Mason1e1d2702007-03-15 19:03:33 -04008#include "disk-io.h"
Chris Masone089f052007-03-16 16:20:31 -04009#include "transaction.h"
Chris Mason727011e2010-08-06 13:21:20 -040010#include "print-tree.h"
Chris Mason1e1d2702007-03-15 19:03:33 -040011
Nikolay Borisov9bb84072019-08-27 14:46:28 +030012struct btrfs_inode_ref *btrfs_find_name_in_backref(struct extent_buffer *leaf,
13 int slot, const char *name,
14 int name_len)
Chris Mason39544012007-12-12 14:38:19 -050015{
Chris Mason39544012007-12-12 14:38:19 -050016 struct btrfs_inode_ref *ref;
17 unsigned long ptr;
18 unsigned long name_ptr;
19 u32 item_size;
20 u32 cur_offset = 0;
21 int len;
22
Josef Bacik3212fa12021-10-21 14:58:35 -040023 item_size = btrfs_item_size(leaf, slot);
Filipe Manana1f250e92018-02-28 15:56:10 +000024 ptr = btrfs_item_ptr_offset(leaf, slot);
Chris Mason39544012007-12-12 14:38:19 -050025 while (cur_offset < item_size) {
26 ref = (struct btrfs_inode_ref *)(ptr + cur_offset);
27 len = btrfs_inode_ref_name_len(leaf, ref);
28 name_ptr = (unsigned long)(ref + 1);
29 cur_offset += len + sizeof(*ref);
30 if (len != name_len)
31 continue;
Nikolay Borisov9bb84072019-08-27 14:46:28 +030032 if (memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0)
33 return ref;
Chris Mason39544012007-12-12 14:38:19 -050034 }
Nikolay Borisov9bb84072019-08-27 14:46:28 +030035 return NULL;
Chris Mason39544012007-12-12 14:38:19 -050036}
37
Nikolay Borisov6ff49c62019-08-27 14:46:29 +030038struct btrfs_inode_extref *btrfs_find_name_in_ext_backref(
39 struct extent_buffer *leaf, int slot, u64 ref_objectid,
40 const char *name, int name_len)
Yan, Zhenga22285a2010-05-16 10:48:46 -040041{
Mark Fashehf1863732012-08-08 11:32:27 -070042 struct btrfs_inode_extref *extref;
43 unsigned long ptr;
44 unsigned long name_ptr;
45 u32 item_size;
46 u32 cur_offset = 0;
47 int ref_name_len;
48
Josef Bacik3212fa12021-10-21 14:58:35 -040049 item_size = btrfs_item_size(leaf, slot);
Filipe Manana1f250e92018-02-28 15:56:10 +000050 ptr = btrfs_item_ptr_offset(leaf, slot);
Mark Fashehf1863732012-08-08 11:32:27 -070051
52 /*
53 * Search all extended backrefs in this item. We're only
54 * looking through any collisions so most of the time this is
55 * just going to compare against one buffer. If all is well,
56 * we'll return success and the inode ref object.
57 */
58 while (cur_offset < item_size) {
59 extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
60 name_ptr = (unsigned long)(&extref->name);
61 ref_name_len = btrfs_inode_extref_name_len(leaf, extref);
62
63 if (ref_name_len == name_len &&
64 btrfs_inode_extref_parent(leaf, extref) == ref_objectid &&
Nikolay Borisov6ff49c62019-08-27 14:46:29 +030065 (memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0))
66 return extref;
Mark Fashehf1863732012-08-08 11:32:27 -070067
68 cur_offset += ref_name_len + sizeof(*extref);
69 }
Nikolay Borisov6ff49c62019-08-27 14:46:29 +030070 return NULL;
Mark Fashehf1863732012-08-08 11:32:27 -070071}
72
Mark Fashehf1863732012-08-08 11:32:27 -070073/* Returns NULL if no extref found */
74struct btrfs_inode_extref *
75btrfs_lookup_inode_extref(struct btrfs_trans_handle *trans,
76 struct btrfs_root *root,
77 struct btrfs_path *path,
78 const char *name, int name_len,
79 u64 inode_objectid, u64 ref_objectid, int ins_len,
80 int cow)
81{
82 int ret;
83 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -070084
85 key.objectid = inode_objectid;
86 key.type = BTRFS_INODE_EXTREF_KEY;
87 key.offset = btrfs_extref_hash(ref_objectid, name, name_len);
88
89 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
90 if (ret < 0)
91 return ERR_PTR(ret);
92 if (ret > 0)
93 return NULL;
Nikolay Borisov6ff49c62019-08-27 14:46:29 +030094 return btrfs_find_name_in_ext_backref(path->nodes[0], path->slots[0],
95 ref_objectid, name, name_len);
96
Mark Fashehf1863732012-08-08 11:32:27 -070097}
98
Eric Sandeen48a3b632013-04-25 20:41:01 +000099static int btrfs_del_inode_extref(struct btrfs_trans_handle *trans,
100 struct btrfs_root *root,
101 const char *name, int name_len,
102 u64 inode_objectid, u64 ref_objectid,
103 u64 *index)
Chris Mason39544012007-12-12 14:38:19 -0500104{
105 struct btrfs_path *path;
106 struct btrfs_key key;
Mark Fashehf1863732012-08-08 11:32:27 -0700107 struct btrfs_inode_extref *extref;
108 struct extent_buffer *leaf;
109 int ret;
110 int del_len = name_len + sizeof(*extref);
111 unsigned long ptr;
112 unsigned long item_start;
113 u32 item_size;
114
115 key.objectid = inode_objectid;
David Sterba962a2982014-06-04 18:41:45 +0200116 key.type = BTRFS_INODE_EXTREF_KEY;
Mark Fashehf1863732012-08-08 11:32:27 -0700117 key.offset = btrfs_extref_hash(ref_objectid, name, name_len);
118
119 path = btrfs_alloc_path();
120 if (!path)
121 return -ENOMEM;
122
Mark Fashehf1863732012-08-08 11:32:27 -0700123 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
124 if (ret > 0)
125 ret = -ENOENT;
126 if (ret < 0)
127 goto out;
128
129 /*
130 * Sanity check - did we find the right item for this name?
131 * This should always succeed so error here will make the FS
132 * readonly.
133 */
Nikolay Borisov6ff49c62019-08-27 14:46:29 +0300134 extref = btrfs_find_name_in_ext_backref(path->nodes[0], path->slots[0],
135 ref_objectid, name, name_len);
136 if (!extref) {
Anand Jain34d97002016-03-16 16:43:06 +0800137 btrfs_handle_fs_error(root->fs_info, -ENOENT, NULL);
Mark Fashehf1863732012-08-08 11:32:27 -0700138 ret = -EROFS;
139 goto out;
140 }
141
142 leaf = path->nodes[0];
Josef Bacik3212fa12021-10-21 14:58:35 -0400143 item_size = btrfs_item_size(leaf, path->slots[0]);
Mark Fashehf1863732012-08-08 11:32:27 -0700144 if (index)
145 *index = btrfs_inode_extref_index(leaf, extref);
146
147 if (del_len == item_size) {
148 /*
149 * Common case only one ref in the item, remove the
150 * whole item.
151 */
152 ret = btrfs_del_item(trans, root, path);
153 goto out;
154 }
155
156 ptr = (unsigned long)extref;
157 item_start = btrfs_item_ptr_offset(leaf, path->slots[0]);
158
159 memmove_extent_buffer(leaf, ptr, ptr + del_len,
160 item_size - (ptr + del_len - item_start));
161
David Sterba78ac4f92019-03-20 14:49:12 +0100162 btrfs_truncate_item(path, item_size - del_len, 1);
Mark Fashehf1863732012-08-08 11:32:27 -0700163
164out:
165 btrfs_free_path(path);
166
167 return ret;
168}
169
170int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
171 struct btrfs_root *root,
172 const char *name, int name_len,
173 u64 inode_objectid, u64 ref_objectid, u64 *index)
174{
175 struct btrfs_path *path;
176 struct btrfs_key key;
Chris Mason39544012007-12-12 14:38:19 -0500177 struct btrfs_inode_ref *ref;
178 struct extent_buffer *leaf;
179 unsigned long ptr;
180 unsigned long item_start;
181 u32 item_size;
182 u32 sub_item_len;
183 int ret;
Mark Fashehf1863732012-08-08 11:32:27 -0700184 int search_ext_refs = 0;
Chris Mason39544012007-12-12 14:38:19 -0500185 int del_len = name_len + sizeof(*ref);
186
187 key.objectid = inode_objectid;
188 key.offset = ref_objectid;
David Sterba962a2982014-06-04 18:41:45 +0200189 key.type = BTRFS_INODE_REF_KEY;
Chris Mason39544012007-12-12 14:38:19 -0500190
191 path = btrfs_alloc_path();
192 if (!path)
193 return -ENOMEM;
194
195 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
196 if (ret > 0) {
197 ret = -ENOENT;
Mark Fashehf1863732012-08-08 11:32:27 -0700198 search_ext_refs = 1;
Chris Mason39544012007-12-12 14:38:19 -0500199 goto out;
200 } else if (ret < 0) {
201 goto out;
202 }
Nikolay Borisov9bb84072019-08-27 14:46:28 +0300203
204 ref = btrfs_find_name_in_backref(path->nodes[0], path->slots[0], name,
205 name_len);
206 if (!ref) {
Chris Mason39544012007-12-12 14:38:19 -0500207 ret = -ENOENT;
Mark Fashehf1863732012-08-08 11:32:27 -0700208 search_ext_refs = 1;
Chris Mason39544012007-12-12 14:38:19 -0500209 goto out;
210 }
211 leaf = path->nodes[0];
Josef Bacik3212fa12021-10-21 14:58:35 -0400212 item_size = btrfs_item_size(leaf, path->slots[0]);
Josef Bacikaec74772008-07-24 12:12:38 -0400213
214 if (index)
215 *index = btrfs_inode_ref_index(leaf, ref);
216
Chris Mason39544012007-12-12 14:38:19 -0500217 if (del_len == item_size) {
218 ret = btrfs_del_item(trans, root, path);
219 goto out;
220 }
221 ptr = (unsigned long)ref;
222 sub_item_len = name_len + sizeof(*ref);
223 item_start = btrfs_item_ptr_offset(leaf, path->slots[0]);
224 memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
225 item_size - (ptr + sub_item_len - item_start));
David Sterba78ac4f92019-03-20 14:49:12 +0100226 btrfs_truncate_item(path, item_size - sub_item_len, 1);
Mark Fashehf1863732012-08-08 11:32:27 -0700227out:
228 btrfs_free_path(path);
229
230 if (search_ext_refs) {
231 /*
232 * No refs were found, or we could not find the
233 * name in our ref array. Find and remove the extended
234 * inode ref then.
235 */
236 return btrfs_del_inode_extref(trans, root, name, name_len,
237 inode_objectid, ref_objectid, index);
238 }
239
240 return ret;
241}
242
243/*
244 * btrfs_insert_inode_extref() - Inserts an extended inode ref into a tree.
245 *
246 * The caller must have checked against BTRFS_LINK_MAX already.
247 */
248static int btrfs_insert_inode_extref(struct btrfs_trans_handle *trans,
249 struct btrfs_root *root,
250 const char *name, int name_len,
251 u64 inode_objectid, u64 ref_objectid, u64 index)
252{
253 struct btrfs_inode_extref *extref;
254 int ret;
255 int ins_len = name_len + sizeof(*extref);
256 unsigned long ptr;
257 struct btrfs_path *path;
258 struct btrfs_key key;
259 struct extent_buffer *leaf;
Mark Fashehf1863732012-08-08 11:32:27 -0700260
261 key.objectid = inode_objectid;
262 key.type = BTRFS_INODE_EXTREF_KEY;
263 key.offset = btrfs_extref_hash(ref_objectid, name, name_len);
264
265 path = btrfs_alloc_path();
266 if (!path)
267 return -ENOMEM;
268
Mark Fashehf1863732012-08-08 11:32:27 -0700269 ret = btrfs_insert_empty_item(trans, root, path, &key,
270 ins_len);
271 if (ret == -EEXIST) {
Filipe Manana1f250e92018-02-28 15:56:10 +0000272 if (btrfs_find_name_in_ext_backref(path->nodes[0],
273 path->slots[0],
274 ref_objectid,
Nikolay Borisov6ff49c62019-08-27 14:46:29 +0300275 name, name_len))
Mark Fashehf1863732012-08-08 11:32:27 -0700276 goto out;
277
David Sterbac71dd882019-03-20 14:51:10 +0100278 btrfs_extend_item(path, ins_len);
Mark Fashehf1863732012-08-08 11:32:27 -0700279 ret = 0;
280 }
281 if (ret < 0)
282 goto out;
283
284 leaf = path->nodes[0];
Mark Fashehf1863732012-08-08 11:32:27 -0700285 ptr = (unsigned long)btrfs_item_ptr(leaf, path->slots[0], char);
Josef Bacik3212fa12021-10-21 14:58:35 -0400286 ptr += btrfs_item_size(leaf, path->slots[0]) - ins_len;
Mark Fashehf1863732012-08-08 11:32:27 -0700287 extref = (struct btrfs_inode_extref *)ptr;
288
289 btrfs_set_inode_extref_name_len(path->nodes[0], extref, name_len);
290 btrfs_set_inode_extref_index(path->nodes[0], extref, index);
291 btrfs_set_inode_extref_parent(path->nodes[0], extref, ref_objectid);
292
293 ptr = (unsigned long)&extref->name;
294 write_extent_buffer(path->nodes[0], name, ptr, name_len);
295 btrfs_mark_buffer_dirty(path->nodes[0]);
296
Chris Mason39544012007-12-12 14:38:19 -0500297out:
298 btrfs_free_path(path);
299 return ret;
300}
301
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100302/* Will return 0, -ENOMEM, -EMLINK, or -EEXIST or anything from the CoW path */
Chris Mason39544012007-12-12 14:38:19 -0500303int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
304 struct btrfs_root *root,
305 const char *name, int name_len,
Josef Bacikaec74772008-07-24 12:12:38 -0400306 u64 inode_objectid, u64 ref_objectid, u64 index)
Chris Mason39544012007-12-12 14:38:19 -0500307{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400308 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason39544012007-12-12 14:38:19 -0500309 struct btrfs_path *path;
310 struct btrfs_key key;
311 struct btrfs_inode_ref *ref;
312 unsigned long ptr;
313 int ret;
314 int ins_len = name_len + sizeof(*ref);
315
316 key.objectid = inode_objectid;
317 key.offset = ref_objectid;
David Sterba962a2982014-06-04 18:41:45 +0200318 key.type = BTRFS_INODE_REF_KEY;
Chris Mason39544012007-12-12 14:38:19 -0500319
320 path = btrfs_alloc_path();
321 if (!path)
322 return -ENOMEM;
323
Filipe Mananadf8d1162015-01-14 01:52:25 +0000324 path->skip_release_on_error = 1;
Chris Mason39544012007-12-12 14:38:19 -0500325 ret = btrfs_insert_empty_item(trans, root, path, &key,
326 ins_len);
327 if (ret == -EEXIST) {
328 u32 old_size;
Nikolay Borisov9bb84072019-08-27 14:46:28 +0300329 ref = btrfs_find_name_in_backref(path->nodes[0], path->slots[0],
330 name, name_len);
331 if (ref)
Chris Mason39544012007-12-12 14:38:19 -0500332 goto out;
333
Josef Bacik3212fa12021-10-21 14:58:35 -0400334 old_size = btrfs_item_size(path->nodes[0], path->slots[0]);
David Sterbac71dd882019-03-20 14:51:10 +0100335 btrfs_extend_item(path, ins_len);
Chris Mason39544012007-12-12 14:38:19 -0500336 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
337 struct btrfs_inode_ref);
338 ref = (struct btrfs_inode_ref *)((unsigned long)ref + old_size);
339 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Josef Bacikaec74772008-07-24 12:12:38 -0400340 btrfs_set_inode_ref_index(path->nodes[0], ref, index);
Chris Mason39544012007-12-12 14:38:19 -0500341 ptr = (unsigned long)(ref + 1);
342 ret = 0;
343 } else if (ret < 0) {
Filipe Mananadf8d1162015-01-14 01:52:25 +0000344 if (ret == -EOVERFLOW) {
Filipe Manana1f250e92018-02-28 15:56:10 +0000345 if (btrfs_find_name_in_backref(path->nodes[0],
346 path->slots[0],
Nikolay Borisov9bb84072019-08-27 14:46:28 +0300347 name, name_len))
Filipe Mananadf8d1162015-01-14 01:52:25 +0000348 ret = -EEXIST;
349 else
350 ret = -EMLINK;
351 }
Chris Mason39544012007-12-12 14:38:19 -0500352 goto out;
353 } else {
354 ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
355 struct btrfs_inode_ref);
356 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Josef Bacikaec74772008-07-24 12:12:38 -0400357 btrfs_set_inode_ref_index(path->nodes[0], ref, index);
Chris Mason39544012007-12-12 14:38:19 -0500358 ptr = (unsigned long)(ref + 1);
359 }
360 write_extent_buffer(path->nodes[0], name, ptr, name_len);
361 btrfs_mark_buffer_dirty(path->nodes[0]);
362
363out:
364 btrfs_free_path(path);
Mark Fashehf1863732012-08-08 11:32:27 -0700365
366 if (ret == -EMLINK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400367 struct btrfs_super_block *disk_super = fs_info->super_copy;
Mark Fashehf1863732012-08-08 11:32:27 -0700368 /* We ran out of space in the ref array. Need to
369 * add an extended ref. */
370 if (btrfs_super_incompat_flags(disk_super)
371 & BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF)
372 ret = btrfs_insert_inode_extref(trans, root, name,
373 name_len,
374 inode_objectid,
375 ref_objectid, index);
376 }
377
Chris Mason39544012007-12-12 14:38:19 -0500378 return ret;
379}
380
Chris Mason5f39d392007-10-15 16:14:19 -0400381int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
382 struct btrfs_root *root,
383 struct btrfs_path *path, u64 objectid)
Chris Mason1e1d2702007-03-15 19:03:33 -0400384{
Chris Mason1e1d2702007-03-15 19:03:33 -0400385 struct btrfs_key key;
386 int ret;
387 key.objectid = objectid;
David Sterba962a2982014-06-04 18:41:45 +0200388 key.type = BTRFS_INODE_ITEM_KEY;
Chris Mason1e1d2702007-03-15 19:03:33 -0400389 key.offset = 0;
390
Chris Mason5f39d392007-10-15 16:14:19 -0400391 ret = btrfs_insert_empty_item(trans, root, path, &key,
392 sizeof(struct btrfs_inode_item));
Chris Mason1e1d2702007-03-15 19:03:33 -0400393 return ret;
394}
395
Chris Masone089f052007-03-16 16:20:31 -0400396int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -0400397 *root, struct btrfs_path *path,
398 struct btrfs_key *location, int mod)
Chris Mason1e1d2702007-03-15 19:03:33 -0400399{
Chris Mason1e1d2702007-03-15 19:03:33 -0400400 int ins_len = mod < 0 ? -1 : 0;
401 int cow = mod != 0;
Chris Masond6e4a422007-04-06 15:37:36 -0400402 int ret;
403 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -0400404 struct extent_buffer *leaf;
Chris Masond6e4a422007-04-06 15:37:36 -0400405 struct btrfs_key found_key;
Chris Mason1e1d2702007-03-15 19:03:33 -0400406
Chris Masond6e4a422007-04-06 15:37:36 -0400407 ret = btrfs_search_slot(trans, root, location, path, ins_len, cow);
David Sterba962a2982014-06-04 18:41:45 +0200408 if (ret > 0 && location->type == BTRFS_ROOT_ITEM_KEY &&
Chris Masond6e4a422007-04-06 15:37:36 -0400409 location->offset == (u64)-1 && path->slots[0] != 0) {
410 slot = path->slots[0] - 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400411 leaf = path->nodes[0];
412 btrfs_item_key_to_cpu(leaf, &found_key, slot);
Chris Masond6e4a422007-04-06 15:37:36 -0400413 if (found_key.objectid == location->objectid &&
David Sterba962a2982014-06-04 18:41:45 +0200414 found_key.type == location->type) {
Chris Masond6e4a422007-04-06 15:37:36 -0400415 path->slots[0]--;
416 return 0;
417 }
418 }
419 return ret;
Chris Mason1e1d2702007-03-15 19:03:33 -0400420}
Josef Bacik54f03ab2021-12-03 17:18:04 -0500421
422/*
423 * Remove inode items from a given root.
424 *
425 * @trans: A transaction handle.
426 * @root: The root from which to remove items.
427 * @inode: The inode whose items we want to remove.
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500428 * @control: The btrfs_truncate_control to control how and what we
429 * are truncating.
Josef Bacik54f03ab2021-12-03 17:18:04 -0500430 *
431 * Remove all keys associated with the inode from the given root that have a key
432 * with a type greater than or equals to @min_type. When @min_type has a value of
433 * BTRFS_EXTENT_DATA_KEY, only remove file extent items that have an offset value
434 * greater than or equals to @new_size. If a file extent item that starts before
435 * @new_size and ends after it is found, its length is adjusted.
436 *
437 * Returns: 0 on success, < 0 on error and NEED_TRUNCATE_BLOCK when @min_type is
438 * BTRFS_EXTENT_DATA_KEY and the caller must truncate the last block.
439 */
440int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
441 struct btrfs_root *root,
442 struct btrfs_inode *inode,
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500443 struct btrfs_truncate_control *control)
Josef Bacik54f03ab2021-12-03 17:18:04 -0500444{
445 struct btrfs_fs_info *fs_info = root->fs_info;
446 struct btrfs_path *path;
447 struct extent_buffer *leaf;
448 struct btrfs_file_extent_item *fi;
449 struct btrfs_key key;
450 struct btrfs_key found_key;
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500451 u64 new_size = control->new_size;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500452 u64 extent_num_bytes = 0;
453 u64 extent_offset = 0;
454 u64 item_end = 0;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500455 u32 found_type = (u8)-1;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500456 int del_item;
457 int pending_del_nr = 0;
458 int pending_del_slot = 0;
459 int extent_type = -1;
460 int ret;
461 u64 ino = btrfs_ino(inode);
462 u64 bytes_deleted = 0;
463 bool be_nice = false;
464 bool should_throttle = false;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500465
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500466 BUG_ON(new_size > 0 && control->min_type != BTRFS_EXTENT_DATA_KEY);
Josef Bacik54f03ab2021-12-03 17:18:04 -0500467
Josef Bacikc2ddb6122021-12-03 17:18:10 -0500468 control->last_size = new_size;
469
Josef Bacik54f03ab2021-12-03 17:18:04 -0500470 /*
Josef Bacik275312a2021-12-03 17:18:06 -0500471 * For shareable roots we want to back off from time to time, this turns
472 * out to be subvolume roots, reloc roots, and data reloc roots.
Josef Bacik54f03ab2021-12-03 17:18:04 -0500473 */
Josef Bacik275312a2021-12-03 17:18:06 -0500474 if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Josef Bacik54f03ab2021-12-03 17:18:04 -0500475 be_nice = true;
476
477 path = btrfs_alloc_path();
478 if (!path)
479 return -ENOMEM;
480 path->reada = READA_BACK;
481
Josef Bacik54f03ab2021-12-03 17:18:04 -0500482 key.objectid = ino;
483 key.offset = (u64)-1;
484 key.type = (u8)-1;
485
486search_again:
487 /*
488 * With a 16K leaf size and 128MiB extents, you can actually queue up a
489 * huge file in a single leaf. Most of the time that bytes_deleted is
490 * > 0, it will be huge by the time we get here
491 */
492 if (be_nice && bytes_deleted > SZ_32M &&
493 btrfs_should_end_transaction(trans)) {
494 ret = -EAGAIN;
495 goto out;
496 }
497
498 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
499 if (ret < 0)
500 goto out;
501
502 if (ret > 0) {
503 ret = 0;
504 /* There are no items in the tree for us to truncate, we're done */
505 if (path->slots[0] == 0)
506 goto out;
507 path->slots[0]--;
508 }
509
510 while (1) {
Josef Bacik7097a942021-12-03 17:18:08 -0500511 u64 clear_start = 0, clear_len = 0, extent_start = 0;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500512
513 fi = NULL;
514 leaf = path->nodes[0];
515 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
516 found_type = found_key.type;
517
518 if (found_key.objectid != ino)
519 break;
520
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500521 if (found_type < control->min_type)
Josef Bacik54f03ab2021-12-03 17:18:04 -0500522 break;
523
524 item_end = found_key.offset;
525 if (found_type == BTRFS_EXTENT_DATA_KEY) {
526 fi = btrfs_item_ptr(leaf, path->slots[0],
527 struct btrfs_file_extent_item);
528 extent_type = btrfs_file_extent_type(leaf, fi);
529 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
530 item_end +=
531 btrfs_file_extent_num_bytes(leaf, fi);
532
533 trace_btrfs_truncate_show_fi_regular(
534 inode, leaf, fi, found_key.offset);
535 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
536 item_end += btrfs_file_extent_ram_bytes(leaf, fi);
537
538 trace_btrfs_truncate_show_fi_inline(
539 inode, leaf, fi, path->slots[0],
540 found_key.offset);
541 }
542 item_end--;
543 }
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500544 if (found_type > control->min_type) {
Josef Bacik54f03ab2021-12-03 17:18:04 -0500545 del_item = 1;
546 } else {
547 if (item_end < new_size)
548 break;
549 if (found_key.offset >= new_size)
550 del_item = 1;
551 else
552 del_item = 0;
553 }
Josef Bacik7097a942021-12-03 17:18:08 -0500554
Josef Bacik54f03ab2021-12-03 17:18:04 -0500555 /* FIXME, shrink the extent if the ref count is only 1 */
556 if (found_type != BTRFS_EXTENT_DATA_KEY)
557 goto delete;
558
Josef Bacikd9ac19c2021-12-03 17:18:09 -0500559 control->extents_found++;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500560
561 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
562 u64 num_dec;
563
564 clear_start = found_key.offset;
565 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
566 if (!del_item) {
567 u64 orig_num_bytes =
568 btrfs_file_extent_num_bytes(leaf, fi);
569 extent_num_bytes = ALIGN(new_size -
570 found_key.offset,
571 fs_info->sectorsize);
572 clear_start = ALIGN(new_size, fs_info->sectorsize);
573
574 btrfs_set_file_extent_num_bytes(leaf, fi,
575 extent_num_bytes);
576 num_dec = (orig_num_bytes - extent_num_bytes);
577 if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state) &&
578 extent_start != 0)
579 inode_sub_bytes(&inode->vfs_inode,
580 num_dec);
581 btrfs_mark_buffer_dirty(leaf);
582 } else {
583 extent_num_bytes =
584 btrfs_file_extent_disk_num_bytes(leaf, fi);
585 extent_offset = found_key.offset -
586 btrfs_file_extent_offset(leaf, fi);
587
588 /* FIXME blocksize != 4096 */
589 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
590 if (extent_start != 0) {
Josef Bacik54f03ab2021-12-03 17:18:04 -0500591 if (test_bit(BTRFS_ROOT_SHAREABLE,
592 &root->state))
593 inode_sub_bytes(&inode->vfs_inode,
594 num_dec);
595 }
596 }
597 clear_len = num_dec;
598 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
599 /*
600 * We can't truncate inline items that have had
601 * special encodings
602 */
603 if (!del_item &&
604 btrfs_file_extent_encryption(leaf, fi) == 0 &&
605 btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
606 btrfs_file_extent_compression(leaf, fi) == 0) {
607 u32 size = (u32)(new_size - found_key.offset);
608
609 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
610 size = btrfs_file_extent_calc_inline_size(size);
611 btrfs_truncate_item(path, size, 1);
612 } else if (!del_item) {
613 /*
614 * We have to bail so the last_size is set to
615 * just before this extent.
616 */
617 ret = BTRFS_NEED_TRUNCATE_BLOCK;
618 break;
619 } else {
620 /*
621 * Inline extents are special, we just treat
622 * them as a full sector worth in the file
623 * extent tree just for simplicity sake.
624 */
625 clear_len = fs_info->sectorsize;
626 }
627
628 if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
629 inode_sub_bytes(&inode->vfs_inode,
630 item_end + 1 - new_size);
631 }
632delete:
633 /*
634 * We use btrfs_truncate_inode_items() to clean up log trees for
635 * multiple fsyncs, and in this case we don't want to clear the
636 * file extent range because it's just the log.
637 */
638 if (root == inode->root) {
639 ret = btrfs_inode_clear_file_extent_range(inode,
640 clear_start, clear_len);
641 if (ret) {
642 btrfs_abort_transaction(trans, ret);
643 break;
644 }
645 }
646
647 if (del_item)
Josef Bacikc2ddb6122021-12-03 17:18:10 -0500648 control->last_size = found_key.offset;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500649 else
Josef Bacikc2ddb6122021-12-03 17:18:10 -0500650 control->last_size = new_size;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500651 if (del_item) {
652 if (!pending_del_nr) {
653 /* No pending yet, add ourselves */
654 pending_del_slot = path->slots[0];
655 pending_del_nr = 1;
656 } else if (pending_del_nr &&
657 path->slots[0] + 1 == pending_del_slot) {
658 /* Hop on the pending chunk */
659 pending_del_nr++;
660 pending_del_slot = path->slots[0];
661 } else {
662 BUG();
663 }
664 } else {
665 break;
666 }
667 should_throttle = false;
668
Josef Bacik7097a942021-12-03 17:18:08 -0500669 if (del_item && extent_start != 0 &&
Josef Bacik54f03ab2021-12-03 17:18:04 -0500670 root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
671 struct btrfs_ref ref = { 0 };
672
673 bytes_deleted += extent_num_bytes;
674
675 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF,
676 extent_start, extent_num_bytes, 0);
677 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
678 ino, extent_offset,
679 root->root_key.objectid, false);
680 ret = btrfs_free_extent(trans, &ref);
681 if (ret) {
682 btrfs_abort_transaction(trans, ret);
683 break;
684 }
685 if (be_nice) {
686 if (btrfs_should_throttle_delayed_refs(trans))
687 should_throttle = true;
688 }
689 }
690
691 if (found_type == BTRFS_INODE_ITEM_KEY)
692 break;
693
694 if (path->slots[0] == 0 ||
695 path->slots[0] != pending_del_slot ||
696 should_throttle) {
697 if (pending_del_nr) {
698 ret = btrfs_del_items(trans, root, path,
699 pending_del_slot,
700 pending_del_nr);
701 if (ret) {
702 btrfs_abort_transaction(trans, ret);
703 break;
704 }
705 pending_del_nr = 0;
706 }
707 btrfs_release_path(path);
708
709 /*
710 * We can generate a lot of delayed refs, so we need to
711 * throttle every once and a while and make sure we're
712 * adding enough space to keep up with the work we are
713 * generating. Since we hold a transaction here we
714 * can't flush, and we don't want to FLUSH_LIMIT because
715 * we could have generated too many delayed refs to
716 * actually allocate, so just bail if we're short and
717 * let the normal reservation dance happen higher up.
718 */
719 if (should_throttle) {
720 ret = btrfs_delayed_refs_rsv_refill(fs_info,
721 BTRFS_RESERVE_NO_FLUSH);
722 if (ret) {
723 ret = -EAGAIN;
724 break;
725 }
726 }
727 goto search_again;
728 } else {
729 path->slots[0]--;
730 }
731 }
732out:
733 if (ret >= 0 && pending_del_nr) {
734 int err;
735
736 err = btrfs_del_items(trans, root, path, pending_del_slot,
737 pending_del_nr);
738 if (err) {
739 btrfs_abort_transaction(trans, err);
740 ret = err;
741 }
742 }
Josef Bacikc2ddb6122021-12-03 17:18:10 -0500743
744 ASSERT(control->last_size >= new_size);
745 if (!ret && control->last_size > new_size)
746 control->last_size = new_size;
Josef Bacik54f03ab2021-12-03 17:18:04 -0500747
748 btrfs_free_path(path);
749 return ret;
750}