dir-item.c 3.5 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 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
int insert_with_overflow(struct btrfs_trans_handle *trans, struct btrfs_root
			    *root, struct btrfs_path *path, struct btrfs_key
			    *cpu_key, u32 data_size)
{
	int overflow;
	int ret;

	ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
	overflow = btrfs_key_overflow(cpu_key);

	while(ret == -EEXIST && overflow < BTRFS_KEY_OVERFLOW_MAX) {
		overflow++;
		btrfs_set_key_overflow(cpu_key, overflow);
		btrfs_release_path(root, path);
		ret = btrfs_insert_empty_item(trans, root, path, cpu_key,
					      data_size);
	}
	return ret;
}

27
int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
28 29
			  *root, const char *name, int name_len, u64 dir,
			  struct btrfs_key *location, u8 type)
30 31
{
	int ret = 0;
32
	struct btrfs_path *path;
33 34 35 36 37 38 39
	struct btrfs_dir_item *dir_item;
	char *name_ptr;
	struct btrfs_key key;
	u32 data_size;

	key.objectid = dir;
	key.flags = 0;
40
	btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
C
Chris Mason 已提交
41
	ret = btrfs_name_hash(name, name_len, &key.offset);
42
	BUG_ON(ret);
43 44
	path = btrfs_alloc_path();
	btrfs_init_path(path);
45
	data_size = sizeof(*dir_item) + name_len;
46
	ret = insert_with_overflow(trans, root, path, &key, data_size);
47 48 49
	if (ret)
		goto out;

50 51
	dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
				  path->slots[0],
52
				  struct btrfs_dir_item);
53
	btrfs_cpu_key_to_disk(&dir_item->location, location);
54 55
	btrfs_set_dir_type(dir_item, type);
	btrfs_set_dir_flags(dir_item, 0);
56
	btrfs_set_dir_name_len(dir_item, name_len);
57
	name_ptr = (char *)(dir_item + 1);
C
Chris Mason 已提交
58 59 60

	btrfs_memcpy(root, path->nodes[0]->b_data, name_ptr, name, name_len);
	btrfs_mark_buffer_dirty(path->nodes[0]);
61
out:
62 63
	btrfs_release_path(root, path);
	btrfs_free_path(path);
64 65 66
	return ret;
}

67
int btrfs_lookup_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
C
Chris Mason 已提交
68 69
			  *root, struct btrfs_path *path, u64 dir,
			  const char *name, int name_len, int mod)
70
{
71
	int ret;
72
	struct btrfs_key key;
73 74
	int ins_len = mod < 0 ? -1 : 0;
	int cow = mod != 0;
75 76
	struct btrfs_disk_key *found_key;
	struct btrfs_leaf *leaf;
C
Chris Mason 已提交
77
	u32 overflow;
78 79 80

	key.objectid = dir;
	key.flags = 0;
81
	btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
82
	// btrfs_set_key_overflow(&key, BTRFS_KEY_OVERFLOW_MAX - 1);
83 84
	ret = btrfs_name_hash(name, name_len, &key.offset);
	BUG_ON(ret);
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	while(1) {
		ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
		if (ret < 0)
			return ret;
		if (ret > 0) {
			if (path->slots[0] == 0)
				return 1;
			path->slots[0]--;
		}
		leaf = btrfs_buffer_leaf(path->nodes[0]);
		found_key = &leaf->items[path->slots[0]].key;

		if (btrfs_disk_key_objectid(found_key) != dir ||
		    btrfs_disk_key_type(found_key) != BTRFS_DIR_ITEM_KEY ||
		    btrfs_disk_key_offset(found_key) != key.offset)
			return 1;

		if (btrfs_match_dir_item_name(root, path, name, name_len))
			return 0;

C
Chris Mason 已提交
105 106
		overflow = btrfs_disk_key_overflow(found_key);
		if (overflow == 0)
107
			return 1;
C
Chris Mason 已提交
108
		btrfs_set_key_overflow(&key, overflow - 1);
109 110 111
		btrfs_release_path(root, path);
	}
	return 1;
112 113
}

114
int btrfs_match_dir_item_name(struct btrfs_root *root,
115 116
			      struct btrfs_path *path,
			      const char *name, int name_len)
117 118 119
{
	struct btrfs_dir_item *dir_item;
	char *name_ptr;
120

C
Chris Mason 已提交
121 122
	dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
				  path->slots[0],
123
				  struct btrfs_dir_item);
124 125
	if (btrfs_dir_name_len(dir_item) != name_len)
		return 0;
126
	name_ptr = (char *)(dir_item + 1);
127
	if (memcmp(name_ptr, name, name_len))
128 129
		return 0;
	return 1;
130
}