blob: 840d71edd1939856de5eff785f3f01b8cd0e0060 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hfsplus/catalog.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 * Handling of catalog records
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include "hfsplus_fs.h"
13#include "hfsplus_raw.h"
14
David Elliott2179d372006-01-18 17:43:08 -080015int hfsplus_cat_case_cmp_key(const hfsplus_btree_key *k1,
16 const hfsplus_btree_key *k2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017{
18 __be32 k1p, k2p;
19
20 k1p = k1->cat.parent;
21 k2p = k2->cat.parent;
22 if (k1p != k2p)
23 return be32_to_cpu(k1p) < be32_to_cpu(k2p) ? -1 : 1;
24
David Elliott2179d372006-01-18 17:43:08 -080025 return hfsplus_strcasecmp(&k1->cat.name, &k2->cat.name);
26}
27
28int hfsplus_cat_bin_cmp_key(const hfsplus_btree_key *k1,
29 const hfsplus_btree_key *k2)
30{
31 __be32 k1p, k2p;
32
33 k1p = k1->cat.parent;
34 k2p = k2->cat.parent;
35 if (k1p != k2p)
36 return be32_to_cpu(k1p) < be32_to_cpu(k2p) ? -1 : 1;
37
38 return hfsplus_strcmp(&k1->cat.name, &k2->cat.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41void hfsplus_cat_build_key(struct super_block *sb, hfsplus_btree_key *key,
42 u32 parent, struct qstr *str)
43{
44 int len;
45
46 key->cat.parent = cpu_to_be32(parent);
47 if (str) {
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -080048 hfsplus_asc2uni(sb, &key->cat.name, HFSPLUS_MAX_STRLEN,
49 str->name, str->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 len = be16_to_cpu(key->cat.name.length);
51 } else {
52 key->cat.name.length = 0;
53 len = 0;
54 }
55 key->key_len = cpu_to_be16(6 + 2 * len);
56}
57
58static void hfsplus_cat_build_key_uni(hfsplus_btree_key *key, u32 parent,
59 struct hfsplus_unistr *name)
60{
61 int ustrlen;
62
63 ustrlen = be16_to_cpu(name->length);
64 key->cat.parent = cpu_to_be32(parent);
65 key->cat.name.length = cpu_to_be16(ustrlen);
66 ustrlen *= 2;
67 memcpy(key->cat.name.unicode, name->unicode, ustrlen);
68 key->key_len = cpu_to_be16(6 + ustrlen);
69}
70
Christoph Hellwig90e61692010-10-14 09:54:39 -040071void hfsplus_cat_set_perms(struct inode *inode, struct hfsplus_perm *perms)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 if (inode->i_flags & S_IMMUTABLE)
74 perms->rootflags |= HFSPLUS_FLG_IMMUTABLE;
75 else
76 perms->rootflags &= ~HFSPLUS_FLG_IMMUTABLE;
77 if (inode->i_flags & S_APPEND)
78 perms->rootflags |= HFSPLUS_FLG_APPEND;
79 else
80 perms->rootflags &= ~HFSPLUS_FLG_APPEND;
Christoph Hellwig90e61692010-10-14 09:54:39 -040081
82 perms->userflags = HFSPLUS_I(inode)->userflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 perms->mode = cpu_to_be16(inode->i_mode);
Eric W. Biederman16525e32012-02-07 16:27:17 -080084 perms->owner = cpu_to_be32(i_uid_read(inode));
85 perms->group = cpu_to_be32(i_gid_read(inode));
Christoph Hellwig90e61692010-10-14 09:54:39 -040086
87 if (S_ISREG(inode->i_mode))
88 perms->dev = cpu_to_be32(inode->i_nlink);
89 else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode))
90 perms->dev = cpu_to_be32(inode->i_rdev);
91 else
92 perms->dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020095static int hfsplus_cat_build_record(hfsplus_cat_entry *entry,
96 u32 cnid, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Christoph Hellwigdd73a012010-10-01 05:42:59 +020098 struct hfsplus_sb_info *sbi = HFSPLUS_SB(inode->i_sb);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (S_ISDIR(inode->i_mode)) {
101 struct hfsplus_cat_folder *folder;
102
103 folder = &entry->folder;
104 memset(folder, 0, sizeof(*folder));
105 folder->type = cpu_to_be16(HFSPLUS_FOLDER);
106 folder->id = cpu_to_be32(inode->i_ino);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200107 HFSPLUS_I(inode)->create_date =
Roman Zippel9a4cad92006-01-18 17:43:09 -0800108 folder->create_date =
109 folder->content_mod_date =
110 folder->attribute_mod_date =
111 folder->access_date = hfsp_now2mt();
Christoph Hellwig90e61692010-10-14 09:54:39 -0400112 hfsplus_cat_set_perms(inode, &folder->permissions);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200113 if (inode == sbi->hidden_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* invisible and namelocked */
115 folder->user_info.frFlags = cpu_to_be16(0x5000);
116 return sizeof(*folder);
117 } else {
118 struct hfsplus_cat_file *file;
119
120 file = &entry->file;
121 memset(file, 0, sizeof(*file));
122 file->type = cpu_to_be16(HFSPLUS_FILE);
123 file->flags = cpu_to_be16(HFSPLUS_FILE_THREAD_EXISTS);
124 file->id = cpu_to_be32(cnid);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200125 HFSPLUS_I(inode)->create_date =
Roman Zippel9a4cad92006-01-18 17:43:09 -0800126 file->create_date =
127 file->content_mod_date =
128 file->attribute_mod_date =
129 file->access_date = hfsp_now2mt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (cnid == inode->i_ino) {
Christoph Hellwig90e61692010-10-14 09:54:39 -0400131 hfsplus_cat_set_perms(inode, &file->permissions);
Roman Zippel6b1928322006-01-18 17:43:12 -0800132 if (S_ISLNK(inode->i_mode)) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200133 file->user_info.fdType =
134 cpu_to_be32(HFSP_SYMLINK_TYPE);
135 file->user_info.fdCreator =
136 cpu_to_be32(HFSP_SYMLINK_CREATOR);
Roman Zippel6b1928322006-01-18 17:43:12 -0800137 } else {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200138 file->user_info.fdType =
139 cpu_to_be32(sbi->type);
140 file->user_info.fdCreator =
141 cpu_to_be32(sbi->creator);
Roman Zippel6b1928322006-01-18 17:43:12 -0800142 }
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200143 if (HFSPLUS_FLG_IMMUTABLE &
144 (file->permissions.rootflags |
145 file->permissions.userflags))
146 file->flags |=
147 cpu_to_be16(HFSPLUS_FILE_LOCKED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 } else {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200149 file->user_info.fdType =
150 cpu_to_be32(HFSP_HARDLINK_TYPE);
151 file->user_info.fdCreator =
152 cpu_to_be32(HFSP_HFSPLUS_CREATOR);
153 file->user_info.fdFlags =
154 cpu_to_be16(0x100);
155 file->create_date =
156 HFSPLUS_I(sbi->hidden_dir)->create_date;
157 file->permissions.dev =
158 cpu_to_be32(HFSPLUS_I(inode)->linkid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160 return sizeof(*file);
161 }
162}
163
164static int hfsplus_fill_cat_thread(struct super_block *sb,
165 hfsplus_cat_entry *entry, int type,
166 u32 parentid, struct qstr *str)
167{
168 entry->type = cpu_to_be16(type);
169 entry->thread.reserved = 0;
170 entry->thread.parentID = cpu_to_be32(parentid);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800171 hfsplus_asc2uni(sb, &entry->thread.nodeName, HFSPLUS_MAX_STRLEN,
172 str->name, str->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 return 10 + be16_to_cpu(entry->thread.nodeName.length) * 2;
174}
175
176/* Try to get a catalog entry for given catalog id */
177int hfsplus_find_cat(struct super_block *sb, u32 cnid,
178 struct hfs_find_data *fd)
179{
180 hfsplus_cat_entry tmp;
181 int err;
182 u16 type;
183
184 hfsplus_cat_build_key(sb, fd->search_key, cnid, NULL);
185 err = hfs_brec_read(fd, &tmp, sizeof(hfsplus_cat_entry));
186 if (err)
187 return err;
188
189 type = be16_to_cpu(tmp.type);
190 if (type != HFSPLUS_FOLDER_THREAD && type != HFSPLUS_FILE_THREAD) {
Roman Zippel634725a2006-01-18 17:43:05 -0800191 printk(KERN_ERR "hfs: found bad thread record in catalog\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EIO;
193 }
194
Eric Sesterhennefc7ffc2008-10-15 22:04:08 -0700195 if (be16_to_cpu(tmp.thread.nodeName.length) > 255) {
196 printk(KERN_ERR "hfs: catalog name length corrupted\n");
197 return -EIO;
198 }
199
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200200 hfsplus_cat_build_key_uni(fd->search_key,
201 be32_to_cpu(tmp.thread.parentID),
202 &tmp.thread.nodeName);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800203 return hfs_brec_find(fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200206int hfsplus_create_cat(u32 cnid, struct inode *dir,
207 struct qstr *str, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200209 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct hfs_find_data fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 hfsplus_cat_entry entry;
212 int entry_size;
213 int err;
214
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200215 dprint(DBG_CAT_MOD, "create_cat: %s,%u(%d)\n",
216 str->name, cnid, inode->i_nlink);
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400217 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
218 if (err)
219 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 hfsplus_cat_build_key(sb, fd.search_key, cnid, NULL);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200222 entry_size = hfsplus_fill_cat_thread(sb, &entry,
223 S_ISDIR(inode->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 HFSPLUS_FOLDER_THREAD : HFSPLUS_FILE_THREAD,
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200225 dir->i_ino, str);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800226 err = hfs_brec_find(&fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (err != -ENOENT) {
228 if (!err)
229 err = -EEXIST;
230 goto err2;
231 }
232 err = hfs_brec_insert(&fd, &entry, entry_size);
233 if (err)
234 goto err2;
235
236 hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, str);
237 entry_size = hfsplus_cat_build_record(&entry, cnid, inode);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800238 err = hfs_brec_find(&fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (err != -ENOENT) {
240 /* panic? */
241 if (!err)
242 err = -EEXIST;
243 goto err1;
244 }
245 err = hfs_brec_insert(&fd, &entry, entry_size);
246 if (err)
247 goto err1;
248
249 dir->i_size++;
250 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
Christoph Hellwige3494702010-11-23 14:38:15 +0100251 hfsplus_mark_inode_dirty(dir, HFSPLUS_I_CAT_DIRTY);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 hfs_find_exit(&fd);
254 return 0;
255
256err1:
257 hfsplus_cat_build_key(sb, fd.search_key, cnid, NULL);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800258 if (!hfs_brec_find(&fd, hfs_find_rec_by_key))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 hfs_brec_remove(&fd);
260err2:
261 hfs_find_exit(&fd);
262 return err;
263}
264
265int hfsplus_delete_cat(u32 cnid, struct inode *dir, struct qstr *str)
266{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200267 struct super_block *sb = dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct hfs_find_data fd;
269 struct hfsplus_fork_raw fork;
270 struct list_head *pos;
271 int err, off;
272 u16 type;
273
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200274 dprint(DBG_CAT_MOD, "delete_cat: %s,%u\n",
275 str ? str->name : NULL, cnid);
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400276 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
277 if (err)
278 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (!str) {
281 int len;
282
283 hfsplus_cat_build_key(sb, fd.search_key, cnid, NULL);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800284 err = hfs_brec_find(&fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (err)
286 goto out;
287
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200288 off = fd.entryoffset +
289 offsetof(struct hfsplus_cat_thread, nodeName);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 fd.search_key->cat.parent = cpu_to_be32(dir->i_ino);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200291 hfs_bnode_read(fd.bnode,
292 &fd.search_key->cat.name.length, off, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 len = be16_to_cpu(fd.search_key->cat.name.length) * 2;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200294 hfs_bnode_read(fd.bnode,
295 &fd.search_key->cat.name.unicode,
296 off + 2, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 fd.search_key->key_len = cpu_to_be16(6 + len);
298 } else
299 hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, str);
300
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800301 err = hfs_brec_find(&fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (err)
303 goto out;
304
305 type = hfs_bnode_read_u16(fd.bnode, fd.entryoffset);
306 if (type == HFSPLUS_FILE) {
307#if 0
308 off = fd.entryoffset + offsetof(hfsplus_cat_file, data_fork);
309 hfs_bnode_read(fd.bnode, &fork, off, sizeof(fork));
310 hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_DATA);
311#endif
312
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200313 off = fd.entryoffset +
314 offsetof(struct hfsplus_cat_file, rsrc_fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 hfs_bnode_read(fd.bnode, &fork, off, sizeof(fork));
316 hfsplus_free_fork(sb, cnid, &fork, HFSPLUS_TYPE_RSRC);
317 }
318
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200319 list_for_each(pos, &HFSPLUS_I(dir)->open_dir_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct hfsplus_readdir_data *rd =
321 list_entry(pos, struct hfsplus_readdir_data, list);
322 if (fd.tree->keycmp(fd.search_key, (void *)&rd->key) < 0)
323 rd->file->f_pos--;
324 }
325
326 err = hfs_brec_remove(&fd);
327 if (err)
328 goto out;
329
330 hfsplus_cat_build_key(sb, fd.search_key, cnid, NULL);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800331 err = hfs_brec_find(&fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (err)
333 goto out;
334
335 err = hfs_brec_remove(&fd);
336 if (err)
337 goto out;
338
339 dir->i_size--;
340 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
Christoph Hellwige3494702010-11-23 14:38:15 +0100341 hfsplus_mark_inode_dirty(dir, HFSPLUS_I_CAT_DIRTY);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800342
343 if (type == HFSPLUS_FILE || type == HFSPLUS_FOLDER) {
344 if (HFSPLUS_SB(sb)->attr_tree)
345 hfsplus_delete_all_attrs(dir, cnid);
346 }
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348out:
349 hfs_find_exit(&fd);
350
351 return err;
352}
353
354int hfsplus_rename_cat(u32 cnid,
355 struct inode *src_dir, struct qstr *src_name,
356 struct inode *dst_dir, struct qstr *dst_name)
357{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200358 struct super_block *sb = src_dir->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct hfs_find_data src_fd, dst_fd;
360 hfsplus_cat_entry entry;
361 int entry_size, type;
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400362 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200364 dprint(DBG_CAT_MOD, "rename_cat: %u - %lu,%s - %lu,%s\n",
365 cnid, src_dir->i_ino, src_name->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 dst_dir->i_ino, dst_name->name);
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400367 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &src_fd);
368 if (err)
369 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 dst_fd = src_fd;
371
372 /* find the old dir entry and read the data */
373 hfsplus_cat_build_key(sb, src_fd.search_key, src_dir->i_ino, src_name);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800374 err = hfs_brec_find(&src_fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (err)
376 goto out;
Greg Kroah-Hartman6f24f892012-05-04 12:09:39 -0700377 if (src_fd.entrylength > sizeof(entry) || src_fd.entrylength < 0) {
378 err = -EIO;
379 goto out;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 hfs_bnode_read(src_fd.bnode, &entry, src_fd.entryoffset,
383 src_fd.entrylength);
384
385 /* create new dir entry with the data from the old entry */
386 hfsplus_cat_build_key(sb, dst_fd.search_key, dst_dir->i_ino, dst_name);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800387 err = hfs_brec_find(&dst_fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (err != -ENOENT) {
389 if (!err)
390 err = -EEXIST;
391 goto out;
392 }
393
394 err = hfs_brec_insert(&dst_fd, &entry, src_fd.entrylength);
395 if (err)
396 goto out;
397 dst_dir->i_size++;
398 dst_dir->i_mtime = dst_dir->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /* finally remove the old entry */
401 hfsplus_cat_build_key(sb, src_fd.search_key, src_dir->i_ino, src_name);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800402 err = hfs_brec_find(&src_fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (err)
404 goto out;
405 err = hfs_brec_remove(&src_fd);
406 if (err)
407 goto out;
408 src_dir->i_size--;
409 src_dir->i_mtime = src_dir->i_ctime = CURRENT_TIME_SEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* remove old thread entry */
412 hfsplus_cat_build_key(sb, src_fd.search_key, cnid, NULL);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800413 err = hfs_brec_find(&src_fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (err)
415 goto out;
416 type = hfs_bnode_read_u16(src_fd.bnode, src_fd.entryoffset);
417 err = hfs_brec_remove(&src_fd);
418 if (err)
419 goto out;
420
421 /* create new thread entry */
422 hfsplus_cat_build_key(sb, dst_fd.search_key, cnid, NULL);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200423 entry_size = hfsplus_fill_cat_thread(sb, &entry, type,
424 dst_dir->i_ino, dst_name);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800425 err = hfs_brec_find(&dst_fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (err != -ENOENT) {
427 if (!err)
428 err = -EEXIST;
429 goto out;
430 }
431 err = hfs_brec_insert(&dst_fd, &entry, entry_size);
Christoph Hellwige3494702010-11-23 14:38:15 +0100432
433 hfsplus_mark_inode_dirty(dst_dir, HFSPLUS_I_CAT_DIRTY);
434 hfsplus_mark_inode_dirty(src_dir, HFSPLUS_I_CAT_DIRTY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435out:
436 hfs_bnode_put(dst_fd.bnode);
437 hfs_find_exit(&src_fd);
438 return err;
439}