hfsplus: fix error handling in hfsplus_symlink
[firefly-linux-kernel-4.4.55.git] / fs / hfsplus / dir.c
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>
13 #include <linux/slab.h>
14 #include <linux/random.h>
15
16 #include "hfsplus_fs.h"
17 #include "hfsplus_raw.h"
18
19 static 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 */
27 static struct dentry *hfsplus_lookup(struct inode *dir, struct dentry *dentry,
28                                      struct nameidata *nd)
29 {
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;
39
40         dentry->d_op = &hfsplus_dentry_operations;
41         dentry->d_fsdata = NULL;
42         hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
43         hfsplus_cat_build_key(sb, fd.search_key, dir->i_ino, &dentry->d_name);
44 again:
45         err = hfs_brec_read(&fd, &entry, sizeof(entry));
46         if (err) {
47                 if (err == -ENOENT) {
48                         hfs_find_exit(&fd);
49                         /* No such entry */
50                         inode = NULL;
51                         goto out;
52                 }
53                 goto fail;
54         }
55         type = be16_to_cpu(entry.type);
56         if (type == HFSPLUS_FOLDER) {
57                 if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) {
58                         err = -EIO;
59                         goto fail;
60                 }
61                 cnid = be32_to_cpu(entry.folder.id);
62                 dentry->d_fsdata = (void *)(unsigned long)cnid;
63         } else if (type == HFSPLUS_FILE) {
64                 if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
65                         err = -EIO;
66                         goto fail;
67                 }
68                 cnid = be32_to_cpu(entry.file.id);
69                 if (entry.file.user_info.fdType == cpu_to_be32(HFSP_HARDLINK_TYPE) &&
70                     entry.file.user_info.fdCreator == cpu_to_be32(HFSP_HFSPLUS_CREATOR) &&
71                     (entry.file.create_date == HFSPLUS_I(HFSPLUS_SB(sb)->hidden_dir)->create_date ||
72                      entry.file.create_date == HFSPLUS_I(sb->s_root->d_inode)->create_date) &&
73                     HFSPLUS_SB(sb)->hidden_dir) {
74                         struct qstr str;
75                         char name[32];
76
77                         if (dentry->d_fsdata) {
78                                 /*
79                                  * We found a link pointing to another link,
80                                  * so ignore it and treat it as regular file.
81                                  */
82                                 cnid = (unsigned long)dentry->d_fsdata;
83                                 linkid = 0;
84                         } else {
85                                 dentry->d_fsdata = (void *)(unsigned long)cnid;
86                                 linkid = be32_to_cpu(entry.file.permissions.dev);
87                                 str.len = sprintf(name, "iNode%d", linkid);
88                                 str.name = name;
89                                 hfsplus_cat_build_key(sb, fd.search_key,
90                                         HFSPLUS_SB(sb)->hidden_dir->i_ino, &str);
91                                 goto again;
92                         }
93                 } else if (!dentry->d_fsdata)
94                         dentry->d_fsdata = (void *)(unsigned long)cnid;
95         } else {
96                 printk(KERN_ERR "hfs: invalid catalog entry type in lookup\n");
97                 err = -EIO;
98                 goto fail;
99         }
100         hfs_find_exit(&fd);
101         inode = hfsplus_iget(dir->i_sb, cnid);
102         if (IS_ERR(inode))
103                 return ERR_CAST(inode);
104         if (S_ISREG(inode->i_mode))
105                 HFSPLUS_I(inode)->dev = linkid;
106 out:
107         d_add(dentry, inode);
108         return NULL;
109 fail:
110         hfs_find_exit(&fd);
111         return ERR_PTR(err);
112 }
113
114 static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
115 {
116         struct inode *inode = filp->f_path.dentry->d_inode;
117         struct super_block *sb = inode->i_sb;
118         int len, err;
119         char strbuf[HFSPLUS_MAX_STRLEN + 1];
120         hfsplus_cat_entry entry;
121         struct hfs_find_data fd;
122         struct hfsplus_readdir_data *rd;
123         u16 type;
124
125         if (filp->f_pos >= inode->i_size)
126                 return 0;
127
128         hfs_find_init(HFSPLUS_SB(sb)->cat_tree, &fd);
129         hfsplus_cat_build_key(sb, fd.search_key, inode->i_ino, NULL);
130         err = hfs_brec_find(&fd);
131         if (err)
132                 goto out;
133
134         switch ((u32)filp->f_pos) {
135         case 0:
136                 /* This is completely artificial... */
137                 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR))
138                         goto out;
139                 filp->f_pos++;
140                 /* fall through */
141         case 1:
142                 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, fd.entrylength);
143                 if (be16_to_cpu(entry.type) != HFSPLUS_FOLDER_THREAD) {
144                         printk(KERN_ERR "hfs: bad catalog folder thread\n");
145                         err = -EIO;
146                         goto out;
147                 }
148                 if (fd.entrylength < HFSPLUS_MIN_THREAD_SZ) {
149                         printk(KERN_ERR "hfs: truncated catalog thread\n");
150                         err = -EIO;
151                         goto out;
152                 }
153                 if (filldir(dirent, "..", 2, 1,
154                             be32_to_cpu(entry.thread.parentID), DT_DIR))
155                         goto out;
156                 filp->f_pos++;
157                 /* fall through */
158         default:
159                 if (filp->f_pos >= inode->i_size)
160                         goto out;
161                 err = hfs_brec_goto(&fd, filp->f_pos - 1);
162                 if (err)
163                         goto out;
164         }
165
166         for (;;) {
167                 if (be32_to_cpu(fd.key->cat.parent) != inode->i_ino) {
168                         printk(KERN_ERR "hfs: walked past end of dir\n");
169                         err = -EIO;
170                         goto out;
171                 }
172                 hfs_bnode_read(fd.bnode, &entry, fd.entryoffset, fd.entrylength);
173                 type = be16_to_cpu(entry.type);
174                 len = HFSPLUS_MAX_STRLEN;
175                 err = hfsplus_uni2asc(sb, &fd.key->cat.name, strbuf, &len);
176                 if (err)
177                         goto out;
178                 if (type == HFSPLUS_FOLDER) {
179                         if (fd.entrylength < sizeof(struct hfsplus_cat_folder)) {
180                                 printk(KERN_ERR "hfs: small dir entry\n");
181                                 err = -EIO;
182                                 goto out;
183                         }
184                         if (HFSPLUS_SB(sb)->hidden_dir &&
185                             HFSPLUS_SB(sb)->hidden_dir->i_ino ==
186                                         be32_to_cpu(entry.folder.id))
187                                 goto next;
188                         if (filldir(dirent, strbuf, len, filp->f_pos,
189                                     be32_to_cpu(entry.folder.id), DT_DIR))
190                                 break;
191                 } else if (type == HFSPLUS_FILE) {
192                         if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
193                                 printk(KERN_ERR "hfs: small file entry\n");
194                                 err = -EIO;
195                                 goto out;
196                         }
197                         if (filldir(dirent, strbuf, len, filp->f_pos,
198                                     be32_to_cpu(entry.file.id), DT_REG))
199                                 break;
200                 } else {
201                         printk(KERN_ERR "hfs: bad catalog entry type\n");
202                         err = -EIO;
203                         goto out;
204                 }
205         next:
206                 filp->f_pos++;
207                 if (filp->f_pos >= inode->i_size)
208                         goto out;
209                 err = hfs_brec_goto(&fd, 1);
210                 if (err)
211                         goto out;
212         }
213         rd = filp->private_data;
214         if (!rd) {
215                 rd = kmalloc(sizeof(struct hfsplus_readdir_data), GFP_KERNEL);
216                 if (!rd) {
217                         err = -ENOMEM;
218                         goto out;
219                 }
220                 filp->private_data = rd;
221                 rd->file = filp;
222                 list_add(&rd->list, &HFSPLUS_I(inode)->open_dir_list);
223         }
224         memcpy(&rd->key, fd.key, sizeof(struct hfsplus_cat_key));
225 out:
226         hfs_find_exit(&fd);
227         return err;
228 }
229
230 static int hfsplus_dir_release(struct inode *inode, struct file *file)
231 {
232         struct hfsplus_readdir_data *rd = file->private_data;
233         if (rd) {
234                 list_del(&rd->list);
235                 kfree(rd);
236         }
237         return 0;
238 }
239
240 static int hfsplus_link(struct dentry *src_dentry, struct inode *dst_dir,
241                         struct dentry *dst_dentry)
242 {
243         struct hfsplus_sb_info *sbi = HFSPLUS_SB(dst_dir->i_sb);
244         struct inode *inode = src_dentry->d_inode;
245         struct inode *src_dir = src_dentry->d_parent->d_inode;
246         struct qstr str;
247         char name[32];
248         u32 cnid, id;
249         int res;
250
251         if (HFSPLUS_IS_RSRC(inode))
252                 return -EPERM;
253
254         if (inode->i_ino == (u32)(unsigned long)src_dentry->d_fsdata) {
255                 for (;;) {
256                         get_random_bytes(&id, sizeof(cnid));
257                         id &= 0x3fffffff;
258                         str.name = name;
259                         str.len = sprintf(name, "iNode%d", id);
260                         res = hfsplus_rename_cat(inode->i_ino,
261                                                  src_dir, &src_dentry->d_name,
262                                                  sbi->hidden_dir, &str);
263                         if (!res)
264                                 break;
265                         if (res != -EEXIST)
266                                 return res;
267                 }
268                 HFSPLUS_I(inode)->dev = id;
269                 cnid = sbi->next_cnid++;
270                 src_dentry->d_fsdata = (void *)(unsigned long)cnid;
271                 res = hfsplus_create_cat(cnid, src_dir, &src_dentry->d_name, inode);
272                 if (res)
273                         /* panic? */
274                         return res;
275                 sbi->file_count++;
276         }
277         cnid = sbi->next_cnid++;
278         res = hfsplus_create_cat(cnid, dst_dir, &dst_dentry->d_name, inode);
279         if (res)
280                 return res;
281
282         inc_nlink(inode);
283         hfsplus_instantiate(dst_dentry, inode, cnid);
284         atomic_inc(&inode->i_count);
285         inode->i_ctime = CURRENT_TIME_SEC;
286         mark_inode_dirty(inode);
287         sbi->file_count++;
288         dst_dir->i_sb->s_dirt = 1;
289
290         return 0;
291 }
292
293 static int hfsplus_unlink(struct inode *dir, struct dentry *dentry)
294 {
295         struct hfsplus_sb_info *sbi = HFSPLUS_SB(dir->i_sb);
296         struct inode *inode = dentry->d_inode;
297         struct qstr str;
298         char name[32];
299         u32 cnid;
300         int res;
301
302         if (HFSPLUS_IS_RSRC(inode))
303                 return -EPERM;
304
305         cnid = (u32)(unsigned long)dentry->d_fsdata;
306         if (inode->i_ino == cnid &&
307             atomic_read(&HFSPLUS_I(inode)->opencnt)) {
308                 str.name = name;
309                 str.len = sprintf(name, "temp%lu", inode->i_ino);
310                 res = hfsplus_rename_cat(inode->i_ino,
311                                          dir, &dentry->d_name,
312                                          sbi->hidden_dir, &str);
313                 if (!res)
314                         inode->i_flags |= S_DEAD;
315                 return res;
316         }
317         res = hfsplus_delete_cat(cnid, dir, &dentry->d_name);
318         if (res)
319                 return res;
320
321         if (inode->i_nlink > 0)
322                 drop_nlink(inode);
323         if (inode->i_ino == cnid)
324                 clear_nlink(inode);
325         if (!inode->i_nlink) {
326                 if (inode->i_ino != cnid) {
327                         sbi->file_count--;
328                         if (!atomic_read(&HFSPLUS_I(inode)->opencnt)) {
329                                 res = hfsplus_delete_cat(inode->i_ino,
330                                                          sbi->hidden_dir,
331                                                          NULL);
332                                 if (!res)
333                                         hfsplus_delete_inode(inode);
334                         } else
335                                 inode->i_flags |= S_DEAD;
336                 } else
337                         hfsplus_delete_inode(inode);
338         } else
339                 sbi->file_count--;
340         inode->i_ctime = CURRENT_TIME_SEC;
341         mark_inode_dirty(inode);
342
343         return res;
344 }
345
346 static int hfsplus_rmdir(struct inode *dir, struct dentry *dentry)
347 {
348         struct inode *inode;
349         int res;
350
351         inode = dentry->d_inode;
352         if (inode->i_size != 2)
353                 return -ENOTEMPTY;
354         res = hfsplus_delete_cat(inode->i_ino, dir, &dentry->d_name);
355         if (res)
356                 return res;
357         clear_nlink(inode);
358         inode->i_ctime = CURRENT_TIME_SEC;
359         hfsplus_delete_inode(inode);
360         mark_inode_dirty(inode);
361         return 0;
362 }
363
364 static int hfsplus_symlink(struct inode *dir, struct dentry *dentry,
365                            const char *symname)
366 {
367         struct inode *inode;
368         int res;
369
370         inode = hfsplus_new_inode(dir->i_sb, S_IFLNK | S_IRWXUGO);
371         if (!inode)
372                 return -ENOSPC;
373
374         res = page_symlink(inode, symname, strlen(symname) + 1);
375         if (res)
376                 goto out_err;
377
378         res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode);
379         if (res)
380                 goto out_err;
381
382         hfsplus_instantiate(dentry, inode, inode->i_ino);
383         mark_inode_dirty(inode);
384         return 0;
385
386 out_err:
387         inode->i_nlink = 0;
388         hfsplus_delete_inode(inode);
389         iput(inode);
390         return res;
391 }
392
393 static int hfsplus_mknod(struct inode *dir, struct dentry *dentry,
394                          int mode, dev_t rdev)
395 {
396         struct inode *inode;
397         int res;
398
399         inode = hfsplus_new_inode(dir->i_sb, mode);
400         if (!inode)
401                 return -ENOSPC;
402
403         res = hfsplus_create_cat(inode->i_ino, dir, &dentry->d_name, inode);
404         if (res) {
405                 inode->i_nlink = 0;
406                 hfsplus_delete_inode(inode);
407                 iput(inode);
408                 return res;
409         }
410
411         if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISFIFO(mode) || S_ISSOCK(mode))
412                 init_special_inode(inode, mode, rdev);
413
414         hfsplus_instantiate(dentry, inode, inode->i_ino);
415         mark_inode_dirty(inode);
416         return 0;
417 }
418
419 static int hfsplus_create(struct inode *dir, struct dentry *dentry, int mode,
420                           struct nameidata *nd)
421 {
422         return hfsplus_mknod(dir, dentry, mode, 0);
423 }
424
425 static int hfsplus_mkdir(struct inode *dir, struct dentry *dentry, int mode)
426 {
427         return hfsplus_mknod(dir, dentry, mode | S_IFDIR, 0);
428 }
429
430 static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry,
431                           struct inode *new_dir, struct dentry *new_dentry)
432 {
433         int res;
434
435         /* Unlink destination if it already exists */
436         if (new_dentry->d_inode) {
437                 res = hfsplus_unlink(new_dir, new_dentry);
438                 if (res)
439                         return res;
440         }
441
442         res = hfsplus_rename_cat((u32)(unsigned long)old_dentry->d_fsdata,
443                                  old_dir, &old_dentry->d_name,
444                                  new_dir, &new_dentry->d_name);
445         if (!res)
446                 new_dentry->d_fsdata = old_dentry->d_fsdata;
447         return res;
448 }
449
450 const struct inode_operations hfsplus_dir_inode_operations = {
451         .lookup         = hfsplus_lookup,
452         .create         = hfsplus_create,
453         .link           = hfsplus_link,
454         .unlink         = hfsplus_unlink,
455         .mkdir          = hfsplus_mkdir,
456         .rmdir          = hfsplus_rmdir,
457         .symlink        = hfsplus_symlink,
458         .mknod          = hfsplus_mknod,
459         .rename         = hfsplus_rename,
460 };
461
462 const struct file_operations hfsplus_dir_operations = {
463         .read           = generic_read_dir,
464         .readdir        = hfsplus_readdir,
465         .unlocked_ioctl = hfsplus_ioctl,
466         .llseek         = generic_file_llseek,
467         .release        = hfsplus_dir_release,
468 };