blob: 4d8083d92fa0f1f14271f45b4450af563e947f2e [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
8 *root, char *name, int name_len, u64 dir, u64
9 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 Mason2e635a22007-03-21 11:12:56 -040021 if (name_len == 1 && *name == '.')
22 key.offset = 1;
23 else if (name_len == 2 && name[0] == '.' && name[1] == '.')
24 key.offset = 2;
25 else
26 ret = btrfs_name_hash(name, name_len, &key.offset);
Chris Mason62e27492007-03-15 12:56:47 -040027 BUG_ON(ret);
28 btrfs_init_path(&path);
29 data_size = sizeof(*dir_item) + name_len;
Chris Masone089f052007-03-16 16:20:31 -040030 ret = btrfs_insert_empty_item(trans, root, &path, &key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -040031 if (ret)
32 goto out;
33
34 dir_item = btrfs_item_ptr(&path.nodes[0]->leaf, path.slots[0],
35 struct btrfs_dir_item);
36 btrfs_set_dir_objectid(dir_item, objectid);
37 btrfs_set_dir_type(dir_item, type);
38 btrfs_set_dir_flags(dir_item, 0);
Chris Masona8a2ee02007-03-16 08:46:49 -040039 btrfs_set_dir_name_len(dir_item, name_len);
Chris Mason62e27492007-03-15 12:56:47 -040040 name_ptr = (char *)(dir_item + 1);
41 memcpy(name_ptr, name, name_len);
42out:
43 btrfs_release_path(root, &path);
44 return ret;
45}
46
Chris Masone089f052007-03-16 16:20:31 -040047int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
48 *root, struct btrfs_path *path, u64 dir, char *name,
49 int name_len, int mod)
Chris Mason62e27492007-03-15 12:56:47 -040050{
Chris Mason1d4f6402007-03-15 15:18:43 -040051 int ret;
Chris Mason62e27492007-03-15 12:56:47 -040052 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -040053 int ins_len = mod < 0 ? -1 : 0;
54 int cow = mod != 0;
Chris Mason62e27492007-03-15 12:56:47 -040055
56 key.objectid = dir;
57 key.flags = 0;
Chris Mason1d4f6402007-03-15 15:18:43 -040058 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason62e27492007-03-15 12:56:47 -040059 ret = btrfs_name_hash(name, name_len, &key.offset);
60 BUG_ON(ret);
Chris Masone089f052007-03-16 16:20:31 -040061 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
Chris Mason62e27492007-03-15 12:56:47 -040062 return ret;
63}
64
Chris Masone089f052007-03-16 16:20:31 -040065int btrfs_match_dir_item_name(struct btrfs_root *root,
66 struct btrfs_path *path, char
67 *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -040068{
Chris Mason62e27492007-03-15 12:56:47 -040069 struct btrfs_dir_item *dir_item;
70 char *name_ptr;
Chris Masona8a2ee02007-03-16 08:46:49 -040071
Chris Mason1d4f6402007-03-15 15:18:43 -040072 dir_item = btrfs_item_ptr(&path->nodes[0]->leaf, path->slots[0],
73 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}