blob: 18d3e168ad0a30fc9db5a906aa12052804bada25 [file] [log] [blame]
Chris Mason2e635a22007-03-21 11:12:56 -04001#include <linux/module.h>
Chris Mason62e27492007-03-15 12:56:47 -04002#include "ctree.h"
3#include "disk-io.h"
4#include "hash.h"
Chris Masone089f052007-03-16 16:20:31 -04005#include "transaction.h"
Chris Mason62e27492007-03-15 12:56:47 -04006
Chris Masone089f052007-03-16 16:20:31 -04007int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond5719762007-03-23 10:01:08 -04008 *root, const char *name, int name_len, u64 dir, u64
Chris Masone089f052007-03-16 16:20:31 -04009 objectid, u8 type)
Chris Mason62e27492007-03-15 12:56:47 -040010{
11 int ret = 0;
12 struct btrfs_path path;
13 struct btrfs_dir_item *dir_item;
14 char *name_ptr;
15 struct btrfs_key key;
16 u32 data_size;
17
18 key.objectid = dir;
19 key.flags = 0;
Chris Mason1d4f6402007-03-15 15:18:43 -040020 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Masone20d96d2007-03-22 12:13:20 -040021 ret = btrfs_name_hash(name, name_len, &key.offset);
Chris Mason62e27492007-03-15 12:56:47 -040022 BUG_ON(ret);
23 btrfs_init_path(&path);
24 data_size = sizeof(*dir_item) + name_len;
Chris Masone089f052007-03-16 16:20:31 -040025 ret = btrfs_insert_empty_item(trans, root, &path, &key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -040026 if (ret)
27 goto out;
28
Chris Masone20d96d2007-03-22 12:13:20 -040029 dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path.nodes[0]),
30 path.slots[0],
Chris Mason62e27492007-03-15 12:56:47 -040031 struct btrfs_dir_item);
32 btrfs_set_dir_objectid(dir_item, objectid);
33 btrfs_set_dir_type(dir_item, type);
34 btrfs_set_dir_flags(dir_item, 0);
Chris Masona8a2ee02007-03-16 08:46:49 -040035 btrfs_set_dir_name_len(dir_item, name_len);
Chris Mason62e27492007-03-15 12:56:47 -040036 name_ptr = (char *)(dir_item + 1);
37 memcpy(name_ptr, name, name_len);
Chris Mason22b0ebd2007-03-30 08:47:31 -040038 if (name_ptr + name_len > path.nodes[0]->b_data + 4096)
39 WARN_ON(1);
Chris Masond5719762007-03-23 10:01:08 -040040 mark_buffer_dirty(path.nodes[0]);
Chris Mason62e27492007-03-15 12:56:47 -040041out:
42 btrfs_release_path(root, &path);
43 return ret;
44}
45
Chris Masone089f052007-03-16 16:20:31 -040046int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -040047 *root, struct btrfs_path *path, u64 dir,
48 const char *name, int name_len, int mod)
Chris Mason62e27492007-03-15 12:56:47 -040049{
Chris Mason1d4f6402007-03-15 15:18:43 -040050 int ret;
Chris Mason62e27492007-03-15 12:56:47 -040051 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -040052 int ins_len = mod < 0 ? -1 : 0;
53 int cow = mod != 0;
Chris Mason62e27492007-03-15 12:56:47 -040054
55 key.objectid = dir;
56 key.flags = 0;
Chris Mason1d4f6402007-03-15 15:18:43 -040057 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason62e27492007-03-15 12:56:47 -040058 ret = btrfs_name_hash(name, name_len, &key.offset);
59 BUG_ON(ret);
Chris Masone089f052007-03-16 16:20:31 -040060 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
Chris Mason62e27492007-03-15 12:56:47 -040061 return ret;
62}
63
Chris Masone089f052007-03-16 16:20:31 -040064int btrfs_match_dir_item_name(struct btrfs_root *root,
Chris Mason7f5c1512007-03-23 15:56:19 -040065 struct btrfs_path *path,
66 const char *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -040067{
Chris Mason62e27492007-03-15 12:56:47 -040068 struct btrfs_dir_item *dir_item;
69 char *name_ptr;
Chris Masona8a2ee02007-03-16 08:46:49 -040070
Chris Masone20d96d2007-03-22 12:13:20 -040071 dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
72 path->slots[0],
Chris Mason1d4f6402007-03-15 15:18:43 -040073 struct btrfs_dir_item);
Chris Masona8a2ee02007-03-16 08:46:49 -040074 if (btrfs_dir_name_len(dir_item) != name_len)
Chris Mason1d4f6402007-03-15 15:18:43 -040075 return 0;
Chris Masona8a2ee02007-03-16 08:46:49 -040076 name_ptr = (char *)(dir_item + 1);
77 if (memcmp(name_ptr, name, name_len))
78 return 0;
Chris Mason1d4f6402007-03-15 15:18:43 -040079 return 1;
Chris Mason62e27492007-03-15 12:56:47 -040080}