blob: 514a1dc337a8616bfa919efb6b525dd7d7b3b057 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason62e27492007-03-15 12:56:47 -040019#include "ctree.h"
20#include "disk-io.h"
21#include "hash.h"
Chris Masone089f052007-03-16 16:20:31 -040022#include "transaction.h"
Chris Mason62e27492007-03-15 12:56:47 -040023
Chris Mason35b7e472007-05-02 15:53:43 -040024static struct btrfs_dir_item *insert_with_overflow(struct btrfs_trans_handle
25 *trans,
26 struct btrfs_root *root,
27 struct btrfs_path *path,
28 struct btrfs_key *cpu_key,
Chris Masone06afa82007-05-23 15:44:28 -040029 u32 data_size,
30 const char *name,
31 int name_len)
Chris Mason7fcde0e2007-04-05 12:13:21 -040032{
Chris Mason7fcde0e2007-04-05 12:13:21 -040033 int ret;
Chris Mason7e381802007-04-19 15:36:27 -040034 char *ptr;
35 struct btrfs_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -040036 struct extent_buffer *leaf;
Chris Mason7fcde0e2007-04-05 12:13:21 -040037
38 ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
Chris Mason7e381802007-04-19 15:36:27 -040039 if (ret == -EEXIST) {
Chris Masone06afa82007-05-23 15:44:28 -040040 struct btrfs_dir_item *di;
41 di = btrfs_match_dir_item_name(root, path, name, name_len);
42 if (di)
43 return ERR_PTR(-EEXIST);
Chris Mason7e381802007-04-19 15:36:27 -040044 ret = btrfs_extend_item(trans, root, path, data_size);
45 WARN_ON(ret > 0);
46 if (ret)
47 return ERR_PTR(ret);
Chris Mason7fcde0e2007-04-05 12:13:21 -040048 }
Chris Mason54aa1f42007-06-22 14:16:25 -040049 if (ret < 0)
50 return ERR_PTR(ret);
Chris Mason7e381802007-04-19 15:36:27 -040051 WARN_ON(ret > 0);
Chris Mason5f39d392007-10-15 16:14:19 -040052 leaf = path->nodes[0];
53 item = btrfs_item_nr(leaf, path->slots[0]);
Chris Mason7e381802007-04-19 15:36:27 -040054 ptr = btrfs_item_ptr(leaf, path->slots[0], char);
Chris Mason5f39d392007-10-15 16:14:19 -040055 BUG_ON(data_size > btrfs_item_size(leaf, item));
56 ptr += btrfs_item_size(leaf, item) - data_size;
Chris Mason7e381802007-04-19 15:36:27 -040057 return (struct btrfs_dir_item *)ptr;
Chris Mason7fcde0e2007-04-05 12:13:21 -040058}
59
Chris Masone089f052007-03-16 16:20:31 -040060int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -040061 *root, const char *name, int name_len, u64 dir,
62 struct btrfs_key *location, u8 type)
Chris Mason62e27492007-03-15 12:56:47 -040063{
64 int ret = 0;
Chris Masone06afa82007-05-23 15:44:28 -040065 int ret2 = 0;
Chris Mason5caf2a02007-04-02 11:20:42 -040066 struct btrfs_path *path;
Chris Mason62e27492007-03-15 12:56:47 -040067 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -040068 struct extent_buffer *leaf;
69 unsigned long name_ptr;
Chris Mason62e27492007-03-15 12:56:47 -040070 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -040071 struct btrfs_disk_key disk_key;
Chris Mason62e27492007-03-15 12:56:47 -040072 u32 data_size;
73
74 key.objectid = dir;
Chris Mason1d4f6402007-03-15 15:18:43 -040075 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Masone20d96d2007-03-22 12:13:20 -040076 ret = btrfs_name_hash(name, name_len, &key.offset);
Chris Mason62e27492007-03-15 12:56:47 -040077 BUG_ON(ret);
Chris Mason5caf2a02007-04-02 11:20:42 -040078 path = btrfs_alloc_path();
Chris Mason62e27492007-03-15 12:56:47 -040079 data_size = sizeof(*dir_item) + name_len;
Chris Masone06afa82007-05-23 15:44:28 -040080 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
81 name, name_len);
Chris Mason7e381802007-04-19 15:36:27 -040082 if (IS_ERR(dir_item)) {
83 ret = PTR_ERR(dir_item);
Chris Masone06afa82007-05-23 15:44:28 -040084 if (ret == -EEXIST)
85 goto second_insert;
Chris Mason62e27492007-03-15 12:56:47 -040086 goto out;
Chris Mason7e381802007-04-19 15:36:27 -040087 }
Chris Mason62e27492007-03-15 12:56:47 -040088
Chris Mason5f39d392007-10-15 16:14:19 -040089 leaf = path->nodes[0];
90 btrfs_cpu_key_to_disk(&disk_key, location);
91 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
92 btrfs_set_dir_type(leaf, dir_item, type);
93 btrfs_set_dir_flags(leaf, dir_item, 0);
94 btrfs_set_dir_name_len(leaf, dir_item, name_len);
95 name_ptr = (unsigned long)(dir_item + 1);
Chris Masonc5739bb2007-04-10 09:27:04 -040096
Chris Mason5f39d392007-10-15 16:14:19 -040097 write_extent_buffer(leaf, name, name_ptr, name_len);
98 btrfs_mark_buffer_dirty(leaf);
Chris Mason7e381802007-04-19 15:36:27 -040099
Chris Masone06afa82007-05-23 15:44:28 -0400100second_insert:
Chris Mason7e381802007-04-19 15:36:27 -0400101 /* FIXME, use some real flag for selecting the extra index */
102 if (root == root->fs_info->tree_root) {
103 ret = 0;
104 goto out;
105 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400106 btrfs_release_path(root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400107
108 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
109 key.offset = location->objectid;
Chris Masone06afa82007-05-23 15:44:28 -0400110 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
111 name, name_len);
Chris Mason7e381802007-04-19 15:36:27 -0400112 if (IS_ERR(dir_item)) {
Chris Masone06afa82007-05-23 15:44:28 -0400113 ret2 = PTR_ERR(dir_item);
Chris Mason7e381802007-04-19 15:36:27 -0400114 goto out;
115 }
Chris Mason5f39d392007-10-15 16:14:19 -0400116 leaf = path->nodes[0];
117 btrfs_cpu_key_to_disk(&disk_key, location);
118 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
119 btrfs_set_dir_type(leaf, dir_item, type);
120 btrfs_set_dir_flags(leaf, dir_item, 0);
121 btrfs_set_dir_name_len(leaf, dir_item, name_len);
122 name_ptr = (unsigned long)(dir_item + 1);
123 write_extent_buffer(leaf, name, name_ptr, name_len);
124 btrfs_mark_buffer_dirty(leaf);
Chris Mason7e381802007-04-19 15:36:27 -0400125out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400126 btrfs_free_path(path);
Chris Masone06afa82007-05-23 15:44:28 -0400127 if (ret)
128 return ret;
129 if (ret2)
130 return ret2;
131 return 0;
Chris Mason62e27492007-03-15 12:56:47 -0400132}
133
Chris Mason7e381802007-04-19 15:36:27 -0400134struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
135 struct btrfs_root *root,
136 struct btrfs_path *path, u64 dir,
137 const char *name, int name_len,
138 int mod)
Chris Mason62e27492007-03-15 12:56:47 -0400139{
Chris Mason1d4f6402007-03-15 15:18:43 -0400140 int ret;
Chris Mason62e27492007-03-15 12:56:47 -0400141 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -0400142 int ins_len = mod < 0 ? -1 : 0;
143 int cow = mod != 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400144 struct btrfs_key found_key;
145 struct extent_buffer *leaf;
Chris Mason62e27492007-03-15 12:56:47 -0400146
147 key.objectid = dir;
Chris Mason1d4f6402007-03-15 15:18:43 -0400148 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason5f39d392007-10-15 16:14:19 -0400149
Chris Mason62e27492007-03-15 12:56:47 -0400150 ret = btrfs_name_hash(name, name_len, &key.offset);
151 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400152
Chris Mason7e381802007-04-19 15:36:27 -0400153 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
154 if (ret < 0)
155 return ERR_PTR(ret);
156 if (ret > 0) {
157 if (path->slots[0] == 0)
158 return NULL;
159 path->slots[0]--;
Chris Mason7fcde0e2007-04-05 12:13:21 -0400160 }
Chris Mason7e381802007-04-19 15:36:27 -0400161
Chris Mason5f39d392007-10-15 16:14:19 -0400162 leaf = path->nodes[0];
163 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
164
165 if (found_key.objectid != dir ||
166 btrfs_key_type(&found_key) != BTRFS_DIR_ITEM_KEY ||
167 found_key.offset != key.offset)
Chris Mason7e381802007-04-19 15:36:27 -0400168 return NULL;
169
170 return btrfs_match_dir_item_name(root, path, name, name_len);
Chris Mason62e27492007-03-15 12:56:47 -0400171}
172
Chris Mason7e381802007-04-19 15:36:27 -0400173struct btrfs_dir_item *
174btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
175 struct btrfs_root *root,
176 struct btrfs_path *path, u64 dir,
177 u64 objectid, const char *name, int name_len,
178 int mod)
179{
180 int ret;
181 struct btrfs_key key;
182 int ins_len = mod < 0 ? -1 : 0;
183 int cow = mod != 0;
184
185 key.objectid = dir;
Chris Mason7e381802007-04-19 15:36:27 -0400186 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
187 key.offset = objectid;
188
189 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
190 if (ret < 0)
191 return ERR_PTR(ret);
192 if (ret > 0)
193 return ERR_PTR(-ENOENT);
194 return btrfs_match_dir_item_name(root, path, name, name_len);
195}
196
197struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
Chris Mason7f5c1512007-03-23 15:56:19 -0400198 struct btrfs_path *path,
199 const char *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -0400200{
Chris Mason62e27492007-03-15 12:56:47 -0400201 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400202 unsigned long name_ptr;
Chris Mason7e381802007-04-19 15:36:27 -0400203 u32 total_len;
204 u32 cur = 0;
205 u32 this_len;
Chris Mason5f39d392007-10-15 16:14:19 -0400206 struct extent_buffer *leaf;
Chris Masona8a2ee02007-03-16 08:46:49 -0400207
Chris Mason5f39d392007-10-15 16:14:19 -0400208 leaf = path->nodes[0];
Chris Mason7e381802007-04-19 15:36:27 -0400209 dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400210 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
Chris Mason7e381802007-04-19 15:36:27 -0400211 while(cur < total_len) {
Chris Mason5f39d392007-10-15 16:14:19 -0400212 this_len = sizeof(*dir_item) +
213 btrfs_dir_name_len(leaf, dir_item);
214 name_ptr = (unsigned long)(dir_item + 1);
Chris Mason7e381802007-04-19 15:36:27 -0400215
Chris Mason5f39d392007-10-15 16:14:19 -0400216 if (btrfs_dir_name_len(leaf, dir_item) == name_len &&
217 memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0)
Chris Mason7e381802007-04-19 15:36:27 -0400218 return dir_item;
219
220 cur += this_len;
221 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
222 this_len);
223 }
224 return NULL;
Chris Mason62e27492007-03-15 12:56:47 -0400225}
Chris Mason7e381802007-04-19 15:36:27 -0400226
227int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
228 struct btrfs_root *root,
229 struct btrfs_path *path,
230 struct btrfs_dir_item *di)
231{
232
Chris Mason5f39d392007-10-15 16:14:19 -0400233 struct extent_buffer *leaf;
Chris Mason7e381802007-04-19 15:36:27 -0400234 u32 sub_item_len;
235 u32 item_len;
Chris Mason54aa1f42007-06-22 14:16:25 -0400236 int ret = 0;
Chris Mason7e381802007-04-19 15:36:27 -0400237
Chris Mason5f39d392007-10-15 16:14:19 -0400238 leaf = path->nodes[0];
239 sub_item_len = sizeof(*di) + btrfs_dir_name_len(leaf, di);
240 item_len = btrfs_item_size_nr(leaf, path->slots[0]);
241 if (sub_item_len == item_len) {
Chris Mason7e381802007-04-19 15:36:27 -0400242 ret = btrfs_del_item(trans, root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400243 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400244 /* MARKER */
245 unsigned long ptr = (unsigned long)di;
246 unsigned long start;
247
248 start = btrfs_item_ptr_offset(leaf, path->slots[0]);
249 memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
Chris Mason7e381802007-04-19 15:36:27 -0400250 item_len - (ptr + sub_item_len - start));
251 ret = btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400252 item_len - sub_item_len, 1);
Chris Mason7e381802007-04-19 15:36:27 -0400253 }
254 return 0;
255}
256