blob: e8120a282435d1eac2e4f08ce1451b126c3e5b6d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/hfsplus/dir.c
4 *
5 * Copyright (C) 2001
6 * Brad Boyer (flar@allandria.com)
7 * (C) 2003 Ardis Technologies <roman@ardistech.com>
8 *
9 * Handling of directories
10 */
11
12#include <linux/errno.h>
13#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
15#include <linux/random.h>
Hin-Tak Leung017f8da2014-06-06 14:36:21 -070016#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include "hfsplus_fs.h"
19#include "hfsplus_raw.h"
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -080020#include "xattr.h"
Vyacheslav Dubeykob4c11072013-09-11 14:24:30 -070021#include "acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23static inline void hfsplus_instantiate(struct dentry *dentry,
24 struct inode *inode, u32 cnid)
25{
26 dentry->d_fsdata = (void *)(unsigned long)cnid;
27 d_instantiate(dentry, inode);
28}
29
30/* Find the entry inside dir named dentry->d_name */
31static struct dentry *hfsplus_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040032 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 struct inode *inode = NULL;
35 struct hfs_find_data fd;
36 struct super_block *sb;
37 hfsplus_cat_entry entry;
38 int err;
39 u32 cnid, linkid = 0;
40 u16 type;
41
42 sb = dir->i_sb;
Duane Griffind45bce82007-07-15 23:41:23 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 dentry->d_fsdata = NULL;
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +040045 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
46 if (err)
47 return ERR_PTR(err);
Sougata Santra89ac9b42014-12-18 16:17:12 -080048 err = hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino,
49 &dentry->d_name);
50 if (unlikely(err < 0))
51 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052again:
53 err = hfs_brec_read(&fd, &entry, sizeof(entry));
54 if (err) {
55 if (err == -ENOENT) {
56 hfs_find_exit(&fd);
57 /* No such entry */
58 inode = NULL;
59 goto out;
60 }
61 goto fail;
62 }
63 type = be16_to_cpu(entry.type);
64 if (type == HFSPLUS_FOLDER) {
65 if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) {
66 err = -EIO;
67 goto fail;
68 }
69 cnid = be32_to_cpu(entry.folder.id);
70 dentry->d_fsdata = (void *)(unsigned long)cnid;
71 } else if (type == HFSPLUS_FILE) {
72 if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
73 err = -EIO;
74 goto fail;
75 }
76 cnid = be32_to_cpu(entry.file.id);
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020077 if (entry.file.user_info.fdType ==
78 cpu_to_be32(HFSP_HARDLINK_TYPE) &&
79 entry.file.user_info.fdCreator ==
80 cpu_to_be32(HFSP_HFSPLUS_CREATOR) &&
81 (entry.file.create_date ==
82 HFSPLUS_I(HFSPLUS_SB(sb)->hidden_dir)->
83 create_date ||
84 entry.file.create_date ==
David Howells2b0143b2015-03-17 22:25:59 +000085 HFSPLUS_I(d_inode(sb->s_root))->
Anton Salikhmetov2753cc22010-12-16 18:08:38 +020086 create_date) &&
87 HFSPLUS_SB(sb)->hidden_dir) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 struct qstr str;
89 char name[32];
90
91 if (dentry->d_fsdata) {
Roman Zippelaf8c85b2006-01-18 17:43:10 -080092 /*
93 * We found a link pointing to another link,
94 * so ignore it and treat it as regular file.
95 */
96 cnid = (unsigned long)dentry->d_fsdata;
97 linkid = 0;
98 } else {
99 dentry->d_fsdata = (void *)(unsigned long)cnid;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200100 linkid =
101 be32_to_cpu(entry.file.permissions.dev);
Roman Zippelaf8c85b2006-01-18 17:43:10 -0800102 str.len = sprintf(name, "iNode%d", linkid);
103 str.name = name;
Sougata Santra89ac9b42014-12-18 16:17:12 -0800104 err = hfsplus_cat_build_key(sb, fd.search_key,
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200105 HFSPLUS_SB(sb)->hidden_dir->i_ino,
106 &str);
Sougata Santra89ac9b42014-12-18 16:17:12 -0800107 if (unlikely(err < 0))
108 goto fail;
Roman Zippelaf8c85b2006-01-18 17:43:10 -0800109 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 } else if (!dentry->d_fsdata)
112 dentry->d_fsdata = (void *)(unsigned long)cnid;
113 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700114 pr_err("invalid catalog entry type in lookup\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 err = -EIO;
116 goto fail;
117 }
118 hfs_find_exit(&fd);
David Howells63525392008-02-07 00:15:40 -0800119 inode = hfsplus_iget(dir->i_sb, cnid);
120 if (IS_ERR(inode))
121 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (S_ISREG(inode->i_mode))
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400123 HFSPLUS_I(inode)->linkid = linkid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124out:
125 d_add(dentry, inode);
126 return NULL;
127fail:
128 hfs_find_exit(&fd);
129 return ERR_PTR(err);
130}
131
Al Viroe72514e2013-05-22 14:59:39 -0400132static int hfsplus_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Al Viroe72514e2013-05-22 14:59:39 -0400134 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct super_block *sb = inode->i_sb;
136 int len, err;
Hin-Tak Leung017f8da2014-06-06 14:36:21 -0700137 char *strbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 hfsplus_cat_entry entry;
139 struct hfs_find_data fd;
140 struct hfsplus_readdir_data *rd;
141 u16 type;
142
Al Viroe72514e2013-05-22 14:59:39 -0400143 if (file->f_pos >= inode->i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return 0;
145
Alexey Khoroshilov5bd9d992011-07-06 02:29:59 +0400146 err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
147 if (err)
148 return err;
Hin-Tak Leung017f8da2014-06-06 14:36:21 -0700149 strbuf = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_MAX_STRLEN + 1, GFP_KERNEL);
150 if (!strbuf) {
151 err = -ENOMEM;
152 goto out;
153 }
Sougata Santra89ac9b42014-12-18 16:17:12 -0800154 hfsplus_cat_build_key_with_cnid(sb, fd.search_key, inode->i_ino);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800155 err = hfs_brec_find(&fd, hfs_find_rec_by_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (err)
157 goto out;
158
Al Viroe72514e2013-05-22 14:59:39 -0400159 if (ctx->pos == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* This is completely artificial... */
Al Viroe72514e2013-05-22 14:59:39 -0400161 if (!dir_emit_dot(file, ctx))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 goto out;
Al Viroe72514e2013-05-22 14:59:39 -0400163 ctx->pos = 1;
164 }
165 if (ctx->pos == 1) {
Greg Kroah-Hartman6f24f892012-05-04 12:09:39 -0700166 if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) {
167 err = -EIO;
168 goto out;
169 }
170
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200171 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
172 fd.entrylength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (be16_to_cpu(entry.type) != HFSPLUS_FOLDER_THREAD) {
Joe Perchesd6142672013-04-30 15:27:55 -0700174 pr_err("bad catalog folder thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 err = -EIO;
176 goto out;
177 }
178 if (fd.entrylength < HFSPLUS_MIN_THREAD_SZ) {
Joe Perchesd6142672013-04-30 15:27:55 -0700179 pr_err("truncated catalog thread\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 err = -EIO;
181 goto out;
182 }
Al Viroe72514e2013-05-22 14:59:39 -0400183 if (!dir_emit(ctx, "..", 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 be32_to_cpu(entry.thread.parentID), DT_DIR))
185 goto out;
Al Viroe72514e2013-05-22 14:59:39 -0400186 ctx->pos = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
Al Viroe72514e2013-05-22 14:59:39 -0400188 if (ctx->pos >= inode->i_size)
189 goto out;
190 err = hfs_brec_goto(&fd, ctx->pos - 1);
191 if (err)
192 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 for (;;) {
194 if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) {
Joe Perchesd6142672013-04-30 15:27:55 -0700195 pr_err("walked past end of dir\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 err = -EIO;
197 goto out;
198 }
Greg Kroah-Hartman6f24f892012-05-04 12:09:39 -0700199
200 if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) {
201 err = -EIO;
202 goto out;
203 }
204
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200205 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset,
206 fd.entrylength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 type = be16_to_cpu(entry.type);
Hin-Tak Leung017f8da2014-06-06 14:36:21 -0700208 len = NLS_MAX_CHARSET_SIZE * HFSPLUS_MAX_STRLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len);
210 if (err)
211 goto out;
212 if (type == HFSPLUS_FOLDER) {
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200213 if (fd.entrylength <
214 sizeof(struct hfsplus_cat_folder)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700215 pr_err("small dir entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 err = -EIO;
217 goto out;
218 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200219 if (HFSPLUS_SB(sb)->hidden_dir &&
220 HFSPLUS_SB(sb)->hidden_dir->i_ino ==
221 be32_to_cpu(entry.folder.id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 goto next;
Al Viroe72514e2013-05-22 14:59:39 -0400223 if (!dir_emit(ctx, strbuf, len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 be32_to_cpu(entry.folder.id), DT_DIR))
225 break;
226 } else if (type == HFSPLUS_FILE) {
Sergei Antonov97a62ea2014-06-06 14:36:24 -0700227 u16 mode;
228 unsigned type = DT_UNKNOWN;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
Joe Perchesd6142672013-04-30 15:27:55 -0700231 pr_err("small file entry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 err = -EIO;
233 goto out;
234 }
Sergei Antonov97a62ea2014-06-06 14:36:24 -0700235
236 mode = be16_to_cpu(entry.file.permissions.mode);
237 if (S_ISREG(mode))
238 type = DT_REG;
239 else if (S_ISLNK(mode))
240 type = DT_LNK;
241 else if (S_ISFIFO(mode))
242 type = DT_FIFO;
243 else if (S_ISCHR(mode))
244 type = DT_CHR;
245 else if (S_ISBLK(mode))
246 type = DT_BLK;
247 else if (S_ISSOCK(mode))
248 type = DT_SOCK;
249
Al Viroe72514e2013-05-22 14:59:39 -0400250 if (!dir_emit(ctx, strbuf, len,
Sergei Antonov97a62ea2014-06-06 14:36:24 -0700251 be32_to_cpu(entry.file.id), type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 break;
253 } else {
Joe Perchesd6142672013-04-30 15:27:55 -0700254 pr_err("bad catalog entry type\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 err = -EIO;
256 goto out;
257 }
Anton Salikhmetov20b76432010-12-16 18:08:40 +0200258next:
Al Viroe72514e2013-05-22 14:59:39 -0400259 ctx->pos++;
260 if (ctx->pos >= inode->i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 goto out;
262 err = hfs_brec_goto(&fd, 1);
263 if (err)
264 goto out;
265 }
Al Viroe72514e2013-05-22 14:59:39 -0400266 rd = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (!rd) {
268 rd = kmalloc(sizeof(struct hfsplus_readdir_data), GFP_KERNEL);
269 if (!rd) {
270 err = -ENOMEM;
271 goto out;
272 }
Al Viroe72514e2013-05-22 14:59:39 -0400273 file->private_data = rd;
274 rd->file = file;
Al Viro323ee8f2016-05-12 20:02:09 -0400275 spin_lock(&HFSPLUS_I(inode)->open_dir_lock);
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200276 list_add(&rd->list, &HFSPLUS_I(inode)->open_dir_list);
Al Viro323ee8f2016-05-12 20:02:09 -0400277 spin_unlock(&HFSPLUS_I(inode)->open_dir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Al Viro323ee8f2016-05-12 20:02:09 -0400279 /*
280 * Can be done after the list insertion; exclusion with
281 * hfsplus_delete_cat() is provided by directory lock.
282 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 memcpy(&rd->key, fd.key, sizeof(struct hfsplus_cat_key));
284out:
Hin-Tak Leung017f8da2014-06-06 14:36:21 -0700285 kfree(strbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 hfs_find_exit(&fd);
287 return err;
288}
289
290static int hfsplus_dir_release(struct inode *inode, struct file *file)
291{
292 struct hfsplus_readdir_data *rd = file->private_data;
293 if (rd) {
Al Viro323ee8f2016-05-12 20:02:09 -0400294 spin_lock(&HFSPLUS_I(inode)->open_dir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 list_del(&rd->list);
Al Viro323ee8f2016-05-12 20:02:09 -0400296 spin_unlock(&HFSPLUS_I(inode)->open_dir_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 kfree(rd);
298 }
299 return 0;
300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static int hfsplus_link(struct dentry *src_dentry, struct inode *dst_dir,
303 struct dentry *dst_dentry)
304{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200305 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dst_dir->i_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000306 struct inode *inode = d_inode(src_dentry);
307 struct inode *src_dir = d_inode(src_dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct qstr str;
309 char name[32];
310 u32 cnid, id;
311 int res;
312
313 if (HFSPLUS_IS_RSRC(inode))
314 return -EPERM;
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400315 if (!S_ISREG(inode->i_mode))
316 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200318 mutex_lock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (inode->i_ino == (u32)(unsigned long)src_dentry->d_fsdata) {
320 for (;;) {
321 get_random_bytes(&id, sizeof(cnid));
322 id &= 0x3fffffff;
323 str.name = name;
324 str.len = sprintf(name, "iNode%d", id);
325 res = hfsplus_rename_cat(inode->i_ino,
326 src_dir, &src_dentry->d_name,
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200327 sbi->hidden_dir, &str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (!res)
329 break;
330 if (res != -EEXIST)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200331 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Christoph Hellwigf6089ff2010-10-14 09:54:28 -0400333 HFSPLUS_I(inode)->linkid = id;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200334 cnid = sbi->next_cnid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 src_dentry->d_fsdata = (void *)(unsigned long)cnid;
Anton Salikhmetov2753cc22010-12-16 18:08:38 +0200336 res = hfsplus_create_cat(cnid, src_dir,
337 &src_dentry->d_name, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (res)
339 /* panic? */
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200340 goto out;
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200341 sbi->file_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200343 cnid = sbi->next_cnid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 res = hfsplus_create_cat(cnid, dst_dir, &dst_dentry->d_name, inode);
345 if (res)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200346 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Dave Hansend8c76e62006-09-30 23:29:04 -0700348 inc_nlink(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 hfsplus_instantiate(dst_dentry, inode, cnid);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400350 ihold(inode);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700351 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 mark_inode_dirty(inode);
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200353 sbi->file_count++;
Artem Bityutskiy9e6c5822012-07-12 17:26:31 +0300354 hfsplus_mark_mdb_dirty(dst_dir->i_sb);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200355out:
356 mutex_unlock(&sbi->vh_mutex);
357 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360static int hfsplus_unlink(struct inode *dir, struct dentry *dentry)
361{
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200362 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000363 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct qstr str;
365 char name[32];
366 u32 cnid;
367 int res;
368
369 if (HFSPLUS_IS_RSRC(inode))
370 return -EPERM;
371
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200372 mutex_lock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 cnid = (u32)(unsigned long)dentry->d_fsdata;
374 if (inode->i_ino == cnid &&
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200375 atomic_read(&HFSPLUS_I(inode)->opencnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 str.name = name;
377 str.len = sprintf(name, "temp%lu", inode->i_ino);
378 res = hfsplus_rename_cat(inode->i_ino,
379 dir, &dentry->d_name,
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200380 sbi->hidden_dir, &str);
Christoph Hellwig85b8fe82010-10-27 13:45:50 +0200381 if (!res) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 inode->i_flags |= S_DEAD;
Christoph Hellwig85b8fe82010-10-27 13:45:50 +0200383 drop_nlink(inode);
384 }
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200385 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 res = hfsplus_delete_cat(cnid, dir, &dentry->d_name);
388 if (res)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Roman Zippelaf8c85b2006-01-18 17:43:10 -0800391 if (inode->i_nlink > 0)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700392 drop_nlink(inode);
Roman Zippel76b0c262008-04-09 17:44:07 +0200393 if (inode->i_ino == cnid)
Dave Hansence71ec32006-09-30 23:29:06 -0700394 clear_nlink(inode);
Roman Zippel76b0c262008-04-09 17:44:07 +0200395 if (!inode->i_nlink) {
396 if (inode->i_ino != cnid) {
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200397 sbi->file_count--;
Christoph Hellwig6af502d2010-10-01 05:43:31 +0200398 if (!atomic_read(&HFSPLUS_I(inode)->opencnt)) {
Roman Zippel76b0c262008-04-09 17:44:07 +0200399 res = hfsplus_delete_cat(inode->i_ino,
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200400 sbi->hidden_dir,
Roman Zippel76b0c262008-04-09 17:44:07 +0200401 NULL);
402 if (!res)
403 hfsplus_delete_inode(inode);
404 } else
405 inode->i_flags |= S_DEAD;
406 } else
407 hfsplus_delete_inode(inode);
408 } else
Christoph Hellwigdd73a012010-10-01 05:42:59 +0200409 sbi->file_count--;
Deepa Dinamani02027d42016-09-14 07:48:05 -0700410 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200412out:
413 mutex_unlock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return res;
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry)
418{
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200419 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000420 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 int res;
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (inode->i_size != 2)
424 return -ENOTEMPTY;
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200425
426 mutex_lock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 res = hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name);
428 if (res)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200429 goto out;
Dave Hansence71ec32006-09-30 23:29:06 -0700430 clear_nlink(inode);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700431 inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 hfsplus_delete_inode(inode);
433 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200434out:
435 mutex_unlock(&sbi->vh_mutex);
436 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439static int hfsplus_symlink(struct inode *dir, struct dentry *dentry,
440 const char *symname)
441{
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200442 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct inode *inode;
Chengyu Song27a4e382015-04-16 12:47:12 -0700444 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200446 mutex_lock(&sbi->vh_mutex);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200447 inode = hfsplus_new_inode(dir->i_sb, S_IFLNK | S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (!inode)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200449 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 res = page_symlink(inode, symname, strlen(symname) + 1);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200452 if (res)
453 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200456 if (res)
457 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800459 res = hfsplus_init_inode_security(inode, dir, &dentry->d_name);
460 if (res == -EOPNOTSUPP)
461 res = 0; /* Operation is not supported. */
462 else if (res) {
463 /* Try to delete anyway without error analysis. */
464 hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name);
465 goto out_err;
466 }
467
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200468 hfsplus_instantiate(dentry, inode, inode->i_ino);
469 mark_inode_dirty(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200470 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200472out_err:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200473 clear_nlink(inode);
Christoph Hellwigf17c89b2010-10-01 05:43:54 +0200474 hfsplus_delete_inode(inode);
475 iput(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200476out:
477 mutex_unlock(&sbi->vh_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return res;
479}
480
481static int hfsplus_mknod(struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -0400482 umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200484 struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct inode *inode;
Chengyu Song27a4e382015-04-16 12:47:12 -0700486 int res = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200488 mutex_lock(&sbi->vh_mutex);
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200489 inode = hfsplus_new_inode(dir->i_sb, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!inode)
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200491 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Christoph Hellwig90e61692010-10-14 09:54:39 -0400493 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISFIFO(mode) || S_ISSOCK(mode))
494 init_special_inode(inode, mode, rdev);
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800497 if (res)
498 goto failed_mknod;
499
500 res = hfsplus_init_inode_security(inode, dir, &dentry->d_name);
501 if (res == -EOPNOTSUPP)
502 res = 0; /* Operation is not supported. */
503 else if (res) {
504 /* Try to delete anyway without error analysis. */
505 hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name);
506 goto failed_mknod;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 hfsplus_instantiate(dentry, inode, inode->i_ino);
510 mark_inode_dirty(inode);
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800511 goto out;
512
513failed_mknod:
514 clear_nlink(inode);
515 hfsplus_delete_inode(inode);
516 iput(inode);
Christoph Hellwig7ac9fb92010-10-01 05:45:08 +0200517out:
518 mutex_unlock(&sbi->vh_mutex);
519 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Al Viro4acdaf22011-07-26 01:42:34 -0400522static int hfsplus_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -0400523 bool excl)
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200524{
525 return hfsplus_mknod(dir, dentry, mode, 0);
526}
527
Al Viro18bb1db2011-07-26 01:41:39 -0400528static int hfsplus_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Christoph Hellwig30d3abb2010-10-01 05:43:50 +0200529{
530 return hfsplus_mknod(dir, dentry, mode | S_IFDIR, 0);
531}
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200534 struct inode *new_dir, struct dentry *new_dentry,
535 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 int res;
538
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200539 if (flags & ~RENAME_NOREPLACE)
540 return -EINVAL;
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /* Unlink destination if it already exists */
David Howells2b0143b2015-03-17 22:25:59 +0000543 if (d_really_is_positive(new_dentry)) {
David Howellse36cb0b2015-01-29 12:02:35 +0000544 if (d_is_dir(new_dentry))
Christoph Hellwig40de9a72010-10-01 09:12:08 +0200545 res = hfsplus_rmdir(new_dir, new_dentry);
Sage Weile3911782011-05-27 13:42:06 -0700546 else
Christoph Hellwig40de9a72010-10-01 09:12:08 +0200547 res = hfsplus_unlink(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (res)
549 return res;
550 }
551
552 res = hfsplus_rename_cat((u32)(unsigned long)old_dentry->d_fsdata,
553 old_dir, &old_dentry->d_name,
554 new_dir, &new_dentry->d_name);
555 if (!res)
556 new_dentry->d_fsdata = old_dentry->d_fsdata;
557 return res;
558}
559
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800560const struct inode_operations hfsplus_dir_inode_operations = {
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800561 .lookup = hfsplus_lookup,
562 .create = hfsplus_create,
563 .link = hfsplus_link,
564 .unlink = hfsplus_unlink,
565 .mkdir = hfsplus_mkdir,
566 .rmdir = hfsplus_rmdir,
567 .symlink = hfsplus_symlink,
568 .mknod = hfsplus_mknod,
569 .rename = hfsplus_rename,
Vyacheslav Dubeyko324ef392013-02-27 17:03:04 -0800570 .listxattr = hfsplus_listxattr,
Vyacheslav Dubeykob4c11072013-09-11 14:24:30 -0700571#ifdef CONFIG_HFSPLUS_FS_POSIX_ACL
572 .get_acl = hfsplus_get_posix_acl,
Christoph Hellwigb0a7ab52013-12-20 05:16:46 -0800573 .set_acl = hfsplus_set_posix_acl,
Vyacheslav Dubeykob4c11072013-09-11 14:24:30 -0700574#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575};
576
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800577const struct file_operations hfsplus_dir_operations = {
Christoph Hellwigeb29d662010-11-23 14:38:10 +0100578 .fsync = hfsplus_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 .read = generic_read_dir,
Al Viro323ee8f2016-05-12 20:02:09 -0400580 .iterate_shared = hfsplus_readdir,
Arnd Bergmann7cc4bcc2010-04-27 16:24:20 +0200581 .unlocked_ioctl = hfsplus_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .llseek = generic_file_llseek,
583 .release = hfsplus_dir_release,
584};