1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2007 Oracle. All rights reserved.
8 #include "transaction.h"
11 * insert a name into a directory, doing overflow properly if there is a hash
12 * collision. data_size indicates how big the item inserted should be. On
13 * success a struct btrfs_dir_item pointer is returned, otherwise it is
16 * The name is not copied into the dir item, you have to do that yourself.
18 static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
20 struct btrfs_root *root,
21 struct btrfs_path *path,
22 struct btrfs_key *cpu_key,
27 struct btrfs_fs_info *fs_info = root->fs_info;
30 struct btrfs_item *item;
31 struct extent_buffer *leaf;
33 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
35 struct btrfs_dir_item *di;
36 di = btrfs_match_dir_item_name(fs_info, path, name, name_len);
38 return ERR_PTR(-EEXIST);
39 btrfs_extend_item(fs_info, path, data_size);
43 leaf = path->nodes[0];
44 item = btrfs_item_nr(path->slots[0]);
45 ptr = btrfs_item_ptr(leaf, path->slots[0], char);
46 BUG_ON(data_size > btrfs_item_size(leaf, item));
47 ptr += btrfs_item_size(leaf, item) - data_size;
48 return (struct btrfs_dir_item *)ptr;
52 * xattrs work a lot like directories, this inserts an xattr item
55 int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
56 struct btrfs_root *root,
57 struct btrfs_path *path, u64 objectid,
58 const char *name, u16 name_len,
59 const void *data, u16 data_len)
62 struct btrfs_dir_item *dir_item;
63 unsigned long name_ptr, data_ptr;
64 struct btrfs_key key, location;
65 struct btrfs_disk_key disk_key;
66 struct extent_buffer *leaf;
69 if (name_len + data_len > BTRFS_MAX_XATTR_SIZE(root->fs_info))
72 key.objectid = objectid;
73 key.type = BTRFS_XATTR_ITEM_KEY;
74 key.offset = btrfs_name_hash(name, name_len);
76 data_size = sizeof(*dir_item) + name_len + data_len;
77 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
80 return PTR_ERR(dir_item);
81 memset(&location, 0, sizeof(location));
83 leaf = path->nodes[0];
84 btrfs_cpu_key_to_disk(&disk_key, &location);
85 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
86 btrfs_set_dir_type(leaf, dir_item, BTRFS_FT_XATTR);
87 btrfs_set_dir_name_len(leaf, dir_item, name_len);
88 btrfs_set_dir_transid(leaf, dir_item, trans->transid);
89 btrfs_set_dir_data_len(leaf, dir_item, data_len);
90 name_ptr = (unsigned long)(dir_item + 1);
91 data_ptr = (unsigned long)((char *)name_ptr + name_len);
93 write_extent_buffer(leaf, name, name_ptr, name_len);
94 write_extent_buffer(leaf, data, data_ptr, data_len);
95 btrfs_mark_buffer_dirty(path->nodes[0]);
101 * insert a directory item in the tree, doing all the magic for
102 * both indexes. 'dir' indicates which objectid to insert it into,
103 * 'location' is the key to stuff into the directory item, 'type' is the
104 * type of the inode we're pointing to, and 'index' is the sequence number
105 * to use for the second index (if one is created).
106 * Will return 0 or -ENOMEM
108 int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
109 *root, const char *name, int name_len,
110 struct btrfs_inode *dir, struct btrfs_key *location,
115 struct btrfs_path *path;
116 struct btrfs_dir_item *dir_item;
117 struct extent_buffer *leaf;
118 unsigned long name_ptr;
119 struct btrfs_key key;
120 struct btrfs_disk_key disk_key;
123 key.objectid = btrfs_ino(dir);
124 key.type = BTRFS_DIR_ITEM_KEY;
125 key.offset = btrfs_name_hash(name, name_len);
127 path = btrfs_alloc_path();
130 path->leave_spinning = 1;
132 btrfs_cpu_key_to_disk(&disk_key, location);
134 data_size = sizeof(*dir_item) + name_len;
135 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
137 if (IS_ERR(dir_item)) {
138 ret = PTR_ERR(dir_item);
144 leaf = path->nodes[0];
145 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
146 btrfs_set_dir_type(leaf, dir_item, type);
147 btrfs_set_dir_data_len(leaf, dir_item, 0);
148 btrfs_set_dir_name_len(leaf, dir_item, name_len);
149 btrfs_set_dir_transid(leaf, dir_item, trans->transid);
150 name_ptr = (unsigned long)(dir_item + 1);
152 write_extent_buffer(leaf, name, name_ptr, name_len);
153 btrfs_mark_buffer_dirty(leaf);
156 /* FIXME, use some real flag for selecting the extra index */
157 if (root == root->fs_info->tree_root) {
161 btrfs_release_path(path);
163 ret2 = btrfs_insert_delayed_dir_index(trans, name, name_len, dir,
164 &disk_key, type, index);
166 btrfs_free_path(path);
175 * lookup a directory item based on name. 'dir' is the objectid
176 * we're searching in, and 'mod' tells us if you plan on deleting the
177 * item (use mod < 0) or changing the options (use mod > 0)
179 struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
180 struct btrfs_root *root,
181 struct btrfs_path *path, u64 dir,
182 const char *name, int name_len,
186 struct btrfs_key key;
187 int ins_len = mod < 0 ? -1 : 0;
191 key.type = BTRFS_DIR_ITEM_KEY;
193 key.offset = btrfs_name_hash(name, name_len);
195 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
201 return btrfs_match_dir_item_name(root->fs_info, path, name, name_len);
204 int btrfs_check_dir_item_collision(struct btrfs_root *root, u64 dir,
205 const char *name, int name_len)
208 struct btrfs_key key;
209 struct btrfs_dir_item *di;
211 struct extent_buffer *leaf;
213 struct btrfs_path *path;
216 path = btrfs_alloc_path();
221 key.type = BTRFS_DIR_ITEM_KEY;
222 key.offset = btrfs_name_hash(name, name_len);
224 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
226 /* return back any errors */
230 /* nothing found, we're safe */
236 /* we found an item, look for our name in the item */
237 di = btrfs_match_dir_item_name(root->fs_info, path, name, name_len);
239 /* our exact name was found */
245 * see if there is room in the item to insert this
248 data_size = sizeof(*di) + name_len;
249 leaf = path->nodes[0];
250 slot = path->slots[0];
251 if (data_size + btrfs_item_size_nr(leaf, slot) +
252 sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root->fs_info)) {
255 /* plenty of insertion room */
259 btrfs_free_path(path);
264 * lookup a directory item based on index. 'dir' is the objectid
265 * we're searching in, and 'mod' tells us if you plan on deleting the
266 * item (use mod < 0) or changing the options (use mod > 0)
268 * The name is used to make sure the index really points to the name you were
271 struct btrfs_dir_item *
272 btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
273 struct btrfs_root *root,
274 struct btrfs_path *path, u64 dir,
275 u64 objectid, const char *name, int name_len,
279 struct btrfs_key key;
280 int ins_len = mod < 0 ? -1 : 0;
284 key.type = BTRFS_DIR_INDEX_KEY;
285 key.offset = objectid;
287 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
291 return ERR_PTR(-ENOENT);
292 return btrfs_match_dir_item_name(root->fs_info, path, name, name_len);
295 struct btrfs_dir_item *
296 btrfs_search_dir_index_item(struct btrfs_root *root,
297 struct btrfs_path *path, u64 dirid,
298 const char *name, int name_len)
300 struct extent_buffer *leaf;
301 struct btrfs_dir_item *di;
302 struct btrfs_key key;
306 key.objectid = dirid;
307 key.type = BTRFS_DIR_INDEX_KEY;
310 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
314 leaf = path->nodes[0];
315 nritems = btrfs_header_nritems(leaf);
318 if (path->slots[0] >= nritems) {
319 ret = btrfs_next_leaf(root, path);
324 leaf = path->nodes[0];
325 nritems = btrfs_header_nritems(leaf);
329 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
330 if (key.objectid != dirid || key.type != BTRFS_DIR_INDEX_KEY)
333 di = btrfs_match_dir_item_name(root->fs_info, path,
343 struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
344 struct btrfs_root *root,
345 struct btrfs_path *path, u64 dir,
346 const char *name, u16 name_len,
350 struct btrfs_key key;
351 int ins_len = mod < 0 ? -1 : 0;
355 key.type = BTRFS_XATTR_ITEM_KEY;
356 key.offset = btrfs_name_hash(name, name_len);
357 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
363 return btrfs_match_dir_item_name(root->fs_info, path, name, name_len);
367 * helper function to look at the directory item pointed to by 'path'
368 * this walks through all the entries in a dir item and finds one
369 * for a specific name.
371 struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_fs_info *fs_info,
372 struct btrfs_path *path,
373 const char *name, int name_len)
375 struct btrfs_dir_item *dir_item;
376 unsigned long name_ptr;
380 struct extent_buffer *leaf;
382 leaf = path->nodes[0];
383 dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
385 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
386 while (cur < total_len) {
387 this_len = sizeof(*dir_item) +
388 btrfs_dir_name_len(leaf, dir_item) +
389 btrfs_dir_data_len(leaf, dir_item);
390 name_ptr = (unsigned long)(dir_item + 1);
392 if (btrfs_dir_name_len(leaf, dir_item) == name_len &&
393 memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0)
397 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
404 * given a pointer into a directory item, delete it. This
405 * handles items that have more than one entry in them.
407 int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
408 struct btrfs_root *root,
409 struct btrfs_path *path,
410 struct btrfs_dir_item *di)
413 struct extent_buffer *leaf;
418 leaf = path->nodes[0];
419 sub_item_len = sizeof(*di) + btrfs_dir_name_len(leaf, di) +
420 btrfs_dir_data_len(leaf, di);
421 item_len = btrfs_item_size_nr(leaf, path->slots[0]);
422 if (sub_item_len == item_len) {
423 ret = btrfs_del_item(trans, root, path);
426 unsigned long ptr = (unsigned long)di;
429 start = btrfs_item_ptr_offset(leaf, path->slots[0]);
430 memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
431 item_len - (ptr + sub_item_len - start));
432 btrfs_truncate_item(root->fs_info, path,
433 item_len - sub_item_len, 1);