Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2007 Oracle.  All rights reserved.
  4 */
  5
  6#include "ctree.h"
  7#include "fs.h"
  8#include "messages.h"
  9#include "inode-item.h"
 10#include "disk-io.h"
 11#include "transaction.h"
 12#include "print-tree.h"
 13#include "space-info.h"
 14#include "accessors.h"
 15#include "extent-tree.h"
 16#include "file-item.h"
 17
 18struct btrfs_inode_ref *btrfs_find_name_in_backref(struct extent_buffer *leaf,
 19						   int slot,
 20						   const struct fscrypt_str *name)
 21{
 22	struct btrfs_inode_ref *ref;
 23	unsigned long ptr;
 24	unsigned long name_ptr;
 25	u32 item_size;
 26	u32 cur_offset = 0;
 27	int len;
 28
 29	item_size = btrfs_item_size(leaf, slot);
 30	ptr = btrfs_item_ptr_offset(leaf, slot);
 31	while (cur_offset < item_size) {
 32		ref = (struct btrfs_inode_ref *)(ptr + cur_offset);
 33		len = btrfs_inode_ref_name_len(leaf, ref);
 34		name_ptr = (unsigned long)(ref + 1);
 35		cur_offset += len + sizeof(*ref);
 36		if (len != name->len)
 37			continue;
 38		if (memcmp_extent_buffer(leaf, name->name, name_ptr,
 39					 name->len) == 0)
 40			return ref;
 41	}
 42	return NULL;
 43}
 44
 45struct btrfs_inode_extref *btrfs_find_name_in_ext_backref(
 46		struct extent_buffer *leaf, int slot, u64 ref_objectid,
 47		const struct fscrypt_str *name)
 48{
 49	struct btrfs_inode_extref *extref;
 50	unsigned long ptr;
 51	unsigned long name_ptr;
 52	u32 item_size;
 53	u32 cur_offset = 0;
 54	int ref_name_len;
 55
 56	item_size = btrfs_item_size(leaf, slot);
 57	ptr = btrfs_item_ptr_offset(leaf, slot);
 58
 59	/*
 60	 * Search all extended backrefs in this item. We're only
 61	 * looking through any collisions so most of the time this is
 62	 * just going to compare against one buffer. If all is well,
 63	 * we'll return success and the inode ref object.
 64	 */
 65	while (cur_offset < item_size) {
 66		extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
 67		name_ptr = (unsigned long)(&extref->name);
 68		ref_name_len = btrfs_inode_extref_name_len(leaf, extref);
 69
 70		if (ref_name_len == name->len &&
 71		    btrfs_inode_extref_parent(leaf, extref) == ref_objectid &&
 72		    (memcmp_extent_buffer(leaf, name->name, name_ptr,
 73					  name->len) == 0))
 74			return extref;
 75
 76		cur_offset += ref_name_len + sizeof(*extref);
 77	}
 78	return NULL;
 79}
 80
 81/* Returns NULL if no extref found */
 82struct btrfs_inode_extref *
 83btrfs_lookup_inode_extref(struct btrfs_trans_handle *trans,
 84			  struct btrfs_root *root,
 85			  struct btrfs_path *path,
 86			  const struct fscrypt_str *name,
 87			  u64 inode_objectid, u64 ref_objectid, int ins_len,
 88			  int cow)
 89{
 90	int ret;
 91	struct btrfs_key key;
 92
 93	key.objectid = inode_objectid;
 94	key.type = BTRFS_INODE_EXTREF_KEY;
 95	key.offset = btrfs_extref_hash(ref_objectid, name->name, name->len);
 96
 97	ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
 98	if (ret < 0)
 99		return ERR_PTR(ret);
100	if (ret > 0)
101		return NULL;
102	return btrfs_find_name_in_ext_backref(path->nodes[0], path->slots[0],
103					      ref_objectid, name);
104
105}
106
107static int btrfs_del_inode_extref(struct btrfs_trans_handle *trans,
108				  struct btrfs_root *root,
109				  const struct fscrypt_str *name,
110				  u64 inode_objectid, u64 ref_objectid,
111				  u64 *index)
112{
113	struct btrfs_path *path;
114	struct btrfs_key key;
115	struct btrfs_inode_extref *extref;
116	struct extent_buffer *leaf;
117	int ret;
118	int del_len = name->len + sizeof(*extref);
119	unsigned long ptr;
120	unsigned long item_start;
121	u32 item_size;
122
123	key.objectid = inode_objectid;
124	key.type = BTRFS_INODE_EXTREF_KEY;
125	key.offset = btrfs_extref_hash(ref_objectid, name->name, name->len);
126
127	path = btrfs_alloc_path();
128	if (!path)
129		return -ENOMEM;
130
131	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
132	if (ret > 0)
133		ret = -ENOENT;
134	if (ret < 0)
135		goto out;
136
137	/*
138	 * Sanity check - did we find the right item for this name?
139	 * This should always succeed so error here will make the FS
140	 * readonly.
141	 */
142	extref = btrfs_find_name_in_ext_backref(path->nodes[0], path->slots[0],
143						ref_objectid, name);
144	if (!extref) {
145		btrfs_handle_fs_error(root->fs_info, -ENOENT, NULL);
146		ret = -EROFS;
147		goto out;
148	}
149
150	leaf = path->nodes[0];
151	item_size = btrfs_item_size(leaf, path->slots[0]);
152	if (index)
153		*index = btrfs_inode_extref_index(leaf, extref);
154
155	if (del_len == item_size) {
156		/*
157		 * Common case only one ref in the item, remove the
158		 * whole item.
159		 */
160		ret = btrfs_del_item(trans, root, path);
161		goto out;
162	}
163
164	ptr = (unsigned long)extref;
165	item_start = btrfs_item_ptr_offset(leaf, path->slots[0]);
166
167	memmove_extent_buffer(leaf, ptr, ptr + del_len,
168			      item_size - (ptr + del_len - item_start));
169
170	btrfs_truncate_item(trans, path, item_size - del_len, 1);
171
172out:
173	btrfs_free_path(path);
174
175	return ret;
176}
177
178int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
179			struct btrfs_root *root, const struct fscrypt_str *name,
180			u64 inode_objectid, u64 ref_objectid, u64 *index)
181{
182	struct btrfs_path *path;
183	struct btrfs_key key;
184	struct btrfs_inode_ref *ref;
185	struct extent_buffer *leaf;
186	unsigned long ptr;
187	unsigned long item_start;
188	u32 item_size;
189	u32 sub_item_len;
190	int ret;
191	int search_ext_refs = 0;
192	int del_len = name->len + sizeof(*ref);
193
194	key.objectid = inode_objectid;
195	key.offset = ref_objectid;
196	key.type = BTRFS_INODE_REF_KEY;
197
198	path = btrfs_alloc_path();
199	if (!path)
200		return -ENOMEM;
201
202	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
203	if (ret > 0) {
204		ret = -ENOENT;
205		search_ext_refs = 1;
206		goto out;
207	} else if (ret < 0) {
208		goto out;
209	}
210
211	ref = btrfs_find_name_in_backref(path->nodes[0], path->slots[0], name);
212	if (!ref) {
213		ret = -ENOENT;
214		search_ext_refs = 1;
215		goto out;
216	}
217	leaf = path->nodes[0];
218	item_size = btrfs_item_size(leaf, path->slots[0]);
219
220	if (index)
221		*index = btrfs_inode_ref_index(leaf, ref);
222
223	if (del_len == item_size) {
224		ret = btrfs_del_item(trans, root, path);
225		goto out;
226	}
227	ptr = (unsigned long)ref;
228	sub_item_len = name->len + sizeof(*ref);
229	item_start = btrfs_item_ptr_offset(leaf, path->slots[0]);
230	memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
231			      item_size - (ptr + sub_item_len - item_start));
232	btrfs_truncate_item(trans, path, item_size - sub_item_len, 1);
233out:
234	btrfs_free_path(path);
235
236	if (search_ext_refs) {
237		/*
238		 * No refs were found, or we could not find the
239		 * name in our ref array. Find and remove the extended
240		 * inode ref then.
241		 */
242		return btrfs_del_inode_extref(trans, root, name,
243					      inode_objectid, ref_objectid, index);
244	}
245
246	return ret;
247}
248
249/*
250 * Insert an extended inode ref into a tree.
251 *
252 * The caller must have checked against BTRFS_LINK_MAX already.
253 */
254static int btrfs_insert_inode_extref(struct btrfs_trans_handle *trans,
255				     struct btrfs_root *root,
256				     const struct fscrypt_str *name,
257				     u64 inode_objectid, u64 ref_objectid,
258				     u64 index)
259{
260	struct btrfs_inode_extref *extref;
261	int ret;
262	int ins_len = name->len + sizeof(*extref);
263	unsigned long ptr;
264	struct btrfs_path *path;
265	struct btrfs_key key;
266	struct extent_buffer *leaf;
267
268	key.objectid = inode_objectid;
269	key.type = BTRFS_INODE_EXTREF_KEY;
270	key.offset = btrfs_extref_hash(ref_objectid, name->name, name->len);
271
272	path = btrfs_alloc_path();
273	if (!path)
274		return -ENOMEM;
275
276	ret = btrfs_insert_empty_item(trans, root, path, &key,
277				      ins_len);
278	if (ret == -EEXIST) {
279		if (btrfs_find_name_in_ext_backref(path->nodes[0],
280						   path->slots[0],
281						   ref_objectid,
282						   name))
283			goto out;
284
285		btrfs_extend_item(trans, path, ins_len);
286		ret = 0;
287	}
288	if (ret < 0)
289		goto out;
290
291	leaf = path->nodes[0];
292	ptr = (unsigned long)btrfs_item_ptr(leaf, path->slots[0], char);
293	ptr += btrfs_item_size(leaf, path->slots[0]) - ins_len;
294	extref = (struct btrfs_inode_extref *)ptr;
295
296	btrfs_set_inode_extref_name_len(path->nodes[0], extref, name->len);
297	btrfs_set_inode_extref_index(path->nodes[0], extref, index);
298	btrfs_set_inode_extref_parent(path->nodes[0], extref, ref_objectid);
299
300	ptr = (unsigned long)&extref->name;
301	write_extent_buffer(path->nodes[0], name->name, ptr, name->len);
302	btrfs_mark_buffer_dirty(trans, path->nodes[0]);
303
304out:
305	btrfs_free_path(path);
306	return ret;
307}
308
309/* Will return 0, -ENOMEM, -EMLINK, or -EEXIST or anything from the CoW path */
310int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
311			   struct btrfs_root *root, const struct fscrypt_str *name,
312			   u64 inode_objectid, u64 ref_objectid, u64 index)
313{
314	struct btrfs_fs_info *fs_info = root->fs_info;
315	struct btrfs_path *path;
316	struct btrfs_key key;
317	struct btrfs_inode_ref *ref;
318	unsigned long ptr;
319	int ret;
320	int ins_len = name->len + sizeof(*ref);
321
322	key.objectid = inode_objectid;
323	key.offset = ref_objectid;
324	key.type = BTRFS_INODE_REF_KEY;
325
326	path = btrfs_alloc_path();
327	if (!path)
328		return -ENOMEM;
329
330	path->skip_release_on_error = 1;
331	ret = btrfs_insert_empty_item(trans, root, path, &key,
332				      ins_len);
333	if (ret == -EEXIST) {
334		u32 old_size;
335		ref = btrfs_find_name_in_backref(path->nodes[0], path->slots[0],
336						 name);
337		if (ref)
338			goto out;
339
340		old_size = btrfs_item_size(path->nodes[0], path->slots[0]);
341		btrfs_extend_item(trans, path, ins_len);
342		ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
343				     struct btrfs_inode_ref);
344		ref = (struct btrfs_inode_ref *)((unsigned long)ref + old_size);
345		btrfs_set_inode_ref_name_len(path->nodes[0], ref, name->len);
346		btrfs_set_inode_ref_index(path->nodes[0], ref, index);
347		ptr = (unsigned long)(ref + 1);
348		ret = 0;
349	} else if (ret < 0) {
350		if (ret == -EOVERFLOW) {
351			if (btrfs_find_name_in_backref(path->nodes[0],
352						       path->slots[0],
353						       name))
354				ret = -EEXIST;
355			else
356				ret = -EMLINK;
357		}
358		goto out;
359	} else {
360		ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
361				     struct btrfs_inode_ref);
362		btrfs_set_inode_ref_name_len(path->nodes[0], ref, name->len);
363		btrfs_set_inode_ref_index(path->nodes[0], ref, index);
364		ptr = (unsigned long)(ref + 1);
365	}
366	write_extent_buffer(path->nodes[0], name->name, ptr, name->len);
367	btrfs_mark_buffer_dirty(trans, path->nodes[0]);
368
369out:
370	btrfs_free_path(path);
371
372	if (ret == -EMLINK) {
373		struct btrfs_super_block *disk_super = fs_info->super_copy;
374		/* We ran out of space in the ref array. Need to
375		 * add an extended ref. */
376		if (btrfs_super_incompat_flags(disk_super)
377		    & BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF)
378			ret = btrfs_insert_inode_extref(trans, root, name,
379							inode_objectid,
380							ref_objectid, index);
381	}
382
383	return ret;
384}
385
386int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
387			     struct btrfs_root *root,
388			     struct btrfs_path *path, u64 objectid)
389{
390	struct btrfs_key key;
391	int ret;
392	key.objectid = objectid;
393	key.type = BTRFS_INODE_ITEM_KEY;
394	key.offset = 0;
395
396	ret = btrfs_insert_empty_item(trans, root, path, &key,
397				      sizeof(struct btrfs_inode_item));
398	return ret;
399}
400
401int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
402		       *root, struct btrfs_path *path,
403		       struct btrfs_key *location, int mod)
404{
405	int ins_len = mod < 0 ? -1 : 0;
406	int cow = mod != 0;
407	int ret;
408	int slot;
409	struct extent_buffer *leaf;
410	struct btrfs_key found_key;
411
412	ret = btrfs_search_slot(trans, root, location, path, ins_len, cow);
413	if (ret > 0 && location->type == BTRFS_ROOT_ITEM_KEY &&
414	    location->offset == (u64)-1 && path->slots[0] != 0) {
415		slot = path->slots[0] - 1;
416		leaf = path->nodes[0];
417		btrfs_item_key_to_cpu(leaf, &found_key, slot);
418		if (found_key.objectid == location->objectid &&
419		    found_key.type == location->type) {
420			path->slots[0]--;
421			return 0;
422		}
423	}
424	return ret;
425}
426
427static inline void btrfs_trace_truncate(struct btrfs_inode *inode,
428					struct extent_buffer *leaf,
429					struct btrfs_file_extent_item *fi,
430					u64 offset, int extent_type, int slot)
431{
432	if (!inode)
433		return;
434	if (extent_type == BTRFS_FILE_EXTENT_INLINE)
435		trace_btrfs_truncate_show_fi_inline(inode, leaf, fi, slot,
436						    offset);
437	else
438		trace_btrfs_truncate_show_fi_regular(inode, leaf, fi, offset);
439}
440
441/*
442 * Remove inode items from a given root.
443 *
444 * @trans:		A transaction handle.
445 * @root:		The root from which to remove items.
446 * @inode:		The inode whose items we want to remove.
447 * @control:		The btrfs_truncate_control to control how and what we
448 *			are truncating.
449 *
450 * Remove all keys associated with the inode from the given root that have a key
451 * with a type greater than or equals to @min_type. When @min_type has a value of
452 * BTRFS_EXTENT_DATA_KEY, only remove file extent items that have an offset value
453 * greater than or equals to @new_size. If a file extent item that starts before
454 * @new_size and ends after it is found, its length is adjusted.
455 *
456 * Returns: 0 on success, < 0 on error and NEED_TRUNCATE_BLOCK when @min_type is
457 * BTRFS_EXTENT_DATA_KEY and the caller must truncate the last block.
458 */
459int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
460			       struct btrfs_root *root,
461			       struct btrfs_truncate_control *control)
462{
463	struct btrfs_fs_info *fs_info = root->fs_info;
464	struct btrfs_path *path;
465	struct extent_buffer *leaf;
466	struct btrfs_file_extent_item *fi;
467	struct btrfs_key key;
468	struct btrfs_key found_key;
469	u64 new_size = control->new_size;
470	u64 extent_num_bytes = 0;
471	u64 extent_offset = 0;
472	u64 item_end = 0;
473	u32 found_type = (u8)-1;
474	int del_item;
475	int pending_del_nr = 0;
476	int pending_del_slot = 0;
477	int extent_type = -1;
478	int ret;
479	u64 bytes_deleted = 0;
480	bool be_nice = false;
481
482	ASSERT(control->inode || !control->clear_extent_range);
483	ASSERT(new_size == 0 || control->min_type == BTRFS_EXTENT_DATA_KEY);
484
485	control->last_size = new_size;
486	control->sub_bytes = 0;
487
488	/*
489	 * For shareable roots we want to back off from time to time, this turns
490	 * out to be subvolume roots, reloc roots, and data reloc roots.
491	 */
492	if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
493		be_nice = true;
494
495	path = btrfs_alloc_path();
496	if (!path)
497		return -ENOMEM;
498	path->reada = READA_BACK;
499
500	key.objectid = control->ino;
501	key.offset = (u64)-1;
502	key.type = (u8)-1;
503
504search_again:
505	/*
506	 * With a 16K leaf size and 128MiB extents, you can actually queue up a
507	 * huge file in a single leaf.  Most of the time that bytes_deleted is
508	 * > 0, it will be huge by the time we get here
509	 */
510	if (be_nice && bytes_deleted > SZ_32M &&
511	    btrfs_should_end_transaction(trans)) {
512		ret = -EAGAIN;
513		goto out;
514	}
515
516	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
517	if (ret < 0)
518		goto out;
519
520	if (ret > 0) {
521		ret = 0;
522		/* There are no items in the tree for us to truncate, we're done */
523		if (path->slots[0] == 0)
524			goto out;
525		path->slots[0]--;
526	}
527
528	while (1) {
529		u64 clear_start = 0, clear_len = 0, extent_start = 0;
530		bool refill_delayed_refs_rsv = false;
531
532		fi = NULL;
533		leaf = path->nodes[0];
534		btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
535		found_type = found_key.type;
536
537		if (found_key.objectid != control->ino)
538			break;
539
540		if (found_type < control->min_type)
541			break;
542
543		item_end = found_key.offset;
544		if (found_type == BTRFS_EXTENT_DATA_KEY) {
545			fi = btrfs_item_ptr(leaf, path->slots[0],
546					    struct btrfs_file_extent_item);
547			extent_type = btrfs_file_extent_type(leaf, fi);
548			if (extent_type != BTRFS_FILE_EXTENT_INLINE)
549				item_end +=
550				    btrfs_file_extent_num_bytes(leaf, fi);
551			else if (extent_type == BTRFS_FILE_EXTENT_INLINE)
552				item_end += btrfs_file_extent_ram_bytes(leaf, fi);
553
554			btrfs_trace_truncate(control->inode, leaf, fi,
555					     found_key.offset, extent_type,
556					     path->slots[0]);
557			item_end--;
558		}
559		if (found_type > control->min_type) {
560			del_item = 1;
561		} else {
562			if (item_end < new_size)
563				break;
564			if (found_key.offset >= new_size)
565				del_item = 1;
566			else
567				del_item = 0;
568		}
569
570		/* FIXME, shrink the extent if the ref count is only 1 */
571		if (found_type != BTRFS_EXTENT_DATA_KEY)
572			goto delete;
573
574		control->extents_found++;
575
576		if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
577			u64 num_dec;
578
579			clear_start = found_key.offset;
580			extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
581			if (!del_item) {
582				u64 orig_num_bytes =
583					btrfs_file_extent_num_bytes(leaf, fi);
584				extent_num_bytes = ALIGN(new_size -
585						found_key.offset,
586						fs_info->sectorsize);
587				clear_start = ALIGN(new_size, fs_info->sectorsize);
588
589				btrfs_set_file_extent_num_bytes(leaf, fi,
590							 extent_num_bytes);
591				num_dec = (orig_num_bytes - extent_num_bytes);
592				if (extent_start != 0)
593					control->sub_bytes += num_dec;
594				btrfs_mark_buffer_dirty(trans, leaf);
595			} else {
596				extent_num_bytes =
597					btrfs_file_extent_disk_num_bytes(leaf, fi);
598				extent_offset = found_key.offset -
599					btrfs_file_extent_offset(leaf, fi);
600
601				/* FIXME blocksize != 4096 */
602				num_dec = btrfs_file_extent_num_bytes(leaf, fi);
603				if (extent_start != 0)
604					control->sub_bytes += num_dec;
605			}
606			clear_len = num_dec;
607		} else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
608			/*
609			 * We can't truncate inline items that have had
610			 * special encodings
611			 */
612			if (!del_item &&
613			    btrfs_file_extent_encryption(leaf, fi) == 0 &&
614			    btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
615			    btrfs_file_extent_compression(leaf, fi) == 0) {
616				u32 size = (u32)(new_size - found_key.offset);
617
618				btrfs_set_file_extent_ram_bytes(leaf, fi, size);
619				size = btrfs_file_extent_calc_inline_size(size);
620				btrfs_truncate_item(trans, path, size, 1);
621			} else if (!del_item) {
622				/*
623				 * We have to bail so the last_size is set to
624				 * just before this extent.
625				 */
626				ret = BTRFS_NEED_TRUNCATE_BLOCK;
627				break;
628			} else {
629				/*
630				 * Inline extents are special, we just treat
631				 * them as a full sector worth in the file
632				 * extent tree just for simplicity sake.
633				 */
634				clear_len = fs_info->sectorsize;
635			}
636
637			control->sub_bytes += item_end + 1 - new_size;
638		}
639delete:
640		/*
641		 * We only want to clear the file extent range if we're
642		 * modifying the actual inode's mapping, which is just the
643		 * normal truncate path.
644		 */
645		if (control->clear_extent_range) {
646			ret = btrfs_inode_clear_file_extent_range(control->inode,
647						  clear_start, clear_len);
648			if (ret) {
649				btrfs_abort_transaction(trans, ret);
650				break;
651			}
652		}
653
654		if (del_item) {
655			ASSERT(!pending_del_nr ||
656			       ((path->slots[0] + 1) == pending_del_slot));
657
658			control->last_size = found_key.offset;
659			if (!pending_del_nr) {
660				/* No pending yet, add ourselves */
661				pending_del_slot = path->slots[0];
662				pending_del_nr = 1;
663			} else if (path->slots[0] + 1 == pending_del_slot) {
664				/* Hop on the pending chunk */
665				pending_del_nr++;
666				pending_del_slot = path->slots[0];
667			}
668		} else {
669			control->last_size = new_size;
670			break;
671		}
672
673		if (del_item && extent_start != 0 && !control->skip_ref_updates) {
674			struct btrfs_ref ref = { 0 };
675
676			bytes_deleted += extent_num_bytes;
677
678			btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF,
679					extent_start, extent_num_bytes, 0,
680					root->root_key.objectid);
681			btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
682					control->ino, extent_offset,
683					root->root_key.objectid, false);
684			ret = btrfs_free_extent(trans, &ref);
685			if (ret) {
686				btrfs_abort_transaction(trans, ret);
687				break;
688			}
689			if (be_nice && btrfs_check_space_for_delayed_refs(fs_info))
690				refill_delayed_refs_rsv = true;
691		}
692
693		if (found_type == BTRFS_INODE_ITEM_KEY)
694			break;
695
696		if (path->slots[0] == 0 ||
697		    path->slots[0] != pending_del_slot ||
698		    refill_delayed_refs_rsv) {
699			if (pending_del_nr) {
700				ret = btrfs_del_items(trans, root, path,
701						pending_del_slot,
702						pending_del_nr);
703				if (ret) {
704					btrfs_abort_transaction(trans, ret);
705					break;
706				}
707				pending_del_nr = 0;
708			}
709			btrfs_release_path(path);
710
711			/*
712			 * We can generate a lot of delayed refs, so we need to
713			 * throttle every once and a while and make sure we're
714			 * adding enough space to keep up with the work we are
715			 * generating.  Since we hold a transaction here we
716			 * can't flush, and we don't want to FLUSH_LIMIT because
717			 * we could have generated too many delayed refs to
718			 * actually allocate, so just bail if we're short and
719			 * let the normal reservation dance happen higher up.
720			 */
721			if (refill_delayed_refs_rsv) {
722				ret = btrfs_delayed_refs_rsv_refill(fs_info,
723							BTRFS_RESERVE_NO_FLUSH);
724				if (ret) {
725					ret = -EAGAIN;
726					break;
727				}
728			}
729			goto search_again;
730		} else {
731			path->slots[0]--;
732		}
733	}
734out:
735	if (ret >= 0 && pending_del_nr) {
736		int err;
737
738		err = btrfs_del_items(trans, root, path, pending_del_slot,
739				      pending_del_nr);
740		if (err) {
741			btrfs_abort_transaction(trans, err);
742			ret = err;
743		}
744	}
745
746	ASSERT(control->last_size >= new_size);
747	if (!ret && control->last_size > new_size)
748		control->last_size = new_size;
749
750	btrfs_free_path(path);
751	return ret;
752}
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2007 Oracle.  All rights reserved.
  4 */
  5
  6#include "ctree.h"
  7#include "fs.h"
  8#include "messages.h"
  9#include "inode-item.h"
 10#include "disk-io.h"
 11#include "transaction.h"
 
 12#include "space-info.h"
 13#include "accessors.h"
 14#include "extent-tree.h"
 15#include "file-item.h"
 16
 17struct btrfs_inode_ref *btrfs_find_name_in_backref(struct extent_buffer *leaf,
 18						   int slot,
 19						   const struct fscrypt_str *name)
 20{
 21	struct btrfs_inode_ref *ref;
 22	unsigned long ptr;
 23	unsigned long name_ptr;
 24	u32 item_size;
 25	u32 cur_offset = 0;
 26	int len;
 27
 28	item_size = btrfs_item_size(leaf, slot);
 29	ptr = btrfs_item_ptr_offset(leaf, slot);
 30	while (cur_offset < item_size) {
 31		ref = (struct btrfs_inode_ref *)(ptr + cur_offset);
 32		len = btrfs_inode_ref_name_len(leaf, ref);
 33		name_ptr = (unsigned long)(ref + 1);
 34		cur_offset += len + sizeof(*ref);
 35		if (len != name->len)
 36			continue;
 37		if (memcmp_extent_buffer(leaf, name->name, name_ptr,
 38					 name->len) == 0)
 39			return ref;
 40	}
 41	return NULL;
 42}
 43
 44struct btrfs_inode_extref *btrfs_find_name_in_ext_backref(
 45		struct extent_buffer *leaf, int slot, u64 ref_objectid,
 46		const struct fscrypt_str *name)
 47{
 48	struct btrfs_inode_extref *extref;
 49	unsigned long ptr;
 50	unsigned long name_ptr;
 51	u32 item_size;
 52	u32 cur_offset = 0;
 53	int ref_name_len;
 54
 55	item_size = btrfs_item_size(leaf, slot);
 56	ptr = btrfs_item_ptr_offset(leaf, slot);
 57
 58	/*
 59	 * Search all extended backrefs in this item. We're only
 60	 * looking through any collisions so most of the time this is
 61	 * just going to compare against one buffer. If all is well,
 62	 * we'll return success and the inode ref object.
 63	 */
 64	while (cur_offset < item_size) {
 65		extref = (struct btrfs_inode_extref *) (ptr + cur_offset);
 66		name_ptr = (unsigned long)(&extref->name);
 67		ref_name_len = btrfs_inode_extref_name_len(leaf, extref);
 68
 69		if (ref_name_len == name->len &&
 70		    btrfs_inode_extref_parent(leaf, extref) == ref_objectid &&
 71		    (memcmp_extent_buffer(leaf, name->name, name_ptr,
 72					  name->len) == 0))
 73			return extref;
 74
 75		cur_offset += ref_name_len + sizeof(*extref);
 76	}
 77	return NULL;
 78}
 79
 80/* Returns NULL if no extref found */
 81struct btrfs_inode_extref *
 82btrfs_lookup_inode_extref(struct btrfs_trans_handle *trans,
 83			  struct btrfs_root *root,
 84			  struct btrfs_path *path,
 85			  const struct fscrypt_str *name,
 86			  u64 inode_objectid, u64 ref_objectid, int ins_len,
 87			  int cow)
 88{
 89	int ret;
 90	struct btrfs_key key;
 91
 92	key.objectid = inode_objectid;
 93	key.type = BTRFS_INODE_EXTREF_KEY;
 94	key.offset = btrfs_extref_hash(ref_objectid, name->name, name->len);
 95
 96	ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
 97	if (ret < 0)
 98		return ERR_PTR(ret);
 99	if (ret > 0)
100		return NULL;
101	return btrfs_find_name_in_ext_backref(path->nodes[0], path->slots[0],
102					      ref_objectid, name);
103
104}
105
106static int btrfs_del_inode_extref(struct btrfs_trans_handle *trans,
107				  struct btrfs_root *root,
108				  const struct fscrypt_str *name,
109				  u64 inode_objectid, u64 ref_objectid,
110				  u64 *index)
111{
112	struct btrfs_path *path;
113	struct btrfs_key key;
114	struct btrfs_inode_extref *extref;
115	struct extent_buffer *leaf;
116	int ret;
117	int del_len = name->len + sizeof(*extref);
118	unsigned long ptr;
119	unsigned long item_start;
120	u32 item_size;
121
122	key.objectid = inode_objectid;
123	key.type = BTRFS_INODE_EXTREF_KEY;
124	key.offset = btrfs_extref_hash(ref_objectid, name->name, name->len);
125
126	path = btrfs_alloc_path();
127	if (!path)
128		return -ENOMEM;
129
130	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
131	if (ret > 0)
132		ret = -ENOENT;
133	if (ret < 0)
134		goto out;
135
136	/*
137	 * Sanity check - did we find the right item for this name?
138	 * This should always succeed so error here will make the FS
139	 * readonly.
140	 */
141	extref = btrfs_find_name_in_ext_backref(path->nodes[0], path->slots[0],
142						ref_objectid, name);
143	if (!extref) {
144		btrfs_handle_fs_error(root->fs_info, -ENOENT, NULL);
145		ret = -EROFS;
146		goto out;
147	}
148
149	leaf = path->nodes[0];
150	item_size = btrfs_item_size(leaf, path->slots[0]);
151	if (index)
152		*index = btrfs_inode_extref_index(leaf, extref);
153
154	if (del_len == item_size) {
155		/*
156		 * Common case only one ref in the item, remove the
157		 * whole item.
158		 */
159		ret = btrfs_del_item(trans, root, path);
160		goto out;
161	}
162
163	ptr = (unsigned long)extref;
164	item_start = btrfs_item_ptr_offset(leaf, path->slots[0]);
165
166	memmove_extent_buffer(leaf, ptr, ptr + del_len,
167			      item_size - (ptr + del_len - item_start));
168
169	btrfs_truncate_item(trans, path, item_size - del_len, 1);
170
171out:
172	btrfs_free_path(path);
173
174	return ret;
175}
176
177int btrfs_del_inode_ref(struct btrfs_trans_handle *trans,
178			struct btrfs_root *root, const struct fscrypt_str *name,
179			u64 inode_objectid, u64 ref_objectid, u64 *index)
180{
181	struct btrfs_path *path;
182	struct btrfs_key key;
183	struct btrfs_inode_ref *ref;
184	struct extent_buffer *leaf;
185	unsigned long ptr;
186	unsigned long item_start;
187	u32 item_size;
188	u32 sub_item_len;
189	int ret;
190	int search_ext_refs = 0;
191	int del_len = name->len + sizeof(*ref);
192
193	key.objectid = inode_objectid;
194	key.offset = ref_objectid;
195	key.type = BTRFS_INODE_REF_KEY;
196
197	path = btrfs_alloc_path();
198	if (!path)
199		return -ENOMEM;
200
201	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
202	if (ret > 0) {
203		ret = -ENOENT;
204		search_ext_refs = 1;
205		goto out;
206	} else if (ret < 0) {
207		goto out;
208	}
209
210	ref = btrfs_find_name_in_backref(path->nodes[0], path->slots[0], name);
211	if (!ref) {
212		ret = -ENOENT;
213		search_ext_refs = 1;
214		goto out;
215	}
216	leaf = path->nodes[0];
217	item_size = btrfs_item_size(leaf, path->slots[0]);
218
219	if (index)
220		*index = btrfs_inode_ref_index(leaf, ref);
221
222	if (del_len == item_size) {
223		ret = btrfs_del_item(trans, root, path);
224		goto out;
225	}
226	ptr = (unsigned long)ref;
227	sub_item_len = name->len + sizeof(*ref);
228	item_start = btrfs_item_ptr_offset(leaf, path->slots[0]);
229	memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
230			      item_size - (ptr + sub_item_len - item_start));
231	btrfs_truncate_item(trans, path, item_size - sub_item_len, 1);
232out:
233	btrfs_free_path(path);
234
235	if (search_ext_refs) {
236		/*
237		 * No refs were found, or we could not find the
238		 * name in our ref array. Find and remove the extended
239		 * inode ref then.
240		 */
241		return btrfs_del_inode_extref(trans, root, name,
242					      inode_objectid, ref_objectid, index);
243	}
244
245	return ret;
246}
247
248/*
249 * Insert an extended inode ref into a tree.
250 *
251 * The caller must have checked against BTRFS_LINK_MAX already.
252 */
253static int btrfs_insert_inode_extref(struct btrfs_trans_handle *trans,
254				     struct btrfs_root *root,
255				     const struct fscrypt_str *name,
256				     u64 inode_objectid, u64 ref_objectid,
257				     u64 index)
258{
259	struct btrfs_inode_extref *extref;
260	int ret;
261	int ins_len = name->len + sizeof(*extref);
262	unsigned long ptr;
263	struct btrfs_path *path;
264	struct btrfs_key key;
265	struct extent_buffer *leaf;
266
267	key.objectid = inode_objectid;
268	key.type = BTRFS_INODE_EXTREF_KEY;
269	key.offset = btrfs_extref_hash(ref_objectid, name->name, name->len);
270
271	path = btrfs_alloc_path();
272	if (!path)
273		return -ENOMEM;
274
275	ret = btrfs_insert_empty_item(trans, root, path, &key,
276				      ins_len);
277	if (ret == -EEXIST) {
278		if (btrfs_find_name_in_ext_backref(path->nodes[0],
279						   path->slots[0],
280						   ref_objectid,
281						   name))
282			goto out;
283
284		btrfs_extend_item(trans, path, ins_len);
285		ret = 0;
286	}
287	if (ret < 0)
288		goto out;
289
290	leaf = path->nodes[0];
291	ptr = (unsigned long)btrfs_item_ptr(leaf, path->slots[0], char);
292	ptr += btrfs_item_size(leaf, path->slots[0]) - ins_len;
293	extref = (struct btrfs_inode_extref *)ptr;
294
295	btrfs_set_inode_extref_name_len(path->nodes[0], extref, name->len);
296	btrfs_set_inode_extref_index(path->nodes[0], extref, index);
297	btrfs_set_inode_extref_parent(path->nodes[0], extref, ref_objectid);
298
299	ptr = (unsigned long)&extref->name;
300	write_extent_buffer(path->nodes[0], name->name, ptr, name->len);
301	btrfs_mark_buffer_dirty(trans, path->nodes[0]);
302
303out:
304	btrfs_free_path(path);
305	return ret;
306}
307
308/* Will return 0, -ENOMEM, -EMLINK, or -EEXIST or anything from the CoW path */
309int btrfs_insert_inode_ref(struct btrfs_trans_handle *trans,
310			   struct btrfs_root *root, const struct fscrypt_str *name,
311			   u64 inode_objectid, u64 ref_objectid, u64 index)
312{
313	struct btrfs_fs_info *fs_info = root->fs_info;
314	struct btrfs_path *path;
315	struct btrfs_key key;
316	struct btrfs_inode_ref *ref;
317	unsigned long ptr;
318	int ret;
319	int ins_len = name->len + sizeof(*ref);
320
321	key.objectid = inode_objectid;
322	key.offset = ref_objectid;
323	key.type = BTRFS_INODE_REF_KEY;
324
325	path = btrfs_alloc_path();
326	if (!path)
327		return -ENOMEM;
328
329	path->skip_release_on_error = 1;
330	ret = btrfs_insert_empty_item(trans, root, path, &key,
331				      ins_len);
332	if (ret == -EEXIST) {
333		u32 old_size;
334		ref = btrfs_find_name_in_backref(path->nodes[0], path->slots[0],
335						 name);
336		if (ref)
337			goto out;
338
339		old_size = btrfs_item_size(path->nodes[0], path->slots[0]);
340		btrfs_extend_item(trans, path, ins_len);
341		ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
342				     struct btrfs_inode_ref);
343		ref = (struct btrfs_inode_ref *)((unsigned long)ref + old_size);
344		btrfs_set_inode_ref_name_len(path->nodes[0], ref, name->len);
345		btrfs_set_inode_ref_index(path->nodes[0], ref, index);
346		ptr = (unsigned long)(ref + 1);
347		ret = 0;
348	} else if (ret < 0) {
349		if (ret == -EOVERFLOW) {
350			if (btrfs_find_name_in_backref(path->nodes[0],
351						       path->slots[0],
352						       name))
353				ret = -EEXIST;
354			else
355				ret = -EMLINK;
356		}
357		goto out;
358	} else {
359		ref = btrfs_item_ptr(path->nodes[0], path->slots[0],
360				     struct btrfs_inode_ref);
361		btrfs_set_inode_ref_name_len(path->nodes[0], ref, name->len);
362		btrfs_set_inode_ref_index(path->nodes[0], ref, index);
363		ptr = (unsigned long)(ref + 1);
364	}
365	write_extent_buffer(path->nodes[0], name->name, ptr, name->len);
366	btrfs_mark_buffer_dirty(trans, path->nodes[0]);
367
368out:
369	btrfs_free_path(path);
370
371	if (ret == -EMLINK) {
372		struct btrfs_super_block *disk_super = fs_info->super_copy;
373		/* We ran out of space in the ref array. Need to
374		 * add an extended ref. */
375		if (btrfs_super_incompat_flags(disk_super)
376		    & BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF)
377			ret = btrfs_insert_inode_extref(trans, root, name,
378							inode_objectid,
379							ref_objectid, index);
380	}
381
382	return ret;
383}
384
385int btrfs_insert_empty_inode(struct btrfs_trans_handle *trans,
386			     struct btrfs_root *root,
387			     struct btrfs_path *path, u64 objectid)
388{
389	struct btrfs_key key;
390	int ret;
391	key.objectid = objectid;
392	key.type = BTRFS_INODE_ITEM_KEY;
393	key.offset = 0;
394
395	ret = btrfs_insert_empty_item(trans, root, path, &key,
396				      sizeof(struct btrfs_inode_item));
397	return ret;
398}
399
400int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
401		       *root, struct btrfs_path *path,
402		       struct btrfs_key *location, int mod)
403{
404	int ins_len = mod < 0 ? -1 : 0;
405	int cow = mod != 0;
406	int ret;
407	int slot;
408	struct extent_buffer *leaf;
409	struct btrfs_key found_key;
410
411	ret = btrfs_search_slot(trans, root, location, path, ins_len, cow);
412	if (ret > 0 && location->type == BTRFS_ROOT_ITEM_KEY &&
413	    location->offset == (u64)-1 && path->slots[0] != 0) {
414		slot = path->slots[0] - 1;
415		leaf = path->nodes[0];
416		btrfs_item_key_to_cpu(leaf, &found_key, slot);
417		if (found_key.objectid == location->objectid &&
418		    found_key.type == location->type) {
419			path->slots[0]--;
420			return 0;
421		}
422	}
423	return ret;
424}
425
426static inline void btrfs_trace_truncate(struct btrfs_inode *inode,
427					struct extent_buffer *leaf,
428					struct btrfs_file_extent_item *fi,
429					u64 offset, int extent_type, int slot)
430{
431	if (!inode)
432		return;
433	if (extent_type == BTRFS_FILE_EXTENT_INLINE)
434		trace_btrfs_truncate_show_fi_inline(inode, leaf, fi, slot,
435						    offset);
436	else
437		trace_btrfs_truncate_show_fi_regular(inode, leaf, fi, offset);
438}
439
440/*
441 * Remove inode items from a given root.
442 *
443 * @trans:		A transaction handle.
444 * @root:		The root from which to remove items.
445 * @inode:		The inode whose items we want to remove.
446 * @control:		The btrfs_truncate_control to control how and what we
447 *			are truncating.
448 *
449 * Remove all keys associated with the inode from the given root that have a key
450 * with a type greater than or equals to @min_type. When @min_type has a value of
451 * BTRFS_EXTENT_DATA_KEY, only remove file extent items that have an offset value
452 * greater than or equals to @new_size. If a file extent item that starts before
453 * @new_size and ends after it is found, its length is adjusted.
454 *
455 * Returns: 0 on success, < 0 on error and NEED_TRUNCATE_BLOCK when @min_type is
456 * BTRFS_EXTENT_DATA_KEY and the caller must truncate the last block.
457 */
458int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
459			       struct btrfs_root *root,
460			       struct btrfs_truncate_control *control)
461{
462	struct btrfs_fs_info *fs_info = root->fs_info;
463	struct btrfs_path *path;
464	struct extent_buffer *leaf;
465	struct btrfs_file_extent_item *fi;
466	struct btrfs_key key;
467	struct btrfs_key found_key;
468	u64 new_size = control->new_size;
469	u64 extent_num_bytes = 0;
470	u64 extent_offset = 0;
471	u64 item_end = 0;
472	u32 found_type = (u8)-1;
473	int del_item;
474	int pending_del_nr = 0;
475	int pending_del_slot = 0;
476	int extent_type = -1;
477	int ret;
478	u64 bytes_deleted = 0;
479	bool be_nice = false;
480
481	ASSERT(control->inode || !control->clear_extent_range);
482	ASSERT(new_size == 0 || control->min_type == BTRFS_EXTENT_DATA_KEY);
483
484	control->last_size = new_size;
485	control->sub_bytes = 0;
486
487	/*
488	 * For shareable roots we want to back off from time to time, this turns
489	 * out to be subvolume roots, reloc roots, and data reloc roots.
490	 */
491	if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
492		be_nice = true;
493
494	path = btrfs_alloc_path();
495	if (!path)
496		return -ENOMEM;
497	path->reada = READA_BACK;
498
499	key.objectid = control->ino;
500	key.offset = (u64)-1;
501	key.type = (u8)-1;
502
503search_again:
504	/*
505	 * With a 16K leaf size and 128MiB extents, you can actually queue up a
506	 * huge file in a single leaf.  Most of the time that bytes_deleted is
507	 * > 0, it will be huge by the time we get here
508	 */
509	if (be_nice && bytes_deleted > SZ_32M &&
510	    btrfs_should_end_transaction(trans)) {
511		ret = -EAGAIN;
512		goto out;
513	}
514
515	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
516	if (ret < 0)
517		goto out;
518
519	if (ret > 0) {
520		ret = 0;
521		/* There are no items in the tree for us to truncate, we're done */
522		if (path->slots[0] == 0)
523			goto out;
524		path->slots[0]--;
525	}
526
527	while (1) {
528		u64 clear_start = 0, clear_len = 0, extent_start = 0;
529		bool refill_delayed_refs_rsv = false;
530
531		fi = NULL;
532		leaf = path->nodes[0];
533		btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
534		found_type = found_key.type;
535
536		if (found_key.objectid != control->ino)
537			break;
538
539		if (found_type < control->min_type)
540			break;
541
542		item_end = found_key.offset;
543		if (found_type == BTRFS_EXTENT_DATA_KEY) {
544			fi = btrfs_item_ptr(leaf, path->slots[0],
545					    struct btrfs_file_extent_item);
546			extent_type = btrfs_file_extent_type(leaf, fi);
547			if (extent_type != BTRFS_FILE_EXTENT_INLINE)
548				item_end +=
549				    btrfs_file_extent_num_bytes(leaf, fi);
550			else if (extent_type == BTRFS_FILE_EXTENT_INLINE)
551				item_end += btrfs_file_extent_ram_bytes(leaf, fi);
552
553			btrfs_trace_truncate(control->inode, leaf, fi,
554					     found_key.offset, extent_type,
555					     path->slots[0]);
556			item_end--;
557		}
558		if (found_type > control->min_type) {
559			del_item = 1;
560		} else {
561			if (item_end < new_size)
562				break;
563			if (found_key.offset >= new_size)
564				del_item = 1;
565			else
566				del_item = 0;
567		}
568
569		/* FIXME, shrink the extent if the ref count is only 1 */
570		if (found_type != BTRFS_EXTENT_DATA_KEY)
571			goto delete;
572
573		control->extents_found++;
574
575		if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
576			u64 num_dec;
577
578			clear_start = found_key.offset;
579			extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
580			if (!del_item) {
581				u64 orig_num_bytes =
582					btrfs_file_extent_num_bytes(leaf, fi);
583				extent_num_bytes = ALIGN(new_size -
584						found_key.offset,
585						fs_info->sectorsize);
586				clear_start = ALIGN(new_size, fs_info->sectorsize);
587
588				btrfs_set_file_extent_num_bytes(leaf, fi,
589							 extent_num_bytes);
590				num_dec = (orig_num_bytes - extent_num_bytes);
591				if (extent_start != 0)
592					control->sub_bytes += num_dec;
593				btrfs_mark_buffer_dirty(trans, leaf);
594			} else {
595				extent_num_bytes =
596					btrfs_file_extent_disk_num_bytes(leaf, fi);
597				extent_offset = found_key.offset -
598					btrfs_file_extent_offset(leaf, fi);
599
600				/* FIXME blocksize != 4096 */
601				num_dec = btrfs_file_extent_num_bytes(leaf, fi);
602				if (extent_start != 0)
603					control->sub_bytes += num_dec;
604			}
605			clear_len = num_dec;
606		} else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
607			/*
608			 * We can't truncate inline items that have had
609			 * special encodings
610			 */
611			if (!del_item &&
612			    btrfs_file_extent_encryption(leaf, fi) == 0 &&
613			    btrfs_file_extent_other_encoding(leaf, fi) == 0 &&
614			    btrfs_file_extent_compression(leaf, fi) == 0) {
615				u32 size = (u32)(new_size - found_key.offset);
616
617				btrfs_set_file_extent_ram_bytes(leaf, fi, size);
618				size = btrfs_file_extent_calc_inline_size(size);
619				btrfs_truncate_item(trans, path, size, 1);
620			} else if (!del_item) {
621				/*
622				 * We have to bail so the last_size is set to
623				 * just before this extent.
624				 */
625				ret = BTRFS_NEED_TRUNCATE_BLOCK;
626				break;
627			} else {
628				/*
629				 * Inline extents are special, we just treat
630				 * them as a full sector worth in the file
631				 * extent tree just for simplicity sake.
632				 */
633				clear_len = fs_info->sectorsize;
634			}
635
636			control->sub_bytes += item_end + 1 - new_size;
637		}
638delete:
639		/*
640		 * We only want to clear the file extent range if we're
641		 * modifying the actual inode's mapping, which is just the
642		 * normal truncate path.
643		 */
644		if (control->clear_extent_range) {
645			ret = btrfs_inode_clear_file_extent_range(control->inode,
646						  clear_start, clear_len);
647			if (ret) {
648				btrfs_abort_transaction(trans, ret);
649				break;
650			}
651		}
652
653		if (del_item) {
654			ASSERT(!pending_del_nr ||
655			       ((path->slots[0] + 1) == pending_del_slot));
656
657			control->last_size = found_key.offset;
658			if (!pending_del_nr) {
659				/* No pending yet, add ourselves */
660				pending_del_slot = path->slots[0];
661				pending_del_nr = 1;
662			} else if (path->slots[0] + 1 == pending_del_slot) {
663				/* Hop on the pending chunk */
664				pending_del_nr++;
665				pending_del_slot = path->slots[0];
666			}
667		} else {
668			control->last_size = new_size;
669			break;
670		}
671
672		if (del_item && extent_start != 0 && !control->skip_ref_updates) {
673			struct btrfs_ref ref = { 0 };
674
675			bytes_deleted += extent_num_bytes;
676
677			btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF,
678					extent_start, extent_num_bytes, 0,
679					root->root_key.objectid);
680			btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
681					control->ino, extent_offset,
682					root->root_key.objectid, false);
683			ret = btrfs_free_extent(trans, &ref);
684			if (ret) {
685				btrfs_abort_transaction(trans, ret);
686				break;
687			}
688			if (be_nice && btrfs_check_space_for_delayed_refs(fs_info))
689				refill_delayed_refs_rsv = true;
690		}
691
692		if (found_type == BTRFS_INODE_ITEM_KEY)
693			break;
694
695		if (path->slots[0] == 0 ||
696		    path->slots[0] != pending_del_slot ||
697		    refill_delayed_refs_rsv) {
698			if (pending_del_nr) {
699				ret = btrfs_del_items(trans, root, path,
700						pending_del_slot,
701						pending_del_nr);
702				if (ret) {
703					btrfs_abort_transaction(trans, ret);
704					break;
705				}
706				pending_del_nr = 0;
707			}
708			btrfs_release_path(path);
709
710			/*
711			 * We can generate a lot of delayed refs, so we need to
712			 * throttle every once and a while and make sure we're
713			 * adding enough space to keep up with the work we are
714			 * generating.  Since we hold a transaction here we
715			 * can't flush, and we don't want to FLUSH_LIMIT because
716			 * we could have generated too many delayed refs to
717			 * actually allocate, so just bail if we're short and
718			 * let the normal reservation dance happen higher up.
719			 */
720			if (refill_delayed_refs_rsv) {
721				ret = btrfs_delayed_refs_rsv_refill(fs_info,
722							BTRFS_RESERVE_NO_FLUSH);
723				if (ret) {
724					ret = -EAGAIN;
725					break;
726				}
727			}
728			goto search_again;
729		} else {
730			path->slots[0]--;
731		}
732	}
733out:
734	if (ret >= 0 && pending_del_nr) {
735		int err;
736
737		err = btrfs_del_items(trans, root, path, pending_del_slot,
738				      pending_del_nr);
739		if (err) {
740			btrfs_abort_transaction(trans, err);
741			ret = err;
742		}
743	}
744
745	ASSERT(control->last_size >= new_size);
746	if (!ret && control->last_size > new_size)
747		control->last_size = new_size;
748
749	btrfs_free_path(path);
750	return ret;
751}