blob: e757202a014e1749f164afa6b6765ff8f288dd65 [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);
Chris Mason7e381802007-04-19 15:36:27 -040052 ret = btrfs_extend_item(trans, root, path, data_size);
53 WARN_ON(ret > 0);
Chris Mason7fcde0e2007-04-05 12:13:21 -040054 }
Chris Mason54aa1f42007-06-22 14:16:25 -040055 if (ret < 0)
56 return ERR_PTR(ret);
Chris Mason7e381802007-04-19 15:36:27 -040057 WARN_ON(ret > 0);
Chris Mason5f39d392007-10-15 16:14:19 -040058 leaf = path->nodes[0];
59 item = btrfs_item_nr(leaf, path->slots[0]);
Chris Mason7e381802007-04-19 15:36:27 -040060 ptr = btrfs_item_ptr(leaf, path->slots[0], char);
Chris Mason5f39d392007-10-15 16:14:19 -040061 BUG_ON(data_size > btrfs_item_size(leaf, item));
62 ptr += btrfs_item_size(leaf, item) - data_size;
Chris Mason7e381802007-04-19 15:36:27 -040063 return (struct btrfs_dir_item *)ptr;
Chris Mason7fcde0e2007-04-05 12:13:21 -040064}
65
Chris Masond352ac62008-09-29 15:18:18 -040066/*
67 * xattrs work a lot like directories, this inserts an xattr item
68 * into the tree
69 */
Josef Bacik5103e942007-11-16 11:45:54 -050070int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
Yan, Zhengf34f57a2009-11-12 09:35:27 +000071 struct btrfs_root *root,
72 struct btrfs_path *path, u64 objectid,
73 const char *name, u16 name_len,
74 const void *data, u16 data_len)
Josef Bacik5103e942007-11-16 11:45:54 -050075{
76 int ret = 0;
Josef Bacik5103e942007-11-16 11:45:54 -050077 struct btrfs_dir_item *dir_item;
78 unsigned long name_ptr, data_ptr;
79 struct btrfs_key key, location;
80 struct btrfs_disk_key disk_key;
81 struct extent_buffer *leaf;
82 u32 data_size;
83
Yan, Zhengf34f57a2009-11-12 09:35:27 +000084 BUG_ON(name_len + data_len > BTRFS_MAX_XATTR_SIZE(root));
85
86 key.objectid = objectid;
Josef Bacik5103e942007-11-16 11:45:54 -050087 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
David Millerdf68b8a2008-02-15 10:40:52 -050088 key.offset = btrfs_name_hash(name, name_len);
Josef Bacik5103e942007-11-16 11:45:54 -050089
90 data_size = sizeof(*dir_item) + name_len + data_len;
91 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
92 name, name_len);
93 /*
94 * FIXME: at some point we should handle xattr's that are larger than
95 * what we can fit in our leaf. We set location to NULL b/c we arent
96 * pointing at anything else, that will change if we store the xattr
97 * data in a separate inode.
98 */
99 BUG_ON(IS_ERR(dir_item));
100 memset(&location, 0, sizeof(location));
101
102 leaf = path->nodes[0];
103 btrfs_cpu_key_to_disk(&disk_key, &location);
104 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
105 btrfs_set_dir_type(leaf, dir_item, BTRFS_FT_XATTR);
106 btrfs_set_dir_name_len(leaf, dir_item, name_len);
Chris Masone02119d2008-09-05 16:13:11 -0400107 btrfs_set_dir_transid(leaf, dir_item, trans->transid);
Josef Bacik5103e942007-11-16 11:45:54 -0500108 btrfs_set_dir_data_len(leaf, dir_item, data_len);
109 name_ptr = (unsigned long)(dir_item + 1);
110 data_ptr = (unsigned long)((char *)name_ptr + name_len);
111
112 write_extent_buffer(leaf, name, name_ptr, name_len);
113 write_extent_buffer(leaf, data, data_ptr, data_len);
114 btrfs_mark_buffer_dirty(path->nodes[0]);
115
Josef Bacik5103e942007-11-16 11:45:54 -0500116 return ret;
117}
118
Chris Masond352ac62008-09-29 15:18:18 -0400119/*
120 * insert a directory item in the tree, doing all the magic for
121 * both indexes. 'dir' indicates which objectid to insert it into,
122 * 'location' is the key to stuff into the directory item, 'type' is the
123 * type of the inode we're pointing to, and 'index' is the sequence number
124 * to use for the second index (if one is created).
125 */
Chris Masone089f052007-03-16 16:20:31 -0400126int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Miao Xie16cdcec2011-04-22 18:12:22 +0800127 *root, const char *name, int name_len,
128 struct inode *dir, struct btrfs_key *location,
129 u8 type, u64 index)
Chris Mason62e27492007-03-15 12:56:47 -0400130{
131 int ret = 0;
Chris Masone06afa82007-05-23 15:44:28 -0400132 int ret2 = 0;
Chris Mason5caf2a02007-04-02 11:20:42 -0400133 struct btrfs_path *path;
Chris Mason62e27492007-03-15 12:56:47 -0400134 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400135 struct extent_buffer *leaf;
136 unsigned long name_ptr;
Chris Mason62e27492007-03-15 12:56:47 -0400137 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400138 struct btrfs_disk_key disk_key;
Chris Mason62e27492007-03-15 12:56:47 -0400139 u32 data_size;
140
Chris Mason0d0ca302011-05-22 07:11:22 -0400141 key.objectid = btrfs_ino(dir);
Chris Mason1d4f6402007-03-15 15:18:43 -0400142 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
David Millerdf68b8a2008-02-15 10:40:52 -0500143 key.offset = btrfs_name_hash(name, name_len);
Chris Masonb9473432009-03-13 11:00:37 -0400144
Chris Mason5caf2a02007-04-02 11:20:42 -0400145 path = btrfs_alloc_path();
Miao Xie16cdcec2011-04-22 18:12:22 +0800146 if (!path)
147 return -ENOMEM;
Chris Masonb9473432009-03-13 11:00:37 -0400148 path->leave_spinning = 1;
149
Miao Xie16cdcec2011-04-22 18:12:22 +0800150 btrfs_cpu_key_to_disk(&disk_key, location);
151
Chris Mason62e27492007-03-15 12:56:47 -0400152 data_size = sizeof(*dir_item) + name_len;
Chris Masone06afa82007-05-23 15:44:28 -0400153 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
154 name, name_len);
Chris Mason7e381802007-04-19 15:36:27 -0400155 if (IS_ERR(dir_item)) {
156 ret = PTR_ERR(dir_item);
Chris Masone06afa82007-05-23 15:44:28 -0400157 if (ret == -EEXIST)
158 goto second_insert;
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000159 goto out_free;
Chris Mason7e381802007-04-19 15:36:27 -0400160 }
Chris Mason62e27492007-03-15 12:56:47 -0400161
Chris Mason5f39d392007-10-15 16:14:19 -0400162 leaf = path->nodes[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400163 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
164 btrfs_set_dir_type(leaf, dir_item, type);
Josef Bacik5103e942007-11-16 11:45:54 -0500165 btrfs_set_dir_data_len(leaf, dir_item, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400166 btrfs_set_dir_name_len(leaf, dir_item, name_len);
Chris Masone02119d2008-09-05 16:13:11 -0400167 btrfs_set_dir_transid(leaf, dir_item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -0400168 name_ptr = (unsigned long)(dir_item + 1);
Chris Masonc5739bb2007-04-10 09:27:04 -0400169
Chris Mason5f39d392007-10-15 16:14:19 -0400170 write_extent_buffer(leaf, name, name_ptr, name_len);
171 btrfs_mark_buffer_dirty(leaf);
Chris Mason7e381802007-04-19 15:36:27 -0400172
Chris Masone06afa82007-05-23 15:44:28 -0400173second_insert:
Chris Mason7e381802007-04-19 15:36:27 -0400174 /* FIXME, use some real flag for selecting the extra index */
175 if (root == root->fs_info->tree_root) {
176 ret = 0;
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000177 goto out_free;
Chris Mason7e381802007-04-19 15:36:27 -0400178 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400179 btrfs_release_path(root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400180
Miao Xie16cdcec2011-04-22 18:12:22 +0800181 ret2 = btrfs_insert_delayed_dir_index(trans, root, name, name_len, dir,
182 &disk_key, type, index);
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000183out_free:
Chris Mason5caf2a02007-04-02 11:20:42 -0400184 btrfs_free_path(path);
Chris Masone06afa82007-05-23 15:44:28 -0400185 if (ret)
186 return ret;
187 if (ret2)
188 return ret2;
189 return 0;
Chris Mason62e27492007-03-15 12:56:47 -0400190}
191
Chris Masond352ac62008-09-29 15:18:18 -0400192/*
193 * lookup a directory item based on name. 'dir' is the objectid
194 * we're searching in, and 'mod' tells us if you plan on deleting the
195 * item (use mod < 0) or changing the options (use mod > 0)
196 */
Chris Mason7e381802007-04-19 15:36:27 -0400197struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
198 struct btrfs_root *root,
199 struct btrfs_path *path, u64 dir,
200 const char *name, int name_len,
201 int mod)
Chris Mason62e27492007-03-15 12:56:47 -0400202{
Chris Mason1d4f6402007-03-15 15:18:43 -0400203 int ret;
Chris Mason62e27492007-03-15 12:56:47 -0400204 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -0400205 int ins_len = mod < 0 ? -1 : 0;
206 int cow = mod != 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400207 struct btrfs_key found_key;
208 struct extent_buffer *leaf;
Chris Mason62e27492007-03-15 12:56:47 -0400209
210 key.objectid = dir;
Chris Mason1d4f6402007-03-15 15:18:43 -0400211 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason5f39d392007-10-15 16:14:19 -0400212
David Millerdf68b8a2008-02-15 10:40:52 -0500213 key.offset = btrfs_name_hash(name, name_len);
Chris Mason5f39d392007-10-15 16:14:19 -0400214
Chris Mason7e381802007-04-19 15:36:27 -0400215 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
216 if (ret < 0)
217 return ERR_PTR(ret);
218 if (ret > 0) {
219 if (path->slots[0] == 0)
220 return NULL;
221 path->slots[0]--;
Chris Mason7fcde0e2007-04-05 12:13:21 -0400222 }
Chris Mason7e381802007-04-19 15:36:27 -0400223
Chris Mason5f39d392007-10-15 16:14:19 -0400224 leaf = path->nodes[0];
225 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
226
227 if (found_key.objectid != dir ||
228 btrfs_key_type(&found_key) != BTRFS_DIR_ITEM_KEY ||
229 found_key.offset != key.offset)
Chris Mason7e381802007-04-19 15:36:27 -0400230 return NULL;
231
232 return btrfs_match_dir_item_name(root, path, name, name_len);
Chris Mason62e27492007-03-15 12:56:47 -0400233}
234
Chris Masond352ac62008-09-29 15:18:18 -0400235/*
236 * lookup a directory item based on index. 'dir' is the objectid
237 * we're searching in, and 'mod' tells us if you plan on deleting the
238 * item (use mod < 0) or changing the options (use mod > 0)
239 *
240 * The name is used to make sure the index really points to the name you were
241 * looking for.
242 */
Chris Mason7e381802007-04-19 15:36:27 -0400243struct btrfs_dir_item *
244btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
245 struct btrfs_root *root,
246 struct btrfs_path *path, u64 dir,
247 u64 objectid, const char *name, int name_len,
248 int mod)
249{
250 int ret;
251 struct btrfs_key key;
252 int ins_len = mod < 0 ? -1 : 0;
253 int cow = mod != 0;
254
255 key.objectid = dir;
Chris Mason7e381802007-04-19 15:36:27 -0400256 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
257 key.offset = objectid;
258
259 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
260 if (ret < 0)
261 return ERR_PTR(ret);
262 if (ret > 0)
263 return ERR_PTR(-ENOENT);
264 return btrfs_match_dir_item_name(root, path, name, name_len);
265}
266
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400267struct btrfs_dir_item *
268btrfs_search_dir_index_item(struct btrfs_root *root,
269 struct btrfs_path *path, u64 dirid,
270 const char *name, int name_len)
271{
272 struct extent_buffer *leaf;
273 struct btrfs_dir_item *di;
274 struct btrfs_key key;
275 u32 nritems;
276 int ret;
277
278 key.objectid = dirid;
279 key.type = BTRFS_DIR_INDEX_KEY;
280 key.offset = 0;
281
282 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
283 if (ret < 0)
284 return ERR_PTR(ret);
285
286 leaf = path->nodes[0];
287 nritems = btrfs_header_nritems(leaf);
288
289 while (1) {
290 if (path->slots[0] >= nritems) {
291 ret = btrfs_next_leaf(root, path);
292 if (ret < 0)
293 return ERR_PTR(ret);
294 if (ret > 0)
295 break;
296 leaf = path->nodes[0];
297 nritems = btrfs_header_nritems(leaf);
298 continue;
299 }
300
301 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
302 if (key.objectid != dirid || key.type != BTRFS_DIR_INDEX_KEY)
303 break;
304
305 di = btrfs_match_dir_item_name(root, path, name, name_len);
306 if (di)
307 return di;
308
309 path->slots[0]++;
310 }
311 return NULL;
312}
313
Josef Bacik5103e942007-11-16 11:45:54 -0500314struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
315 struct btrfs_root *root,
316 struct btrfs_path *path, u64 dir,
317 const char *name, u16 name_len,
318 int mod)
319{
320 int ret;
321 struct btrfs_key key;
322 int ins_len = mod < 0 ? -1 : 0;
323 int cow = mod != 0;
324 struct btrfs_key found_key;
325 struct extent_buffer *leaf;
326
327 key.objectid = dir;
328 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
David Millerdf68b8a2008-02-15 10:40:52 -0500329 key.offset = btrfs_name_hash(name, name_len);
Josef Bacik5103e942007-11-16 11:45:54 -0500330 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
331 if (ret < 0)
332 return ERR_PTR(ret);
333 if (ret > 0) {
334 if (path->slots[0] == 0)
335 return NULL;
336 path->slots[0]--;
337 }
338
339 leaf = path->nodes[0];
340 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
341
342 if (found_key.objectid != dir ||
343 btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY ||
344 found_key.offset != key.offset)
345 return NULL;
346
347 return btrfs_match_dir_item_name(root, path, name, name_len);
348}
349
Chris Masond352ac62008-09-29 15:18:18 -0400350/*
351 * helper function to look at the directory item pointed to by 'path'
352 * this walks through all the entries in a dir item and finds one
353 * for a specific name.
354 */
Chris Mason7e381802007-04-19 15:36:27 -0400355struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
Chris Mason7f5c1512007-03-23 15:56:19 -0400356 struct btrfs_path *path,
357 const char *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -0400358{
Chris Mason62e27492007-03-15 12:56:47 -0400359 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400360 unsigned long name_ptr;
Chris Mason7e381802007-04-19 15:36:27 -0400361 u32 total_len;
362 u32 cur = 0;
363 u32 this_len;
Chris Mason5f39d392007-10-15 16:14:19 -0400364 struct extent_buffer *leaf;
Chris Masona8a2ee02007-03-16 08:46:49 -0400365
Chris Mason5f39d392007-10-15 16:14:19 -0400366 leaf = path->nodes[0];
Chris Mason7e381802007-04-19 15:36:27 -0400367 dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
Josef Bacik22a94d42011-03-16 16:47:17 -0400368 if (verify_dir_item(root, leaf, dir_item))
369 return NULL;
370
Chris Mason5f39d392007-10-15 16:14:19 -0400371 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
Chris Masond3977122009-01-05 21:25:51 -0500372 while (cur < total_len) {
Chris Mason5f39d392007-10-15 16:14:19 -0400373 this_len = sizeof(*dir_item) +
Josef Bacik5103e942007-11-16 11:45:54 -0500374 btrfs_dir_name_len(leaf, dir_item) +
375 btrfs_dir_data_len(leaf, dir_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400376 name_ptr = (unsigned long)(dir_item + 1);
Chris Mason7e381802007-04-19 15:36:27 -0400377
Chris Mason5f39d392007-10-15 16:14:19 -0400378 if (btrfs_dir_name_len(leaf, dir_item) == name_len &&
379 memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0)
Chris Mason7e381802007-04-19 15:36:27 -0400380 return dir_item;
381
382 cur += this_len;
383 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
384 this_len);
385 }
386 return NULL;
Chris Mason62e27492007-03-15 12:56:47 -0400387}
Chris Mason7e381802007-04-19 15:36:27 -0400388
Chris Masond352ac62008-09-29 15:18:18 -0400389/*
390 * given a pointer into a directory item, delete it. This
391 * handles items that have more than one entry in them.
392 */
Chris Mason7e381802007-04-19 15:36:27 -0400393int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
394 struct btrfs_root *root,
395 struct btrfs_path *path,
396 struct btrfs_dir_item *di)
397{
398
Chris Mason5f39d392007-10-15 16:14:19 -0400399 struct extent_buffer *leaf;
Chris Mason7e381802007-04-19 15:36:27 -0400400 u32 sub_item_len;
401 u32 item_len;
Chris Mason54aa1f42007-06-22 14:16:25 -0400402 int ret = 0;
Chris Mason7e381802007-04-19 15:36:27 -0400403
Chris Mason5f39d392007-10-15 16:14:19 -0400404 leaf = path->nodes[0];
Josef Bacik5103e942007-11-16 11:45:54 -0500405 sub_item_len = sizeof(*di) + btrfs_dir_name_len(leaf, di) +
406 btrfs_dir_data_len(leaf, di);
Chris Mason5f39d392007-10-15 16:14:19 -0400407 item_len = btrfs_item_size_nr(leaf, path->slots[0]);
408 if (sub_item_len == item_len) {
Chris Mason7e381802007-04-19 15:36:27 -0400409 ret = btrfs_del_item(trans, root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400410 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400411 /* MARKER */
412 unsigned long ptr = (unsigned long)di;
413 unsigned long start;
414
415 start = btrfs_item_ptr_offset(leaf, path->slots[0]);
416 memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
Chris Mason7e381802007-04-19 15:36:27 -0400417 item_len - (ptr + sub_item_len - start));
418 ret = btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400419 item_len - sub_item_len, 1);
Chris Mason7e381802007-04-19 15:36:27 -0400420 }
Andi Kleen411fc6b2010-10-29 15:14:31 -0400421 return ret;
Chris Mason7e381802007-04-19 15:36:27 -0400422}
Josef Bacik22a94d42011-03-16 16:47:17 -0400423
424int verify_dir_item(struct btrfs_root *root,
425 struct extent_buffer *leaf,
426 struct btrfs_dir_item *dir_item)
427{
428 u16 namelen = BTRFS_NAME_LEN;
429 u8 type = btrfs_dir_type(leaf, dir_item);
430
431 if (type >= BTRFS_FT_MAX) {
432 printk(KERN_CRIT "btrfs: invalid dir item type: %d\n",
433 (int)type);
434 return 1;
435 }
436
437 if (type == BTRFS_FT_XATTR)
438 namelen = XATTR_NAME_MAX;
439
440 if (btrfs_dir_name_len(leaf, dir_item) > namelen) {
441 printk(KERN_CRIT "btrfS: invalid dir item name len: %u\n",
442 (unsigned)btrfs_dir_data_len(leaf, dir_item));
443 return 1;
444 }
445
446 /* BTRFS_MAX_XATTR_SIZE is the same for all dir items */
447 if (btrfs_dir_data_len(leaf, dir_item) > BTRFS_MAX_XATTR_SIZE(root)) {
448 printk(KERN_CRIT "btrfs: invalid dir item data len: %u\n",
449 (unsigned)btrfs_dir_data_len(leaf, dir_item));
450 return 1;
451 }
452
453 return 0;
454}