xfs: remove logged flag from inode log item
[linux-2.6-microblaze.git] / fs / exfat / namei.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2012-2013 Samsung Electronics Co., Ltd.
4  */
5
6 #include <linux/iversion.h>
7 #include <linux/namei.h>
8 #include <linux/slab.h>
9 #include <linux/buffer_head.h>
10 #include <linux/nls.h>
11
12 #include "exfat_raw.h"
13 #include "exfat_fs.h"
14
15 static inline unsigned long exfat_d_version(struct dentry *dentry)
16 {
17         return (unsigned long) dentry->d_fsdata;
18 }
19
20 static inline void exfat_d_version_set(struct dentry *dentry,
21                 unsigned long version)
22 {
23         dentry->d_fsdata = (void *) version;
24 }
25
26 /*
27  * If new entry was created in the parent, it could create the 8.3 alias (the
28  * shortname of logname).  So, the parent may have the negative-dentry which
29  * matches the created 8.3 alias.
30  *
31  * If it happened, the negative dentry isn't actually negative anymore.  So,
32  * drop it.
33  */
34 static int exfat_d_revalidate(struct dentry *dentry, unsigned int flags)
35 {
36         int ret;
37
38         if (flags & LOOKUP_RCU)
39                 return -ECHILD;
40
41         /*
42          * This is not negative dentry. Always valid.
43          *
44          * Note, rename() to existing directory entry will have ->d_inode, and
45          * will use existing name which isn't specified name by user.
46          *
47          * We may be able to drop this positive dentry here. But dropping
48          * positive dentry isn't good idea. So it's unsupported like
49          * rename("filename", "FILENAME") for now.
50          */
51         if (d_really_is_positive(dentry))
52                 return 1;
53
54         /*
55          * Drop the negative dentry, in order to make sure to use the case
56          * sensitive name which is specified by user if this is for creation.
57          */
58         if (flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
59                 return 0;
60
61         spin_lock(&dentry->d_lock);
62         ret = inode_eq_iversion(d_inode(dentry->d_parent),
63                         exfat_d_version(dentry));
64         spin_unlock(&dentry->d_lock);
65         return ret;
66 }
67
68 /* returns the length of a struct qstr, ignoring trailing dots */
69 static unsigned int exfat_striptail_len(unsigned int len, const char *name)
70 {
71         while (len && name[len - 1] == '.')
72                 len--;
73         return len;
74 }
75
76 /*
77  * Compute the hash for the exfat name corresponding to the dentry.  If the name
78  * is invalid, we leave the hash code unchanged so that the existing dentry can
79  * be used. The exfat fs routines will return ENOENT or EINVAL as appropriate.
80  */
81 static int exfat_d_hash(const struct dentry *dentry, struct qstr *qstr)
82 {
83         struct super_block *sb = dentry->d_sb;
84         struct nls_table *t = EXFAT_SB(sb)->nls_io;
85         const unsigned char *name = qstr->name;
86         unsigned int len = exfat_striptail_len(qstr->len, qstr->name);
87         unsigned long hash = init_name_hash(dentry);
88         int i, charlen;
89         wchar_t c;
90
91         for (i = 0; i < len; i += charlen) {
92                 charlen = t->char2uni(&name[i], len - i, &c);
93                 if (charlen < 0)
94                         return charlen;
95                 hash = partial_name_hash(exfat_toupper(sb, c), hash);
96         }
97
98         qstr->hash = end_name_hash(hash);
99         return 0;
100 }
101
102 static int exfat_d_cmp(const struct dentry *dentry, unsigned int len,
103                 const char *str, const struct qstr *name)
104 {
105         struct super_block *sb = dentry->d_sb;
106         struct nls_table *t = EXFAT_SB(sb)->nls_io;
107         unsigned int alen = exfat_striptail_len(name->len, name->name);
108         unsigned int blen = exfat_striptail_len(len, str);
109         wchar_t c1, c2;
110         int charlen, i;
111
112         if (alen != blen)
113                 return 1;
114
115         for (i = 0; i < len; i += charlen) {
116                 charlen = t->char2uni(&name->name[i], alen - i, &c1);
117                 if (charlen < 0)
118                         return 1;
119                 if (charlen != t->char2uni(&str[i], blen - i, &c2))
120                         return 1;
121
122                 if (exfat_toupper(sb, c1) != exfat_toupper(sb, c2))
123                         return 1;
124         }
125
126         return 0;
127 }
128
129 const struct dentry_operations exfat_dentry_ops = {
130         .d_revalidate   = exfat_d_revalidate,
131         .d_hash         = exfat_d_hash,
132         .d_compare      = exfat_d_cmp,
133 };
134
135 static int exfat_utf8_d_hash(const struct dentry *dentry, struct qstr *qstr)
136 {
137         struct super_block *sb = dentry->d_sb;
138         const unsigned char *name = qstr->name;
139         unsigned int len = exfat_striptail_len(qstr->len, qstr->name);
140         unsigned long hash = init_name_hash(dentry);
141         int i, charlen;
142         unicode_t u;
143
144         for (i = 0; i < len; i += charlen) {
145                 charlen = utf8_to_utf32(&name[i], len - i, &u);
146                 if (charlen < 0)
147                         return charlen;
148
149                 /*
150                  * exfat_toupper() works only for code points up to the U+FFFF.
151                  */
152                 hash = partial_name_hash(u <= 0xFFFF ? exfat_toupper(sb, u) : u,
153                                          hash);
154         }
155
156         qstr->hash = end_name_hash(hash);
157         return 0;
158 }
159
160 static int exfat_utf8_d_cmp(const struct dentry *dentry, unsigned int len,
161                 const char *str, const struct qstr *name)
162 {
163         struct super_block *sb = dentry->d_sb;
164         unsigned int alen = exfat_striptail_len(name->len, name->name);
165         unsigned int blen = exfat_striptail_len(len, str);
166         unicode_t u_a, u_b;
167         int charlen, i;
168
169         if (alen != blen)
170                 return 1;
171
172         for (i = 0; i < alen; i += charlen) {
173                 charlen = utf8_to_utf32(&name->name[i], alen - i, &u_a);
174                 if (charlen < 0)
175                         return 1;
176                 if (charlen != utf8_to_utf32(&str[i], blen - i, &u_b))
177                         return 1;
178
179                 if (u_a <= 0xFFFF && u_b <= 0xFFFF) {
180                         if (exfat_toupper(sb, u_a) != exfat_toupper(sb, u_b))
181                                 return 1;
182                 } else {
183                         if (u_a != u_b)
184                                 return 1;
185                 }
186         }
187
188         return 0;
189 }
190
191 const struct dentry_operations exfat_utf8_dentry_ops = {
192         .d_revalidate   = exfat_d_revalidate,
193         .d_hash         = exfat_utf8_d_hash,
194         .d_compare      = exfat_utf8_d_cmp,
195 };
196
197 /* used only in search empty_slot() */
198 #define CNT_UNUSED_NOHIT        (-1)
199 #define CNT_UNUSED_HIT          (-2)
200 /* search EMPTY CONTINUOUS "num_entries" entries */
201 static int exfat_search_empty_slot(struct super_block *sb,
202                 struct exfat_hint_femp *hint_femp, struct exfat_chain *p_dir,
203                 int num_entries)
204 {
205         int i, dentry, num_empty = 0;
206         int dentries_per_clu;
207         unsigned int type;
208         struct exfat_chain clu;
209         struct exfat_dentry *ep;
210         struct exfat_sb_info *sbi = EXFAT_SB(sb);
211         struct buffer_head *bh;
212
213         dentries_per_clu = sbi->dentries_per_clu;
214
215         if (hint_femp->eidx != EXFAT_HINT_NONE) {
216                 dentry = hint_femp->eidx;
217                 if (num_entries <= hint_femp->count) {
218                         hint_femp->eidx = EXFAT_HINT_NONE;
219                         return dentry;
220                 }
221
222                 exfat_chain_dup(&clu, &hint_femp->cur);
223         } else {
224                 exfat_chain_dup(&clu, p_dir);
225                 dentry = 0;
226         }
227
228         while (clu.dir != EXFAT_EOF_CLUSTER) {
229                 i = dentry & (dentries_per_clu - 1);
230
231                 for (; i < dentries_per_clu; i++, dentry++) {
232                         ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
233                         if (!ep)
234                                 return -EIO;
235                         type = exfat_get_entry_type(ep);
236                         brelse(bh);
237
238                         if (type == TYPE_UNUSED || type == TYPE_DELETED) {
239                                 num_empty++;
240                                 if (hint_femp->eidx == EXFAT_HINT_NONE) {
241                                         hint_femp->eidx = dentry;
242                                         hint_femp->count = CNT_UNUSED_NOHIT;
243                                         exfat_chain_set(&hint_femp->cur,
244                                                 clu.dir, clu.size, clu.flags);
245                                 }
246
247                                 if (type == TYPE_UNUSED &&
248                                     hint_femp->count != CNT_UNUSED_HIT)
249                                         hint_femp->count = CNT_UNUSED_HIT;
250                         } else {
251                                 if (hint_femp->eidx != EXFAT_HINT_NONE &&
252                                     hint_femp->count == CNT_UNUSED_HIT) {
253                                         /* unused empty group means
254                                          * an empty group which includes
255                                          * unused dentry
256                                          */
257                                         exfat_fs_error(sb,
258                                                 "found bogus dentry(%d) beyond unused empty group(%d) (start_clu : %u, cur_clu : %u)",
259                                                 dentry, hint_femp->eidx,
260                                                 p_dir->dir, clu.dir);
261                                         return -EIO;
262                                 }
263
264                                 num_empty = 0;
265                                 hint_femp->eidx = EXFAT_HINT_NONE;
266                         }
267
268                         if (num_empty >= num_entries) {
269                                 /* found and invalidate hint_femp */
270                                 hint_femp->eidx = EXFAT_HINT_NONE;
271                                 return (dentry - (num_entries - 1));
272                         }
273                 }
274
275                 if (clu.flags == ALLOC_NO_FAT_CHAIN) {
276                         if (--clu.size > 0)
277                                 clu.dir++;
278                         else
279                                 clu.dir = EXFAT_EOF_CLUSTER;
280                 } else {
281                         if (exfat_get_next_cluster(sb, &clu.dir))
282                                 return -EIO;
283                 }
284         }
285
286         return -ENOSPC;
287 }
288
289 static int exfat_check_max_dentries(struct inode *inode)
290 {
291         if (EXFAT_B_TO_DEN(i_size_read(inode)) >= MAX_EXFAT_DENTRIES) {
292                 /*
293                  * exFAT spec allows a dir to grow upto 8388608(256MB)
294                  * dentries
295                  */
296                 return -ENOSPC;
297         }
298         return 0;
299 }
300
301 /* find empty directory entry.
302  * if there isn't any empty slot, expand cluster chain.
303  */
304 static int exfat_find_empty_entry(struct inode *inode,
305                 struct exfat_chain *p_dir, int num_entries)
306 {
307         int dentry;
308         unsigned int ret, last_clu;
309         sector_t sector;
310         loff_t size = 0;
311         struct exfat_chain clu;
312         struct exfat_dentry *ep = NULL;
313         struct super_block *sb = inode->i_sb;
314         struct exfat_sb_info *sbi = EXFAT_SB(sb);
315         struct exfat_inode_info *ei = EXFAT_I(inode);
316         struct exfat_hint_femp hint_femp;
317
318         hint_femp.eidx = EXFAT_HINT_NONE;
319
320         if (ei->hint_femp.eidx != EXFAT_HINT_NONE) {
321                 memcpy(&hint_femp, &ei->hint_femp,
322                                 sizeof(struct exfat_hint_femp));
323                 ei->hint_femp.eidx = EXFAT_HINT_NONE;
324         }
325
326         while ((dentry = exfat_search_empty_slot(sb, &hint_femp, p_dir,
327                                         num_entries)) < 0) {
328                 if (dentry == -EIO)
329                         break;
330
331                 if (exfat_check_max_dentries(inode))
332                         return -ENOSPC;
333
334                 /* we trust p_dir->size regardless of FAT type */
335                 if (exfat_find_last_cluster(sb, p_dir, &last_clu))
336                         return -EIO;
337
338                 /*
339                  * Allocate new cluster to this directory
340                  */
341                 exfat_chain_set(&clu, last_clu + 1, 0, p_dir->flags);
342
343                 /* allocate a cluster */
344                 ret = exfat_alloc_cluster(inode, 1, &clu);
345                 if (ret)
346                         return ret;
347
348                 if (exfat_zeroed_cluster(inode, clu.dir))
349                         return -EIO;
350
351                 /* append to the FAT chain */
352                 if (clu.flags != p_dir->flags) {
353                         /* no-fat-chain bit is disabled,
354                          * so fat-chain should be synced with alloc-bitmap
355                          */
356                         exfat_chain_cont_cluster(sb, p_dir->dir, p_dir->size);
357                         p_dir->flags = ALLOC_FAT_CHAIN;
358                         hint_femp.cur.flags = ALLOC_FAT_CHAIN;
359                 }
360
361                 if (clu.flags == ALLOC_FAT_CHAIN)
362                         if (exfat_ent_set(sb, last_clu, clu.dir))
363                                 return -EIO;
364
365                 if (hint_femp.eidx == EXFAT_HINT_NONE) {
366                         /* the special case that new dentry
367                          * should be allocated from the start of new cluster
368                          */
369                         hint_femp.eidx = EXFAT_B_TO_DEN_IDX(p_dir->size, sbi);
370                         hint_femp.count = sbi->dentries_per_clu;
371
372                         exfat_chain_set(&hint_femp.cur, clu.dir, 0, clu.flags);
373                 }
374                 hint_femp.cur.size++;
375                 p_dir->size++;
376                 size = EXFAT_CLU_TO_B(p_dir->size, sbi);
377
378                 /* update the directory entry */
379                 if (p_dir->dir != sbi->root_dir) {
380                         struct buffer_head *bh;
381
382                         ep = exfat_get_dentry(sb,
383                                 &(ei->dir), ei->entry + 1, &bh, &sector);
384                         if (!ep)
385                                 return -EIO;
386
387                         ep->dentry.stream.valid_size = cpu_to_le64(size);
388                         ep->dentry.stream.size = ep->dentry.stream.valid_size;
389                         ep->dentry.stream.flags = p_dir->flags;
390                         exfat_update_bh(sb, bh, IS_DIRSYNC(inode));
391                         brelse(bh);
392                         if (exfat_update_dir_chksum(inode, &(ei->dir),
393                             ei->entry))
394                                 return -EIO;
395                 }
396
397                 /* directory inode should be updated in here */
398                 i_size_write(inode, size);
399                 EXFAT_I(inode)->i_size_ondisk += sbi->cluster_size;
400                 EXFAT_I(inode)->i_size_aligned += sbi->cluster_size;
401                 EXFAT_I(inode)->flags = p_dir->flags;
402                 inode->i_blocks += 1 << sbi->sect_per_clus_bits;
403         }
404
405         return dentry;
406 }
407
408 /*
409  * Name Resolution Functions :
410  * Zero if it was successful; otherwise nonzero.
411  */
412 static int __exfat_resolve_path(struct inode *inode, const unsigned char *path,
413                 struct exfat_chain *p_dir, struct exfat_uni_name *p_uniname,
414                 int lookup)
415 {
416         int namelen;
417         int lossy = NLS_NAME_NO_LOSSY;
418         struct super_block *sb = inode->i_sb;
419         struct exfat_sb_info *sbi = EXFAT_SB(sb);
420         struct exfat_inode_info *ei = EXFAT_I(inode);
421
422         /* strip all trailing periods */
423         namelen = exfat_striptail_len(strlen(path), path);
424         if (!namelen)
425                 return -ENOENT;
426
427         if (strlen(path) > (MAX_NAME_LENGTH * MAX_CHARSET_SIZE))
428                 return -ENAMETOOLONG;
429
430         /*
431          * strip all leading spaces :
432          * "MS windows 7" supports leading spaces.
433          * So we should skip this preprocessing for compatibility.
434          */
435
436         /* file name conversion :
437          * If lookup case, we allow bad-name for compatibility.
438          */
439         namelen = exfat_nls_to_utf16(sb, path, namelen, p_uniname,
440                         &lossy);
441         if (namelen < 0)
442                 return namelen; /* return error value */
443
444         if ((lossy && !lookup) || !namelen)
445                 return -EINVAL;
446
447         exfat_chain_set(p_dir, ei->start_clu,
448                 EXFAT_B_TO_CLU(i_size_read(inode), sbi), ei->flags);
449
450         return 0;
451 }
452
453 static inline int exfat_resolve_path(struct inode *inode,
454                 const unsigned char *path, struct exfat_chain *dir,
455                 struct exfat_uni_name *uni)
456 {
457         return __exfat_resolve_path(inode, path, dir, uni, 0);
458 }
459
460 static inline int exfat_resolve_path_for_lookup(struct inode *inode,
461                 const unsigned char *path, struct exfat_chain *dir,
462                 struct exfat_uni_name *uni)
463 {
464         return __exfat_resolve_path(inode, path, dir, uni, 1);
465 }
466
467 static inline loff_t exfat_make_i_pos(struct exfat_dir_entry *info)
468 {
469         return ((loff_t) info->dir.dir << 32) | (info->entry & 0xffffffff);
470 }
471
472 static int exfat_add_entry(struct inode *inode, const char *path,
473                 struct exfat_chain *p_dir, unsigned int type,
474                 struct exfat_dir_entry *info)
475 {
476         int ret, dentry, num_entries;
477         struct super_block *sb = inode->i_sb;
478         struct exfat_sb_info *sbi = EXFAT_SB(sb);
479         struct exfat_uni_name uniname;
480         struct exfat_chain clu;
481         int clu_size = 0;
482         unsigned int start_clu = EXFAT_FREE_CLUSTER;
483
484         ret = exfat_resolve_path(inode, path, p_dir, &uniname);
485         if (ret)
486                 goto out;
487
488         num_entries = exfat_calc_num_entries(&uniname);
489         if (num_entries < 0) {
490                 ret = num_entries;
491                 goto out;
492         }
493
494         /* exfat_find_empty_entry must be called before alloc_cluster() */
495         dentry = exfat_find_empty_entry(inode, p_dir, num_entries);
496         if (dentry < 0) {
497                 ret = dentry; /* -EIO or -ENOSPC */
498                 goto out;
499         }
500
501         if (type == TYPE_DIR) {
502                 ret = exfat_alloc_new_dir(inode, &clu);
503                 if (ret)
504                         goto out;
505                 start_clu = clu.dir;
506                 clu_size = sbi->cluster_size;
507         }
508
509         /* update the directory entry */
510         /* fill the dos name directory entry information of the created file.
511          * the first cluster is not determined yet. (0)
512          */
513         ret = exfat_init_dir_entry(inode, p_dir, dentry, type,
514                 start_clu, clu_size);
515         if (ret)
516                 goto out;
517
518         ret = exfat_init_ext_entry(inode, p_dir, dentry, num_entries, &uniname);
519         if (ret)
520                 goto out;
521
522         memcpy(&info->dir, p_dir, sizeof(struct exfat_chain));
523         info->entry = dentry;
524         info->flags = ALLOC_NO_FAT_CHAIN;
525         info->type = type;
526
527         if (type == TYPE_FILE) {
528                 info->attr = ATTR_ARCHIVE;
529                 info->start_clu = EXFAT_EOF_CLUSTER;
530                 info->size = 0;
531                 info->num_subdirs = 0;
532         } else {
533                 int count;
534                 struct exfat_chain cdir;
535
536                 info->attr = ATTR_SUBDIR;
537                 info->start_clu = start_clu;
538                 info->size = clu_size;
539
540                 exfat_chain_set(&cdir, info->start_clu,
541                         EXFAT_B_TO_CLU(info->size, sbi), info->flags);
542                 count = exfat_count_dir_entries(sb, &cdir);
543                 if (count < 0)
544                         return -EIO;
545                 info->num_subdirs = count + EXFAT_MIN_SUBDIR;
546         }
547         memset(&info->crtime, 0, sizeof(info->crtime));
548         memset(&info->mtime, 0, sizeof(info->mtime));
549         memset(&info->atime, 0, sizeof(info->atime));
550 out:
551         return ret;
552 }
553
554 static int exfat_create(struct inode *dir, struct dentry *dentry, umode_t mode,
555                 bool excl)
556 {
557         struct super_block *sb = dir->i_sb;
558         struct inode *inode;
559         struct exfat_chain cdir;
560         struct exfat_dir_entry info;
561         loff_t i_pos;
562         int err;
563
564         mutex_lock(&EXFAT_SB(sb)->s_lock);
565         exfat_set_vol_flags(sb, VOL_DIRTY);
566         err = exfat_add_entry(dir, dentry->d_name.name, &cdir, TYPE_FILE,
567                 &info);
568         exfat_set_vol_flags(sb, VOL_CLEAN);
569         if (err)
570                 goto unlock;
571
572         inode_inc_iversion(dir);
573         dir->i_ctime = dir->i_mtime = current_time(dir);
574         if (IS_DIRSYNC(dir))
575                 exfat_sync_inode(dir);
576         else
577                 mark_inode_dirty(dir);
578
579         i_pos = exfat_make_i_pos(&info);
580         inode = exfat_build_inode(sb, &info, i_pos);
581         if (IS_ERR(inode))
582                 goto unlock;
583
584         inode_inc_iversion(inode);
585         inode->i_mtime = inode->i_atime = inode->i_ctime =
586                 EXFAT_I(inode)->i_crtime = current_time(inode);
587         exfat_truncate_atime(&inode->i_atime);
588         /* timestamp is already written, so mark_inode_dirty() is unneeded. */
589
590         d_instantiate(dentry, inode);
591 unlock:
592         mutex_unlock(&EXFAT_SB(sb)->s_lock);
593         return err;
594 }
595
596 /* lookup a file */
597 static int exfat_find(struct inode *dir, struct qstr *qname,
598                 struct exfat_dir_entry *info)
599 {
600         int ret, dentry, num_entries, count;
601         struct exfat_chain cdir;
602         struct exfat_uni_name uni_name;
603         struct super_block *sb = dir->i_sb;
604         struct exfat_sb_info *sbi = EXFAT_SB(sb);
605         struct exfat_inode_info *ei = EXFAT_I(dir);
606
607         if (qname->len == 0)
608                 return -ENOENT;
609
610         /* check the validity of directory name in the given pathname */
611         ret = exfat_resolve_path_for_lookup(dir, qname->name, &cdir, &uni_name);
612         if (ret)
613                 return ret;
614
615         num_entries = exfat_calc_num_entries(&uni_name);
616         if (num_entries < 0)
617                 return num_entries;
618
619         /* check the validation of hint_stat and initialize it if required */
620         if (ei->version != (inode_peek_iversion_raw(dir) & 0xffffffff)) {
621                 ei->hint_stat.clu = cdir.dir;
622                 ei->hint_stat.eidx = 0;
623                 ei->version = (inode_peek_iversion_raw(dir) & 0xffffffff);
624                 ei->hint_femp.eidx = EXFAT_HINT_NONE;
625         }
626
627         /* search the file name for directories */
628         dentry = exfat_find_dir_entry(sb, ei, &cdir, &uni_name,
629                         num_entries, TYPE_ALL);
630
631         if ((dentry < 0) && (dentry != -EEXIST))
632                 return dentry; /* -error value */
633
634         memcpy(&info->dir, &cdir.dir, sizeof(struct exfat_chain));
635         info->entry = dentry;
636         info->num_subdirs = 0;
637
638         /* root directory itself */
639         if (unlikely(dentry == -EEXIST)) {
640                 int num_clu = 0;
641
642                 info->type = TYPE_DIR;
643                 info->attr = ATTR_SUBDIR;
644                 info->flags = ALLOC_FAT_CHAIN;
645                 info->start_clu = sbi->root_dir;
646                 memset(&info->crtime, 0, sizeof(info->crtime));
647                 memset(&info->mtime, 0, sizeof(info->mtime));
648                 memset(&info->atime, 0, sizeof(info->atime));
649
650                 exfat_chain_set(&cdir, sbi->root_dir, 0, ALLOC_FAT_CHAIN);
651                 if (exfat_count_num_clusters(sb, &cdir, &num_clu))
652                         return -EIO;
653                 info->size = num_clu << sbi->cluster_size_bits;
654
655                 count = exfat_count_dir_entries(sb, &cdir);
656                 if (count < 0)
657                         return -EIO;
658
659                 info->num_subdirs = count;
660         } else {
661                 struct exfat_dentry *ep, *ep2;
662                 struct exfat_entry_set_cache *es;
663
664                 es = exfat_get_dentry_set(sb, &cdir, dentry, ES_2_ENTRIES);
665                 if (!es)
666                         return -EIO;
667                 ep = exfat_get_dentry_cached(es, 0);
668                 ep2 = exfat_get_dentry_cached(es, 1);
669
670                 info->type = exfat_get_entry_type(ep);
671                 info->attr = le16_to_cpu(ep->dentry.file.attr);
672                 info->size = le64_to_cpu(ep2->dentry.stream.valid_size);
673                 if ((info->type == TYPE_FILE) && (info->size == 0)) {
674                         info->flags = ALLOC_NO_FAT_CHAIN;
675                         info->start_clu = EXFAT_EOF_CLUSTER;
676                 } else {
677                         info->flags = ep2->dentry.stream.flags;
678                         info->start_clu =
679                                 le32_to_cpu(ep2->dentry.stream.start_clu);
680                 }
681
682                 if (ei->start_clu == EXFAT_FREE_CLUSTER) {
683                         exfat_fs_error(sb,
684                                 "non-zero size file starts with zero cluster (size : %llu, p_dir : %u, entry : 0x%08x)",
685                                 i_size_read(dir), ei->dir.dir, ei->entry);
686                         exfat_free_dentry_set(es, false);
687                         return -EIO;
688                 }
689
690                 exfat_get_entry_time(sbi, &info->crtime,
691                                 ep->dentry.file.create_tz,
692                                 ep->dentry.file.create_time,
693                                 ep->dentry.file.create_date,
694                                 ep->dentry.file.create_time_cs);
695                 exfat_get_entry_time(sbi, &info->mtime,
696                                 ep->dentry.file.modify_tz,
697                                 ep->dentry.file.modify_time,
698                                 ep->dentry.file.modify_date,
699                                 ep->dentry.file.modify_time_cs);
700                 exfat_get_entry_time(sbi, &info->atime,
701                                 ep->dentry.file.access_tz,
702                                 ep->dentry.file.access_time,
703                                 ep->dentry.file.access_date,
704                                 0);
705                 exfat_free_dentry_set(es, false);
706
707                 if (info->type == TYPE_DIR) {
708                         exfat_chain_set(&cdir, info->start_clu,
709                                 EXFAT_B_TO_CLU(info->size, sbi), info->flags);
710                         count = exfat_count_dir_entries(sb, &cdir);
711                         if (count < 0)
712                                 return -EIO;
713
714                         info->num_subdirs = count + EXFAT_MIN_SUBDIR;
715                 }
716         }
717         return 0;
718 }
719
720 static int exfat_d_anon_disconn(struct dentry *dentry)
721 {
722         return IS_ROOT(dentry) && (dentry->d_flags & DCACHE_DISCONNECTED);
723 }
724
725 static struct dentry *exfat_lookup(struct inode *dir, struct dentry *dentry,
726                 unsigned int flags)
727 {
728         struct super_block *sb = dir->i_sb;
729         struct inode *inode;
730         struct dentry *alias;
731         struct exfat_dir_entry info;
732         int err;
733         loff_t i_pos;
734         mode_t i_mode;
735
736         mutex_lock(&EXFAT_SB(sb)->s_lock);
737         err = exfat_find(dir, &dentry->d_name, &info);
738         if (err) {
739                 if (err == -ENOENT) {
740                         inode = NULL;
741                         goto out;
742                 }
743                 goto unlock;
744         }
745
746         i_pos = exfat_make_i_pos(&info);
747         inode = exfat_build_inode(sb, &info, i_pos);
748         if (IS_ERR(inode)) {
749                 err = PTR_ERR(inode);
750                 goto unlock;
751         }
752
753         i_mode = inode->i_mode;
754         alias = d_find_alias(inode);
755
756         /*
757          * Checking "alias->d_parent == dentry->d_parent" to make sure
758          * FS is not corrupted (especially double linked dir).
759          */
760         if (alias && alias->d_parent == dentry->d_parent &&
761                         !exfat_d_anon_disconn(alias)) {
762
763                 /*
764                  * Unhashed alias is able to exist because of revalidate()
765                  * called by lookup_fast. You can easily make this status
766                  * by calling create and lookup concurrently
767                  * In such case, we reuse an alias instead of new dentry
768                  */
769                 if (d_unhashed(alias)) {
770                         WARN_ON(alias->d_name.hash_len !=
771                                 dentry->d_name.hash_len);
772                         exfat_info(sb, "rehashed a dentry(%p) in read lookup",
773                                    alias);
774                         d_drop(dentry);
775                         d_rehash(alias);
776                 } else if (!S_ISDIR(i_mode)) {
777                         /*
778                          * This inode has non anonymous-DCACHE_DISCONNECTED
779                          * dentry. This means, the user did ->lookup() by an
780                          * another name (longname vs 8.3 alias of it) in past.
781                          *
782                          * Switch to new one for reason of locality if possible.
783                          */
784                         d_move(alias, dentry);
785                 }
786                 iput(inode);
787                 mutex_unlock(&EXFAT_SB(sb)->s_lock);
788                 return alias;
789         }
790         dput(alias);
791 out:
792         mutex_unlock(&EXFAT_SB(sb)->s_lock);
793         if (!inode)
794                 exfat_d_version_set(dentry, inode_query_iversion(dir));
795
796         return d_splice_alias(inode, dentry);
797 unlock:
798         mutex_unlock(&EXFAT_SB(sb)->s_lock);
799         return ERR_PTR(err);
800 }
801
802 /* remove an entry, BUT don't truncate */
803 static int exfat_unlink(struct inode *dir, struct dentry *dentry)
804 {
805         struct exfat_chain cdir;
806         struct exfat_dentry *ep;
807         struct super_block *sb = dir->i_sb;
808         struct inode *inode = dentry->d_inode;
809         struct exfat_inode_info *ei = EXFAT_I(inode);
810         struct buffer_head *bh;
811         sector_t sector;
812         int num_entries, entry, err = 0;
813
814         mutex_lock(&EXFAT_SB(sb)->s_lock);
815         exfat_chain_dup(&cdir, &ei->dir);
816         entry = ei->entry;
817         if (ei->dir.dir == DIR_DELETED) {
818                 exfat_err(sb, "abnormal access to deleted dentry");
819                 err = -ENOENT;
820                 goto unlock;
821         }
822
823         ep = exfat_get_dentry(sb, &cdir, entry, &bh, &sector);
824         if (!ep) {
825                 err = -EIO;
826                 goto unlock;
827         }
828         num_entries = exfat_count_ext_entries(sb, &cdir, entry, ep);
829         if (num_entries < 0) {
830                 err = -EIO;
831                 brelse(bh);
832                 goto unlock;
833         }
834         num_entries++;
835         brelse(bh);
836
837         exfat_set_vol_flags(sb, VOL_DIRTY);
838         /* update the directory entry */
839         if (exfat_remove_entries(dir, &cdir, entry, 0, num_entries)) {
840                 err = -EIO;
841                 goto unlock;
842         }
843
844         /* This doesn't modify ei */
845         ei->dir.dir = DIR_DELETED;
846         exfat_set_vol_flags(sb, VOL_CLEAN);
847
848         inode_inc_iversion(dir);
849         dir->i_mtime = dir->i_atime = current_time(dir);
850         exfat_truncate_atime(&dir->i_atime);
851         if (IS_DIRSYNC(dir))
852                 exfat_sync_inode(dir);
853         else
854                 mark_inode_dirty(dir);
855
856         clear_nlink(inode);
857         inode->i_mtime = inode->i_atime = current_time(inode);
858         exfat_truncate_atime(&inode->i_atime);
859         exfat_unhash_inode(inode);
860         exfat_d_version_set(dentry, inode_query_iversion(dir));
861 unlock:
862         mutex_unlock(&EXFAT_SB(sb)->s_lock);
863         return err;
864 }
865
866 static int exfat_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
867 {
868         struct super_block *sb = dir->i_sb;
869         struct inode *inode;
870         struct exfat_dir_entry info;
871         struct exfat_chain cdir;
872         loff_t i_pos;
873         int err;
874
875         mutex_lock(&EXFAT_SB(sb)->s_lock);
876         exfat_set_vol_flags(sb, VOL_DIRTY);
877         err = exfat_add_entry(dir, dentry->d_name.name, &cdir, TYPE_DIR,
878                 &info);
879         exfat_set_vol_flags(sb, VOL_CLEAN);
880         if (err)
881                 goto unlock;
882
883         inode_inc_iversion(dir);
884         dir->i_ctime = dir->i_mtime = current_time(dir);
885         if (IS_DIRSYNC(dir))
886                 exfat_sync_inode(dir);
887         else
888                 mark_inode_dirty(dir);
889         inc_nlink(dir);
890
891         i_pos = exfat_make_i_pos(&info);
892         inode = exfat_build_inode(sb, &info, i_pos);
893         if (IS_ERR(inode)) {
894                 err = PTR_ERR(inode);
895                 goto unlock;
896         }
897
898         inode_inc_iversion(inode);
899         inode->i_mtime = inode->i_atime = inode->i_ctime =
900                 EXFAT_I(inode)->i_crtime = current_time(inode);
901         exfat_truncate_atime(&inode->i_atime);
902         /* timestamp is already written, so mark_inode_dirty() is unneeded. */
903
904         d_instantiate(dentry, inode);
905
906 unlock:
907         mutex_unlock(&EXFAT_SB(sb)->s_lock);
908         return err;
909 }
910
911 static int exfat_check_dir_empty(struct super_block *sb,
912                 struct exfat_chain *p_dir)
913 {
914         int i, dentries_per_clu;
915         unsigned int type;
916         struct exfat_chain clu;
917         struct exfat_dentry *ep;
918         struct exfat_sb_info *sbi = EXFAT_SB(sb);
919         struct buffer_head *bh;
920
921         dentries_per_clu = sbi->dentries_per_clu;
922
923         exfat_chain_dup(&clu, p_dir);
924
925         while (clu.dir != EXFAT_EOF_CLUSTER) {
926                 for (i = 0; i < dentries_per_clu; i++) {
927                         ep = exfat_get_dentry(sb, &clu, i, &bh, NULL);
928                         if (!ep)
929                                 return -EIO;
930                         type = exfat_get_entry_type(ep);
931                         brelse(bh);
932                         if (type == TYPE_UNUSED)
933                                 return 0;
934
935                         if (type != TYPE_FILE && type != TYPE_DIR)
936                                 continue;
937
938                         return -ENOTEMPTY;
939                 }
940
941                 if (clu.flags == ALLOC_NO_FAT_CHAIN) {
942                         if (--clu.size > 0)
943                                 clu.dir++;
944                         else
945                                 clu.dir = EXFAT_EOF_CLUSTER;
946                 } else {
947                         if (exfat_get_next_cluster(sb, &(clu.dir)))
948                                 return -EIO;
949                 }
950         }
951
952         return 0;
953 }
954
955 static int exfat_rmdir(struct inode *dir, struct dentry *dentry)
956 {
957         struct inode *inode = dentry->d_inode;
958         struct exfat_dentry *ep;
959         struct exfat_chain cdir, clu_to_free;
960         struct super_block *sb = inode->i_sb;
961         struct exfat_sb_info *sbi = EXFAT_SB(sb);
962         struct exfat_inode_info *ei = EXFAT_I(inode);
963         struct buffer_head *bh;
964         sector_t sector;
965         int num_entries, entry, err;
966
967         mutex_lock(&EXFAT_SB(inode->i_sb)->s_lock);
968
969         exfat_chain_dup(&cdir, &ei->dir);
970         entry = ei->entry;
971
972         if (ei->dir.dir == DIR_DELETED) {
973                 exfat_err(sb, "abnormal access to deleted dentry");
974                 err = -ENOENT;
975                 goto unlock;
976         }
977
978         exfat_chain_set(&clu_to_free, ei->start_clu,
979                 EXFAT_B_TO_CLU_ROUND_UP(i_size_read(inode), sbi), ei->flags);
980
981         err = exfat_check_dir_empty(sb, &clu_to_free);
982         if (err) {
983                 if (err == -EIO)
984                         exfat_err(sb, "failed to exfat_check_dir_empty : err(%d)",
985                                   err);
986                 goto unlock;
987         }
988
989         ep = exfat_get_dentry(sb, &cdir, entry, &bh, &sector);
990         if (!ep) {
991                 err = -EIO;
992                 goto unlock;
993         }
994
995         num_entries = exfat_count_ext_entries(sb, &cdir, entry, ep);
996         if (num_entries < 0) {
997                 err = -EIO;
998                 brelse(bh);
999                 goto unlock;
1000         }
1001         num_entries++;
1002         brelse(bh);
1003
1004         exfat_set_vol_flags(sb, VOL_DIRTY);
1005         err = exfat_remove_entries(dir, &cdir, entry, 0, num_entries);
1006         if (err) {
1007                 exfat_err(sb, "failed to exfat_remove_entries : err(%d)", err);
1008                 goto unlock;
1009         }
1010         ei->dir.dir = DIR_DELETED;
1011         exfat_set_vol_flags(sb, VOL_CLEAN);
1012
1013         inode_inc_iversion(dir);
1014         dir->i_mtime = dir->i_atime = current_time(dir);
1015         exfat_truncate_atime(&dir->i_atime);
1016         if (IS_DIRSYNC(dir))
1017                 exfat_sync_inode(dir);
1018         else
1019                 mark_inode_dirty(dir);
1020         drop_nlink(dir);
1021
1022         clear_nlink(inode);
1023         inode->i_mtime = inode->i_atime = current_time(inode);
1024         exfat_truncate_atime(&inode->i_atime);
1025         exfat_unhash_inode(inode);
1026         exfat_d_version_set(dentry, inode_query_iversion(dir));
1027 unlock:
1028         mutex_unlock(&EXFAT_SB(inode->i_sb)->s_lock);
1029         return err;
1030 }
1031
1032 static int exfat_rename_file(struct inode *inode, struct exfat_chain *p_dir,
1033                 int oldentry, struct exfat_uni_name *p_uniname,
1034                 struct exfat_inode_info *ei)
1035 {
1036         int ret, num_old_entries, num_new_entries;
1037         sector_t sector_old, sector_new;
1038         struct exfat_dentry *epold, *epnew;
1039         struct super_block *sb = inode->i_sb;
1040         struct buffer_head *new_bh, *old_bh;
1041         int sync = IS_DIRSYNC(inode);
1042
1043         epold = exfat_get_dentry(sb, p_dir, oldentry, &old_bh, &sector_old);
1044         if (!epold)
1045                 return -EIO;
1046
1047         num_old_entries = exfat_count_ext_entries(sb, p_dir, oldentry, epold);
1048         if (num_old_entries < 0)
1049                 return -EIO;
1050         num_old_entries++;
1051
1052         num_new_entries = exfat_calc_num_entries(p_uniname);
1053         if (num_new_entries < 0)
1054                 return num_new_entries;
1055
1056         if (num_old_entries < num_new_entries) {
1057                 int newentry;
1058
1059                 newentry =
1060                         exfat_find_empty_entry(inode, p_dir, num_new_entries);
1061                 if (newentry < 0)
1062                         return newentry; /* -EIO or -ENOSPC */
1063
1064                 epnew = exfat_get_dentry(sb, p_dir, newentry, &new_bh,
1065                         &sector_new);
1066                 if (!epnew)
1067                         return -EIO;
1068
1069                 memcpy(epnew, epold, DENTRY_SIZE);
1070                 if (exfat_get_entry_type(epnew) == TYPE_FILE) {
1071                         epnew->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
1072                         ei->attr |= ATTR_ARCHIVE;
1073                 }
1074                 exfat_update_bh(sb, new_bh, sync);
1075                 brelse(old_bh);
1076                 brelse(new_bh);
1077
1078                 epold = exfat_get_dentry(sb, p_dir, oldentry + 1, &old_bh,
1079                         &sector_old);
1080                 if (!epold)
1081                         return -EIO;
1082                 epnew = exfat_get_dentry(sb, p_dir, newentry + 1, &new_bh,
1083                         &sector_new);
1084                 if (!epnew) {
1085                         brelse(old_bh);
1086                         return -EIO;
1087                 }
1088
1089                 memcpy(epnew, epold, DENTRY_SIZE);
1090                 exfat_update_bh(sb, new_bh, sync);
1091                 brelse(old_bh);
1092                 brelse(new_bh);
1093
1094                 ret = exfat_init_ext_entry(inode, p_dir, newentry,
1095                         num_new_entries, p_uniname);
1096                 if (ret)
1097                         return ret;
1098
1099                 exfat_remove_entries(inode, p_dir, oldentry, 0,
1100                         num_old_entries);
1101                 ei->entry = newentry;
1102         } else {
1103                 if (exfat_get_entry_type(epold) == TYPE_FILE) {
1104                         epold->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
1105                         ei->attr |= ATTR_ARCHIVE;
1106                 }
1107                 exfat_update_bh(sb, old_bh, sync);
1108                 brelse(old_bh);
1109                 ret = exfat_init_ext_entry(inode, p_dir, oldentry,
1110                         num_new_entries, p_uniname);
1111                 if (ret)
1112                         return ret;
1113
1114                 exfat_remove_entries(inode, p_dir, oldentry, num_new_entries,
1115                         num_old_entries);
1116         }
1117         return 0;
1118 }
1119
1120 static int exfat_move_file(struct inode *inode, struct exfat_chain *p_olddir,
1121                 int oldentry, struct exfat_chain *p_newdir,
1122                 struct exfat_uni_name *p_uniname, struct exfat_inode_info *ei)
1123 {
1124         int ret, newentry, num_new_entries, num_old_entries;
1125         sector_t sector_mov, sector_new;
1126         struct exfat_dentry *epmov, *epnew;
1127         struct super_block *sb = inode->i_sb;
1128         struct buffer_head *mov_bh, *new_bh;
1129
1130         epmov = exfat_get_dentry(sb, p_olddir, oldentry, &mov_bh, &sector_mov);
1131         if (!epmov)
1132                 return -EIO;
1133
1134         /* check if the source and target directory is the same */
1135         if (exfat_get_entry_type(epmov) == TYPE_DIR &&
1136             le32_to_cpu(epmov->dentry.stream.start_clu) == p_newdir->dir)
1137                 return -EINVAL;
1138
1139         num_old_entries = exfat_count_ext_entries(sb, p_olddir, oldentry,
1140                 epmov);
1141         if (num_old_entries < 0)
1142                 return -EIO;
1143         num_old_entries++;
1144
1145         num_new_entries = exfat_calc_num_entries(p_uniname);
1146         if (num_new_entries < 0)
1147                 return num_new_entries;
1148
1149         newentry = exfat_find_empty_entry(inode, p_newdir, num_new_entries);
1150         if (newentry < 0)
1151                 return newentry; /* -EIO or -ENOSPC */
1152
1153         epnew = exfat_get_dentry(sb, p_newdir, newentry, &new_bh, &sector_new);
1154         if (!epnew)
1155                 return -EIO;
1156
1157         memcpy(epnew, epmov, DENTRY_SIZE);
1158         if (exfat_get_entry_type(epnew) == TYPE_FILE) {
1159                 epnew->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
1160                 ei->attr |= ATTR_ARCHIVE;
1161         }
1162         exfat_update_bh(sb, new_bh, IS_DIRSYNC(inode));
1163         brelse(mov_bh);
1164         brelse(new_bh);
1165
1166         epmov = exfat_get_dentry(sb, p_olddir, oldentry + 1, &mov_bh,
1167                 &sector_mov);
1168         if (!epmov)
1169                 return -EIO;
1170         epnew = exfat_get_dentry(sb, p_newdir, newentry + 1, &new_bh,
1171                 &sector_new);
1172         if (!epnew) {
1173                 brelse(mov_bh);
1174                 return -EIO;
1175         }
1176
1177         memcpy(epnew, epmov, DENTRY_SIZE);
1178         exfat_update_bh(sb, new_bh, IS_DIRSYNC(inode));
1179         brelse(mov_bh);
1180         brelse(new_bh);
1181
1182         ret = exfat_init_ext_entry(inode, p_newdir, newentry, num_new_entries,
1183                 p_uniname);
1184         if (ret)
1185                 return ret;
1186
1187         exfat_remove_entries(inode, p_olddir, oldentry, 0, num_old_entries);
1188
1189         exfat_chain_set(&ei->dir, p_newdir->dir, p_newdir->size,
1190                 p_newdir->flags);
1191
1192         ei->entry = newentry;
1193         return 0;
1194 }
1195
1196 static void exfat_update_parent_info(struct exfat_inode_info *ei,
1197                 struct inode *parent_inode)
1198 {
1199         struct exfat_sb_info *sbi = EXFAT_SB(parent_inode->i_sb);
1200         struct exfat_inode_info *parent_ei = EXFAT_I(parent_inode);
1201         loff_t parent_isize = i_size_read(parent_inode);
1202
1203         /*
1204          * the problem that struct exfat_inode_info caches wrong parent info.
1205          *
1206          * because of flag-mismatch of ei->dir,
1207          * there is abnormal traversing cluster chain.
1208          */
1209         if (unlikely(parent_ei->flags != ei->dir.flags ||
1210                      parent_isize != EXFAT_CLU_TO_B(ei->dir.size, sbi) ||
1211                      parent_ei->start_clu != ei->dir.dir)) {
1212                 exfat_chain_set(&ei->dir, parent_ei->start_clu,
1213                         EXFAT_B_TO_CLU_ROUND_UP(parent_isize, sbi),
1214                         parent_ei->flags);
1215         }
1216 }
1217
1218 /* rename or move a old file into a new file */
1219 static int __exfat_rename(struct inode *old_parent_inode,
1220                 struct exfat_inode_info *ei, struct inode *new_parent_inode,
1221                 struct dentry *new_dentry)
1222 {
1223         int ret;
1224         int dentry;
1225         struct exfat_chain olddir, newdir;
1226         struct exfat_chain *p_dir = NULL;
1227         struct exfat_uni_name uni_name;
1228         struct exfat_dentry *ep;
1229         struct super_block *sb = old_parent_inode->i_sb;
1230         struct exfat_sb_info *sbi = EXFAT_SB(sb);
1231         const unsigned char *new_path = new_dentry->d_name.name;
1232         struct inode *new_inode = new_dentry->d_inode;
1233         int num_entries;
1234         struct exfat_inode_info *new_ei = NULL;
1235         unsigned int new_entry_type = TYPE_UNUSED;
1236         int new_entry = 0;
1237         struct buffer_head *old_bh, *new_bh = NULL;
1238
1239         /* check the validity of pointer parameters */
1240         if (new_path == NULL || strlen(new_path) == 0)
1241                 return -EINVAL;
1242
1243         if (ei->dir.dir == DIR_DELETED) {
1244                 exfat_err(sb, "abnormal access to deleted source dentry");
1245                 return -ENOENT;
1246         }
1247
1248         exfat_update_parent_info(ei, old_parent_inode);
1249
1250         exfat_chain_dup(&olddir, &ei->dir);
1251         dentry = ei->entry;
1252
1253         ep = exfat_get_dentry(sb, &olddir, dentry, &old_bh, NULL);
1254         if (!ep) {
1255                 ret = -EIO;
1256                 goto out;
1257         }
1258         brelse(old_bh);
1259
1260         /* check whether new dir is existing directory and empty */
1261         if (new_inode) {
1262                 ret = -EIO;
1263                 new_ei = EXFAT_I(new_inode);
1264
1265                 if (new_ei->dir.dir == DIR_DELETED) {
1266                         exfat_err(sb, "abnormal access to deleted target dentry");
1267                         goto out;
1268                 }
1269
1270                 exfat_update_parent_info(new_ei, new_parent_inode);
1271
1272                 p_dir = &(new_ei->dir);
1273                 new_entry = new_ei->entry;
1274                 ep = exfat_get_dentry(sb, p_dir, new_entry, &new_bh, NULL);
1275                 if (!ep)
1276                         goto out;
1277
1278                 new_entry_type = exfat_get_entry_type(ep);
1279                 brelse(new_bh);
1280
1281                 /* if new_inode exists, update ei */
1282                 if (new_entry_type == TYPE_DIR) {
1283                         struct exfat_chain new_clu;
1284
1285                         new_clu.dir = new_ei->start_clu;
1286                         new_clu.size =
1287                                 EXFAT_B_TO_CLU_ROUND_UP(i_size_read(new_inode),
1288                                 sbi);
1289                         new_clu.flags = new_ei->flags;
1290
1291                         ret = exfat_check_dir_empty(sb, &new_clu);
1292                         if (ret)
1293                                 goto out;
1294                 }
1295         }
1296
1297         /* check the validity of directory name in the given new pathname */
1298         ret = exfat_resolve_path(new_parent_inode, new_path, &newdir,
1299                         &uni_name);
1300         if (ret)
1301                 goto out;
1302
1303         exfat_set_vol_flags(sb, VOL_DIRTY);
1304
1305         if (olddir.dir == newdir.dir)
1306                 ret = exfat_rename_file(new_parent_inode, &olddir, dentry,
1307                                 &uni_name, ei);
1308         else
1309                 ret = exfat_move_file(new_parent_inode, &olddir, dentry,
1310                                 &newdir, &uni_name, ei);
1311
1312         if (!ret && new_inode) {
1313                 /* delete entries of new_dir */
1314                 ep = exfat_get_dentry(sb, p_dir, new_entry, &new_bh, NULL);
1315                 if (!ep) {
1316                         ret = -EIO;
1317                         goto del_out;
1318                 }
1319
1320                 num_entries = exfat_count_ext_entries(sb, p_dir, new_entry, ep);
1321                 if (num_entries < 0) {
1322                         ret = -EIO;
1323                         goto del_out;
1324                 }
1325                 brelse(new_bh);
1326
1327                 if (exfat_remove_entries(new_inode, p_dir, new_entry, 0,
1328                                 num_entries + 1)) {
1329                         ret = -EIO;
1330                         goto del_out;
1331                 }
1332
1333                 /* Free the clusters if new_inode is a dir(as if exfat_rmdir) */
1334                 if (new_entry_type == TYPE_DIR) {
1335                         /* new_ei, new_clu_to_free */
1336                         struct exfat_chain new_clu_to_free;
1337
1338                         exfat_chain_set(&new_clu_to_free, new_ei->start_clu,
1339                                 EXFAT_B_TO_CLU_ROUND_UP(i_size_read(new_inode),
1340                                 sbi), new_ei->flags);
1341
1342                         if (exfat_free_cluster(new_inode, &new_clu_to_free)) {
1343                                 /* just set I/O error only */
1344                                 ret = -EIO;
1345                         }
1346
1347                         i_size_write(new_inode, 0);
1348                         new_ei->start_clu = EXFAT_EOF_CLUSTER;
1349                         new_ei->flags = ALLOC_NO_FAT_CHAIN;
1350                 }
1351 del_out:
1352                 /* Update new_inode ei
1353                  * Prevent syncing removed new_inode
1354                  * (new_ei is already initialized above code ("if (new_inode)")
1355                  */
1356                 new_ei->dir.dir = DIR_DELETED;
1357         }
1358         exfat_set_vol_flags(sb, VOL_CLEAN);
1359 out:
1360         return ret;
1361 }
1362
1363 static int exfat_rename(struct inode *old_dir, struct dentry *old_dentry,
1364                 struct inode *new_dir, struct dentry *new_dentry,
1365                 unsigned int flags)
1366 {
1367         struct inode *old_inode, *new_inode;
1368         struct super_block *sb = old_dir->i_sb;
1369         loff_t i_pos;
1370         int err;
1371
1372         /*
1373          * The VFS already checks for existence, so for local filesystems
1374          * the RENAME_NOREPLACE implementation is equivalent to plain rename.
1375          * Don't support any other flags
1376          */
1377         if (flags & ~RENAME_NOREPLACE)
1378                 return -EINVAL;
1379
1380         mutex_lock(&EXFAT_SB(sb)->s_lock);
1381         old_inode = old_dentry->d_inode;
1382         new_inode = new_dentry->d_inode;
1383
1384         err = __exfat_rename(old_dir, EXFAT_I(old_inode), new_dir, new_dentry);
1385         if (err)
1386                 goto unlock;
1387
1388         inode_inc_iversion(new_dir);
1389         new_dir->i_ctime = new_dir->i_mtime = new_dir->i_atime =
1390                 EXFAT_I(new_dir)->i_crtime = current_time(new_dir);
1391         exfat_truncate_atime(&new_dir->i_atime);
1392         if (IS_DIRSYNC(new_dir))
1393                 exfat_sync_inode(new_dir);
1394         else
1395                 mark_inode_dirty(new_dir);
1396
1397         i_pos = ((loff_t)EXFAT_I(old_inode)->dir.dir << 32) |
1398                 (EXFAT_I(old_inode)->entry & 0xffffffff);
1399         exfat_unhash_inode(old_inode);
1400         exfat_hash_inode(old_inode, i_pos);
1401         if (IS_DIRSYNC(new_dir))
1402                 exfat_sync_inode(old_inode);
1403         else
1404                 mark_inode_dirty(old_inode);
1405
1406         if (S_ISDIR(old_inode->i_mode) && old_dir != new_dir) {
1407                 drop_nlink(old_dir);
1408                 if (!new_inode)
1409                         inc_nlink(new_dir);
1410         }
1411
1412         inode_inc_iversion(old_dir);
1413         old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1414         if (IS_DIRSYNC(old_dir))
1415                 exfat_sync_inode(old_dir);
1416         else
1417                 mark_inode_dirty(old_dir);
1418
1419         if (new_inode) {
1420                 exfat_unhash_inode(new_inode);
1421
1422                 /* skip drop_nlink if new_inode already has been dropped */
1423                 if (new_inode->i_nlink) {
1424                         drop_nlink(new_inode);
1425                         if (S_ISDIR(new_inode->i_mode))
1426                                 drop_nlink(new_inode);
1427                 } else {
1428                         exfat_warn(sb, "abnormal access to an inode dropped");
1429                         WARN_ON(new_inode->i_nlink == 0);
1430                 }
1431                 new_inode->i_ctime = EXFAT_I(new_inode)->i_crtime =
1432                         current_time(new_inode);
1433         }
1434
1435 unlock:
1436         mutex_unlock(&EXFAT_SB(sb)->s_lock);
1437         return err;
1438 }
1439
1440 const struct inode_operations exfat_dir_inode_operations = {
1441         .create         = exfat_create,
1442         .lookup         = exfat_lookup,
1443         .unlink         = exfat_unlink,
1444         .mkdir          = exfat_mkdir,
1445         .rmdir          = exfat_rmdir,
1446         .rename         = exfat_rename,
1447         .setattr        = exfat_setattr,
1448         .getattr        = exfat_getattr,
1449 };