blob: baceb1da609f8d6d3d71cc881b9736ca80d3de81 [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;
Chris Mason5caf2a02007-04-02 11:20:42 -040012 struct btrfs_path *path;
Chris Mason62e27492007-03-15 12:56:47 -040013 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);
Chris Mason5caf2a02007-04-02 11:20:42 -040023 path = btrfs_alloc_path();
24 btrfs_init_path(path);
Chris Mason62e27492007-03-15 12:56:47 -040025 data_size = sizeof(*dir_item) + name_len;
Chris Mason5caf2a02007-04-02 11:20:42 -040026 ret = btrfs_insert_empty_item(trans, root, path, &key, data_size);
Chris Mason62e27492007-03-15 12:56:47 -040027 if (ret)
28 goto out;
29
Chris Mason5caf2a02007-04-02 11:20:42 -040030 dir_item = btrfs_item_ptr(btrfs_buffer_leaf(path->nodes[0]),
31 path->slots[0],
Chris Mason62e27492007-03-15 12:56:47 -040032 struct btrfs_dir_item);
33 btrfs_set_dir_objectid(dir_item, objectid);
34 btrfs_set_dir_type(dir_item, type);
35 btrfs_set_dir_flags(dir_item, 0);
Chris Masona8a2ee02007-03-16 08:46:49 -040036 btrfs_set_dir_name_len(dir_item, name_len);
Chris Mason62e27492007-03-15 12:56:47 -040037 name_ptr = (char *)(dir_item + 1);
Chris Mason5caf2a02007-04-02 11:20:42 -040038 btrfs_memcpy(root, path->nodes[0]->b_data, name_ptr, name, name_len);
39 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason62e27492007-03-15 12:56:47 -040040out:
Chris Mason5caf2a02007-04-02 11:20:42 -040041 btrfs_release_path(root, path);
42 btrfs_free_path(path);
Chris Mason62e27492007-03-15 12:56:47 -040043 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}