LCOV - code coverage report
Current view: top level - fs/fat - namei_msdos.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 301 0.0 %
Date: 2014-02-18 Functions: 0 17 0.0 %
Branches: 0 243 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  *  linux/fs/msdos/namei.c
       3                 :            :  *
       4                 :            :  *  Written 1992,1993 by Werner Almesberger
       5                 :            :  *  Hidden files 1995 by Albert Cahalan <albert@ccs.neu.edu> <adc@coe.neu.edu>
       6                 :            :  *  Rewritten for constant inumbers 1999 by Al Viro
       7                 :            :  */
       8                 :            : 
       9                 :            : #include <linux/module.h>
      10                 :            : #include <linux/time.h>
      11                 :            : #include <linux/buffer_head.h>
      12                 :            : #include "fat.h"
      13                 :            : 
      14                 :            : /* Characters that are undesirable in an MS-DOS file name */
      15                 :            : static unsigned char bad_chars[] = "*?<>|\"";
      16                 :            : static unsigned char bad_if_strict[] = "+=,; ";
      17                 :            : 
      18                 :            : /***** Formats an MS-DOS file name. Rejects invalid names. */
      19                 :          0 : static int msdos_format_name(const unsigned char *name, int len,
      20                 :            :                              unsigned char *res, struct fat_mount_options *opts)
      21                 :            :         /*
      22                 :            :          * name is the proposed name, len is its length, res is
      23                 :            :          * the resulting name, opts->name_check is either (r)elaxed,
      24                 :            :          * (n)ormal or (s)trict, opts->dotsOK allows dots at the
      25                 :            :          * beginning of name (for hidden files)
      26                 :            :          */
      27                 :            : {
      28                 :            :         unsigned char *walk;
      29                 :            :         unsigned char c;
      30                 :            :         int space;
      31                 :            : 
      32         [ #  # ]:          0 :         if (name[0] == '.') {   /* dotfile because . and .. already done */
      33         [ #  # ]:          0 :                 if (opts->dotsOK) {
      34                 :            :                         /* Get rid of dot - test for it elsewhere */
      35                 :          0 :                         name++;
      36                 :          0 :                         len--;
      37                 :            :                 } else
      38                 :            :                         return -EINVAL;
      39                 :            :         }
      40                 :            :         /*
      41                 :            :          * disallow names that _really_ start with a dot
      42                 :            :          */
      43                 :            :         space = 1;
      44                 :            :         c = 0;
      45 [ #  # ][ #  # ]:          0 :         for (walk = res; len && walk - res < 8; walk++) {
      46                 :          0 :                 c = *name++;
      47                 :          0 :                 len--;
      48 [ #  # ][ #  # ]:          0 :                 if (opts->name_check != 'r' && strchr(bad_chars, c))
      49                 :            :                         return -EINVAL;
      50 [ #  # ][ #  # ]:          0 :                 if (opts->name_check == 's' && strchr(bad_if_strict, c))
      51                 :            :                         return -EINVAL;
      52 [ #  # ][ #  # ]:          0 :                 if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
      53                 :            :                         return -EINVAL;
      54 [ #  # ][ #  # ]:          0 :                 if (c < ' ' || c == ':' || c == '\\')
      55                 :            :                         return -EINVAL;
      56                 :            :         /*
      57                 :            :          * 0xE5 is legal as a first character, but we must substitute
      58                 :            :          * 0x05 because 0xE5 marks deleted files.  Yes, DOS really
      59                 :            :          * does this.
      60                 :            :          * It seems that Microsoft hacked DOS to support non-US
      61                 :            :          * characters after the 0xE5 character was already in use to
      62                 :            :          * mark deleted files.
      63                 :            :          */
      64         [ #  # ]:          0 :                 if ((res == walk) && (c == 0xE5))
      65                 :            :                         c = 0x05;
      66         [ #  # ]:          0 :                 if (c == '.')
      67                 :            :                         break;
      68                 :          0 :                 space = (c == ' ');
      69 [ #  # ][ #  # ]:          0 :                 *walk = (!opts->nocase && c >= 'a' && c <= 'z') ? c - 32 : c;
      70                 :            :         }
      71         [ #  # ]:          0 :         if (space)
      72                 :            :                 return -EINVAL;
      73 [ #  # ][ #  # ]:          0 :         if (opts->name_check == 's' && len && c != '.') {
      74                 :          0 :                 c = *name++;
      75                 :          0 :                 len--;
      76         [ #  # ]:          0 :                 if (c != '.')
      77                 :            :                         return -EINVAL;
      78                 :            :         }
      79 [ #  # ][ #  # ]:          0 :         while (c != '.' && len--)
      80                 :          0 :                 c = *name++;
      81         [ #  # ]:          0 :         if (c == '.') {
      82         [ #  # ]:          0 :                 while (walk - res < 8)
      83                 :          0 :                         *walk++ = ' ';
      84 [ #  # ][ #  # ]:          0 :                 while (len > 0 && walk - res < MSDOS_NAME) {
      85                 :          0 :                         c = *name++;
      86                 :          0 :                         len--;
      87 [ #  # ][ #  # ]:          0 :                         if (opts->name_check != 'r' && strchr(bad_chars, c))
      88                 :            :                                 return -EINVAL;
      89 [ #  # ][ #  # ]:          0 :                         if (opts->name_check == 's' &&
      90                 :          0 :                             strchr(bad_if_strict, c))
      91                 :            :                                 return -EINVAL;
      92 [ #  # ][ #  # ]:          0 :                         if (c < ' ' || c == ':' || c == '\\')
      93                 :            :                                 return -EINVAL;
      94         [ #  # ]:          0 :                         if (c == '.') {
      95         [ #  # ]:          0 :                                 if (opts->name_check == 's')
      96                 :            :                                         return -EINVAL;
      97                 :            :                                 break;
      98                 :            :                         }
      99 [ #  # ][ #  # ]:          0 :                         if (c >= 'A' && c <= 'Z' && opts->name_check == 's')
     100                 :            :                                 return -EINVAL;
     101                 :          0 :                         space = c == ' ';
     102 [ #  # ][ #  # ]:          0 :                         if (!opts->nocase && c >= 'a' && c <= 'z')
     103                 :          0 :                                 *walk++ = c - 32;
     104                 :            :                         else
     105                 :          0 :                                 *walk++ = c;
     106                 :            :                 }
     107         [ #  # ]:          0 :                 if (space)
     108                 :            :                         return -EINVAL;
     109 [ #  # ][ #  # ]:          0 :                 if (opts->name_check == 's' && len)
     110                 :            :                         return -EINVAL;
     111                 :            :         }
     112         [ #  # ]:          0 :         while (walk - res < MSDOS_NAME)
     113                 :          0 :                 *walk++ = ' ';
     114                 :            : 
     115                 :            :         return 0;
     116                 :            : }
     117                 :            : 
     118                 :            : /***** Locates a directory entry.  Uses unformatted name. */
     119                 :          0 : static int msdos_find(struct inode *dir, const unsigned char *name, int len,
     120                 :            :                       struct fat_slot_info *sinfo)
     121                 :            : {
     122                 :          0 :         struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
     123                 :            :         unsigned char msdos_name[MSDOS_NAME];
     124                 :            :         int err;
     125                 :            : 
     126                 :          0 :         err = msdos_format_name(name, len, msdos_name, &sbi->options);
     127         [ #  # ]:          0 :         if (err)
     128                 :            :                 return -ENOENT;
     129                 :            : 
     130                 :          0 :         err = fat_scan(dir, msdos_name, sinfo);
     131 [ #  # ][ #  # ]:          0 :         if (!err && sbi->options.dotsOK) {
     132         [ #  # ]:          0 :                 if (name[0] == '.') {
     133         [ #  # ]:          0 :                         if (!(sinfo->de->attr & ATTR_HIDDEN))
     134                 :            :                                 err = -ENOENT;
     135                 :            :                 } else {
     136         [ #  # ]:          0 :                         if (sinfo->de->attr & ATTR_HIDDEN)
     137                 :            :                                 err = -ENOENT;
     138                 :            :                 }
     139         [ #  # ]:          0 :                 if (err)
     140                 :          0 :                         brelse(sinfo->bh);
     141                 :            :         }
     142                 :          0 :         return err;
     143                 :            : }
     144                 :            : 
     145                 :            : /*
     146                 :            :  * Compute the hash for the msdos name corresponding to the dentry.
     147                 :            :  * Note: if the name is invalid, we leave the hash code unchanged so
     148                 :            :  * that the existing dentry can be used. The msdos fs routines will
     149                 :            :  * return ENOENT or EINVAL as appropriate.
     150                 :            :  */
     151                 :          0 : static int msdos_hash(const struct dentry *dentry, struct qstr *qstr)
     152                 :            : {
     153                 :          0 :         struct fat_mount_options *options = &MSDOS_SB(dentry->d_sb)->options;
     154                 :            :         unsigned char msdos_name[MSDOS_NAME];
     155                 :            :         int error;
     156                 :            : 
     157                 :          0 :         error = msdos_format_name(qstr->name, qstr->len, msdos_name, options);
     158         [ #  # ]:          0 :         if (!error)
     159                 :          0 :                 qstr->hash = full_name_hash(msdos_name, MSDOS_NAME);
     160                 :          0 :         return 0;
     161                 :            : }
     162                 :            : 
     163                 :            : /*
     164                 :            :  * Compare two msdos names. If either of the names are invalid,
     165                 :            :  * we fall back to doing the standard name comparison.
     166                 :            :  */
     167                 :          0 : static int msdos_cmp(const struct dentry *parent, const struct dentry *dentry,
     168                 :            :                 unsigned int len, const char *str, const struct qstr *name)
     169                 :            : {
     170                 :          0 :         struct fat_mount_options *options = &MSDOS_SB(parent->d_sb)->options;
     171                 :            :         unsigned char a_msdos_name[MSDOS_NAME], b_msdos_name[MSDOS_NAME];
     172                 :            :         int error;
     173                 :            : 
     174                 :          0 :         error = msdos_format_name(name->name, name->len, a_msdos_name, options);
     175         [ #  # ]:          0 :         if (error)
     176                 :            :                 goto old_compare;
     177                 :          0 :         error = msdos_format_name(str, len, b_msdos_name, options);
     178         [ #  # ]:          0 :         if (error)
     179                 :            :                 goto old_compare;
     180                 :          0 :         error = memcmp(a_msdos_name, b_msdos_name, MSDOS_NAME);
     181                 :            : out:
     182                 :          0 :         return error;
     183                 :            : 
     184                 :            : old_compare:
     185                 :            :         error = 1;
     186         [ #  # ]:          0 :         if (name->len == len)
     187                 :          0 :                 error = memcmp(name->name, str, len);
     188                 :            :         goto out;
     189                 :            : }
     190                 :            : 
     191                 :            : static const struct dentry_operations msdos_dentry_operations = {
     192                 :            :         .d_hash         = msdos_hash,
     193                 :            :         .d_compare      = msdos_cmp,
     194                 :            : };
     195                 :            : 
     196                 :            : /*
     197                 :            :  * AV. Wrappers for FAT sb operations. Is it wise?
     198                 :            :  */
     199                 :            : 
     200                 :            : /***** Get inode using directory and name */
     201                 :          0 : static struct dentry *msdos_lookup(struct inode *dir, struct dentry *dentry,
     202                 :            :                                    unsigned int flags)
     203                 :            : {
     204                 :          0 :         struct super_block *sb = dir->i_sb;
     205                 :            :         struct fat_slot_info sinfo;
     206                 :            :         struct inode *inode;
     207                 :            :         int err;
     208                 :            : 
     209                 :          0 :         mutex_lock(&MSDOS_SB(sb)->s_lock);
     210                 :          0 :         err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
     211      [ #  #  # ]:          0 :         switch (err) {
     212                 :            :         case -ENOENT:
     213                 :            :                 inode = NULL;
     214                 :            :                 break;
     215                 :            :         case 0:
     216                 :          0 :                 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
     217                 :          0 :                 brelse(sinfo.bh);
     218                 :            :                 break;
     219                 :            :         default:
     220                 :            :                 inode = ERR_PTR(err);
     221                 :            :         }
     222                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     223                 :          0 :         return d_splice_alias(inode, dentry);
     224                 :            : }
     225                 :            : 
     226                 :            : /***** Creates a directory entry (name is already formatted). */
     227                 :          0 : static int msdos_add_entry(struct inode *dir, const unsigned char *name,
     228                 :            :                            int is_dir, int is_hid, int cluster,
     229                 :            :                            struct timespec *ts, struct fat_slot_info *sinfo)
     230                 :            : {
     231                 :          0 :         struct msdos_sb_info *sbi = MSDOS_SB(dir->i_sb);
     232                 :            :         struct msdos_dir_entry de;
     233                 :            :         __le16 time, date;
     234                 :            :         int err;
     235                 :            : 
     236                 :          0 :         memcpy(de.name, name, MSDOS_NAME);
     237         [ #  # ]:          0 :         de.attr = is_dir ? ATTR_DIR : ATTR_ARCH;
     238         [ #  # ]:          0 :         if (is_hid)
     239                 :          0 :                 de.attr |= ATTR_HIDDEN;
     240                 :          0 :         de.lcase = 0;
     241                 :          0 :         fat_time_unix2fat(sbi, ts, &time, &date, NULL);
     242                 :          0 :         de.cdate = de.adate = 0;
     243                 :          0 :         de.ctime = 0;
     244                 :          0 :         de.ctime_cs = 0;
     245                 :          0 :         de.time = time;
     246                 :          0 :         de.date = date;
     247                 :            :         fat_set_start(&de, cluster);
     248                 :          0 :         de.size = 0;
     249                 :            : 
     250                 :          0 :         err = fat_add_entries(dir, &de, 1, sinfo);
     251         [ #  # ]:          0 :         if (err)
     252                 :            :                 return err;
     253                 :            : 
     254                 :          0 :         dir->i_ctime = dir->i_mtime = *ts;
     255 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
     256                 :          0 :                 (void)fat_sync_inode(dir);
     257                 :            :         else
     258                 :            :                 mark_inode_dirty(dir);
     259                 :            : 
     260                 :            :         return 0;
     261                 :            : }
     262                 :            : 
     263                 :            : /***** Create a file */
     264                 :          0 : static int msdos_create(struct inode *dir, struct dentry *dentry, umode_t mode,
     265                 :            :                         bool excl)
     266                 :            : {
     267                 :          0 :         struct super_block *sb = dir->i_sb;
     268                 :            :         struct inode *inode = NULL;
     269                 :            :         struct fat_slot_info sinfo;
     270                 :            :         struct timespec ts;
     271                 :            :         unsigned char msdos_name[MSDOS_NAME];
     272                 :            :         int err, is_hid;
     273                 :            : 
     274                 :          0 :         mutex_lock(&MSDOS_SB(sb)->s_lock);
     275                 :            : 
     276                 :          0 :         err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
     277                 :            :                                 msdos_name, &MSDOS_SB(sb)->options);
     278         [ #  # ]:          0 :         if (err)
     279                 :            :                 goto out;
     280 [ #  # ][ #  # ]:          0 :         is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
     281                 :            :         /* Have to do it due to foo vs. .foo conflicts */
     282         [ #  # ]:          0 :         if (!fat_scan(dir, msdos_name, &sinfo)) {
     283                 :          0 :                 brelse(sinfo.bh);
     284                 :            :                 err = -EINVAL;
     285                 :            :                 goto out;
     286                 :            :         }
     287                 :            : 
     288                 :          0 :         ts = CURRENT_TIME_SEC;
     289                 :          0 :         err = msdos_add_entry(dir, msdos_name, 0, is_hid, 0, &ts, &sinfo);
     290         [ #  # ]:          0 :         if (err)
     291                 :            :                 goto out;
     292                 :          0 :         inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
     293                 :          0 :         brelse(sinfo.bh);
     294         [ #  # ]:          0 :         if (IS_ERR(inode)) {
     295                 :            :                 err = PTR_ERR(inode);
     296                 :          0 :                 goto out;
     297                 :            :         }
     298                 :          0 :         inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
     299                 :            :         /* timestamp is already written, so mark_inode_dirty() is unneeded. */
     300                 :            : 
     301                 :          0 :         d_instantiate(dentry, inode);
     302                 :            : out:
     303                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     304         [ #  # ]:          0 :         if (!err)
     305                 :          0 :                 err = fat_flush_inodes(sb, dir, inode);
     306                 :          0 :         return err;
     307                 :            : }
     308                 :            : 
     309                 :            : /***** Remove a directory */
     310                 :          0 : static int msdos_rmdir(struct inode *dir, struct dentry *dentry)
     311                 :            : {
     312                 :          0 :         struct super_block *sb = dir->i_sb;
     313                 :          0 :         struct inode *inode = dentry->d_inode;
     314                 :            :         struct fat_slot_info sinfo;
     315                 :            :         int err;
     316                 :            : 
     317                 :          0 :         mutex_lock(&MSDOS_SB(sb)->s_lock);
     318                 :            :         /*
     319                 :            :          * Check whether the directory is not in use, then check
     320                 :            :          * whether it is empty.
     321                 :            :          */
     322                 :          0 :         err = fat_dir_empty(inode);
     323         [ #  # ]:          0 :         if (err)
     324                 :            :                 goto out;
     325                 :          0 :         err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
     326         [ #  # ]:          0 :         if (err)
     327                 :            :                 goto out;
     328                 :            : 
     329                 :          0 :         err = fat_remove_entries(dir, &sinfo);      /* and releases bh */
     330         [ #  # ]:          0 :         if (err)
     331                 :            :                 goto out;
     332                 :          0 :         drop_nlink(dir);
     333                 :            : 
     334                 :          0 :         clear_nlink(inode);
     335                 :          0 :         inode->i_ctime = CURRENT_TIME_SEC;
     336                 :          0 :         fat_detach(inode);
     337                 :            : out:
     338                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     339         [ #  # ]:          0 :         if (!err)
     340                 :          0 :                 err = fat_flush_inodes(sb, dir, inode);
     341                 :            : 
     342                 :          0 :         return err;
     343                 :            : }
     344                 :            : 
     345                 :            : /***** Make a directory */
     346                 :          0 : static int msdos_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
     347                 :            : {
     348                 :          0 :         struct super_block *sb = dir->i_sb;
     349                 :            :         struct fat_slot_info sinfo;
     350                 :            :         struct inode *inode;
     351                 :            :         unsigned char msdos_name[MSDOS_NAME];
     352                 :            :         struct timespec ts;
     353                 :            :         int err, is_hid, cluster;
     354                 :            : 
     355                 :          0 :         mutex_lock(&MSDOS_SB(sb)->s_lock);
     356                 :            : 
     357                 :          0 :         err = msdos_format_name(dentry->d_name.name, dentry->d_name.len,
     358                 :            :                                 msdos_name, &MSDOS_SB(sb)->options);
     359         [ #  # ]:          0 :         if (err)
     360                 :            :                 goto out;
     361 [ #  # ][ #  # ]:          0 :         is_hid = (dentry->d_name.name[0] == '.') && (msdos_name[0] != '.');
     362                 :            :         /* foo vs .foo situation */
     363         [ #  # ]:          0 :         if (!fat_scan(dir, msdos_name, &sinfo)) {
     364                 :          0 :                 brelse(sinfo.bh);
     365                 :            :                 err = -EINVAL;
     366                 :            :                 goto out;
     367                 :            :         }
     368                 :            : 
     369                 :          0 :         ts = CURRENT_TIME_SEC;
     370                 :          0 :         cluster = fat_alloc_new_dir(dir, &ts);
     371         [ #  # ]:          0 :         if (cluster < 0) {
     372                 :            :                 err = cluster;
     373                 :            :                 goto out;
     374                 :            :         }
     375                 :          0 :         err = msdos_add_entry(dir, msdos_name, 1, is_hid, cluster, &ts, &sinfo);
     376         [ #  # ]:          0 :         if (err)
     377                 :            :                 goto out_free;
     378                 :          0 :         inc_nlink(dir);
     379                 :            : 
     380                 :          0 :         inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos);
     381                 :          0 :         brelse(sinfo.bh);
     382         [ #  # ]:          0 :         if (IS_ERR(inode)) {
     383                 :            :                 err = PTR_ERR(inode);
     384                 :            :                 /* the directory was completed, just return a error */
     385                 :          0 :                 goto out;
     386                 :            :         }
     387                 :          0 :         set_nlink(inode, 2);
     388                 :          0 :         inode->i_mtime = inode->i_atime = inode->i_ctime = ts;
     389                 :            :         /* timestamp is already written, so mark_inode_dirty() is unneeded. */
     390                 :            : 
     391                 :          0 :         d_instantiate(dentry, inode);
     392                 :            : 
     393                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     394                 :          0 :         fat_flush_inodes(sb, dir, inode);
     395                 :          0 :         return 0;
     396                 :            : 
     397                 :            : out_free:
     398                 :          0 :         fat_free_clusters(dir, cluster);
     399                 :            : out:
     400                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     401                 :          0 :         return err;
     402                 :            : }
     403                 :            : 
     404                 :            : /***** Unlink a file */
     405                 :          0 : static int msdos_unlink(struct inode *dir, struct dentry *dentry)
     406                 :            : {
     407                 :          0 :         struct inode *inode = dentry->d_inode;
     408                 :          0 :         struct super_block *sb = inode->i_sb;
     409                 :            :         struct fat_slot_info sinfo;
     410                 :            :         int err;
     411                 :            : 
     412                 :          0 :         mutex_lock(&MSDOS_SB(sb)->s_lock);
     413                 :          0 :         err = msdos_find(dir, dentry->d_name.name, dentry->d_name.len, &sinfo);
     414         [ #  # ]:          0 :         if (err)
     415                 :            :                 goto out;
     416                 :            : 
     417                 :          0 :         err = fat_remove_entries(dir, &sinfo);      /* and releases bh */
     418         [ #  # ]:          0 :         if (err)
     419                 :            :                 goto out;
     420                 :          0 :         clear_nlink(inode);
     421                 :          0 :         inode->i_ctime = CURRENT_TIME_SEC;
     422                 :          0 :         fat_detach(inode);
     423                 :            : out:
     424                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     425         [ #  # ]:          0 :         if (!err)
     426                 :          0 :                 err = fat_flush_inodes(sb, dir, inode);
     427                 :            : 
     428                 :          0 :         return err;
     429                 :            : }
     430                 :            : 
     431                 :          0 : static int do_msdos_rename(struct inode *old_dir, unsigned char *old_name,
     432                 :            :                            struct dentry *old_dentry,
     433                 :            :                            struct inode *new_dir, unsigned char *new_name,
     434                 :            :                            struct dentry *new_dentry, int is_hid)
     435                 :            : {
     436                 :            :         struct buffer_head *dotdot_bh;
     437                 :            :         struct msdos_dir_entry *dotdot_de;
     438                 :            :         struct inode *old_inode, *new_inode;
     439                 :            :         struct fat_slot_info old_sinfo, sinfo;
     440                 :            :         struct timespec ts;
     441                 :            :         loff_t new_i_pos;
     442                 :            :         int err, old_attrs, is_dir, update_dotdot, corrupt = 0;
     443                 :            : 
     444                 :          0 :         old_sinfo.bh = sinfo.bh = dotdot_bh = NULL;
     445                 :          0 :         old_inode = old_dentry->d_inode;
     446                 :          0 :         new_inode = new_dentry->d_inode;
     447                 :            : 
     448                 :          0 :         err = fat_scan(old_dir, old_name, &old_sinfo);
     449         [ #  # ]:          0 :         if (err) {
     450                 :            :                 err = -EIO;
     451                 :            :                 goto out;
     452                 :            :         }
     453                 :            : 
     454                 :          0 :         is_dir = S_ISDIR(old_inode->i_mode);
     455                 :          0 :         update_dotdot = (is_dir && old_dir != new_dir);
     456         [ #  # ]:          0 :         if (update_dotdot) {
     457         [ #  # ]:          0 :                 if (fat_get_dotdot_entry(old_inode, &dotdot_bh, &dotdot_de)) {
     458                 :            :                         err = -EIO;
     459                 :            :                         goto out;
     460                 :            :                 }
     461                 :            :         }
     462                 :            : 
     463                 :          0 :         old_attrs = MSDOS_I(old_inode)->i_attrs;
     464                 :          0 :         err = fat_scan(new_dir, new_name, &sinfo);
     465         [ #  # ]:          0 :         if (!err) {
     466         [ #  # ]:          0 :                 if (!new_inode) {
     467                 :            :                         /* "foo" -> ".foo" case. just change the ATTR_HIDDEN */
     468         [ #  # ]:          0 :                         if (sinfo.de != old_sinfo.de) {
     469                 :            :                                 err = -EINVAL;
     470                 :            :                                 goto out;
     471                 :            :                         }
     472         [ #  # ]:          0 :                         if (is_hid)
     473                 :          0 :                                 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
     474                 :            :                         else
     475                 :          0 :                                 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
     476 [ #  # ][ #  # ]:          0 :                         if (IS_DIRSYNC(old_dir)) {
     477                 :          0 :                                 err = fat_sync_inode(old_inode);
     478         [ #  # ]:          0 :                                 if (err) {
     479                 :          0 :                                         MSDOS_I(old_inode)->i_attrs = old_attrs;
     480                 :            :                                         goto out;
     481                 :            :                                 }
     482                 :            :                         } else
     483                 :            :                                 mark_inode_dirty(old_inode);
     484                 :            : 
     485                 :          0 :                         old_dir->i_version++;
     486                 :          0 :                         old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
     487 [ #  # ][ #  # ]:          0 :                         if (IS_DIRSYNC(old_dir))
     488                 :          0 :                                 (void)fat_sync_inode(old_dir);
     489                 :            :                         else
     490                 :            :                                 mark_inode_dirty(old_dir);
     491                 :            :                         goto out;
     492                 :            :                 }
     493                 :            :         }
     494                 :            : 
     495                 :          0 :         ts = CURRENT_TIME_SEC;
     496         [ #  # ]:          0 :         if (new_inode) {
     497         [ #  # ]:          0 :                 if (err)
     498                 :            :                         goto out;
     499         [ #  # ]:          0 :                 if (is_dir) {
     500                 :          0 :                         err = fat_dir_empty(new_inode);
     501         [ #  # ]:          0 :                         if (err)
     502                 :            :                                 goto out;
     503                 :            :                 }
     504                 :          0 :                 new_i_pos = MSDOS_I(new_inode)->i_pos;
     505                 :          0 :                 fat_detach(new_inode);
     506                 :            :         } else {
     507                 :          0 :                 err = msdos_add_entry(new_dir, new_name, is_dir, is_hid, 0,
     508                 :            :                                       &ts, &sinfo);
     509         [ #  # ]:          0 :                 if (err)
     510                 :            :                         goto out;
     511                 :          0 :                 new_i_pos = sinfo.i_pos;
     512                 :            :         }
     513                 :          0 :         new_dir->i_version++;
     514                 :            : 
     515                 :          0 :         fat_detach(old_inode);
     516                 :          0 :         fat_attach(old_inode, new_i_pos);
     517         [ #  # ]:          0 :         if (is_hid)
     518                 :          0 :                 MSDOS_I(old_inode)->i_attrs |= ATTR_HIDDEN;
     519                 :            :         else
     520                 :          0 :                 MSDOS_I(old_inode)->i_attrs &= ~ATTR_HIDDEN;
     521 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(new_dir)) {
     522                 :          0 :                 err = fat_sync_inode(old_inode);
     523         [ #  # ]:          0 :                 if (err)
     524                 :            :                         goto error_inode;
     525                 :            :         } else
     526                 :            :                 mark_inode_dirty(old_inode);
     527                 :            : 
     528         [ #  # ]:          0 :         if (update_dotdot) {
     529                 :          0 :                 fat_set_start(dotdot_de, MSDOS_I(new_dir)->i_logstart);
     530                 :          0 :                 mark_buffer_dirty_inode(dotdot_bh, old_inode);
     531 [ #  # ][ #  # ]:          0 :                 if (IS_DIRSYNC(new_dir)) {
     532                 :          0 :                         err = sync_dirty_buffer(dotdot_bh);
     533         [ #  # ]:          0 :                         if (err)
     534                 :            :                                 goto error_dotdot;
     535                 :            :                 }
     536                 :          0 :                 drop_nlink(old_dir);
     537         [ #  # ]:          0 :                 if (!new_inode)
     538                 :          0 :                         inc_nlink(new_dir);
     539                 :            :         }
     540                 :            : 
     541                 :          0 :         err = fat_remove_entries(old_dir, &old_sinfo);      /* and releases bh */
     542                 :          0 :         old_sinfo.bh = NULL;
     543         [ #  # ]:          0 :         if (err)
     544                 :            :                 goto error_dotdot;
     545                 :          0 :         old_dir->i_version++;
     546                 :          0 :         old_dir->i_ctime = old_dir->i_mtime = ts;
     547 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(old_dir))
     548                 :          0 :                 (void)fat_sync_inode(old_dir);
     549                 :            :         else
     550                 :            :                 mark_inode_dirty(old_dir);
     551                 :            : 
     552         [ #  # ]:          0 :         if (new_inode) {
     553                 :          0 :                 drop_nlink(new_inode);
     554         [ #  # ]:          0 :                 if (is_dir)
     555                 :          0 :                         drop_nlink(new_inode);
     556                 :          0 :                 new_inode->i_ctime = ts;
     557                 :            :         }
     558                 :            : out:
     559                 :          0 :         brelse(sinfo.bh);
     560                 :          0 :         brelse(dotdot_bh);
     561                 :          0 :         brelse(old_sinfo.bh);
     562                 :          0 :         return err;
     563                 :            : 
     564                 :            : error_dotdot:
     565                 :            :         /* data cluster is shared, serious corruption */
     566                 :            :         corrupt = 1;
     567                 :            : 
     568         [ #  # ]:          0 :         if (update_dotdot) {
     569                 :          0 :                 fat_set_start(dotdot_de, MSDOS_I(old_dir)->i_logstart);
     570                 :          0 :                 mark_buffer_dirty_inode(dotdot_bh, old_inode);
     571                 :          0 :                 corrupt |= sync_dirty_buffer(dotdot_bh);
     572                 :            :         }
     573                 :            : error_inode:
     574                 :          0 :         fat_detach(old_inode);
     575                 :          0 :         fat_attach(old_inode, old_sinfo.i_pos);
     576                 :          0 :         MSDOS_I(old_inode)->i_attrs = old_attrs;
     577         [ #  # ]:          0 :         if (new_inode) {
     578                 :          0 :                 fat_attach(new_inode, new_i_pos);
     579         [ #  # ]:          0 :                 if (corrupt)
     580                 :          0 :                         corrupt |= fat_sync_inode(new_inode);
     581                 :            :         } else {
     582                 :            :                 /*
     583                 :            :                  * If new entry was not sharing the data cluster, it
     584                 :            :                  * shouldn't be serious corruption.
     585                 :            :                  */
     586                 :          0 :                 int err2 = fat_remove_entries(new_dir, &sinfo);
     587         [ #  # ]:          0 :                 if (corrupt)
     588                 :          0 :                         corrupt |= err2;
     589                 :          0 :                 sinfo.bh = NULL;
     590                 :            :         }
     591         [ #  # ]:          0 :         if (corrupt < 0) {
     592                 :          0 :                 fat_fs_error(new_dir->i_sb,
     593                 :            :                              "%s: Filesystem corrupted (i_pos %lld)",
     594                 :            :                              __func__, sinfo.i_pos);
     595                 :            :         }
     596                 :            :         goto out;
     597                 :            : }
     598                 :            : 
     599                 :            : /***** Rename, a wrapper for rename_same_dir & rename_diff_dir */
     600                 :          0 : static int msdos_rename(struct inode *old_dir, struct dentry *old_dentry,
     601                 :          0 :                         struct inode *new_dir, struct dentry *new_dentry)
     602                 :            : {
     603                 :          0 :         struct super_block *sb = old_dir->i_sb;
     604                 :            :         unsigned char old_msdos_name[MSDOS_NAME], new_msdos_name[MSDOS_NAME];
     605                 :            :         int err, is_hid;
     606                 :            : 
     607                 :          0 :         mutex_lock(&MSDOS_SB(sb)->s_lock);
     608                 :            : 
     609                 :          0 :         err = msdos_format_name(old_dentry->d_name.name,
     610                 :          0 :                                 old_dentry->d_name.len, old_msdos_name,
     611                 :          0 :                                 &MSDOS_SB(old_dir->i_sb)->options);
     612         [ #  # ]:          0 :         if (err)
     613                 :            :                 goto out;
     614                 :          0 :         err = msdos_format_name(new_dentry->d_name.name,
     615                 :          0 :                                 new_dentry->d_name.len, new_msdos_name,
     616                 :          0 :                                 &MSDOS_SB(new_dir->i_sb)->options);
     617         [ #  # ]:          0 :         if (err)
     618                 :            :                 goto out;
     619                 :            : 
     620                 :            :         is_hid =
     621 [ #  # ][ #  # ]:          0 :              (new_dentry->d_name.name[0] == '.') && (new_msdos_name[0] != '.');
     622                 :            : 
     623                 :          0 :         err = do_msdos_rename(old_dir, old_msdos_name, old_dentry,
     624                 :            :                               new_dir, new_msdos_name, new_dentry, is_hid);
     625                 :            : out:
     626                 :          0 :         mutex_unlock(&MSDOS_SB(sb)->s_lock);
     627         [ #  # ]:          0 :         if (!err)
     628                 :          0 :                 err = fat_flush_inodes(sb, old_dir, new_dir);
     629                 :          0 :         return err;
     630                 :            : }
     631                 :            : 
     632                 :            : static const struct inode_operations msdos_dir_inode_operations = {
     633                 :            :         .create         = msdos_create,
     634                 :            :         .lookup         = msdos_lookup,
     635                 :            :         .unlink         = msdos_unlink,
     636                 :            :         .mkdir          = msdos_mkdir,
     637                 :            :         .rmdir          = msdos_rmdir,
     638                 :            :         .rename         = msdos_rename,
     639                 :            :         .setattr        = fat_setattr,
     640                 :            :         .getattr        = fat_getattr,
     641                 :            : };
     642                 :            : 
     643                 :          0 : static void setup(struct super_block *sb)
     644                 :            : {
     645                 :          0 :         MSDOS_SB(sb)->dir_ops = &msdos_dir_inode_operations;
     646                 :          0 :         sb->s_d_op = &msdos_dentry_operations;
     647                 :          0 :         sb->s_flags |= MS_NOATIME;
     648                 :          0 : }
     649                 :            : 
     650                 :          0 : static int msdos_fill_super(struct super_block *sb, void *data, int silent)
     651                 :            : {
     652                 :          0 :         return fat_fill_super(sb, data, silent, 0, setup);
     653                 :            : }
     654                 :            : 
     655                 :          0 : static struct dentry *msdos_mount(struct file_system_type *fs_type,
     656                 :            :                         int flags, const char *dev_name,
     657                 :            :                         void *data)
     658                 :            : {
     659                 :          0 :         return mount_bdev(fs_type, flags, dev_name, data, msdos_fill_super);
     660                 :            : }
     661                 :            : 
     662                 :            : static struct file_system_type msdos_fs_type = {
     663                 :            :         .owner          = THIS_MODULE,
     664                 :            :         .name           = "msdos",
     665                 :            :         .mount          = msdos_mount,
     666                 :            :         .kill_sb        = kill_block_super,
     667                 :            :         .fs_flags       = FS_REQUIRES_DEV,
     668                 :            : };
     669                 :            : MODULE_ALIAS_FS("msdos");
     670                 :            : 
     671                 :          0 : static int __init init_msdos_fs(void)
     672                 :            : {
     673                 :          0 :         return register_filesystem(&msdos_fs_type);
     674                 :            : }
     675                 :            : 
     676                 :          0 : static void __exit exit_msdos_fs(void)
     677                 :            : {
     678                 :          0 :         unregister_filesystem(&msdos_fs_type);
     679                 :          0 : }
     680                 :            : 
     681                 :            : MODULE_LICENSE("GPL");
     682                 :            : MODULE_AUTHOR("Werner Almesberger");
     683                 :            : MODULE_DESCRIPTION("MS-DOS filesystem support");
     684                 :            : 
     685                 :            : module_init(init_msdos_fs)
     686                 :            : module_exit(exit_msdos_fs)

Generated by: LCOV version 1.9