]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * linux/fs/hfsplus/dir.c | |
3 | * | |
4 | * Copyright (C) 2001 | |
5 | * Brad Boyer ([email protected]) | |
6 | * (C) 2003 Ardis Technologies <[email protected]> | |
7 | * | |
8 | * Handling of directories | |
9 | */ | |
10 | ||
11 | #include <linux/errno.h> | |
12 | #include <linux/fs.h> | |
1da177e4 LT |
13 | #include <linux/slab.h> |
14 | #include <linux/random.h> | |
017f8da4 | 15 | #include <linux/nls.h> |
1da177e4 LT |
16 | |
17 | #include "hfsplus_fs.h" | |
18 | #include "hfsplus_raw.h" | |
324ef39a | 19 | #include "xattr.h" |
b4c1107c | 20 | #include "acl.h" |
1da177e4 LT |
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, | |
00cd8dd3 | 31 | unsigned int flags) |
1da177e4 LT |
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; | |
d45bce8f | 42 | |
1da177e4 | 43 | dentry->d_fsdata = NULL; |
5bd9d99d AK |
44 | err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd); |
45 | if (err) | |
46 | return ERR_PTR(err); | |
89ac9b4d SS |
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; | |
1da177e4 LT |
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); | |
2753cc28 AS |
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 == | |
84 | HFSPLUS_I(sb->s_root->d_inode)-> | |
85 | create_date) && | |
86 | HFSPLUS_SB(sb)->hidden_dir) { | |
1da177e4 LT |
87 | struct qstr str; |
88 | char name[32]; | |
89 | ||
90 | if (dentry->d_fsdata) { | |
af8c85bb RZ |
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; | |
2753cc28 AS |
99 | linkid = |
100 | be32_to_cpu(entry.file.permissions.dev); | |
af8c85bb RZ |
101 | str.len = sprintf(name, "iNode%d", linkid); |
102 | str.name = name; | |
89ac9b4d | 103 | err = hfsplus_cat_build_key(sb, fd.search_key, |
2753cc28 AS |
104 | HFSPLUS_SB(sb)->hidden_dir->i_ino, |
105 | &str); | |
89ac9b4d SS |
106 | if (unlikely(err < 0)) |
107 | goto fail; | |
af8c85bb | 108 | goto again; |
1da177e4 | 109 | } |
1da177e4 LT |
110 | } else if (!dentry->d_fsdata) |
111 | dentry->d_fsdata = (void *)(unsigned long)cnid; | |
112 | } else { | |
d6142673 | 113 | pr_err("invalid catalog entry type in lookup\n"); |
1da177e4 LT |
114 | err = -EIO; |
115 | goto fail; | |
116 | } | |
117 | hfs_find_exit(&fd); | |
63525391 DH |
118 | inode = hfsplus_iget(dir->i_sb, cnid); |
119 | if (IS_ERR(inode)) | |
120 | return ERR_CAST(inode); | |
1da177e4 | 121 | if (S_ISREG(inode->i_mode)) |
f6089ff8 | 122 | HFSPLUS_I(inode)->linkid = linkid; |
1da177e4 LT |
123 | out: |
124 | d_add(dentry, inode); | |
125 | return NULL; | |
126 | fail: | |
127 | hfs_find_exit(&fd); | |
128 | return ERR_PTR(err); | |
129 | } | |
130 | ||
e72514e7 | 131 | static int hfsplus_readdir(struct file *file, struct dir_context *ctx) |
1da177e4 | 132 | { |
e72514e7 | 133 | struct inode *inode = file_inode(file); |
1da177e4 LT |
134 | struct super_block *sb = inode->i_sb; |
135 | int len, err; | |
017f8da4 | 136 | char *strbuf; |
1da177e4 LT |
137 | hfsplus_cat_entry entry; |
138 | struct hfs_find_data fd; | |
139 | struct hfsplus_readdir_data *rd; | |
140 | u16 type; | |
141 | ||
e72514e7 | 142 | if (file->f_pos >= inode->i_size) |
1da177e4 LT |
143 | return 0; |
144 | ||
5bd9d99d AK |
145 | err = hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd); |
146 | if (err) | |
147 | return err; | |
017f8da4 HTL |
148 | strbuf = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_MAX_STRLEN + 1, GFP_KERNEL); |
149 | if (!strbuf) { | |
150 | err = -ENOMEM; | |
151 | goto out; | |
152 | } | |
89ac9b4d | 153 | hfsplus_cat_build_key_with_cnid(sb, fd.search_key, inode->i_ino); |
324ef39a | 154 | err = hfs_brec_find(&fd, hfs_find_rec_by_key); |
1da177e4 LT |
155 | if (err) |
156 | goto out; | |
157 | ||
e72514e7 | 158 | if (ctx->pos == 0) { |
1da177e4 | 159 | /* This is completely artificial... */ |
e72514e7 | 160 | if (!dir_emit_dot(file, ctx)) |
1da177e4 | 161 | goto out; |
e72514e7 AV |
162 | ctx->pos = 1; |
163 | } | |
164 | if (ctx->pos == 1) { | |
6f24f892 GKH |
165 | if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) { |
166 | err = -EIO; | |
167 | goto out; | |
168 | } | |
169 | ||
2753cc28 AS |
170 | hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, |
171 | fd.entrylength); | |
1da177e4 | 172 | if (be16_to_cpu(entry.type) != HFSPLUS_FOLDER_THREAD) { |
d6142673 | 173 | pr_err("bad catalog folder thread\n"); |
1da177e4 LT |
174 | err = -EIO; |
175 | goto out; | |
176 | } | |
177 | if (fd.entrylength < HFSPLUS_MIN_THREAD_SZ) { | |
d6142673 | 178 | pr_err("truncated catalog thread\n"); |
1da177e4 LT |
179 | err = -EIO; |
180 | goto out; | |
181 | } | |
e72514e7 | 182 | if (!dir_emit(ctx, "..", 2, |
1da177e4 LT |
183 | be32_to_cpu(entry.thread.parentID), DT_DIR)) |
184 | goto out; | |
e72514e7 | 185 | ctx->pos = 2; |
1da177e4 | 186 | } |
e72514e7 AV |
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; | |
1da177e4 LT |
192 | for (;;) { |
193 | if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) { | |
d6142673 | 194 | pr_err("walked past end of dir\n"); |
1da177e4 LT |
195 | err = -EIO; |
196 | goto out; | |
197 | } | |
6f24f892 GKH |
198 | |
199 | if (fd.entrylength > sizeof(entry) || fd.entrylength < 0) { | |
200 | err = -EIO; | |
201 | goto out; | |
202 | } | |
203 | ||
2753cc28 AS |
204 | hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, |
205 | fd.entrylength); | |
1da177e4 | 206 | type = be16_to_cpu(entry.type); |
017f8da4 | 207 | len = NLS_MAX_CHARSET_SIZE * HFSPLUS_MAX_STRLEN; |
1da177e4 LT |
208 | err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len); |
209 | if (err) | |
210 | goto out; | |
211 | if (type == HFSPLUS_FOLDER) { | |
2753cc28 AS |
212 | if (fd.entrylength < |
213 | sizeof(struct hfsplus_cat_folder)) { | |
d6142673 | 214 | pr_err("small dir entry\n"); |
1da177e4 LT |
215 | err = -EIO; |
216 | goto out; | |
217 | } | |
dd73a01a CH |
218 | if (HFSPLUS_SB(sb)->hidden_dir && |
219 | HFSPLUS_SB(sb)->hidden_dir->i_ino == | |
220 | be32_to_cpu(entry.folder.id)) | |
1da177e4 | 221 | goto next; |
e72514e7 | 222 | if (!dir_emit(ctx, strbuf, len, |
1da177e4 LT |
223 | be32_to_cpu(entry.folder.id), DT_DIR)) |
224 | break; | |
225 | } else if (type == HFSPLUS_FILE) { | |
97a62eae SA |
226 | u16 mode; |
227 | unsigned type = DT_UNKNOWN; | |
228 | ||
1da177e4 | 229 | if (fd.entrylength < sizeof(struct hfsplus_cat_file)) { |
d6142673 | 230 | pr_err("small file entry\n"); |
1da177e4 LT |
231 | err = -EIO; |
232 | goto out; | |
233 | } | |
97a62eae SA |
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 | ||
e72514e7 | 249 | if (!dir_emit(ctx, strbuf, len, |
97a62eae | 250 | be32_to_cpu(entry.file.id), type)) |
1da177e4 LT |
251 | break; |
252 | } else { | |
d6142673 | 253 | pr_err("bad catalog entry type\n"); |
1da177e4 LT |
254 | err = -EIO; |
255 | goto out; | |
256 | } | |
20b7643d | 257 | next: |
e72514e7 AV |
258 | ctx->pos++; |
259 | if (ctx->pos >= inode->i_size) | |
1da177e4 LT |
260 | goto out; |
261 | err = hfs_brec_goto(&fd, 1); | |
262 | if (err) | |
263 | goto out; | |
264 | } | |
e72514e7 | 265 | rd = file->private_data; |
1da177e4 LT |
266 | if (!rd) { |
267 | rd = kmalloc(sizeof(struct hfsplus_readdir_data), GFP_KERNEL); | |
268 | if (!rd) { | |
269 | err = -ENOMEM; | |
270 | goto out; | |
271 | } | |
e72514e7 AV |
272 | file->private_data = rd; |
273 | rd->file = file; | |
6af502de | 274 | list_add(&rd->list, &HFSPLUS_I(inode)->open_dir_list); |
1da177e4 LT |
275 | } |
276 | memcpy(&rd->key, fd.key, sizeof(struct hfsplus_cat_key)); | |
277 | out: | |
017f8da4 | 278 | kfree(strbuf); |
1da177e4 LT |
279 | hfs_find_exit(&fd); |
280 | return err; | |
281 | } | |
282 | ||
283 | static int hfsplus_dir_release(struct inode *inode, struct file *file) | |
284 | { | |
285 | struct hfsplus_readdir_data *rd = file->private_data; | |
286 | if (rd) { | |
89755dca | 287 | mutex_lock(&inode->i_mutex); |
1da177e4 | 288 | list_del(&rd->list); |
89755dca | 289 | mutex_unlock(&inode->i_mutex); |
1da177e4 LT |
290 | kfree(rd); |
291 | } | |
292 | return 0; | |
293 | } | |
294 | ||
1da177e4 LT |
295 | static int hfsplus_link(struct dentry *src_dentry, struct inode *dst_dir, |
296 | struct dentry *dst_dentry) | |
297 | { | |
dd73a01a | 298 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dst_dir->i_sb); |
1da177e4 LT |
299 | struct inode *inode = src_dentry->d_inode; |
300 | struct inode *src_dir = src_dentry->d_parent->d_inode; | |
301 | struct qstr str; | |
302 | char name[32]; | |
303 | u32 cnid, id; | |
304 | int res; | |
305 | ||
306 | if (HFSPLUS_IS_RSRC(inode)) | |
307 | return -EPERM; | |
f6089ff8 CH |
308 | if (!S_ISREG(inode->i_mode)) |
309 | return -EPERM; | |
1da177e4 | 310 | |
7ac9fb9c | 311 | mutex_lock(&sbi->vh_mutex); |
1da177e4 LT |
312 | if (inode->i_ino == (u32)(unsigned long)src_dentry->d_fsdata) { |
313 | for (;;) { | |
314 | get_random_bytes(&id, sizeof(cnid)); | |
315 | id &= 0x3fffffff; | |
316 | str.name = name; | |
317 | str.len = sprintf(name, "iNode%d", id); | |
318 | res = hfsplus_rename_cat(inode->i_ino, | |
319 | src_dir, &src_dentry->d_name, | |
dd73a01a | 320 | sbi->hidden_dir, &str); |
1da177e4 LT |
321 | if (!res) |
322 | break; | |
323 | if (res != -EEXIST) | |
7ac9fb9c | 324 | goto out; |
1da177e4 | 325 | } |
f6089ff8 | 326 | HFSPLUS_I(inode)->linkid = id; |
dd73a01a | 327 | cnid = sbi->next_cnid++; |
1da177e4 | 328 | src_dentry->d_fsdata = (void *)(unsigned long)cnid; |
2753cc28 AS |
329 | res = hfsplus_create_cat(cnid, src_dir, |
330 | &src_dentry->d_name, inode); | |
1da177e4 LT |
331 | if (res) |
332 | /* panic? */ | |
7ac9fb9c | 333 | goto out; |
dd73a01a | 334 | sbi->file_count++; |
1da177e4 | 335 | } |
dd73a01a | 336 | cnid = sbi->next_cnid++; |
1da177e4 LT |
337 | res = hfsplus_create_cat(cnid, dst_dir, &dst_dentry->d_name, inode); |
338 | if (res) | |
7ac9fb9c | 339 | goto out; |
1da177e4 | 340 | |
d8c76e6f | 341 | inc_nlink(inode); |
1da177e4 | 342 | hfsplus_instantiate(dst_dentry, inode, cnid); |
7de9c6ee | 343 | ihold(inode); |
1da177e4 LT |
344 | inode->i_ctime = CURRENT_TIME_SEC; |
345 | mark_inode_dirty(inode); | |
dd73a01a | 346 | sbi->file_count++; |
9e6c5829 | 347 | hfsplus_mark_mdb_dirty(dst_dir->i_sb); |
7ac9fb9c CH |
348 | out: |
349 | mutex_unlock(&sbi->vh_mutex); | |
350 | return res; | |
1da177e4 LT |
351 | } |
352 | ||
353 | static int hfsplus_unlink(struct inode *dir, struct dentry *dentry) | |
354 | { | |
dd73a01a | 355 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
1da177e4 LT |
356 | struct inode *inode = dentry->d_inode; |
357 | struct qstr str; | |
358 | char name[32]; | |
359 | u32 cnid; | |
360 | int res; | |
361 | ||
362 | if (HFSPLUS_IS_RSRC(inode)) | |
363 | return -EPERM; | |
364 | ||
7ac9fb9c | 365 | mutex_lock(&sbi->vh_mutex); |
1da177e4 LT |
366 | cnid = (u32)(unsigned long)dentry->d_fsdata; |
367 | if (inode->i_ino == cnid && | |
6af502de | 368 | atomic_read(&HFSPLUS_I(inode)->opencnt)) { |
1da177e4 LT |
369 | str.name = name; |
370 | str.len = sprintf(name, "temp%lu", inode->i_ino); | |
371 | res = hfsplus_rename_cat(inode->i_ino, | |
372 | dir, &dentry->d_name, | |
dd73a01a | 373 | sbi->hidden_dir, &str); |
85b8fe8c | 374 | if (!res) { |
1da177e4 | 375 | inode->i_flags |= S_DEAD; |
85b8fe8c CH |
376 | drop_nlink(inode); |
377 | } | |
7ac9fb9c | 378 | goto out; |
1da177e4 LT |
379 | } |
380 | res = hfsplus_delete_cat(cnid, dir, &dentry->d_name); | |
381 | if (res) | |
7ac9fb9c | 382 | goto out; |
1da177e4 | 383 | |
af8c85bb | 384 | if (inode->i_nlink > 0) |
9a53c3a7 | 385 | drop_nlink(inode); |
76b0c26a RZ |
386 | if (inode->i_ino == cnid) |
387 | clear_nlink(inode); | |
388 | if (!inode->i_nlink) { | |
389 | if (inode->i_ino != cnid) { | |
dd73a01a | 390 | sbi->file_count--; |
6af502de | 391 | if (!atomic_read(&HFSPLUS_I(inode)->opencnt)) { |
76b0c26a | 392 | res = hfsplus_delete_cat(inode->i_ino, |
dd73a01a | 393 | sbi->hidden_dir, |
76b0c26a RZ |
394 | NULL); |
395 | if (!res) | |
396 | hfsplus_delete_inode(inode); | |
397 | } else | |
398 | inode->i_flags |= S_DEAD; | |
1da177e4 | 399 | } else |
76b0c26a | 400 | hfsplus_delete_inode(inode); |
af8c85bb | 401 | } else |
dd73a01a | 402 | sbi->file_count--; |
1da177e4 LT |
403 | inode->i_ctime = CURRENT_TIME_SEC; |
404 | mark_inode_dirty(inode); | |
7ac9fb9c CH |
405 | out: |
406 | mutex_unlock(&sbi->vh_mutex); | |
1da177e4 LT |
407 | return res; |
408 | } | |
409 | ||
1da177e4 LT |
410 | static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry) |
411 | { | |
7ac9fb9c CH |
412 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
413 | struct inode *inode = dentry->d_inode; | |
1da177e4 LT |
414 | int res; |
415 | ||
1da177e4 LT |
416 | if (inode->i_size != 2) |
417 | return -ENOTEMPTY; | |
7ac9fb9c CH |
418 | |
419 | mutex_lock(&sbi->vh_mutex); | |
1da177e4 LT |
420 | res = hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); |
421 | if (res) | |
7ac9fb9c | 422 | goto out; |
ce71ec36 | 423 | clear_nlink(inode); |
1da177e4 LT |
424 | inode->i_ctime = CURRENT_TIME_SEC; |
425 | hfsplus_delete_inode(inode); | |
426 | mark_inode_dirty(inode); | |
7ac9fb9c CH |
427 | out: |
428 | mutex_unlock(&sbi->vh_mutex); | |
429 | return res; | |
1da177e4 LT |
430 | } |
431 | ||
432 | static int hfsplus_symlink(struct inode *dir, struct dentry *dentry, | |
433 | const char *symname) | |
434 | { | |
7ac9fb9c | 435 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
1da177e4 | 436 | struct inode *inode; |
27a4e388 | 437 | int res = -ENOMEM; |
1da177e4 | 438 | |
7ac9fb9c | 439 | mutex_lock(&sbi->vh_mutex); |
f17c89bf | 440 | inode = hfsplus_new_inode(dir->i_sb, S_IFLNK | S_IRWXUGO); |
1da177e4 | 441 | if (!inode) |
7ac9fb9c | 442 | goto out; |
1da177e4 LT |
443 | |
444 | res = page_symlink(inode, symname, strlen(symname) + 1); | |
f17c89bf CH |
445 | if (res) |
446 | goto out_err; | |
1da177e4 | 447 | |
1da177e4 | 448 | res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode); |
f17c89bf CH |
449 | if (res) |
450 | goto out_err; | |
1da177e4 | 451 | |
324ef39a VD |
452 | res = hfsplus_init_inode_security(inode, dir, &dentry->d_name); |
453 | if (res == -EOPNOTSUPP) | |
454 | res = 0; /* Operation is not supported. */ | |
455 | else if (res) { | |
456 | /* Try to delete anyway without error analysis. */ | |
457 | hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); | |
458 | goto out_err; | |
459 | } | |
460 | ||
f17c89bf CH |
461 | hfsplus_instantiate(dentry, inode, inode->i_ino); |
462 | mark_inode_dirty(inode); | |
7ac9fb9c | 463 | goto out; |
1da177e4 | 464 | |
f17c89bf | 465 | out_err: |
6d6b77f1 | 466 | clear_nlink(inode); |
f17c89bf CH |
467 | hfsplus_delete_inode(inode); |
468 | iput(inode); | |
7ac9fb9c CH |
469 | out: |
470 | mutex_unlock(&sbi->vh_mutex); | |
1da177e4 LT |
471 | return res; |
472 | } | |
473 | ||
474 | static int hfsplus_mknod(struct inode *dir, struct dentry *dentry, | |
1a67aafb | 475 | umode_t mode, dev_t rdev) |
1da177e4 | 476 | { |
7ac9fb9c | 477 | struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb); |
1da177e4 | 478 | struct inode *inode; |
27a4e388 | 479 | int res = -ENOMEM; |
1da177e4 | 480 | |
7ac9fb9c | 481 | mutex_lock(&sbi->vh_mutex); |
30d3abbe | 482 | inode = hfsplus_new_inode(dir->i_sb, mode); |
1da177e4 | 483 | if (!inode) |
7ac9fb9c | 484 | goto out; |
1da177e4 | 485 | |
90e61690 CH |
486 | if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISFIFO(mode) || S_ISSOCK(mode)) |
487 | init_special_inode(inode, mode, rdev); | |
488 | ||
1da177e4 | 489 | res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode); |
324ef39a VD |
490 | if (res) |
491 | goto failed_mknod; | |
492 | ||
493 | res = hfsplus_init_inode_security(inode, dir, &dentry->d_name); | |
494 | if (res == -EOPNOTSUPP) | |
495 | res = 0; /* Operation is not supported. */ | |
496 | else if (res) { | |
497 | /* Try to delete anyway without error analysis. */ | |
498 | hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name); | |
499 | goto failed_mknod; | |
1da177e4 | 500 | } |
30d3abbe | 501 | |
1da177e4 LT |
502 | hfsplus_instantiate(dentry, inode, inode->i_ino); |
503 | mark_inode_dirty(inode); | |
324ef39a VD |
504 | goto out; |
505 | ||
506 | failed_mknod: | |
507 | clear_nlink(inode); | |
508 | hfsplus_delete_inode(inode); | |
509 | iput(inode); | |
7ac9fb9c CH |
510 | out: |
511 | mutex_unlock(&sbi->vh_mutex); | |
512 | return res; | |
1da177e4 LT |
513 | } |
514 | ||
4acdaf27 | 515 | static int hfsplus_create(struct inode *dir, struct dentry *dentry, umode_t mode, |
ebfc3b49 | 516 | bool excl) |
30d3abbe CH |
517 | { |
518 | return hfsplus_mknod(dir, dentry, mode, 0); | |
519 | } | |
520 | ||
18bb1db3 | 521 | static int hfsplus_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode) |
30d3abbe CH |
522 | { |
523 | return hfsplus_mknod(dir, dentry, mode | S_IFDIR, 0); | |
524 | } | |
525 | ||
1da177e4 LT |
526 | static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry, |
527 | struct inode *new_dir, struct dentry *new_dentry) | |
528 | { | |
529 | int res; | |
530 | ||
531 | /* Unlink destination if it already exists */ | |
532 | if (new_dentry->d_inode) { | |
e36cb0b8 | 533 | if (d_is_dir(new_dentry)) |
40de9a7c | 534 | res = hfsplus_rmdir(new_dir, new_dentry); |
e3911785 | 535 | else |
40de9a7c | 536 | res = hfsplus_unlink(new_dir, new_dentry); |
1da177e4 LT |
537 | if (res) |
538 | return res; | |
539 | } | |
540 | ||
541 | res = hfsplus_rename_cat((u32)(unsigned long)old_dentry->d_fsdata, | |
542 | old_dir, &old_dentry->d_name, | |
543 | new_dir, &new_dentry->d_name); | |
544 | if (!res) | |
545 | new_dentry->d_fsdata = old_dentry->d_fsdata; | |
546 | return res; | |
547 | } | |
548 | ||
92e1d5be | 549 | const struct inode_operations hfsplus_dir_inode_operations = { |
324ef39a VD |
550 | .lookup = hfsplus_lookup, |
551 | .create = hfsplus_create, | |
552 | .link = hfsplus_link, | |
553 | .unlink = hfsplus_unlink, | |
554 | .mkdir = hfsplus_mkdir, | |
555 | .rmdir = hfsplus_rmdir, | |
556 | .symlink = hfsplus_symlink, | |
557 | .mknod = hfsplus_mknod, | |
558 | .rename = hfsplus_rename, | |
559 | .setxattr = generic_setxattr, | |
560 | .getxattr = generic_getxattr, | |
561 | .listxattr = hfsplus_listxattr, | |
b168fff7 | 562 | .removexattr = generic_removexattr, |
b4c1107c VD |
563 | #ifdef CONFIG_HFSPLUS_FS_POSIX_ACL |
564 | .get_acl = hfsplus_get_posix_acl, | |
b0a7ab57 | 565 | .set_acl = hfsplus_set_posix_acl, |
b4c1107c | 566 | #endif |
1da177e4 LT |
567 | }; |
568 | ||
4b6f5d20 | 569 | const struct file_operations hfsplus_dir_operations = { |
eb29d66d | 570 | .fsync = hfsplus_file_fsync, |
1da177e4 | 571 | .read = generic_read_dir, |
e72514e7 | 572 | .iterate = hfsplus_readdir, |
7cc4bcc6 | 573 | .unlocked_ioctl = hfsplus_ioctl, |
1da177e4 LT |
574 | .llseek = generic_file_llseek, |
575 | .release = hfsplus_dir_release, | |
576 | }; |