blob: 76743308bd9f074baf530d95d1c637af1cf5fcba [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 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
Chris Mason62e27492007-03-15 12:56:47 -040019#include "ctree.h"
20#include "disk-io.h"
21#include "hash.h"
Chris Masone089f052007-03-16 16:20:31 -040022#include "transaction.h"
Chris Mason62e27492007-03-15 12:56:47 -040023
Chris Masond352ac62008-09-29 15:18:18 -040024/*
25 * insert a name into a directory, doing overflow properly if there is a hash
26 * collision. data_size indicates how big the item inserted should be. On
27 * success a struct btrfs_dir_item pointer is returned, otherwise it is
28 * an ERR_PTR.
29 *
30 * The name is not copied into the dir item, you have to do that yourself.
31 */
Chris Mason35b7e472007-05-02 15:53:43 -040032static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
33 *trans,
34 struct btrfs_root *root,
35 struct btrfs_path *path,
36 struct btrfs_key *cpu_key,
Chris Masone06afa82007-05-23 15:44:28 -040037 u32 data_size,
38 const char *name,
39 int name_len)
Chris Mason7fcde0e2007-04-05 12:13:21 -040040{
Chris Mason7fcde0e2007-04-05 12:13:21 -040041 int ret;
Chris Mason7e381802007-04-19 15:36:27 -040042 char *ptr;
43 struct btrfs_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040044 struct extent_buffer *leaf;
Chris Mason7fcde0e2007-04-05 12:13:21 -040045
46 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason7e381802007-04-19 15:36:27 -040047 if (ret == -EEXIST) {
Chris Masone06afa82007-05-23 15:44:28 -040048 struct btrfs_dir_item *di;
49 di = btrfs_match_dir_item_name(root, path, name, name_len);
50 if (di)
51 return ERR_PTR(-EEXIST);
Jeff Mahoney143bede2012-03-01 14:56:26 +010052 btrfs_extend_item(trans, root, path, data_size);
53 } else if (ret < 0)
Chris Mason54aa1f42007-06-22 14:16:25 -040054 return ERR_PTR(ret);
Chris Mason7e381802007-04-19 15:36:27 -040055 WARN_ON(ret > 0);
Chris Mason5f39d392007-10-15 16:14:19 -040056 leaf = path->nodes[0];
57 item = btrfs_item_nr(leaf, path->slots[0]);
Chris Mason7e381802007-04-19 15:36:27 -040058 ptr = btrfs_item_ptr(leaf, path->slots[0], char);
Chris Mason5f39d392007-10-15 16:14:19 -040059 BUG_ON(data_size > btrfs_item_size(leaf, item));
60 ptr += btrfs_item_size(leaf, item) - data_size;
Chris Mason7e381802007-04-19 15:36:27 -040061 return (struct btrfs_dir_item *)ptr;
Chris Mason7fcde0e2007-04-05 12:13:21 -040062}
63
Chris Masond352ac62008-09-29 15:18:18 -040064/*
65 * xattrs work a lot like directories, this inserts an xattr item
66 * into the tree
67 */
Josef Bacik5103e942007-11-16 11:45:54 -050068int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
Yan, Zhengf34f57a2009-11-12 09:35:27 +000069 struct btrfs_root *root,
70 struct btrfs_path *path, u64 objectid,
71 const char *name, u16 name_len,
72 const void *data, u16 data_len)
Josef Bacik5103e942007-11-16 11:45:54 -050073{
74 int ret = 0;
Josef Bacik5103e942007-11-16 11:45:54 -050075 struct btrfs_dir_item *dir_item;
76 unsigned long name_ptr, data_ptr;
77 struct btrfs_key key, location;
78 struct btrfs_disk_key disk_key;
79 struct extent_buffer *leaf;
80 u32 data_size;
81
Yan, Zhengf34f57a2009-11-12 09:35:27 +000082 BUG_ON(name_len + data_len > BTRFS_MAX_XATTR_SIZE(root));
83
84 key.objectid = objectid;
Josef Bacik5103e942007-11-16 11:45:54 -050085 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
David Millerdf68b8a2008-02-15 10:40:52 -050086 key.offset = btrfs_name_hash(name, name_len);
Josef Bacik5103e942007-11-16 11:45:54 -050087
88 data_size = sizeof(*dir_item) + name_len + data_len;
89 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
90 name, name_len);
Josef Bacikfa092002011-05-27 12:06:11 -040091 if (IS_ERR(dir_item))
92 return PTR_ERR(dir_item);
Josef Bacik5103e942007-11-16 11:45:54 -050093 memset(&location, 0, sizeof(location));
94
95 leaf = path->nodes[0];
96 btrfs_cpu_key_to_disk(&disk_key, &location);
97 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
98 btrfs_set_dir_type(leaf, dir_item, BTRFS_FT_XATTR);
99 btrfs_set_dir_name_len(leaf, dir_item, name_len);
Chris Masone02119d2008-09-05 16:13:11 -0400100 btrfs_set_dir_transid(leaf, dir_item, trans->transid);
Josef Bacik5103e942007-11-16 11:45:54 -0500101 btrfs_set_dir_data_len(leaf, dir_item, data_len);
102 name_ptr = (unsigned long)(dir_item + 1);
103 data_ptr = (unsigned long)((char *)name_ptr + name_len);
104
105 write_extent_buffer(leaf, name, name_ptr, name_len);
106 write_extent_buffer(leaf, data, data_ptr, data_len);
107 btrfs_mark_buffer_dirty(path->nodes[0]);
108
Josef Bacik5103e942007-11-16 11:45:54 -0500109 return ret;
110}
111
Chris Masond352ac62008-09-29 15:18:18 -0400112/*
113 * insert a directory item in the tree, doing all the magic for
114 * both indexes. 'dir' indicates which objectid to insert it into,
115 * 'location' is the key to stuff into the directory item, 'type' is the
116 * type of the inode we're pointing to, and 'index' is the sequence number
117 * to use for the second index (if one is created).
118 */
Chris Masone089f052007-03-16 16:20:31 -0400119int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Miao Xie16cdcec2011-04-22 18:12:22 +0800120 *root, const char *name, int name_len,
121 struct inode *dir, struct btrfs_key *location,
122 u8 type, u64 index)
Chris Mason62e27492007-03-15 12:56:47 -0400123{
124 int ret = 0;
Chris Masone06afa82007-05-23 15:44:28 -0400125 int ret2 = 0;
Chris Mason5caf2a02007-04-02 11:20:42 -0400126 struct btrfs_path *path;
Chris Mason62e27492007-03-15 12:56:47 -0400127 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400128 struct extent_buffer *leaf;
129 unsigned long name_ptr;
Chris Mason62e27492007-03-15 12:56:47 -0400130 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400131 struct btrfs_disk_key disk_key;
Chris Mason62e27492007-03-15 12:56:47 -0400132 u32 data_size;
133
Chris Mason0d0ca302011-05-22 07:11:22 -0400134 key.objectid = btrfs_ino(dir);
Chris Mason1d4f6402007-03-15 15:18:43 -0400135 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
David Millerdf68b8a2008-02-15 10:40:52 -0500136 key.offset = btrfs_name_hash(name, name_len);
Chris Masonb9473432009-03-13 11:00:37 -0400137
Chris Mason5caf2a02007-04-02 11:20:42 -0400138 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +0800139 if (!path)
140 return -ENOMEM;
Chris Masonb9473432009-03-13 11:00:37 -0400141 path->leave_spinning = 1;
142
Miao Xie16cdcec2011-04-22 18:12:22 +0800143 btrfs_cpu_key_to_disk(&disk_key, location);
144
Chris Mason62e27492007-03-15 12:56:47 -0400145 data_size = sizeof(*dir_item) + name_len;
Chris Masone06afa82007-05-23 15:44:28 -0400146 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
147 name, name_len);
Chris Mason7e381802007-04-19 15:36:27 -0400148 if (IS_ERR(dir_item)) {
149 ret = PTR_ERR(dir_item);
Chris Masone06afa82007-05-23 15:44:28 -0400150 if (ret == -EEXIST)
151 goto second_insert;
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000152 goto out_free;
Chris Mason7e381802007-04-19 15:36:27 -0400153 }
Chris Mason62e27492007-03-15 12:56:47 -0400154
Chris Mason5f39d392007-10-15 16:14:19 -0400155 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400156 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
157 btrfs_set_dir_type(leaf, dir_item, type);
Josef Bacik5103e942007-11-16 11:45:54 -0500158 btrfs_set_dir_data_len(leaf, dir_item, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400159 btrfs_set_dir_name_len(leaf, dir_item, name_len);
Chris Masone02119d2008-09-05 16:13:11 -0400160 btrfs_set_dir_transid(leaf, dir_item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -0400161 name_ptr = (unsigned long)(dir_item + 1);
Chris Masonc5739bb2007-04-10 09:27:04 -0400162
Chris Mason5f39d392007-10-15 16:14:19 -0400163 write_extent_buffer(leaf, name, name_ptr, name_len);
164 btrfs_mark_buffer_dirty(leaf);
Chris Mason7e381802007-04-19 15:36:27 -0400165
Chris Masone06afa82007-05-23 15:44:28 -0400166second_insert:
Chris Mason7e381802007-04-19 15:36:27 -0400167 /* FIXME, use some real flag for selecting the extra index */
168 if (root == root->fs_info->tree_root) {
169 ret = 0;
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000170 goto out_free;
Chris Mason7e381802007-04-19 15:36:27 -0400171 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200172 btrfs_release_path(path);
Chris Mason7e381802007-04-19 15:36:27 -0400173
Miao Xie16cdcec2011-04-22 18:12:22 +0800174 ret2 = btrfs_insert_delayed_dir_index(trans, root, name, name_len, dir,
175 &disk_key, type, index);
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000176out_free:
Chris Mason5caf2a02007-04-02 11:20:42 -0400177 btrfs_free_path(path);
Chris Masone06afa82007-05-23 15:44:28 -0400178 if (ret)
179 return ret;
180 if (ret2)
181 return ret2;
182 return 0;
Chris Mason62e27492007-03-15 12:56:47 -0400183}
184
Chris Masond352ac62008-09-29 15:18:18 -0400185/*
186 * lookup a directory item based on name. 'dir' is the objectid
187 * we're searching in, and 'mod' tells us if you plan on deleting the
188 * item (use mod < 0) or changing the options (use mod > 0)
189 */
Chris Mason7e381802007-04-19 15:36:27 -0400190struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
191 struct btrfs_root *root,
192 struct btrfs_path *path, u64 dir,
193 const char *name, int name_len,
194 int mod)
Chris Mason62e27492007-03-15 12:56:47 -0400195{
Chris Mason1d4f6402007-03-15 15:18:43 -0400196 int ret;
Chris Mason62e27492007-03-15 12:56:47 -0400197 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -0400198 int ins_len = mod < 0 ? -1 : 0;
199 int cow = mod != 0;
Chris Mason62e27492007-03-15 12:56:47 -0400200
201 key.objectid = dir;
Chris Mason1d4f6402007-03-15 15:18:43 -0400202 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason5f39d392007-10-15 16:14:19 -0400203
David Millerdf68b8a2008-02-15 10:40:52 -0500204 key.offset = btrfs_name_hash(name, name_len);
Chris Mason5f39d392007-10-15 16:14:19 -0400205
Chris Mason7e381802007-04-19 15:36:27 -0400206 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
207 if (ret < 0)
208 return ERR_PTR(ret);
Li Zefan85d85a72011-07-14 03:17:52 +0000209 if (ret > 0)
Chris Mason7e381802007-04-19 15:36:27 -0400210 return NULL;
211
212 return btrfs_match_dir_item_name(root, path, name, name_len);
Chris Mason62e27492007-03-15 12:56:47 -0400213}
214
Chris Masond352ac62008-09-29 15:18:18 -0400215/*
216 * lookup a directory item based on index. 'dir' is the objectid
217 * we're searching in, and 'mod' tells us if you plan on deleting the
218 * item (use mod < 0) or changing the options (use mod > 0)
219 *
220 * The name is used to make sure the index really points to the name you were
221 * looking for.
222 */
Chris Mason7e381802007-04-19 15:36:27 -0400223struct btrfs_dir_item *
224btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
225 struct btrfs_root *root,
226 struct btrfs_path *path, u64 dir,
227 u64 objectid, const char *name, int name_len,
228 int mod)
229{
230 int ret;
231 struct btrfs_key key;
232 int ins_len = mod < 0 ? -1 : 0;
233 int cow = mod != 0;
234
235 key.objectid = dir;
Chris Mason7e381802007-04-19 15:36:27 -0400236 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
237 key.offset = objectid;
238
239 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
240 if (ret < 0)
241 return ERR_PTR(ret);
242 if (ret > 0)
243 return ERR_PTR(-ENOENT);
244 return btrfs_match_dir_item_name(root, path, name, name_len);
245}
246
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400247struct btrfs_dir_item *
248btrfs_search_dir_index_item(struct btrfs_root *root,
249 struct btrfs_path *path, u64 dirid,
250 const char *name, int name_len)
251{
252 struct extent_buffer *leaf;
253 struct btrfs_dir_item *di;
254 struct btrfs_key key;
255 u32 nritems;
256 int ret;
257
258 key.objectid = dirid;
259 key.type = BTRFS_DIR_INDEX_KEY;
260 key.offset = 0;
261
262 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
263 if (ret < 0)
264 return ERR_PTR(ret);
265
266 leaf = path->nodes[0];
267 nritems = btrfs_header_nritems(leaf);
268
269 while (1) {
270 if (path->slots[0] >= nritems) {
271 ret = btrfs_next_leaf(root, path);
272 if (ret < 0)
273 return ERR_PTR(ret);
274 if (ret > 0)
275 break;
276 leaf = path->nodes[0];
277 nritems = btrfs_header_nritems(leaf);
278 continue;
279 }
280
281 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
282 if (key.objectid != dirid || key.type != BTRFS_DIR_INDEX_KEY)
283 break;
284
285 di = btrfs_match_dir_item_name(root, path, name, name_len);
286 if (di)
287 return di;
288
289 path->slots[0]++;
290 }
291 return NULL;
292}
293
Josef Bacik5103e942007-11-16 11:45:54 -0500294struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
295 struct btrfs_root *root,
296 struct btrfs_path *path, u64 dir,
297 const char *name, u16 name_len,
298 int mod)
299{
300 int ret;
301 struct btrfs_key key;
302 int ins_len = mod < 0 ? -1 : 0;
303 int cow = mod != 0;
Josef Bacik5103e942007-11-16 11:45:54 -0500304
305 key.objectid = dir;
306 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
David Millerdf68b8a2008-02-15 10:40:52 -0500307 key.offset = btrfs_name_hash(name, name_len);
Josef Bacik5103e942007-11-16 11:45:54 -0500308 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
309 if (ret < 0)
310 return ERR_PTR(ret);
Li Zefan85d85a72011-07-14 03:17:52 +0000311 if (ret > 0)
Josef Bacik5103e942007-11-16 11:45:54 -0500312 return NULL;
313
314 return btrfs_match_dir_item_name(root, path, name, name_len);
315}
316
Chris Masond352ac62008-09-29 15:18:18 -0400317/*
318 * helper function to look at the directory item pointed to by 'path'
319 * this walks through all the entries in a dir item and finds one
320 * for a specific name.
321 */
Chris Mason7e381802007-04-19 15:36:27 -0400322struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
Chris Mason7f5c1512007-03-23 15:56:19 -0400323 struct btrfs_path *path,
324 const char *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -0400325{
Chris Mason62e27492007-03-15 12:56:47 -0400326 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400327 unsigned long name_ptr;
Chris Mason7e381802007-04-19 15:36:27 -0400328 u32 total_len;
329 u32 cur = 0;
330 u32 this_len;
Chris Mason5f39d392007-10-15 16:14:19 -0400331 struct extent_buffer *leaf;
Chris Masona8a2ee02007-03-16 08:46:49 -0400332
Chris Mason5f39d392007-10-15 16:14:19 -0400333 leaf = path->nodes[0];
Chris Mason7e381802007-04-19 15:36:27 -0400334 dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
Josef Bacik22a94d42011-03-16 16:47:17 -0400335 if (verify_dir_item(root, leaf, dir_item))
336 return NULL;
337
Chris Mason5f39d392007-10-15 16:14:19 -0400338 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500339 while (cur < total_len) {
Chris Mason5f39d392007-10-15 16:14:19 -0400340 this_len = sizeof(*dir_item) +
Josef Bacik5103e942007-11-16 11:45:54 -0500341 btrfs_dir_name_len(leaf, dir_item) +
342 btrfs_dir_data_len(leaf, dir_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400343 name_ptr = (unsigned long)(dir_item + 1);
Chris Mason7e381802007-04-19 15:36:27 -0400344
Chris Mason5f39d392007-10-15 16:14:19 -0400345 if (btrfs_dir_name_len(leaf, dir_item) == name_len &&
346 memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0)
Chris Mason7e381802007-04-19 15:36:27 -0400347 return dir_item;
348
349 cur += this_len;
350 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
351 this_len);
352 }
353 return NULL;
Chris Mason62e27492007-03-15 12:56:47 -0400354}
Chris Mason7e381802007-04-19 15:36:27 -0400355
Chris Masond352ac62008-09-29 15:18:18 -0400356/*
357 * given a pointer into a directory item, delete it. This
358 * handles items that have more than one entry in them.
359 */
Chris Mason7e381802007-04-19 15:36:27 -0400360int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
361 struct btrfs_root *root,
362 struct btrfs_path *path,
363 struct btrfs_dir_item *di)
364{
365
Chris Mason5f39d392007-10-15 16:14:19 -0400366 struct extent_buffer *leaf;
Chris Mason7e381802007-04-19 15:36:27 -0400367 u32 sub_item_len;
368 u32 item_len;
Chris Mason54aa1f42007-06-22 14:16:25 -0400369 int ret = 0;
Chris Mason7e381802007-04-19 15:36:27 -0400370
Chris Mason5f39d392007-10-15 16:14:19 -0400371 leaf = path->nodes[0];
Josef Bacik5103e942007-11-16 11:45:54 -0500372 sub_item_len = sizeof(*di) + btrfs_dir_name_len(leaf, di) +
373 btrfs_dir_data_len(leaf, di);
Chris Mason5f39d392007-10-15 16:14:19 -0400374 item_len = btrfs_item_size_nr(leaf, path->slots[0]);
375 if (sub_item_len == item_len) {
Chris Mason7e381802007-04-19 15:36:27 -0400376 ret = btrfs_del_item(trans, root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400377 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400378 /* MARKER */
379 unsigned long ptr = (unsigned long)di;
380 unsigned long start;
381
382 start = btrfs_item_ptr_offset(leaf, path->slots[0]);
383 memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
Chris Mason7e381802007-04-19 15:36:27 -0400384 item_len - (ptr + sub_item_len - start));
Jeff Mahoney143bede2012-03-01 14:56:26 +0100385 btrfs_truncate_item(trans, root, path,
386 item_len - sub_item_len, 1);
Chris Mason7e381802007-04-19 15:36:27 -0400387 }
Andi Kleen411fc6b2010-10-29 15:14:31 -0400388 return ret;
Chris Mason7e381802007-04-19 15:36:27 -0400389}
Josef Bacik22a94d42011-03-16 16:47:17 -0400390
391int verify_dir_item(struct btrfs_root *root,
392 struct extent_buffer *leaf,
393 struct btrfs_dir_item *dir_item)
394{
395 u16 namelen = BTRFS_NAME_LEN;
396 u8 type = btrfs_dir_type(leaf, dir_item);
397
398 if (type >= BTRFS_FT_MAX) {
399 printk(KERN_CRIT "btrfs: invalid dir item type: %d\n",
400 (int)type);
401 return 1;
402 }
403
404 if (type == BTRFS_FT_XATTR)
405 namelen = XATTR_NAME_MAX;
406
407 if (btrfs_dir_name_len(leaf, dir_item) > namelen) {
Sergei Trofimovich9694b3f2011-05-20 20:20:31 +0000408 printk(KERN_CRIT "btrfs: invalid dir item name len: %u\n",
Josef Bacik22a94d42011-03-16 16:47:17 -0400409 (unsigned)btrfs_dir_data_len(leaf, dir_item));
410 return 1;
411 }
412
413 /* BTRFS_MAX_XATTR_SIZE is the same for all dir items */
414 if (btrfs_dir_data_len(leaf, dir_item) > BTRFS_MAX_XATTR_SIZE(root)) {
415 printk(KERN_CRIT "btrfs: invalid dir item data len: %u\n",
416 (unsigned)btrfs_dir_data_len(leaf, dir_item));
417 return 1;
418 }
419
420 return 0;
421}