Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/random.h> |
Hin-Tak Leung | 017f8da | 2014-06-06 14:36:21 -0700 | [diff] [blame] | 15 | #include <linux/nls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
| 17 | #include "hfsplus_fs.h" |
| 18 | #include "hfsplus_raw.h" |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 19 | #include "xattr.h" |
Vyacheslav Dubeyko | b4c1107 | 2013-09-11 14:24:30 -0700 | [diff] [blame] | 20 | #include "acl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | static inline void hfsplus_instantiate(struct dentry *dentry, |
| 23 | struct inode *inode, u32 cnid) |
| 24 | { |
| 25 | dentry->d_fsdata = (void *)(unsigned long)cnid; |
| 26 | d_instantiate(dentry, inode); |
| 27 | } |
| 28 | |
| 29 | /* Find the entry inside dir named dentry->d_name */ |
| 30 | static struct dentry *hfsplus_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 31 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | { |
| 33 | struct inode *inode = NULL; |
| 34 | struct hfs_find_data fd; |
| 35 | struct super_block *sb; |
| 36 | hfsplus_cat_entry entry; |
| 37 | int err; |
| 38 | u32 cnid, linkid = 0; |
| 39 | u16 type; |
| 40 | |
| 41 | sb = dir->i_sb; |
Duane Griffin | d45bce8 | 2007-07-15 23:41:23 -0700 | [diff] [blame] | 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | dentry->d_fsdata = NULL; |
Alexey Khoroshilov | 5bd9d99 | 2011-07-06 02:29:59 +0400 | [diff] [blame] | 44 | err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd); |
| 45 | if (err) |
| 46 | return ERR_PTR(err); |
Sougata Santra | 89ac9b4 | 2014-12-18 16:17:12 -0800 | [diff] [blame] | 47 | err = hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, |
| 48 | &dentry->d_name); |
| 49 | if (unlikely(err < 0)) |
| 50 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | again: |
| 52 | err = hfs_brec_read(&fd, &entry, sizeof(entry)); |
| 53 | if (err) { |
| 54 | if (err == -ENOENT) { |
| 55 | hfs_find_exit(&fd); |
| 56 | /* No such entry */ |
| 57 | inode = NULL; |
| 58 | goto out; |
| 59 | } |
| 60 | goto fail; |
| 61 | } |
| 62 | type = be16_to_cpu(entry.type); |
| 63 | if (type == HFSPLUS_FOLDER) { |
| 64 | if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) { |
| 65 | err = -EIO; |
| 66 | goto fail; |
| 67 | } |
| 68 | cnid = be32_to_cpu(entry.folder.id); |
| 69 | dentry->d_fsdata = (void *)(unsigned long)cnid; |
| 70 | } else if (type == HFSPLUS_FILE) { |
| 71 | if (fd.entrylength < sizeof(struct hfsplus_cat_file)) { |
| 72 | err = -EIO; |
| 73 | goto fail; |
| 74 | } |
| 75 | cnid = be32_to_cpu(entry.file.id); |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 76 | if (entry.file.user_info.fdType == |
| 77 | cpu_to_be32(HFSP_HARDLINK_TYPE) && |
| 78 | entry.file.user_info.fdCreator == |
| 79 | cpu_to_be32(HFSP_HFSPLUS_CREATOR) && |
| 80 | (entry.file.create_date == |
| 81 | HFSPLUS_I(HFSPLUS_SB(sb)->hidden_dir)-> |
| 82 | create_date || |
| 83 | entry.file.create_date == |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 84 | HFSPLUS_I(d_inode(sb->s_root))-> |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 85 | create_date) && |
| 86 | HFSPLUS_SB(sb)->hidden_dir) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | struct qstr str; |
| 88 | char name[32]; |
| 89 | |
| 90 | if (dentry->d_fsdata) { |
Roman Zippel | af8c85b | 2006-01-18 17:43:10 -0800 | [diff] [blame] | 91 | /* |
| 92 | * We found a link pointing to another link, |
| 93 | * so ignore it and treat it as regular file. |
| 94 | */ |
| 95 | cnid = (unsigned long)dentry->d_fsdata; |
| 96 | linkid = 0; |
| 97 | } else { |
| 98 | dentry->d_fsdata = (void *)(unsigned long)cnid; |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 99 | linkid = |
| 100 | be32_to_cpu(entry.file.permissions.dev); |
Roman Zippel | af8c85b | 2006-01-18 17:43:10 -0800 | [diff] [blame] | 101 | str.len = sprintf(name, "iNode%d", linkid); |
| 102 | str.name = name; |
Sougata Santra | 89ac9b4 | 2014-12-18 16:17:12 -0800 | [diff] [blame] | 103 | err = hfsplus_cat_build_key(sb, fd.search_key, |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 104 | HFSPLUS_SB(sb)->hidden_dir->i_ino, |
| 105 | &str); |
Sougata Santra | 89ac9b4 | 2014-12-18 16:17:12 -0800 | [diff] [blame] | 106 | if (unlikely(err < 0)) |
| 107 | goto fail; |
Roman Zippel | af8c85b | 2006-01-18 17:43:10 -0800 | [diff] [blame] | 108 | goto again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } else if (!dentry->d_fsdata) |
| 111 | dentry->d_fsdata = (void *)(unsigned long)cnid; |
| 112 | } else { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 113 | pr_err("invalid catalog entry type in lookup\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | err = -EIO; |
| 115 | goto fail; |
| 116 | } |
| 117 | hfs_find_exit(&fd); |
David Howells | 6352539 | 2008-02-07 00:15:40 -0800 | [diff] [blame] | 118 | inode = hfsplus_iget(dir->i_sb, cnid); |
| 119 | if (IS_ERR(inode)) |
| 120 | return ERR_CAST(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | if (S_ISREG(inode->i_mode)) |
Christoph Hellwig | f6089ff | 2010-10-14 09:54:28 -0400 | [diff] [blame] | 122 | HFSPLUS_I(inode)->linkid = linkid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | out: |
| 124 | d_add(dentry, inode); |
| 125 | return NULL; |
| 126 | fail: |
| 127 | hfs_find_exit(&fd); |
| 128 | return ERR_PTR(err); |
| 129 | } |
| 130 | |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 131 | static int hfsplus_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 133 | struct inode *inode = file_inode(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | struct super_block *sb = inode->i_sb; |
| 135 | int len, err; |
Hin-Tak Leung | 017f8da | 2014-06-06 14:36:21 -0700 | [diff] [blame] | 136 | char *strbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | hfsplus_cat_entry entry; |
| 138 | struct hfs_find_data fd; |
| 139 | struct hfsplus_readdir_data *rd; |
| 140 | u16 type; |
| 141 | |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 142 | if (file->f_pos >= inode->i_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return 0; |
| 144 | |
Alexey Khoroshilov | 5bd9d99 | 2011-07-06 02:29:59 +0400 | [diff] [blame] | 145 | err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd); |
| 146 | if (err) |
| 147 | return err; |
Hin-Tak Leung | 017f8da | 2014-06-06 14:36:21 -0700 | [diff] [blame] | 148 | strbuf = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_MAX_STRLEN + 1, GFP_KERNEL); |
| 149 | if (!strbuf) { |
| 150 | err = -ENOMEM; |
| 151 | goto out; |
| 152 | } |
Sougata Santra | 89ac9b4 | 2014-12-18 16:17:12 -0800 | [diff] [blame] | 153 | hfsplus_cat_build_key_with_cnid(sb, fd.search_key, inode->i_ino); |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 154 | err = hfs_brec_find(&fd, hfs_find_rec_by_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (err) |
| 156 | goto out; |
| 157 | |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 158 | if (ctx->pos == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | /* This is completely artificial... */ |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 160 | if (!dir_emit_dot(file, ctx)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | goto out; |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 162 | ctx->pos = 1; |
| 163 | } |
| 164 | if (ctx->pos == 1) { |
Greg Kroah-Hartman | 6f24f89 | 2012-05-04 12:09:39 -0700 | [diff] [blame] | 165 | if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) { |
| 166 | err = -EIO; |
| 167 | goto out; |
| 168 | } |
| 169 | |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 170 | hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, |
| 171 | fd.entrylength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | if (be16_to_cpu(entry.type) != HFSPLUS_FOLDER_THREAD) { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 173 | pr_err("bad catalog folder thread\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | err = -EIO; |
| 175 | goto out; |
| 176 | } |
| 177 | if (fd.entrylength < HFSPLUS_MIN_THREAD_SZ) { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 178 | pr_err("truncated catalog thread\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | err = -EIO; |
| 180 | goto out; |
| 181 | } |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 182 | if (!dir_emit(ctx, "..", 2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | be32_to_cpu(entry.thread.parentID), DT_DIR)) |
| 184 | goto out; |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 185 | ctx->pos = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 187 | if (ctx->pos >= inode->i_size) |
| 188 | goto out; |
| 189 | err = hfs_brec_goto(&fd, ctx->pos - 1); |
| 190 | if (err) |
| 191 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | for (;;) { |
| 193 | if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 194 | pr_err("walked past end of dir\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | err = -EIO; |
| 196 | goto out; |
| 197 | } |
Greg Kroah-Hartman | 6f24f89 | 2012-05-04 12:09:39 -0700 | [diff] [blame] | 198 | |
| 199 | if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) { |
| 200 | err = -EIO; |
| 201 | goto out; |
| 202 | } |
| 203 | |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 204 | hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, |
| 205 | fd.entrylength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | type = be16_to_cpu(entry.type); |
Hin-Tak Leung | 017f8da | 2014-06-06 14:36:21 -0700 | [diff] [blame] | 207 | len = NLS_MAX_CHARSET_SIZE * HFSPLUS_MAX_STRLEN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len); |
| 209 | if (err) |
| 210 | goto out; |
| 211 | if (type == HFSPLUS_FOLDER) { |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 212 | if (fd.entrylength < |
| 213 | sizeof(struct hfsplus_cat_folder)) { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 214 | pr_err("small dir entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | err = -EIO; |
| 216 | goto out; |
| 217 | } |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 218 | if (HFSPLUS_SB(sb)->hidden_dir && |
| 219 | HFSPLUS_SB(sb)->hidden_dir->i_ino == |
| 220 | be32_to_cpu(entry.folder.id)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | goto next; |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 222 | if (!dir_emit(ctx, strbuf, len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | be32_to_cpu(entry.folder.id), DT_DIR)) |
| 224 | break; |
| 225 | } else if (type == HFSPLUS_FILE) { |
Sergei Antonov | 97a62ea | 2014-06-06 14:36:24 -0700 | [diff] [blame] | 226 | u16 mode; |
| 227 | unsigned type = DT_UNKNOWN; |
| 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | if (fd.entrylength < sizeof(struct hfsplus_cat_file)) { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 230 | pr_err("small file entry\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | err = -EIO; |
| 232 | goto out; |
| 233 | } |
Sergei Antonov | 97a62ea | 2014-06-06 14:36:24 -0700 | [diff] [blame] | 234 | |
| 235 | mode = be16_to_cpu(entry.file.permissions.mode); |
| 236 | if (S_ISREG(mode)) |
| 237 | type = DT_REG; |
| 238 | else if (S_ISLNK(mode)) |
| 239 | type = DT_LNK; |
| 240 | else if (S_ISFIFO(mode)) |
| 241 | type = DT_FIFO; |
| 242 | else if (S_ISCHR(mode)) |
| 243 | type = DT_CHR; |
| 244 | else if (S_ISBLK(mode)) |
| 245 | type = DT_BLK; |
| 246 | else if (S_ISSOCK(mode)) |
| 247 | type = DT_SOCK; |
| 248 | |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 249 | if (!dir_emit(ctx, strbuf, len, |
Sergei Antonov | 97a62ea | 2014-06-06 14:36:24 -0700 | [diff] [blame] | 250 | be32_to_cpu(entry.file.id), type)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | break; |
| 252 | } else { |
Joe Perches | d614267 | 2013-04-30 15:27:55 -0700 | [diff] [blame] | 253 | pr_err("bad catalog entry type\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | err = -EIO; |
| 255 | goto out; |
| 256 | } |
Anton Salikhmetov | 20b7643 | 2010-12-16 18:08:40 +0200 | [diff] [blame] | 257 | next: |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 258 | ctx->pos++; |
| 259 | if (ctx->pos >= inode->i_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | goto out; |
| 261 | err = hfs_brec_goto(&fd, 1); |
| 262 | if (err) |
| 263 | goto out; |
| 264 | } |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 265 | rd = file->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | if (!rd) { |
| 267 | rd = kmalloc(sizeof(struct hfsplus_readdir_data), GFP_KERNEL); |
| 268 | if (!rd) { |
| 269 | err = -ENOMEM; |
| 270 | goto out; |
| 271 | } |
Al Viro | e72514e | 2013-05-22 14:59:39 -0400 | [diff] [blame] | 272 | file->private_data = rd; |
| 273 | rd->file = file; |
Al Viro | 323ee8f | 2016-05-12 20:02:09 -0400 | [diff] [blame] | 274 | spin_lock(&HFSPLUS_I(inode)->open_dir_lock); |
Christoph Hellwig | 6af502d | 2010-10-01 05:43:31 +0200 | [diff] [blame] | 275 | list_add(&rd->list, &HFSPLUS_I(inode)->open_dir_list); |
Al Viro | 323ee8f | 2016-05-12 20:02:09 -0400 | [diff] [blame] | 276 | spin_unlock(&HFSPLUS_I(inode)->open_dir_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | } |
Al Viro | 323ee8f | 2016-05-12 20:02:09 -0400 | [diff] [blame] | 278 | /* |
| 279 | * Can be done after the list insertion; exclusion with |
| 280 | * hfsplus_delete_cat() is provided by directory lock. |
| 281 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | memcpy(&rd->key, fd.key, sizeof(struct hfsplus_cat_key)); |
| 283 | out: |
Hin-Tak Leung | 017f8da | 2014-06-06 14:36:21 -0700 | [diff] [blame] | 284 | kfree(strbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | hfs_find_exit(&fd); |
| 286 | return err; |
| 287 | } |
| 288 | |
| 289 | static int hfsplus_dir_release(struct inode *inode, struct file *file) |
| 290 | { |
| 291 | struct hfsplus_readdir_data *rd = file->private_data; |
| 292 | if (rd) { |
Al Viro | 323ee8f | 2016-05-12 20:02:09 -0400 | [diff] [blame] | 293 | spin_lock(&HFSPLUS_I(inode)->open_dir_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | list_del(&rd->list); |
Al Viro | 323ee8f | 2016-05-12 20:02:09 -0400 | [diff] [blame] | 295 | spin_unlock(&HFSPLUS_I(inode)->open_dir_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | kfree(rd); |
| 297 | } |
| 298 | return 0; |
| 299 | } |
| 300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | static int hfsplus_link(struct dentry *src_dentry, struct inode *dst_dir, |
| 302 | struct dentry *dst_dentry) |
| 303 | { |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 304 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dst_dir->i_sb); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 305 | struct inode *inode = d_inode(src_dentry); |
| 306 | struct inode *src_dir = d_inode(src_dentry->d_parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | struct qstr str; |
| 308 | char name[32]; |
| 309 | u32 cnid, id; |
| 310 | int res; |
| 311 | |
| 312 | if (HFSPLUS_IS_RSRC(inode)) |
| 313 | return -EPERM; |
Christoph Hellwig | f6089ff | 2010-10-14 09:54:28 -0400 | [diff] [blame] | 314 | if (!S_ISREG(inode->i_mode)) |
| 315 | return -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 317 | mutex_lock(&sbi->vh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | if (inode->i_ino == (u32)(unsigned long)src_dentry->d_fsdata) { |
| 319 | for (;;) { |
| 320 | get_random_bytes(&id, sizeof(cnid)); |
| 321 | id &= 0x3fffffff; |
| 322 | str.name = name; |
| 323 | str.len = sprintf(name, "iNode%d", id); |
| 324 | res = hfsplus_rename_cat(inode->i_ino, |
| 325 | src_dir, &src_dentry->d_name, |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 326 | sbi->hidden_dir, &str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | if (!res) |
| 328 | break; |
| 329 | if (res != -EEXIST) |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 330 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | } |
Christoph Hellwig | f6089ff | 2010-10-14 09:54:28 -0400 | [diff] [blame] | 332 | HFSPLUS_I(inode)->linkid = id; |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 333 | cnid = sbi->next_cnid++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | src_dentry->d_fsdata = (void *)(unsigned long)cnid; |
Anton Salikhmetov | 2753cc2 | 2010-12-16 18:08:38 +0200 | [diff] [blame] | 335 | res = hfsplus_create_cat(cnid, src_dir, |
| 336 | &src_dentry->d_name, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | if (res) |
| 338 | /* panic? */ |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 339 | goto out; |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 340 | sbi->file_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 342 | cnid = sbi->next_cnid++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | res = hfsplus_create_cat(cnid, dst_dir, &dst_dentry->d_name, inode); |
| 344 | if (res) |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 345 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 347 | inc_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | hfsplus_instantiate(dst_dentry, inode, cnid); |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 349 | ihold(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | inode->i_ctime = CURRENT_TIME_SEC; |
| 351 | mark_inode_dirty(inode); |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 352 | sbi->file_count++; |
Artem Bityutskiy | 9e6c582 | 2012-07-12 17:26:31 +0300 | [diff] [blame] | 353 | hfsplus_mark_mdb_dirty(dst_dir->i_sb); |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 354 | out: |
| 355 | mutex_unlock(&sbi->vh_mutex); |
| 356 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | static int hfsplus_unlink(struct inode *dir, struct dentry *dentry) |
| 360 | { |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 361 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 362 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | struct qstr str; |
| 364 | char name[32]; |
| 365 | u32 cnid; |
| 366 | int res; |
| 367 | |
| 368 | if (HFSPLUS_IS_RSRC(inode)) |
| 369 | return -EPERM; |
| 370 | |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 371 | mutex_lock(&sbi->vh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | cnid = (u32)(unsigned long)dentry->d_fsdata; |
| 373 | if (inode->i_ino == cnid && |
Christoph Hellwig | 6af502d | 2010-10-01 05:43:31 +0200 | [diff] [blame] | 374 | atomic_read(&HFSPLUS_I(inode)->opencnt)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | str.name = name; |
| 376 | str.len = sprintf(name, "temp%lu", inode->i_ino); |
| 377 | res = hfsplus_rename_cat(inode->i_ino, |
| 378 | dir, &dentry->d_name, |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 379 | sbi->hidden_dir, &str); |
Christoph Hellwig | 85b8fe8 | 2010-10-27 13:45:50 +0200 | [diff] [blame] | 380 | if (!res) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | inode->i_flags |= S_DEAD; |
Christoph Hellwig | 85b8fe8 | 2010-10-27 13:45:50 +0200 | [diff] [blame] | 382 | drop_nlink(inode); |
| 383 | } |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 384 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
| 386 | res = hfsplus_delete_cat(cnid, dir, &dentry->d_name); |
| 387 | if (res) |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 388 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
Roman Zippel | af8c85b | 2006-01-18 17:43:10 -0800 | [diff] [blame] | 390 | if (inode->i_nlink > 0) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 391 | drop_nlink(inode); |
Roman Zippel | 76b0c26 | 2008-04-09 17:44:07 +0200 | [diff] [blame] | 392 | if (inode->i_ino == cnid) |
Dave Hansen | ce71ec3 | 2006-09-30 23:29:06 -0700 | [diff] [blame] | 393 | clear_nlink(inode); |
Roman Zippel | 76b0c26 | 2008-04-09 17:44:07 +0200 | [diff] [blame] | 394 | if (!inode->i_nlink) { |
| 395 | if (inode->i_ino != cnid) { |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 396 | sbi->file_count--; |
Christoph Hellwig | 6af502d | 2010-10-01 05:43:31 +0200 | [diff] [blame] | 397 | if (!atomic_read(&HFSPLUS_I(inode)->opencnt)) { |
Roman Zippel | 76b0c26 | 2008-04-09 17:44:07 +0200 | [diff] [blame] | 398 | res = hfsplus_delete_cat(inode->i_ino, |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 399 | sbi->hidden_dir, |
Roman Zippel | 76b0c26 | 2008-04-09 17:44:07 +0200 | [diff] [blame] | 400 | NULL); |
| 401 | if (!res) |
| 402 | hfsplus_delete_inode(inode); |
| 403 | } else |
| 404 | inode->i_flags |= S_DEAD; |
| 405 | } else |
| 406 | hfsplus_delete_inode(inode); |
| 407 | } else |
Christoph Hellwig | dd73a01 | 2010-10-01 05:42:59 +0200 | [diff] [blame] | 408 | sbi->file_count--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | inode->i_ctime = CURRENT_TIME_SEC; |
| 410 | mark_inode_dirty(inode); |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 411 | out: |
| 412 | mutex_unlock(&sbi->vh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | return res; |
| 414 | } |
| 415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry) |
| 417 | { |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 418 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 419 | struct inode *inode = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | int res; |
| 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | if (inode->i_size != 2) |
| 423 | return -ENOTEMPTY; |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 424 | |
| 425 | mutex_lock(&sbi->vh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | res = hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); |
| 427 | if (res) |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 428 | goto out; |
Dave Hansen | ce71ec3 | 2006-09-30 23:29:06 -0700 | [diff] [blame] | 429 | clear_nlink(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | inode->i_ctime = CURRENT_TIME_SEC; |
| 431 | hfsplus_delete_inode(inode); |
| 432 | mark_inode_dirty(inode); |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 433 | out: |
| 434 | mutex_unlock(&sbi->vh_mutex); |
| 435 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static int hfsplus_symlink(struct inode *dir, struct dentry *dentry, |
| 439 | const char *symname) |
| 440 | { |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 441 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | struct inode *inode; |
Chengyu Song | 27a4e38 | 2015-04-16 12:47:12 -0700 | [diff] [blame] | 443 | int res = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 445 | mutex_lock(&sbi->vh_mutex); |
Christoph Hellwig | f17c89b | 2010-10-01 05:43:54 +0200 | [diff] [blame] | 446 | inode = hfsplus_new_inode(dir->i_sb, S_IFLNK | S_IRWXUGO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | if (!inode) |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 448 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | |
| 450 | res = page_symlink(inode, symname, strlen(symname) + 1); |
Christoph Hellwig | f17c89b | 2010-10-01 05:43:54 +0200 | [diff] [blame] | 451 | if (res) |
| 452 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode); |
Christoph Hellwig | f17c89b | 2010-10-01 05:43:54 +0200 | [diff] [blame] | 455 | if (res) |
| 456 | goto out_err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 458 | res = hfsplus_init_inode_security(inode, dir, &dentry->d_name); |
| 459 | if (res == -EOPNOTSUPP) |
| 460 | res = 0; /* Operation is not supported. */ |
| 461 | else if (res) { |
| 462 | /* Try to delete anyway without error analysis. */ |
| 463 | hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); |
| 464 | goto out_err; |
| 465 | } |
| 466 | |
Christoph Hellwig | f17c89b | 2010-10-01 05:43:54 +0200 | [diff] [blame] | 467 | hfsplus_instantiate(dentry, inode, inode->i_ino); |
| 468 | mark_inode_dirty(inode); |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 469 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Christoph Hellwig | f17c89b | 2010-10-01 05:43:54 +0200 | [diff] [blame] | 471 | out_err: |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 472 | clear_nlink(inode); |
Christoph Hellwig | f17c89b | 2010-10-01 05:43:54 +0200 | [diff] [blame] | 473 | hfsplus_delete_inode(inode); |
| 474 | iput(inode); |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 475 | out: |
| 476 | mutex_unlock(&sbi->vh_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return res; |
| 478 | } |
| 479 | |
| 480 | static int hfsplus_mknod(struct inode *dir, struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 481 | umode_t mode, dev_t rdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | { |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 483 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | struct inode *inode; |
Chengyu Song | 27a4e38 | 2015-04-16 12:47:12 -0700 | [diff] [blame] | 485 | int res = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 487 | mutex_lock(&sbi->vh_mutex); |
Christoph Hellwig | 30d3abb | 2010-10-01 05:43:50 +0200 | [diff] [blame] | 488 | inode = hfsplus_new_inode(dir->i_sb, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | if (!inode) |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 490 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
Christoph Hellwig | 90e6169 | 2010-10-14 09:54:39 -0400 | [diff] [blame] | 492 | if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISFIFO(mode) || S_ISSOCK(mode)) |
| 493 | init_special_inode(inode, mode, rdev); |
| 494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode); |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 496 | if (res) |
| 497 | goto failed_mknod; |
| 498 | |
| 499 | res = hfsplus_init_inode_security(inode, dir, &dentry->d_name); |
| 500 | if (res == -EOPNOTSUPP) |
| 501 | res = 0; /* Operation is not supported. */ |
| 502 | else if (res) { |
| 503 | /* Try to delete anyway without error analysis. */ |
| 504 | hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); |
| 505 | goto failed_mknod; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | } |
Christoph Hellwig | 30d3abb | 2010-10-01 05:43:50 +0200 | [diff] [blame] | 507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | hfsplus_instantiate(dentry, inode, inode->i_ino); |
| 509 | mark_inode_dirty(inode); |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 510 | goto out; |
| 511 | |
| 512 | failed_mknod: |
| 513 | clear_nlink(inode); |
| 514 | hfsplus_delete_inode(inode); |
| 515 | iput(inode); |
Christoph Hellwig | 7ac9fb9 | 2010-10-01 05:45:08 +0200 | [diff] [blame] | 516 | out: |
| 517 | mutex_unlock(&sbi->vh_mutex); |
| 518 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | } |
| 520 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 521 | static int hfsplus_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 522 | bool excl) |
Christoph Hellwig | 30d3abb | 2010-10-01 05:43:50 +0200 | [diff] [blame] | 523 | { |
| 524 | return hfsplus_mknod(dir, dentry, mode, 0); |
| 525 | } |
| 526 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 527 | static int hfsplus_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
Christoph Hellwig | 30d3abb | 2010-10-01 05:43:50 +0200 | [diff] [blame] | 528 | { |
| 529 | return hfsplus_mknod(dir, dentry, mode | S_IFDIR, 0); |
| 530 | } |
| 531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry, |
Miklos Szeredi | f03b8ad | 2016-09-27 11:03:57 +0200 | [diff] [blame^] | 533 | struct inode *new_dir, struct dentry *new_dentry, |
| 534 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | { |
| 536 | int res; |
| 537 | |
Miklos Szeredi | f03b8ad | 2016-09-27 11:03:57 +0200 | [diff] [blame^] | 538 | if (flags & ~RENAME_NOREPLACE) |
| 539 | return -EINVAL; |
| 540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | /* Unlink destination if it already exists */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 542 | if (d_really_is_positive(new_dentry)) { |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 543 | if (d_is_dir(new_dentry)) |
Christoph Hellwig | 40de9a7 | 2010-10-01 09:12:08 +0200 | [diff] [blame] | 544 | res = hfsplus_rmdir(new_dir, new_dentry); |
Sage Weil | e391178 | 2011-05-27 13:42:06 -0700 | [diff] [blame] | 545 | else |
Christoph Hellwig | 40de9a7 | 2010-10-01 09:12:08 +0200 | [diff] [blame] | 546 | res = hfsplus_unlink(new_dir, new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | if (res) |
| 548 | return res; |
| 549 | } |
| 550 | |
| 551 | res = hfsplus_rename_cat((u32)(unsigned long)old_dentry->d_fsdata, |
| 552 | old_dir, &old_dentry->d_name, |
| 553 | new_dir, &new_dentry->d_name); |
| 554 | if (!res) |
| 555 | new_dentry->d_fsdata = old_dentry->d_fsdata; |
| 556 | return res; |
| 557 | } |
| 558 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 559 | const struct inode_operations hfsplus_dir_inode_operations = { |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 560 | .lookup = hfsplus_lookup, |
| 561 | .create = hfsplus_create, |
| 562 | .link = hfsplus_link, |
| 563 | .unlink = hfsplus_unlink, |
| 564 | .mkdir = hfsplus_mkdir, |
| 565 | .rmdir = hfsplus_rmdir, |
| 566 | .symlink = hfsplus_symlink, |
| 567 | .mknod = hfsplus_mknod, |
Miklos Szeredi | f03b8ad | 2016-09-27 11:03:57 +0200 | [diff] [blame^] | 568 | .rename2 = hfsplus_rename, |
Vyacheslav Dubeyko | 324ef39 | 2013-02-27 17:03:04 -0800 | [diff] [blame] | 569 | .setxattr = generic_setxattr, |
| 570 | .getxattr = generic_getxattr, |
| 571 | .listxattr = hfsplus_listxattr, |
Christoph Hellwig | b168fff | 2014-01-29 23:59:19 -0800 | [diff] [blame] | 572 | .removexattr = generic_removexattr, |
Vyacheslav Dubeyko | b4c1107 | 2013-09-11 14:24:30 -0700 | [diff] [blame] | 573 | #ifdef CONFIG_HFSPLUS_FS_POSIX_ACL |
| 574 | .get_acl = hfsplus_get_posix_acl, |
Christoph Hellwig | b0a7ab5 | 2013-12-20 05:16:46 -0800 | [diff] [blame] | 575 | .set_acl = hfsplus_set_posix_acl, |
Vyacheslav Dubeyko | b4c1107 | 2013-09-11 14:24:30 -0700 | [diff] [blame] | 576 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | }; |
| 578 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 579 | const struct file_operations hfsplus_dir_operations = { |
Christoph Hellwig | eb29d66 | 2010-11-23 14:38:10 +0100 | [diff] [blame] | 580 | .fsync = hfsplus_file_fsync, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | .read = generic_read_dir, |
Al Viro | 323ee8f | 2016-05-12 20:02:09 -0400 | [diff] [blame] | 582 | .iterate_shared = hfsplus_readdir, |
Arnd Bergmann | 7cc4bcc | 2010-04-27 16:24:20 +0200 | [diff] [blame] | 583 | .unlocked_ioctl = hfsplus_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | .llseek = generic_file_llseek, |
| 585 | .release = hfsplus_dir_release, |
| 586 | }; |