dir-item.c 2.1 KB
Newer Older
1
#include <linux/module.h>
2 3 4
#include "ctree.h"
#include "disk-io.h"
#include "hash.h"
5
#include "transaction.h"
6

7
int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
8
			  *root, const char *name, int name_len, u64 dir, u64
9
			  objectid, u8 type)
10 11 12 13 14 15 16 17 18 19
{
	int ret = 0;
	struct btrfs_path path;
	struct btrfs_dir_item *dir_item;
	char *name_ptr;
	struct btrfs_key key;
	u32 data_size;

	key.objectid = dir;
	key.flags = 0;
20
	btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
C
Chris Mason 已提交
21
	ret = btrfs_name_hash(name, name_len, &key.offset);
22 23 24
	BUG_ON(ret);
	btrfs_init_path(&path);
	data_size = sizeof(*dir_item) + name_len;
25
	ret = btrfs_insert_empty_item(trans, root, &path, &key, data_size);
26 27 28
	if (ret)
		goto out;

C
Chris Mason 已提交
29 30
	dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path.nodes[0]),
				  path.slots[0],
31 32 33 34
				  struct btrfs_dir_item);
	btrfs_set_dir_objectid(dir_item, objectid);
	btrfs_set_dir_type(dir_item, type);
	btrfs_set_dir_flags(dir_item, 0);
35
	btrfs_set_dir_name_len(dir_item, name_len);
36 37
	name_ptr = (char *)(dir_item + 1);
	memcpy(name_ptr, name, name_len);
C
Chris Mason 已提交
38 39
	if (name_ptr + name_len > path.nodes[0]->b_data + 4096)
		WARN_ON(1);
40
	mark_buffer_dirty(path.nodes[0]);
41 42 43 44 45
out:
	btrfs_release_path(root, &path);
	return ret;
}

46
int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
47 48
			  *root, struct btrfs_path *path, u64 dir,
			  const char *name, int name_len, int mod)
49
{
50
	int ret;
51
	struct btrfs_key key;
52 53
	int ins_len = mod < 0 ? -1 : 0;
	int cow = mod != 0;
54 55 56

	key.objectid = dir;
	key.flags = 0;
57
	btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
58 59
	ret = btrfs_name_hash(name, name_len, &key.offset);
	BUG_ON(ret);
60
	ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
61 62 63
	return ret;
}

64
int btrfs_match_dir_item_name(struct btrfs_root *root,
65 66
			      struct btrfs_path *path,
			      const char *name, int name_len)
67 68 69
{
	struct btrfs_dir_item *dir_item;
	char *name_ptr;
70

C
Chris Mason 已提交
71 72
	dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
				  path->slots[0],
73
				  struct btrfs_dir_item);
74 75
	if (btrfs_dir_name_len(dir_item) != name_len)
		return 0;
76
	name_ptr = (char *)(dir_item + 1);
77
	if (memcmp(name_ptr, name, name_len))
78 79
		return 0;
	return 1;
80
}