blob: 6b9f921ef2fa178d75ed2e24d0e7a2a424fbf4d2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/hfsplus/dir.c
3 *
4 * Copyright (C) 2001
5 * Brad Boyer (flar@allandria.com)
6 * (C) 2003 Ardis Technologies <roman@ardistech.com>
7 *
8 * Handling of directories
9 */
10
11#include <linux/errno.h>
12#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/slab.h>
14#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "hfsplus_fs.h"
17#include "hfsplus_raw.h"
18
19static inline void hfsplus_instantiate(struct dentry *dentry,
20 struct inode *inode, u32 cnid)
21{
22 dentry->d_fsdata = (void *)(unsigned long)cnid;
23 d_instantiate(dentry, inode);
24}
25
26/* Find the entry inside dir named dentry->d_name */
27static struct dentry *hfsplus_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040028 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
30 struct inode *inode = NULL;
31 struct hfs_find_data fd;
32 struct super_block *sb;
33 hfsplus_cat_entry entry;
34 int err;
35 u32 cnid, linkid = 0;
36 u16 type;
37
38 sb = dir->i_sb;
Duane Griffind45bce82007-07-15 23:41:23 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 dentry->d_fsdata = NULL;
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +040041 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
42 if (err)
43 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, &dentry->d_name);
45again:
46 err = hfs_brec_read(&fd, &entry, sizeof(entry));
47 if (err) {
48 if (err == -ENOENT) {
49 hfs_find_exit(&fd);
50 /* No such entry */
51 inode = NULL;
52 goto out;
53 }
54 goto fail;
55 }
56 type = be16_to_cpu(entry.type);
57 if (type == HFSPLUS_FOLDER) {
58 if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) {
59 err = -EIO;
60 goto fail;
61 }
62 cnid = be32_to_cpu(entry.folder.id);
63 dentry->d_fsdata = (void *)(unsigned long)cnid;
64 } else if (type == HFSPLUS_FILE) {
65 if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
66 err = -EIO;
67 goto fail;
68 }
69 cnid = be32_to_cpu(entry.file.id);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020070 if (entry.file.user_info.fdType ==
71 cpu_to_be32(HFSP_HARDLINK_TYPE) &&
72 entry.file.user_info.fdCreator ==
73 cpu_to_be32(HFSP_HFSPLUS_CREATOR) &&
74 (entry.file.create_date ==
75 HFSPLUS_I(HFSPLUS_SB(sb)->hidden_dir)->
76 create_date ||
77 entry.file.create_date ==
78 HFSPLUS_I(sb->s_root->d_inode)->
79 create_date) &&
80 HFSPLUS_SB(sb)->hidden_dir) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 struct qstr str;
82 char name[32];
83
84 if (dentry->d_fsdata) {
Roman Zippelaf8c85b2006-01-18 17:43:10 -080085 /*
86 * We found a link pointing to another link,
87 * so ignore it and treat it as regular file.
88 */
89 cnid = (unsigned long)dentry->d_fsdata;
90 linkid = 0;
91 } else {
92 dentry->d_fsdata = (void *)(unsigned long)cnid;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020093 linkid =
94 be32_to_cpu(entry.file.permissions.dev);
Roman Zippelaf8c85b2006-01-18 17:43:10 -080095 str.len = sprintf(name, "iNode%d", linkid);
96 str.name = name;
Christoph Hellwigdd73a012010-10-01 05:42:59 +020097 hfsplus_cat_build_key(sb, fd.search_key,
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020098 HFSPLUS_SB(sb)->hidden_dir->i_ino,
99 &str);
Roman Zippelaf8c85b2006-01-18 17:43:10 -0800100 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 } else if (!dentry->d_fsdata)
103 dentry->d_fsdata = (void *)(unsigned long)cnid;
104 } else {
Roman Zippel634725a2006-01-18 17:43:05 -0800105 printk(KERN_ERR "hfs: invalid catalog entry type in lookup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 err = -EIO;
107 goto fail;
108 }
109 hfs_find_exit(&fd);
David Howells63525392008-02-07 00:15:40 -0800110 inode = hfsplus_iget(dir->i_sb, cnid);
111 if (IS_ERR(inode))
112 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (S_ISREG(inode->i_mode))
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400114 HFSPLUS_I(inode)->linkid = linkid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115out:
116 d_add(dentry, inode);
117 return NULL;
118fail:
119 hfs_find_exit(&fd);
120 return ERR_PTR(err);
121}
122
123static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
124{
Josef Sipekf44ea032006-12-08 02:37:04 -0800125 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct super_block *sb = inode->i_sb;
127 int len, err;
128 char strbuf[HFSPLUS_MAX_STRLEN + 1];
129 hfsplus_cat_entry entry;
130 struct hfs_find_data fd;
131 struct hfsplus_readdir_data *rd;
132 u16 type;
133
134 if (filp->f_pos >= inode->i_size)
135 return 0;
136
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400137 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
138 if (err)
139 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 hfsplus_cat_build_key(sb, fd.search_key, inode->i_ino, NULL);
141 err = hfs_brec_find(&fd);
142 if (err)
143 goto out;
144
145 switch ((u32)filp->f_pos) {
146 case 0:
147 /* This is completely artificial... */
148 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR))
149 goto out;
150 filp->f_pos++;
151 /* fall through */
152 case 1:
Greg Kroah-Hartman6f24f892012-05-04 12:09:39 -0700153 if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) {
154 err = -EIO;
155 goto out;
156 }
157
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200158 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
159 fd.entrylength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (be16_to_cpu(entry.type) != HFSPLUS_FOLDER_THREAD) {
Roman Zippel634725a2006-01-18 17:43:05 -0800161 printk(KERN_ERR "hfs: bad catalog folder thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 err = -EIO;
163 goto out;
164 }
165 if (fd.entrylength < HFSPLUS_MIN_THREAD_SZ) {
Roman Zippel634725a2006-01-18 17:43:05 -0800166 printk(KERN_ERR "hfs: truncated catalog thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 err = -EIO;
168 goto out;
169 }
170 if (filldir(dirent, "..", 2, 1,
171 be32_to_cpu(entry.thread.parentID), DT_DIR))
172 goto out;
173 filp->f_pos++;
174 /* fall through */
175 default:
176 if (filp->f_pos >= inode->i_size)
177 goto out;
178 err = hfs_brec_goto(&fd, filp->f_pos - 1);
179 if (err)
180 goto out;
181 }
182
183 for (;;) {
184 if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) {
Roman Zippel634725a2006-01-18 17:43:05 -0800185 printk(KERN_ERR "hfs: walked past end of dir\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 err = -EIO;
187 goto out;
188 }
Greg Kroah-Hartman6f24f892012-05-04 12:09:39 -0700189
190 if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) {
191 err = -EIO;
192 goto out;
193 }
194
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200195 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
196 fd.entrylength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 type = be16_to_cpu(entry.type);
198 len = HFSPLUS_MAX_STRLEN;
199 err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len);
200 if (err)
201 goto out;
202 if (type == HFSPLUS_FOLDER) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200203 if (fd.entrylength <
204 sizeof(struct hfsplus_cat_folder)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800205 printk(KERN_ERR "hfs: small dir entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 err = -EIO;
207 goto out;
208 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200209 if (HFSPLUS_SB(sb)->hidden_dir &&
210 HFSPLUS_SB(sb)->hidden_dir->i_ino ==
211 be32_to_cpu(entry.folder.id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto next;
213 if (filldir(dirent, strbuf, len, filp->f_pos,
214 be32_to_cpu(entry.folder.id), DT_DIR))
215 break;
216 } else if (type == HFSPLUS_FILE) {
217 if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
Roman Zippel634725a2006-01-18 17:43:05 -0800218 printk(KERN_ERR "hfs: small file entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 err = -EIO;
220 goto out;
221 }
222 if (filldir(dirent, strbuf, len, filp->f_pos,
223 be32_to_cpu(entry.file.id), DT_REG))
224 break;
225 } else {
Roman Zippel634725a2006-01-18 17:43:05 -0800226 printk(KERN_ERR "hfs: bad catalog entry type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 err = -EIO;
228 goto out;
229 }
Anton Salikhmetov20b76432010-12-16 18:08:40 +0200230next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 filp->f_pos++;
232 if (filp->f_pos >= inode->i_size)
233 goto out;
234 err = hfs_brec_goto(&fd, 1);
235 if (err)
236 goto out;
237 }
238 rd = filp->private_data;
239 if (!rd) {
240 rd = kmalloc(sizeof(struct hfsplus_readdir_data), GFP_KERNEL);
241 if (!rd) {
242 err = -ENOMEM;
243 goto out;
244 }
245 filp->private_data = rd;
246 rd->file = filp;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200247 list_add(&rd->list, &HFSPLUS_I(inode)->open_dir_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 memcpy(&rd->key, fd.key, sizeof(struct hfsplus_cat_key));
250out:
251 hfs_find_exit(&fd);
252 return err;
253}
254
255static int hfsplus_dir_release(struct inode *inode, struct file *file)
256{
257 struct hfsplus_readdir_data *rd = file->private_data;
258 if (rd) {
Christoph Hellwig89755dc2010-10-01 05:45:25 +0200259 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 list_del(&rd->list);
Christoph Hellwig89755dc2010-10-01 05:45:25 +0200261 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 kfree(rd);
263 }
264 return 0;
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267static int hfsplus_link(struct dentry *src_dentry, struct inode *dst_dir,
268 struct dentry *dst_dentry)
269{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200270 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dst_dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct inode *inode = src_dentry->d_inode;
272 struct inode *src_dir = src_dentry->d_parent->d_inode;
273 struct qstr str;
274 char name[32];
275 u32 cnid, id;
276 int res;
277
278 if (HFSPLUS_IS_RSRC(inode))
279 return -EPERM;
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400280 if (!S_ISREG(inode->i_mode))
281 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200283 mutex_lock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (inode->i_ino == (u32)(unsigned long)src_dentry->d_fsdata) {
285 for (;;) {
286 get_random_bytes(&id, sizeof(cnid));
287 id &= 0x3fffffff;
288 str.name = name;
289 str.len = sprintf(name, "iNode%d", id);
290 res = hfsplus_rename_cat(inode->i_ino,
291 src_dir, &src_dentry->d_name,
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200292 sbi->hidden_dir, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (!res)
294 break;
295 if (res != -EEXIST)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200296 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400298 HFSPLUS_I(inode)->linkid = id;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200299 cnid = sbi->next_cnid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 src_dentry->d_fsdata = (void *)(unsigned long)cnid;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200301 res = hfsplus_create_cat(cnid, src_dir,
302 &src_dentry->d_name, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (res)
304 /* panic? */
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200305 goto out;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200306 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200308 cnid = sbi->next_cnid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 res = hfsplus_create_cat(cnid, dst_dir, &dst_dentry->d_name, inode);
310 if (res)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200311 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Dave Hansend8c76e62006-09-30 23:29:04 -0700313 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 hfsplus_instantiate(dst_dentry, inode, cnid);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400315 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 inode->i_ctime = CURRENT_TIME_SEC;
317 mark_inode_dirty(inode);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200318 sbi->file_count++;
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300319 hfsplus_mark_mdb_dirty(dst_dir->i_sb);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200320out:
321 mutex_unlock(&sbi->vh_mutex);
322 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325static int hfsplus_unlink(struct inode *dir, struct dentry *dentry)
326{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200327 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct inode *inode = dentry->d_inode;
329 struct qstr str;
330 char name[32];
331 u32 cnid;
332 int res;
333
334 if (HFSPLUS_IS_RSRC(inode))
335 return -EPERM;
336
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200337 mutex_lock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 cnid = (u32)(unsigned long)dentry->d_fsdata;
339 if (inode->i_ino == cnid &&
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200340 atomic_read(&HFSPLUS_I(inode)->opencnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 str.name = name;
342 str.len = sprintf(name, "temp%lu", inode->i_ino);
343 res = hfsplus_rename_cat(inode->i_ino,
344 dir, &dentry->d_name,
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200345 sbi->hidden_dir, &str);
Christoph Hellwig85b8fe82010-10-27 13:45:50 +0200346 if (!res) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 inode->i_flags |= S_DEAD;
Christoph Hellwig85b8fe82010-10-27 13:45:50 +0200348 drop_nlink(inode);
349 }
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352 res = hfsplus_delete_cat(cnid, dir, &dentry->d_name);
353 if (res)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200354 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Roman Zippelaf8c85b2006-01-18 17:43:10 -0800356 if (inode->i_nlink > 0)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700357 drop_nlink(inode);
Roman Zippel76b0c262008-04-09 17:44:07 +0200358 if (inode->i_ino == cnid)
Dave Hansence71ec32006-09-30 23:29:06 -0700359 clear_nlink(inode);
Roman Zippel76b0c262008-04-09 17:44:07 +0200360 if (!inode->i_nlink) {
361 if (inode->i_ino != cnid) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200362 sbi->file_count--;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200363 if (!atomic_read(&HFSPLUS_I(inode)->opencnt)) {
Roman Zippel76b0c262008-04-09 17:44:07 +0200364 res = hfsplus_delete_cat(inode->i_ino,
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200365 sbi->hidden_dir,
Roman Zippel76b0c262008-04-09 17:44:07 +0200366 NULL);
367 if (!res)
368 hfsplus_delete_inode(inode);
369 } else
370 inode->i_flags |= S_DEAD;
371 } else
372 hfsplus_delete_inode(inode);
373 } else
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200374 sbi->file_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 inode->i_ctime = CURRENT_TIME_SEC;
376 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200377out:
378 mutex_unlock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return res;
380}
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry)
383{
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200384 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
385 struct inode *inode = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 int res;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (inode->i_size != 2)
389 return -ENOTEMPTY;
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200390
391 mutex_lock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 res = hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name);
393 if (res)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200394 goto out;
Dave Hansence71ec32006-09-30 23:29:06 -0700395 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 inode->i_ctime = CURRENT_TIME_SEC;
397 hfsplus_delete_inode(inode);
398 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200399out:
400 mutex_unlock(&sbi->vh_mutex);
401 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404static int hfsplus_symlink(struct inode *dir, struct dentry *dentry,
405 const char *symname)
406{
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200407 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 struct inode *inode;
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200409 int res = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200411 mutex_lock(&sbi->vh_mutex);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200412 inode = hfsplus_new_inode(dir->i_sb, S_IFLNK | S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (!inode)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200414 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 res = page_symlink(inode, symname, strlen(symname) + 1);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200417 if (res)
418 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200421 if (res)
422 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200424 hfsplus_instantiate(dentry, inode, inode->i_ino);
425 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200426 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200428out_err:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200429 clear_nlink(inode);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200430 hfsplus_delete_inode(inode);
431 iput(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200432out:
433 mutex_unlock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return res;
435}
436
437static int hfsplus_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400438 umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200440 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct inode *inode;
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200442 int res = -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200444 mutex_lock(&sbi->vh_mutex);
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200445 inode = hfsplus_new_inode(dir->i_sb, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (!inode)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200447 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Christoph Hellwig90e61692010-10-14 09:54:39 -0400449 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISFIFO(mode) || S_ISSOCK(mode))
450 init_special_inode(inode, mode, rdev);
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode);
453 if (res) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200454 clear_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 hfsplus_delete_inode(inode);
456 iput(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200457 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 hfsplus_instantiate(dentry, inode, inode->i_ino);
461 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200462out:
463 mutex_unlock(&sbi->vh_mutex);
464 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Al Viro4acdaf22011-07-26 01:42:34 -0400467static int hfsplus_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400468 bool excl)
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200469{
470 return hfsplus_mknod(dir, dentry, mode, 0);
471}
472
Al Viro18bb1db2011-07-26 01:41:39 -0400473static int hfsplus_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200474{
475 return hfsplus_mknod(dir, dentry, mode | S_IFDIR, 0);
476}
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry,
479 struct inode *new_dir, struct dentry *new_dentry)
480{
481 int res;
482
483 /* Unlink destination if it already exists */
484 if (new_dentry->d_inode) {
Sage Weile3911782011-05-27 13:42:06 -0700485 if (S_ISDIR(new_dentry->d_inode->i_mode))
Christoph Hellwig40de9a72010-10-01 09:12:08 +0200486 res = hfsplus_rmdir(new_dir, new_dentry);
Sage Weile3911782011-05-27 13:42:06 -0700487 else
Christoph Hellwig40de9a72010-10-01 09:12:08 +0200488 res = hfsplus_unlink(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (res)
490 return res;
491 }
492
493 res = hfsplus_rename_cat((u32)(unsigned long)old_dentry->d_fsdata,
494 old_dir, &old_dentry->d_name,
495 new_dir, &new_dentry->d_name);
496 if (!res)
497 new_dentry->d_fsdata = old_dentry->d_fsdata;
498 return res;
499}
500
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800501const struct inode_operations hfsplus_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .lookup = hfsplus_lookup,
503 .create = hfsplus_create,
504 .link = hfsplus_link,
505 .unlink = hfsplus_unlink,
506 .mkdir = hfsplus_mkdir,
507 .rmdir = hfsplus_rmdir,
508 .symlink = hfsplus_symlink,
509 .mknod = hfsplus_mknod,
510 .rename = hfsplus_rename,
511};
512
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800513const struct file_operations hfsplus_dir_operations = {
Christoph Hellwigeb29d662010-11-23 14:38:10 +0100514 .fsync = hfsplus_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 .read = generic_read_dir,
516 .readdir = hfsplus_readdir,
Arnd Bergmann7cc4bcc2010-04-27 16:24:20 +0200517 .unlocked_ioctl = hfsplus_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .llseek = generic_file_llseek,
519 .release = hfsplus_dir_release,
520};