blob: f81cbcc83b66c2557bbed6ab256e0bff3b6beb94 [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 Masond5719762007-03-23 10:01:08 -040038 mark_buffer_dirty(path.nodes[0]);
Chris Mason62e27492007-03-15 12:56:47 -040039out:
40 btrfs_release_path(root, &path);
41 return ret;
42}
43
Chris Masone089f052007-03-16 16:20:31 -040044int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masone20d96d2007-03-22 12:13:20 -040045 *root, struct btrfs_path *path, u64 dir,
46 const char *name, int name_len, int mod)
Chris Mason62e27492007-03-15 12:56:47 -040047{
Chris Mason1d4f6402007-03-15 15:18:43 -040048 int ret;
Chris Mason62e27492007-03-15 12:56:47 -040049 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -040050 int ins_len = mod < 0 ? -1 : 0;
51 int cow = mod != 0;
Chris Mason62e27492007-03-15 12:56:47 -040052
53 key.objectid = dir;
54 key.flags = 0;
Chris Mason1d4f6402007-03-15 15:18:43 -040055 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason62e27492007-03-15 12:56:47 -040056 ret = btrfs_name_hash(name, name_len, &key.offset);
57 BUG_ON(ret);
Chris Masone089f052007-03-16 16:20:31 -040058 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
Chris Mason62e27492007-03-15 12:56:47 -040059 return ret;
60}
61
Chris Masone089f052007-03-16 16:20:31 -040062int btrfs_match_dir_item_name(struct btrfs_root *root,
63 struct btrfs_path *path, char
64 *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -040065{
Chris Mason62e27492007-03-15 12:56:47 -040066 struct btrfs_dir_item *dir_item;
67 char *name_ptr;
Chris Masona8a2ee02007-03-16 08:46:49 -040068
Chris Masone20d96d2007-03-22 12:13:20 -040069 dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
70 path->slots[0],
Chris Mason1d4f6402007-03-15 15:18:43 -040071 struct btrfs_dir_item);
Chris Masona8a2ee02007-03-16 08:46:49 -040072 if (btrfs_dir_name_len(dir_item) != name_len)
Chris Mason1d4f6402007-03-15 15:18:43 -040073 return 0;
Chris Masona8a2ee02007-03-16 08:46:49 -040074 name_ptr = (char *)(dir_item + 1);
75 if (memcmp(name_ptr, name, name_len))
76 return 0;
Chris Mason1d4f6402007-03-15 15:18:43 -040077 return 1;
Chris Mason62e27492007-03-15 12:56:47 -040078}