blob: ddbe12ae0d634c57eac406764fa497aa7a49f148 [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);
Chris Mason7fcde0e2007-04-05 12:13:21 -040046 }
Chris Mason54aa1f42007-06-22 14:16:25 -040047 if (ret < 0)
48 return ERR_PTR(ret);
Chris Mason7e381802007-04-19 15:36:27 -040049 WARN_ON(ret > 0);
Chris Mason5f39d392007-10-15 16:14:19 -040050 leaf = path->nodes[0];
51 item = btrfs_item_nr(leaf, path->slots[0]);
Chris Mason7e381802007-04-19 15:36:27 -040052 ptr = btrfs_item_ptr(leaf, path->slots[0], char);
Chris Mason5f39d392007-10-15 16:14:19 -040053 BUG_ON(data_size > btrfs_item_size(leaf, item));
54 ptr += btrfs_item_size(leaf, item) - data_size;
Chris Mason7e381802007-04-19 15:36:27 -040055 return (struct btrfs_dir_item *)ptr;
Chris Mason7fcde0e2007-04-05 12:13:21 -040056}
57
Josef Bacik5103e942007-11-16 11:45:54 -050058int btrfs_insert_xattr_item(struct btrfs_trans_handle *trans,
59 struct btrfs_root *root, const char *name,
60 u16 name_len, const void *data, u16 data_len,
61 u64 dir)
62{
63 int ret = 0;
64 struct btrfs_path *path;
65 struct btrfs_dir_item *dir_item;
66 unsigned long name_ptr, data_ptr;
67 struct btrfs_key key, location;
68 struct btrfs_disk_key disk_key;
69 struct extent_buffer *leaf;
70 u32 data_size;
71
72 key.objectid = dir;
73 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
74 ret = btrfs_name_hash(name, name_len, &key.offset);
75 BUG_ON(ret);
76 path = btrfs_alloc_path();
77 if (!path)
78 return -ENOMEM;
79
80 data_size = sizeof(*dir_item) + name_len + data_len;
81 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
82 name, name_len);
83 /*
84 * FIXME: at some point we should handle xattr's that are larger than
85 * what we can fit in our leaf. We set location to NULL b/c we arent
86 * pointing at anything else, that will change if we store the xattr
87 * data in a separate inode.
88 */
89 BUG_ON(IS_ERR(dir_item));
90 memset(&location, 0, sizeof(location));
91
92 leaf = path->nodes[0];
93 btrfs_cpu_key_to_disk(&disk_key, &location);
94 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
95 btrfs_set_dir_type(leaf, dir_item, BTRFS_FT_XATTR);
96 btrfs_set_dir_name_len(leaf, dir_item, name_len);
97 btrfs_set_dir_data_len(leaf, dir_item, data_len);
98 name_ptr = (unsigned long)(dir_item + 1);
99 data_ptr = (unsigned long)((char *)name_ptr + name_len);
100
101 write_extent_buffer(leaf, name, name_ptr, name_len);
102 write_extent_buffer(leaf, data, data_ptr, data_len);
103 btrfs_mark_buffer_dirty(path->nodes[0]);
104
105 btrfs_free_path(path);
106 return ret;
107}
108
Chris Masone089f052007-03-16 16:20:31 -0400109int btrfs_insert_dir_item(struct btrfs_trans_handle *trans, struct btrfs_root
Chris Masond6e4a422007-04-06 15:37:36 -0400110 *root, const char *name, int name_len, u64 dir,
111 struct btrfs_key *location, u8 type)
Chris Mason62e27492007-03-15 12:56:47 -0400112{
113 int ret = 0;
Chris Masone06afa82007-05-23 15:44:28 -0400114 int ret2 = 0;
Chris Mason5caf2a02007-04-02 11:20:42 -0400115 struct btrfs_path *path;
Chris Mason62e27492007-03-15 12:56:47 -0400116 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400117 struct extent_buffer *leaf;
118 unsigned long name_ptr;
Chris Mason62e27492007-03-15 12:56:47 -0400119 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400120 struct btrfs_disk_key disk_key;
Chris Mason62e27492007-03-15 12:56:47 -0400121 u32 data_size;
122
123 key.objectid = dir;
Chris Mason1d4f6402007-03-15 15:18:43 -0400124 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Masone20d96d2007-03-22 12:13:20 -0400125 ret = btrfs_name_hash(name, name_len, &key.offset);
Chris Mason62e27492007-03-15 12:56:47 -0400126 BUG_ON(ret);
Chris Mason5caf2a02007-04-02 11:20:42 -0400127 path = btrfs_alloc_path();
Chris Mason62e27492007-03-15 12:56:47 -0400128 data_size = sizeof(*dir_item) + name_len;
Chris Masone06afa82007-05-23 15:44:28 -0400129 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
130 name, name_len);
Chris Mason7e381802007-04-19 15:36:27 -0400131 if (IS_ERR(dir_item)) {
132 ret = PTR_ERR(dir_item);
Chris Masone06afa82007-05-23 15:44:28 -0400133 if (ret == -EEXIST)
134 goto second_insert;
Chris Mason62e27492007-03-15 12:56:47 -0400135 goto out;
Chris Mason7e381802007-04-19 15:36:27 -0400136 }
Chris Mason62e27492007-03-15 12:56:47 -0400137
Chris Mason5f39d392007-10-15 16:14:19 -0400138 leaf = path->nodes[0];
139 btrfs_cpu_key_to_disk(&disk_key, location);
140 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
141 btrfs_set_dir_type(leaf, dir_item, type);
Josef Bacik5103e942007-11-16 11:45:54 -0500142 btrfs_set_dir_data_len(leaf, dir_item, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400143 btrfs_set_dir_name_len(leaf, dir_item, name_len);
144 name_ptr = (unsigned long)(dir_item + 1);
Chris Masonc5739bb2007-04-10 09:27:04 -0400145
Chris Mason5f39d392007-10-15 16:14:19 -0400146 write_extent_buffer(leaf, name, name_ptr, name_len);
147 btrfs_mark_buffer_dirty(leaf);
Chris Mason7e381802007-04-19 15:36:27 -0400148
Chris Masone06afa82007-05-23 15:44:28 -0400149second_insert:
Chris Mason7e381802007-04-19 15:36:27 -0400150 /* FIXME, use some real flag for selecting the extra index */
151 if (root == root->fs_info->tree_root) {
152 ret = 0;
153 goto out;
154 }
Chris Mason5caf2a02007-04-02 11:20:42 -0400155 btrfs_release_path(root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400156
157 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
158 key.offset = location->objectid;
Chris Masone06afa82007-05-23 15:44:28 -0400159 dir_item = insert_with_overflow(trans, root, path, &key, data_size,
160 name, name_len);
Chris Mason7e381802007-04-19 15:36:27 -0400161 if (IS_ERR(dir_item)) {
Chris Masone06afa82007-05-23 15:44:28 -0400162 ret2 = PTR_ERR(dir_item);
Chris Mason7e381802007-04-19 15:36:27 -0400163 goto out;
164 }
Chris Mason5f39d392007-10-15 16:14:19 -0400165 leaf = path->nodes[0];
166 btrfs_cpu_key_to_disk(&disk_key, location);
167 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
168 btrfs_set_dir_type(leaf, dir_item, type);
Josef Bacik5103e942007-11-16 11:45:54 -0500169 btrfs_set_dir_data_len(leaf, dir_item, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400170 btrfs_set_dir_name_len(leaf, dir_item, name_len);
171 name_ptr = (unsigned long)(dir_item + 1);
172 write_extent_buffer(leaf, name, name_ptr, name_len);
173 btrfs_mark_buffer_dirty(leaf);
Chris Mason7e381802007-04-19 15:36:27 -0400174out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400175 btrfs_free_path(path);
Chris Masone06afa82007-05-23 15:44:28 -0400176 if (ret)
177 return ret;
178 if (ret2)
179 return ret2;
180 return 0;
Chris Mason62e27492007-03-15 12:56:47 -0400181}
182
Chris Mason7e381802007-04-19 15:36:27 -0400183struct btrfs_dir_item *btrfs_lookup_dir_item(struct btrfs_trans_handle *trans,
184 struct btrfs_root *root,
185 struct btrfs_path *path, u64 dir,
186 const char *name, int name_len,
187 int mod)
Chris Mason62e27492007-03-15 12:56:47 -0400188{
Chris Mason1d4f6402007-03-15 15:18:43 -0400189 int ret;
Chris Mason62e27492007-03-15 12:56:47 -0400190 struct btrfs_key key;
Chris Mason1d4f6402007-03-15 15:18:43 -0400191 int ins_len = mod < 0 ? -1 : 0;
192 int cow = mod != 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400193 struct btrfs_key found_key;
194 struct extent_buffer *leaf;
Chris Mason62e27492007-03-15 12:56:47 -0400195
196 key.objectid = dir;
Chris Mason1d4f6402007-03-15 15:18:43 -0400197 btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
Chris Mason5f39d392007-10-15 16:14:19 -0400198
Chris Mason62e27492007-03-15 12:56:47 -0400199 ret = btrfs_name_hash(name, name_len, &key.offset);
200 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400201
Chris Mason7e381802007-04-19 15:36:27 -0400202 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
203 if (ret < 0)
204 return ERR_PTR(ret);
205 if (ret > 0) {
206 if (path->slots[0] == 0)
207 return NULL;
208 path->slots[0]--;
Chris Mason7fcde0e2007-04-05 12:13:21 -0400209 }
Chris Mason7e381802007-04-19 15:36:27 -0400210
Chris Mason5f39d392007-10-15 16:14:19 -0400211 leaf = path->nodes[0];
212 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
213
214 if (found_key.objectid != dir ||
215 btrfs_key_type(&found_key) != BTRFS_DIR_ITEM_KEY ||
216 found_key.offset != key.offset)
Chris Mason7e381802007-04-19 15:36:27 -0400217 return NULL;
218
219 return btrfs_match_dir_item_name(root, path, name, name_len);
Chris Mason62e27492007-03-15 12:56:47 -0400220}
221
Chris Mason7e381802007-04-19 15:36:27 -0400222struct btrfs_dir_item *
223btrfs_lookup_dir_index_item(struct btrfs_trans_handle *trans,
224 struct btrfs_root *root,
225 struct btrfs_path *path, u64 dir,
226 u64 objectid, const char *name, int name_len,
227 int mod)
228{
229 int ret;
230 struct btrfs_key key;
231 int ins_len = mod < 0 ? -1 : 0;
232 int cow = mod != 0;
233
234 key.objectid = dir;
Chris Mason7e381802007-04-19 15:36:27 -0400235 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
236 key.offset = objectid;
237
238 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
239 if (ret < 0)
240 return ERR_PTR(ret);
241 if (ret > 0)
242 return ERR_PTR(-ENOENT);
243 return btrfs_match_dir_item_name(root, path, name, name_len);
244}
245
Josef Bacik5103e942007-11-16 11:45:54 -0500246struct btrfs_dir_item *btrfs_lookup_xattr(struct btrfs_trans_handle *trans,
247 struct btrfs_root *root,
248 struct btrfs_path *path, u64 dir,
249 const char *name, u16 name_len,
250 int mod)
251{
252 int ret;
253 struct btrfs_key key;
254 int ins_len = mod < 0 ? -1 : 0;
255 int cow = mod != 0;
256 struct btrfs_key found_key;
257 struct extent_buffer *leaf;
258
259 key.objectid = dir;
260 btrfs_set_key_type(&key, BTRFS_XATTR_ITEM_KEY);
261 ret = btrfs_name_hash(name, name_len, &key.offset);
262 BUG_ON(ret);
263 ret = btrfs_search_slot(trans, root, &key, path, ins_len, cow);
264 if (ret < 0)
265 return ERR_PTR(ret);
266 if (ret > 0) {
267 if (path->slots[0] == 0)
268 return NULL;
269 path->slots[0]--;
270 }
271
272 leaf = path->nodes[0];
273 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
274
275 if (found_key.objectid != dir ||
276 btrfs_key_type(&found_key) != BTRFS_XATTR_ITEM_KEY ||
277 found_key.offset != key.offset)
278 return NULL;
279
280 return btrfs_match_dir_item_name(root, path, name, name_len);
281}
282
Chris Mason7e381802007-04-19 15:36:27 -0400283struct btrfs_dir_item *btrfs_match_dir_item_name(struct btrfs_root *root,
Chris Mason7f5c1512007-03-23 15:56:19 -0400284 struct btrfs_path *path,
285 const char *name, int name_len)
Chris Mason62e27492007-03-15 12:56:47 -0400286{
Chris Mason62e27492007-03-15 12:56:47 -0400287 struct btrfs_dir_item *dir_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400288 unsigned long name_ptr;
Chris Mason7e381802007-04-19 15:36:27 -0400289 u32 total_len;
290 u32 cur = 0;
291 u32 this_len;
Chris Mason5f39d392007-10-15 16:14:19 -0400292 struct extent_buffer *leaf;
Chris Masona8a2ee02007-03-16 08:46:49 -0400293
Chris Mason5f39d392007-10-15 16:14:19 -0400294 leaf = path->nodes[0];
Chris Mason7e381802007-04-19 15:36:27 -0400295 dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400296 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
Chris Mason7e381802007-04-19 15:36:27 -0400297 while(cur < total_len) {
Chris Mason5f39d392007-10-15 16:14:19 -0400298 this_len = sizeof(*dir_item) +
Josef Bacik5103e942007-11-16 11:45:54 -0500299 btrfs_dir_name_len(leaf, dir_item) +
300 btrfs_dir_data_len(leaf, dir_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400301 name_ptr = (unsigned long)(dir_item + 1);
Chris Mason7e381802007-04-19 15:36:27 -0400302
Chris Mason5f39d392007-10-15 16:14:19 -0400303 if (btrfs_dir_name_len(leaf, dir_item) == name_len &&
304 memcmp_extent_buffer(leaf, name, name_ptr, name_len) == 0)
Chris Mason7e381802007-04-19 15:36:27 -0400305 return dir_item;
306
307 cur += this_len;
308 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
309 this_len);
310 }
311 return NULL;
Chris Mason62e27492007-03-15 12:56:47 -0400312}
Chris Mason7e381802007-04-19 15:36:27 -0400313
314int btrfs_delete_one_dir_name(struct btrfs_trans_handle *trans,
315 struct btrfs_root *root,
316 struct btrfs_path *path,
317 struct btrfs_dir_item *di)
318{
319
Chris Mason5f39d392007-10-15 16:14:19 -0400320 struct extent_buffer *leaf;
Chris Mason7e381802007-04-19 15:36:27 -0400321 u32 sub_item_len;
322 u32 item_len;
Chris Mason54aa1f42007-06-22 14:16:25 -0400323 int ret = 0;
Chris Mason7e381802007-04-19 15:36:27 -0400324
Chris Mason5f39d392007-10-15 16:14:19 -0400325 leaf = path->nodes[0];
Josef Bacik5103e942007-11-16 11:45:54 -0500326 sub_item_len = sizeof(*di) + btrfs_dir_name_len(leaf, di) +
327 btrfs_dir_data_len(leaf, di);
Chris Mason5f39d392007-10-15 16:14:19 -0400328 item_len = btrfs_item_size_nr(leaf, path->slots[0]);
329 if (sub_item_len == item_len) {
Chris Mason7e381802007-04-19 15:36:27 -0400330 ret = btrfs_del_item(trans, root, path);
Chris Mason7e381802007-04-19 15:36:27 -0400331 } else {
Chris Mason5f39d392007-10-15 16:14:19 -0400332 /* MARKER */
333 unsigned long ptr = (unsigned long)di;
334 unsigned long start;
335
336 start = btrfs_item_ptr_offset(leaf, path->slots[0]);
337 memmove_extent_buffer(leaf, ptr, ptr + sub_item_len,
Chris Mason7e381802007-04-19 15:36:27 -0400338 item_len - (ptr + sub_item_len - start));
339 ret = btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400340 item_len - sub_item_len, 1);
Chris Mason7e381802007-04-19 15:36:27 -0400341 }
342 return 0;
343}
344