LCOV - code coverage report
Current view: top level - fs/ext3 - namei.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 968 0.0 %
Date: 2014-02-18 Functions: 0 34 0.0 %
Branches: 0 686 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  *  linux/fs/ext3/namei.c
       3                 :            :  *
       4                 :            :  * Copyright (C) 1992, 1993, 1994, 1995
       5                 :            :  * Remy Card (card@masi.ibp.fr)
       6                 :            :  * Laboratoire MASI - Institut Blaise Pascal
       7                 :            :  * Universite Pierre et Marie Curie (Paris VI)
       8                 :            :  *
       9                 :            :  *  from
      10                 :            :  *
      11                 :            :  *  linux/fs/minix/namei.c
      12                 :            :  *
      13                 :            :  *  Copyright (C) 1991, 1992  Linus Torvalds
      14                 :            :  *
      15                 :            :  *  Big-endian to little-endian byte-swapping/bitmaps by
      16                 :            :  *        David S. Miller (davem@caip.rutgers.edu), 1995
      17                 :            :  *  Directory entry file type support and forward compatibility hooks
      18                 :            :  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
      19                 :            :  *  Hash Tree Directory indexing (c)
      20                 :            :  *      Daniel Phillips, 2001
      21                 :            :  *  Hash Tree Directory indexing porting
      22                 :            :  *      Christopher Li, 2002
      23                 :            :  *  Hash Tree Directory indexing cleanup
      24                 :            :  *      Theodore Ts'o, 2002
      25                 :            :  */
      26                 :            : 
      27                 :            : #include <linux/quotaops.h>
      28                 :            : #include "ext3.h"
      29                 :            : #include "namei.h"
      30                 :            : #include "xattr.h"
      31                 :            : #include "acl.h"
      32                 :            : 
      33                 :            : /*
      34                 :            :  * define how far ahead to read directories while searching them.
      35                 :            :  */
      36                 :            : #define NAMEI_RA_CHUNKS  2
      37                 :            : #define NAMEI_RA_BLOCKS  4
      38                 :            : #define NAMEI_RA_SIZE        (NAMEI_RA_CHUNKS * NAMEI_RA_BLOCKS)
      39                 :            : 
      40                 :          0 : static struct buffer_head *ext3_append(handle_t *handle,
      41                 :            :                                         struct inode *inode,
      42                 :            :                                         u32 *block, int *err)
      43                 :            : {
      44                 :            :         struct buffer_head *bh;
      45                 :            : 
      46                 :          0 :         *block = inode->i_size >> inode->i_sb->s_blocksize_bits;
      47                 :            : 
      48         [ #  # ]:          0 :         if ((bh = ext3_dir_bread(handle, inode, *block, 1, err))) {
      49                 :          0 :                 inode->i_size += inode->i_sb->s_blocksize;
      50                 :          0 :                 EXT3_I(inode)->i_disksize = inode->i_size;
      51                 :          0 :                 *err = ext3_journal_get_write_access(handle, bh);
      52         [ #  # ]:          0 :                 if (*err) {
      53                 :            :                         brelse(bh);
      54                 :            :                         bh = NULL;
      55                 :            :                 }
      56                 :            :         }
      57                 :          0 :         return bh;
      58                 :            : }
      59                 :            : 
      60                 :            : #ifndef assert
      61                 :            : #define assert(test) J_ASSERT(test)
      62                 :            : #endif
      63                 :            : 
      64                 :            : #ifdef DX_DEBUG
      65                 :            : #define dxtrace(command) command
      66                 :            : #else
      67                 :            : #define dxtrace(command)
      68                 :            : #endif
      69                 :            : 
      70                 :            : struct fake_dirent
      71                 :            : {
      72                 :            :         __le32 inode;
      73                 :            :         __le16 rec_len;
      74                 :            :         u8 name_len;
      75                 :            :         u8 file_type;
      76                 :            : };
      77                 :            : 
      78                 :            : struct dx_countlimit
      79                 :            : {
      80                 :            :         __le16 limit;
      81                 :            :         __le16 count;
      82                 :            : };
      83                 :            : 
      84                 :            : struct dx_entry
      85                 :            : {
      86                 :            :         __le32 hash;
      87                 :            :         __le32 block;
      88                 :            : };
      89                 :            : 
      90                 :            : /*
      91                 :            :  * dx_root_info is laid out so that if it should somehow get overlaid by a
      92                 :            :  * dirent the two low bits of the hash version will be zero.  Therefore, the
      93                 :            :  * hash version mod 4 should never be 0.  Sincerely, the paranoia department.
      94                 :            :  */
      95                 :            : 
      96                 :            : struct dx_root
      97                 :            : {
      98                 :            :         struct fake_dirent dot;
      99                 :            :         char dot_name[4];
     100                 :            :         struct fake_dirent dotdot;
     101                 :            :         char dotdot_name[4];
     102                 :            :         struct dx_root_info
     103                 :            :         {
     104                 :            :                 __le32 reserved_zero;
     105                 :            :                 u8 hash_version;
     106                 :            :                 u8 info_length; /* 8 */
     107                 :            :                 u8 indirect_levels;
     108                 :            :                 u8 unused_flags;
     109                 :            :         }
     110                 :            :         info;
     111                 :            :         struct dx_entry entries[0];
     112                 :            : };
     113                 :            : 
     114                 :            : struct dx_node
     115                 :            : {
     116                 :            :         struct fake_dirent fake;
     117                 :            :         struct dx_entry entries[0];
     118                 :            : };
     119                 :            : 
     120                 :            : 
     121                 :            : struct dx_frame
     122                 :            : {
     123                 :            :         struct buffer_head *bh;
     124                 :            :         struct dx_entry *entries;
     125                 :            :         struct dx_entry *at;
     126                 :            : };
     127                 :            : 
     128                 :            : struct dx_map_entry
     129                 :            : {
     130                 :            :         u32 hash;
     131                 :            :         u16 offs;
     132                 :            :         u16 size;
     133                 :            : };
     134                 :            : 
     135                 :            : static inline unsigned dx_get_block (struct dx_entry *entry);
     136                 :            : static void dx_set_block (struct dx_entry *entry, unsigned value);
     137                 :            : static inline unsigned dx_get_hash (struct dx_entry *entry);
     138                 :            : static void dx_set_hash (struct dx_entry *entry, unsigned value);
     139                 :            : static unsigned dx_get_count (struct dx_entry *entries);
     140                 :            : static unsigned dx_get_limit (struct dx_entry *entries);
     141                 :            : static void dx_set_count (struct dx_entry *entries, unsigned value);
     142                 :            : static void dx_set_limit (struct dx_entry *entries, unsigned value);
     143                 :            : static unsigned dx_root_limit (struct inode *dir, unsigned infosize);
     144                 :            : static unsigned dx_node_limit (struct inode *dir);
     145                 :            : static struct dx_frame *dx_probe(struct qstr *entry,
     146                 :            :                                  struct inode *dir,
     147                 :            :                                  struct dx_hash_info *hinfo,
     148                 :            :                                  struct dx_frame *frame,
     149                 :            :                                  int *err);
     150                 :            : static void dx_release (struct dx_frame *frames);
     151                 :            : static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize,
     152                 :            :                         struct dx_hash_info *hinfo, struct dx_map_entry map[]);
     153                 :            : static void dx_sort_map(struct dx_map_entry *map, unsigned count);
     154                 :            : static struct ext3_dir_entry_2 *dx_move_dirents (char *from, char *to,
     155                 :            :                 struct dx_map_entry *offsets, int count);
     156                 :            : static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize);
     157                 :            : static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
     158                 :            : static int ext3_htree_next_block(struct inode *dir, __u32 hash,
     159                 :            :                                  struct dx_frame *frame,
     160                 :            :                                  struct dx_frame *frames,
     161                 :            :                                  __u32 *start_hash);
     162                 :            : static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
     163                 :            :                         struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
     164                 :            :                         int *err);
     165                 :            : static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
     166                 :            :                              struct inode *inode);
     167                 :            : 
     168                 :            : /*
     169                 :            :  * p is at least 6 bytes before the end of page
     170                 :            :  */
     171                 :            : static inline struct ext3_dir_entry_2 *
     172                 :            : ext3_next_entry(struct ext3_dir_entry_2 *p)
     173                 :            : {
     174                 :          0 :         return (struct ext3_dir_entry_2 *)((char *)p +
     175                 :            :                 ext3_rec_len_from_disk(p->rec_len));
     176                 :            : }
     177                 :            : 
     178                 :            : /*
     179                 :            :  * Future: use high four bits of block for coalesce-on-delete flags
     180                 :            :  * Mask them off for now.
     181                 :            :  */
     182                 :            : 
     183                 :            : static inline unsigned dx_get_block (struct dx_entry *entry)
     184                 :            : {
     185                 :          0 :         return le32_to_cpu(entry->block) & 0x00ffffff;
     186                 :            : }
     187                 :            : 
     188                 :            : static inline void dx_set_block (struct dx_entry *entry, unsigned value)
     189                 :            : {
     190                 :          0 :         entry->block = cpu_to_le32(value);
     191                 :            : }
     192                 :            : 
     193                 :            : static inline unsigned dx_get_hash (struct dx_entry *entry)
     194                 :            : {
     195                 :            :         return le32_to_cpu(entry->hash);
     196                 :            : }
     197                 :            : 
     198                 :            : static inline void dx_set_hash (struct dx_entry *entry, unsigned value)
     199                 :            : {
     200                 :          0 :         entry->hash = cpu_to_le32(value);
     201                 :            : }
     202                 :            : 
     203                 :            : static inline unsigned dx_get_count (struct dx_entry *entries)
     204                 :            : {
     205                 :          0 :         return le16_to_cpu(((struct dx_countlimit *) entries)->count);
     206                 :            : }
     207                 :            : 
     208                 :            : static inline unsigned dx_get_limit (struct dx_entry *entries)
     209                 :            : {
     210                 :          0 :         return le16_to_cpu(((struct dx_countlimit *) entries)->limit);
     211                 :            : }
     212                 :            : 
     213                 :            : static inline void dx_set_count (struct dx_entry *entries, unsigned value)
     214                 :            : {
     215                 :          0 :         ((struct dx_countlimit *) entries)->count = cpu_to_le16(value);
     216                 :            : }
     217                 :            : 
     218                 :            : static inline void dx_set_limit (struct dx_entry *entries, unsigned value)
     219                 :            : {
     220                 :          0 :         ((struct dx_countlimit *) entries)->limit = cpu_to_le16(value);
     221                 :            : }
     222                 :            : 
     223                 :            : static inline unsigned dx_root_limit (struct inode *dir, unsigned infosize)
     224                 :            : {
     225                 :          0 :         unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(1) -
     226                 :          0 :                 EXT3_DIR_REC_LEN(2) - infosize;
     227                 :          0 :         return entry_space / sizeof(struct dx_entry);
     228                 :            : }
     229                 :            : 
     230                 :            : static inline unsigned dx_node_limit (struct inode *dir)
     231                 :            : {
     232                 :          0 :         unsigned entry_space = dir->i_sb->s_blocksize - EXT3_DIR_REC_LEN(0);
     233                 :          0 :         return entry_space / sizeof(struct dx_entry);
     234                 :            : }
     235                 :            : 
     236                 :            : /*
     237                 :            :  * Debug
     238                 :            :  */
     239                 :            : #ifdef DX_DEBUG
     240                 :            : static void dx_show_index (char * label, struct dx_entry *entries)
     241                 :            : {
     242                 :            :         int i, n = dx_get_count (entries);
     243                 :            :         printk("%s index ", label);
     244                 :            :         for (i = 0; i < n; i++)
     245                 :            :         {
     246                 :            :                 printk("%x->%u ", i? dx_get_hash(entries + i): 0, dx_get_block(entries + i));
     247                 :            :         }
     248                 :            :         printk("\n");
     249                 :            : }
     250                 :            : 
     251                 :            : struct stats
     252                 :            : {
     253                 :            :         unsigned names;
     254                 :            :         unsigned space;
     255                 :            :         unsigned bcount;
     256                 :            : };
     257                 :            : 
     258                 :            : static struct stats dx_show_leaf(struct dx_hash_info *hinfo, struct ext3_dir_entry_2 *de,
     259                 :            :                                  int size, int show_names)
     260                 :            : {
     261                 :            :         unsigned names = 0, space = 0;
     262                 :            :         char *base = (char *) de;
     263                 :            :         struct dx_hash_info h = *hinfo;
     264                 :            : 
     265                 :            :         printk("names: ");
     266                 :            :         while ((char *) de < base + size)
     267                 :            :         {
     268                 :            :                 if (de->inode)
     269                 :            :                 {
     270                 :            :                         if (show_names)
     271                 :            :                         {
     272                 :            :                                 int len = de->name_len;
     273                 :            :                                 char *name = de->name;
     274                 :            :                                 while (len--) printk("%c", *name++);
     275                 :            :                                 ext3fs_dirhash(de->name, de->name_len, &h);
     276                 :            :                                 printk(":%x.%u ", h.hash,
     277                 :            :                                        (unsigned) ((char *) de - base));
     278                 :            :                         }
     279                 :            :                         space += EXT3_DIR_REC_LEN(de->name_len);
     280                 :            :                         names++;
     281                 :            :                 }
     282                 :            :                 de = ext3_next_entry(de);
     283                 :            :         }
     284                 :            :         printk("(%i)\n", names);
     285                 :            :         return (struct stats) { names, space, 1 };
     286                 :            : }
     287                 :            : 
     288                 :            : struct stats dx_show_entries(struct dx_hash_info *hinfo, struct inode *dir,
     289                 :            :                              struct dx_entry *entries, int levels)
     290                 :            : {
     291                 :            :         unsigned blocksize = dir->i_sb->s_blocksize;
     292                 :            :         unsigned count = dx_get_count (entries), names = 0, space = 0, i;
     293                 :            :         unsigned bcount = 0;
     294                 :            :         struct buffer_head *bh;
     295                 :            :         int err;
     296                 :            :         printk("%i indexed blocks...\n", count);
     297                 :            :         for (i = 0; i < count; i++, entries++)
     298                 :            :         {
     299                 :            :                 u32 block = dx_get_block(entries), hash = i? dx_get_hash(entries): 0;
     300                 :            :                 u32 range = i < count - 1? (dx_get_hash(entries + 1) - hash): ~hash;
     301                 :            :                 struct stats stats;
     302                 :            :                 printk("%s%3u:%03u hash %8x/%8x ",levels?"":"   ", i, block, hash, range);
     303                 :            :                 if (!(bh = ext3_bread (NULL,dir, block, 0,&err))) continue;
     304                 :            :                 stats = levels?
     305                 :            :                    dx_show_entries(hinfo, dir, ((struct dx_node *) bh->b_data)->entries, levels - 1):
     306                 :            :                    dx_show_leaf(hinfo, (struct ext3_dir_entry_2 *) bh->b_data, blocksize, 0);
     307                 :            :                 names += stats.names;
     308                 :            :                 space += stats.space;
     309                 :            :                 bcount += stats.bcount;
     310                 :            :                 brelse (bh);
     311                 :            :         }
     312                 :            :         if (bcount)
     313                 :            :                 printk("%snames %u, fullness %u (%u%%)\n", levels?"":"   ",
     314                 :            :                         names, space/bcount,(space/bcount)*100/blocksize);
     315                 :            :         return (struct stats) { names, space, bcount};
     316                 :            : }
     317                 :            : #endif /* DX_DEBUG */
     318                 :            : 
     319                 :            : /*
     320                 :            :  * Probe for a directory leaf block to search.
     321                 :            :  *
     322                 :            :  * dx_probe can return ERR_BAD_DX_DIR, which means there was a format
     323                 :            :  * error in the directory index, and the caller should fall back to
     324                 :            :  * searching the directory normally.  The callers of dx_probe **MUST**
     325                 :            :  * check for this error code, and make sure it never gets reflected
     326                 :            :  * back to userspace.
     327                 :            :  */
     328                 :            : static struct dx_frame *
     329                 :          0 : dx_probe(struct qstr *entry, struct inode *dir,
     330                 :            :          struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err)
     331                 :            : {
     332                 :            :         unsigned count, indirect;
     333                 :          0 :         struct dx_entry *at, *entries, *p, *q, *m;
     334                 :            :         struct dx_root *root;
     335                 :            :         struct buffer_head *bh;
     336                 :            :         struct dx_frame *frame = frame_in;
     337                 :            :         u32 hash;
     338                 :            : 
     339                 :          0 :         frame->bh = NULL;
     340         [ #  # ]:          0 :         if (!(bh = ext3_dir_bread(NULL, dir, 0, 0, err))) {
     341                 :          0 :                 *err = ERR_BAD_DX_DIR;
     342                 :          0 :                 goto fail;
     343                 :            :         }
     344                 :          0 :         root = (struct dx_root *) bh->b_data;
     345         [ #  # ]:          0 :         if (root->info.hash_version != DX_HASH_TEA &&
     346                 :            :             root->info.hash_version != DX_HASH_HALF_MD4 &&
     347                 :            :             root->info.hash_version != DX_HASH_LEGACY) {
     348                 :          0 :                 ext3_warning(dir->i_sb, __func__,
     349                 :            :                              "Unrecognised inode hash code %d",
     350                 :            :                              root->info.hash_version);
     351                 :            :                 brelse(bh);
     352                 :          0 :                 *err = ERR_BAD_DX_DIR;
     353                 :          0 :                 goto fail;
     354                 :            :         }
     355                 :          0 :         hinfo->hash_version = root->info.hash_version;
     356         [ #  # ]:          0 :         if (hinfo->hash_version <= DX_HASH_TEA)
     357                 :          0 :                 hinfo->hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
     358                 :          0 :         hinfo->seed = EXT3_SB(dir->i_sb)->s_hash_seed;
     359         [ #  # ]:          0 :         if (entry)
     360                 :          0 :                 ext3fs_dirhash(entry->name, entry->len, hinfo);
     361                 :          0 :         hash = hinfo->hash;
     362                 :            : 
     363         [ #  # ]:          0 :         if (root->info.unused_flags & 1) {
     364                 :          0 :                 ext3_warning(dir->i_sb, __func__,
     365                 :            :                              "Unimplemented inode hash flags: %#06x",
     366                 :            :                              root->info.unused_flags);
     367                 :            :                 brelse(bh);
     368                 :          0 :                 *err = ERR_BAD_DX_DIR;
     369                 :          0 :                 goto fail;
     370                 :            :         }
     371                 :            : 
     372         [ #  # ]:          0 :         if ((indirect = root->info.indirect_levels) > 1) {
     373                 :          0 :                 ext3_warning(dir->i_sb, __func__,
     374                 :            :                              "Unimplemented inode hash depth: %#06x",
     375                 :            :                              root->info.indirect_levels);
     376                 :            :                 brelse(bh);
     377                 :          0 :                 *err = ERR_BAD_DX_DIR;
     378                 :          0 :                 goto fail;
     379                 :            :         }
     380                 :            : 
     381                 :          0 :         entries = (struct dx_entry *) (((char *)&root->info) +
     382                 :          0 :                                        root->info.info_length);
     383                 :            : 
     384         [ #  # ]:          0 :         if (dx_get_limit(entries) != dx_root_limit(dir,
     385                 :            :                                                    root->info.info_length)) {
     386                 :          0 :                 ext3_warning(dir->i_sb, __func__,
     387                 :            :                              "dx entry: limit != root limit");
     388                 :            :                 brelse(bh);
     389                 :          0 :                 *err = ERR_BAD_DX_DIR;
     390                 :          0 :                 goto fail;
     391                 :            :         }
     392                 :            : 
     393                 :            :         dxtrace (printk("Look up %x", hash));
     394                 :            :         while (1)
     395                 :            :         {
     396                 :            :                 count = dx_get_count(entries);
     397 [ #  # ][ #  # ]:          0 :                 if (!count || count > dx_get_limit(entries)) {
     398                 :          0 :                         ext3_warning(dir->i_sb, __func__,
     399                 :            :                                      "dx entry: no count or count > limit");
     400                 :            :                         brelse(bh);
     401                 :          0 :                         *err = ERR_BAD_DX_DIR;
     402                 :          0 :                         goto fail2;
     403                 :            :                 }
     404                 :            : 
     405                 :          0 :                 p = entries + 1;
     406                 :          0 :                 q = entries + count - 1;
     407         [ #  # ]:          0 :                 while (p <= q)
     408                 :            :                 {
     409                 :          0 :                         m = p + (q - p)/2;
     410                 :            :                         dxtrace(printk("."));
     411         [ #  # ]:          0 :                         if (dx_get_hash(m) > hash)
     412                 :          0 :                                 q = m - 1;
     413                 :            :                         else
     414                 :          0 :                                 p = m + 1;
     415                 :            :                 }
     416                 :            : 
     417                 :            :                 if (0) // linear search cross check
     418                 :            :                 {
     419                 :            :                         unsigned n = count - 1;
     420                 :            :                         at = entries;
     421                 :            :                         while (n--)
     422                 :            :                         {
     423                 :            :                                 dxtrace(printk(","));
     424                 :            :                                 if (dx_get_hash(++at) > hash)
     425                 :            :                                 {
     426                 :            :                                         at--;
     427                 :            :                                         break;
     428                 :            :                                 }
     429                 :            :                         }
     430                 :            :                         assert (at == p - 1);
     431                 :            :                 }
     432                 :            : 
     433                 :          0 :                 at = p - 1;
     434                 :            :                 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at)));
     435                 :          0 :                 frame->bh = bh;
     436                 :          0 :                 frame->entries = entries;
     437                 :          0 :                 frame->at = at;
     438         [ #  # ]:          0 :                 if (!indirect--) return frame;
     439         [ #  # ]:          0 :                 if (!(bh = ext3_dir_bread(NULL, dir, dx_get_block(at), 0, err))) {
     440                 :          0 :                         *err = ERR_BAD_DX_DIR;
     441                 :          0 :                         goto fail2;
     442                 :            :                 }
     443                 :          0 :                 at = entries = ((struct dx_node *) bh->b_data)->entries;
     444         [ #  # ]:          0 :                 if (dx_get_limit(entries) != dx_node_limit (dir)) {
     445                 :          0 :                         ext3_warning(dir->i_sb, __func__,
     446                 :            :                                      "dx entry: limit != node limit");
     447                 :            :                         brelse(bh);
     448                 :          0 :                         *err = ERR_BAD_DX_DIR;
     449                 :          0 :                         goto fail2;
     450                 :            :                 }
     451                 :          0 :                 frame++;
     452                 :          0 :                 frame->bh = NULL;
     453                 :          0 :         }
     454                 :            : fail2:
     455         [ #  # ]:          0 :         while (frame >= frame_in) {
     456                 :          0 :                 brelse(frame->bh);
     457                 :          0 :                 frame--;
     458                 :            :         }
     459                 :            : fail:
     460         [ #  # ]:          0 :         if (*err == ERR_BAD_DX_DIR)
     461                 :          0 :                 ext3_warning(dir->i_sb, __func__,
     462                 :            :                              "Corrupt dir inode %ld, running e2fsck is "
     463                 :            :                              "recommended.", dir->i_ino);
     464                 :            :         return NULL;
     465                 :            : }
     466                 :            : 
     467                 :          0 : static void dx_release (struct dx_frame *frames)
     468                 :            : {
     469         [ #  # ]:          0 :         if (frames[0].bh == NULL)
     470                 :          0 :                 return;
     471                 :            : 
     472         [ #  # ]:          0 :         if (((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels)
     473                 :          0 :                 brelse(frames[1].bh);
     474                 :          0 :         brelse(frames[0].bh);
     475                 :            : }
     476                 :            : 
     477                 :            : /*
     478                 :            :  * This function increments the frame pointer to search the next leaf
     479                 :            :  * block, and reads in the necessary intervening nodes if the search
     480                 :            :  * should be necessary.  Whether or not the search is necessary is
     481                 :            :  * controlled by the hash parameter.  If the hash value is even, then
     482                 :            :  * the search is only continued if the next block starts with that
     483                 :            :  * hash value.  This is used if we are searching for a specific file.
     484                 :            :  *
     485                 :            :  * If the hash value is HASH_NB_ALWAYS, then always go to the next block.
     486                 :            :  *
     487                 :            :  * This function returns 1 if the caller should continue to search,
     488                 :            :  * or 0 if it should not.  If there is an error reading one of the
     489                 :            :  * index blocks, it will a negative error code.
     490                 :            :  *
     491                 :            :  * If start_hash is non-null, it will be filled in with the starting
     492                 :            :  * hash of the next page.
     493                 :            :  */
     494                 :          0 : static int ext3_htree_next_block(struct inode *dir, __u32 hash,
     495                 :            :                                  struct dx_frame *frame,
     496                 :            :                                  struct dx_frame *frames,
     497                 :            :                                  __u32 *start_hash)
     498                 :            : {
     499                 :            :         struct dx_frame *p;
     500                 :            :         struct buffer_head *bh;
     501                 :            :         int err, num_frames = 0;
     502                 :            :         __u32 bhash;
     503                 :            : 
     504                 :            :         p = frame;
     505                 :            :         /*
     506                 :            :          * Find the next leaf page by incrementing the frame pointer.
     507                 :            :          * If we run out of entries in the interior node, loop around and
     508                 :            :          * increment pointer in the parent node.  When we break out of
     509                 :            :          * this loop, num_frames indicates the number of interior
     510                 :            :          * nodes need to be read.
     511                 :            :          */
     512                 :            :         while (1) {
     513         [ #  # ]:          0 :                 if (++(p->at) < p->entries + dx_get_count(p->entries))
     514                 :            :                         break;
     515         [ #  # ]:          0 :                 if (p == frames)
     516                 :            :                         return 0;
     517                 :          0 :                 num_frames++;
     518                 :          0 :                 p--;
     519                 :          0 :         }
     520                 :            : 
     521                 :            :         /*
     522                 :            :          * If the hash is 1, then continue only if the next page has a
     523                 :            :          * continuation hash of any value.  This is used for readdir
     524                 :            :          * handling.  Otherwise, check to see if the hash matches the
     525                 :            :          * desired contiuation hash.  If it doesn't, return since
     526                 :            :          * there's no point to read in the successive index pages.
     527                 :            :          */
     528                 :            :         bhash = dx_get_hash(p->at);
     529         [ #  # ]:          0 :         if (start_hash)
     530                 :          0 :                 *start_hash = bhash;
     531         [ #  # ]:          0 :         if ((hash & 1) == 0) {
     532         [ #  # ]:          0 :                 if ((bhash & ~1) != hash)
     533                 :            :                         return 0;
     534                 :            :         }
     535                 :            :         /*
     536                 :            :          * If the hash is HASH_NB_ALWAYS, we always go to the next
     537                 :            :          * block so no check is necessary
     538                 :            :          */
     539         [ #  # ]:          0 :         while (num_frames--) {
     540         [ #  # ]:          0 :                 if (!(bh = ext3_dir_bread(NULL, dir, dx_get_block(p->at),
     541                 :            :                                           0, &err)))
     542                 :          0 :                         return err; /* Failure */
     543                 :          0 :                 p++;
     544                 :          0 :                 brelse (p->bh);
     545                 :          0 :                 p->bh = bh;
     546                 :          0 :                 p->at = p->entries = ((struct dx_node *) bh->b_data)->entries;
     547                 :            :         }
     548                 :            :         return 1;
     549                 :            : }
     550                 :            : 
     551                 :            : 
     552                 :            : /*
     553                 :            :  * This function fills a red-black tree with information from a
     554                 :            :  * directory block.  It returns the number directory entries loaded
     555                 :            :  * into the tree.  If there is an error it is returned in err.
     556                 :            :  */
     557                 :          0 : static int htree_dirblock_to_tree(struct file *dir_file,
     558                 :            :                                   struct inode *dir, int block,
     559                 :            :                                   struct dx_hash_info *hinfo,
     560                 :            :                                   __u32 start_hash, __u32 start_minor_hash)
     561                 :            : {
     562                 :            :         struct buffer_head *bh;
     563                 :            :         struct ext3_dir_entry_2 *de, *top;
     564                 :          0 :         int err = 0, count = 0;
     565                 :            : 
     566                 :            :         dxtrace(printk("In htree dirblock_to_tree: block %d\n", block));
     567                 :            : 
     568         [ #  # ]:          0 :         if (!(bh = ext3_dir_bread(NULL, dir, block, 0, &err)))
     569                 :          0 :                 return err;
     570                 :            : 
     571                 :          0 :         de = (struct ext3_dir_entry_2 *) bh->b_data;
     572                 :          0 :         top = (struct ext3_dir_entry_2 *) ((char *) de +
     573                 :          0 :                                            dir->i_sb->s_blocksize -
     574                 :            :                                            EXT3_DIR_REC_LEN(0));
     575         [ #  # ]:          0 :         for (; de < top; de = ext3_next_entry(de)) {
     576         [ #  # ]:          0 :                 if (!ext3_check_dir_entry("htree_dirblock_to_tree", dir, de, bh,
     577                 :          0 :                                         (block<<EXT3_BLOCK_SIZE_BITS(dir->i_sb))
     578                 :          0 :                                                 +((char *)de - bh->b_data))) {
     579                 :            :                         /* silently ignore the rest of the block */
     580                 :            :                         break;
     581                 :            :                 }
     582                 :          0 :                 ext3fs_dirhash(de->name, de->name_len, hinfo);
     583 [ #  # ][ #  # ]:          0 :                 if ((hinfo->hash < start_hash) ||
     584         [ #  # ]:          0 :                     ((hinfo->hash == start_hash) &&
     585                 :          0 :                      (hinfo->minor_hash < start_minor_hash)))
     586                 :          0 :                         continue;
     587         [ #  # ]:          0 :                 if (de->inode == 0)
     588                 :          0 :                         continue;
     589         [ #  # ]:          0 :                 if ((err = ext3_htree_store_dirent(dir_file,
     590                 :            :                                    hinfo->hash, hinfo->minor_hash, de)) != 0) {
     591                 :            :                         brelse(bh);
     592                 :          0 :                         return err;
     593                 :            :                 }
     594                 :          0 :                 count++;
     595                 :            :         }
     596                 :            :         brelse(bh);
     597                 :          0 :         return count;
     598                 :            : }
     599                 :            : 
     600                 :            : 
     601                 :            : /*
     602                 :            :  * This function fills a red-black tree with information from a
     603                 :            :  * directory.  We start scanning the directory in hash order, starting
     604                 :            :  * at start_hash and start_minor_hash.
     605                 :            :  *
     606                 :            :  * This function returns the number of entries inserted into the tree,
     607                 :            :  * or a negative error code.
     608                 :            :  */
     609                 :          0 : int ext3_htree_fill_tree(struct file *dir_file, __u32 start_hash,
     610                 :            :                          __u32 start_minor_hash, __u32 *next_hash)
     611                 :            : {
     612                 :            :         struct dx_hash_info hinfo;
     613                 :            :         struct ext3_dir_entry_2 *de;
     614                 :            :         struct dx_frame frames[2], *frame;
     615                 :            :         struct inode *dir;
     616                 :            :         int block, err;
     617                 :            :         int count = 0;
     618                 :            :         int ret;
     619                 :            :         __u32 hashval;
     620                 :            : 
     621                 :            :         dxtrace(printk("In htree_fill_tree, start hash: %x:%x\n", start_hash,
     622                 :            :                        start_minor_hash));
     623                 :            :         dir = file_inode(dir_file);
     624         [ #  # ]:          0 :         if (!(EXT3_I(dir)->i_flags & EXT3_INDEX_FL)) {
     625                 :          0 :                 hinfo.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
     626         [ #  # ]:          0 :                 if (hinfo.hash_version <= DX_HASH_TEA)
     627                 :          0 :                         hinfo.hash_version +=
     628                 :          0 :                                 EXT3_SB(dir->i_sb)->s_hash_unsigned;
     629                 :          0 :                 hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
     630                 :          0 :                 count = htree_dirblock_to_tree(dir_file, dir, 0, &hinfo,
     631                 :            :                                                start_hash, start_minor_hash);
     632                 :          0 :                 *next_hash = ~0;
     633                 :          0 :                 return count;
     634                 :            :         }
     635                 :          0 :         hinfo.hash = start_hash;
     636                 :          0 :         hinfo.minor_hash = 0;
     637                 :          0 :         frame = dx_probe(NULL, file_inode(dir_file), &hinfo, frames, &err);
     638         [ #  # ]:          0 :         if (!frame)
     639                 :          0 :                 return err;
     640                 :            : 
     641                 :            :         /* Add '.' and '..' from the htree header */
     642         [ #  # ]:          0 :         if (!start_hash && !start_minor_hash) {
     643                 :          0 :                 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
     644         [ #  # ]:          0 :                 if ((err = ext3_htree_store_dirent(dir_file, 0, 0, de)) != 0)
     645                 :            :                         goto errout;
     646                 :            :                 count++;
     647                 :            :         }
     648 [ #  # ][ #  # ]:          0 :         if (start_hash < 2 || (start_hash ==2 && start_minor_hash==0)) {
     649                 :          0 :                 de = (struct ext3_dir_entry_2 *) frames[0].bh->b_data;
     650                 :            :                 de = ext3_next_entry(de);
     651         [ #  # ]:          0 :                 if ((err = ext3_htree_store_dirent(dir_file, 2, 0, de)) != 0)
     652                 :            :                         goto errout;
     653                 :          0 :                 count++;
     654                 :            :         }
     655                 :            : 
     656                 :            :         while (1) {
     657                 :          0 :                 block = dx_get_block(frame->at);
     658                 :          0 :                 ret = htree_dirblock_to_tree(dir_file, dir, block, &hinfo,
     659                 :            :                                              start_hash, start_minor_hash);
     660         [ #  # ]:          0 :                 if (ret < 0) {
     661                 :          0 :                         err = ret;
     662                 :          0 :                         goto errout;
     663                 :            :                 }
     664                 :          0 :                 count += ret;
     665                 :          0 :                 hashval = ~0;
     666                 :          0 :                 ret = ext3_htree_next_block(dir, HASH_NB_ALWAYS,
     667                 :            :                                             frame, frames, &hashval);
     668                 :          0 :                 *next_hash = hashval;
     669         [ #  # ]:          0 :                 if (ret < 0) {
     670                 :          0 :                         err = ret;
     671                 :          0 :                         goto errout;
     672                 :            :                 }
     673                 :            :                 /*
     674                 :            :                  * Stop if:  (a) there are no more entries, or
     675                 :            :                  * (b) we have inserted at least one entry and the
     676                 :            :                  * next hash value is not a continuation
     677                 :            :                  */
     678 [ #  # ][ #  # ]:          0 :                 if ((ret == 0) ||
     679         [ #  # ]:          0 :                     (count && ((hashval & 1) == 0)))
     680                 :            :                         break;
     681                 :            :         }
     682                 :          0 :         dx_release(frames);
     683                 :            :         dxtrace(printk("Fill tree: returned %d entries, next hash: %x\n",
     684                 :            :                        count, *next_hash));
     685                 :          0 :         return count;
     686                 :            : errout:
     687                 :          0 :         dx_release(frames);
     688                 :          0 :         return (err);
     689                 :            : }
     690                 :            : 
     691                 :            : 
     692                 :            : /*
     693                 :            :  * Directory block splitting, compacting
     694                 :            :  */
     695                 :            : 
     696                 :            : /*
     697                 :            :  * Create map of hash values, offsets, and sizes, stored at end of block.
     698                 :            :  * Returns number of entries mapped.
     699                 :            :  */
     700                 :          0 : static int dx_make_map(struct ext3_dir_entry_2 *de, unsigned blocksize,
     701                 :            :                 struct dx_hash_info *hinfo, struct dx_map_entry *map_tail)
     702                 :            : {
     703                 :            :         int count = 0;
     704                 :            :         char *base = (char *) de;
     705                 :          0 :         struct dx_hash_info h = *hinfo;
     706                 :            : 
     707         [ #  # ]:          0 :         while ((char *) de < base + blocksize)
     708                 :            :         {
     709 [ #  # ][ #  # ]:          0 :                 if (de->name_len && de->inode) {
     710                 :          0 :                         ext3fs_dirhash(de->name, de->name_len, &h);
     711                 :          0 :                         map_tail--;
     712                 :          0 :                         map_tail->hash = h.hash;
     713                 :          0 :                         map_tail->offs = (u16) ((char *) de - base);
     714                 :          0 :                         map_tail->size = le16_to_cpu(de->rec_len);
     715                 :          0 :                         count++;
     716                 :          0 :                         cond_resched();
     717                 :            :                 }
     718                 :            :                 /* XXX: do we need to check rec_len == 0 case? -Chris */
     719                 :            :                 de = ext3_next_entry(de);
     720                 :            :         }
     721                 :          0 :         return count;
     722                 :            : }
     723                 :            : 
     724                 :            : /* Sort map by hash value */
     725                 :          0 : static void dx_sort_map (struct dx_map_entry *map, unsigned count)
     726                 :            : {
     727                 :          0 :         struct dx_map_entry *p, *q, *top = map + count - 1;
     728                 :            :         int more;
     729                 :            :         /* Combsort until bubble sort doesn't suck */
     730         [ #  # ]:          0 :         while (count > 2)
     731                 :            :         {
     732                 :          0 :                 count = count*10/13;
     733         [ #  # ]:          0 :                 if (count - 9 < 2) /* 9, 10 -> 11 */
     734                 :            :                         count = 11;
     735         [ #  # ]:          0 :                 for (p = top, q = p - count; q >= map; p--, q--)
     736         [ #  # ]:          0 :                         if (p->hash < q->hash)
     737                 :          0 :                                 swap(*p, *q);
     738                 :            :         }
     739                 :            :         /* Garden variety bubble sort */
     740                 :            :         do {
     741                 :            :                 more = 0;
     742                 :            :                 q = top;
     743         [ #  # ]:          0 :                 while (q-- > map)
     744                 :            :                 {
     745         [ #  # ]:          0 :                         if (q[1].hash >= q[0].hash)
     746                 :          0 :                                 continue;
     747                 :          0 :                         swap(*(q+1), *q);
     748                 :            :                         more = 1;
     749                 :            :                 }
     750         [ #  # ]:          0 :         } while(more);
     751                 :          0 : }
     752                 :            : 
     753                 :          0 : static void dx_insert_block(struct dx_frame *frame, u32 hash, u32 block)
     754                 :            : {
     755                 :          0 :         struct dx_entry *entries = frame->entries;
     756                 :          0 :         struct dx_entry *old = frame->at, *new = old + 1;
     757                 :          0 :         int count = dx_get_count(entries);
     758                 :            : 
     759         [ #  # ]:          0 :         assert(count < dx_get_limit(entries));
     760         [ #  # ]:          0 :         assert(old < entries + count);
     761                 :          0 :         memmove(new + 1, new, (char *)(entries + count) - (char *)(new));
     762                 :            :         dx_set_hash(new, hash);
     763                 :            :         dx_set_block(new, block);
     764                 :          0 :         dx_set_count(entries, count + 1);
     765                 :          0 : }
     766                 :            : 
     767                 :            : static void ext3_update_dx_flag(struct inode *inode)
     768                 :            : {
     769   [ #  #  #  #  :          0 :         if (!EXT3_HAS_COMPAT_FEATURE(inode->i_sb,
          #  #  #  #  #  
                #  #  # ]
     770                 :            :                                      EXT3_FEATURE_COMPAT_DIR_INDEX))
     771                 :          0 :                 EXT3_I(inode)->i_flags &= ~EXT3_INDEX_FL;
     772                 :            : }
     773                 :            : 
     774                 :            : /*
     775                 :            :  * NOTE! unlike strncmp, ext3_match returns 1 for success, 0 for failure.
     776                 :            :  *
     777                 :            :  * `len <= EXT3_NAME_LEN' is guaranteed by caller.
     778                 :            :  * `de != NULL' is guaranteed by caller.
     779                 :            :  */
     780                 :            : static inline int ext3_match (int len, const char * const name,
     781                 :            :                               struct ext3_dir_entry_2 * de)
     782                 :            : {
     783 [ #  # ][ #  # ]:          0 :         if (len != de->name_len)
                 [ #  # ]
     784                 :            :                 return 0;
     785 [ #  # ][ #  # ]:          0 :         if (!de->inode)
                 [ #  # ]
     786                 :            :                 return 0;
     787                 :          0 :         return !memcmp(name, de->name, len);
     788                 :            : }
     789                 :            : 
     790                 :            : /*
     791                 :            :  * Returns 0 if not found, -1 on failure, and 1 on success
     792                 :            :  */
     793                 :            : static inline int search_dirblock(struct buffer_head * bh,
     794                 :            :                                   struct inode *dir,
     795                 :            :                                   struct qstr *child,
     796                 :            :                                   unsigned long offset,
     797                 :            :                                   struct ext3_dir_entry_2 ** res_dir)
     798                 :            : {
     799                 :            :         struct ext3_dir_entry_2 * de;
     800                 :            :         char * dlimit;
     801                 :            :         int de_len;
     802                 :            :         const char *name = child->name;
     803                 :          0 :         int namelen = child->len;
     804                 :            : 
     805                 :          0 :         de = (struct ext3_dir_entry_2 *) bh->b_data;
     806                 :          0 :         dlimit = bh->b_data + dir->i_sb->s_blocksize;
     807 [ #  # ][ #  # ]:          0 :         while ((char *) de < dlimit) {
     808                 :            :                 /* this code is executed quadratically often */
     809                 :            :                 /* do minimal checking `by hand' */
     810                 :            : 
     811 [ #  # ][ #  # ]:          0 :                 if ((char *) de + namelen <= dlimit &&
         [ #  # ][ #  # ]
     812                 :            :                     ext3_match (namelen, name, de)) {
     813                 :            :                         /* found a match - just to be sure, do a full check */
     814 [ #  # ][ #  # ]:          0 :                         if (!ext3_check_dir_entry("ext3_find_entry",
     815                 :            :                                                   dir, de, bh, offset))
     816                 :            :                                 return -1;
     817                 :          0 :                         *res_dir = de;
     818                 :            :                         return 1;
     819                 :            :                 }
     820                 :            :                 /* prevent looping on a bad block */
     821                 :          0 :                 de_len = ext3_rec_len_from_disk(de->rec_len);
     822 [ #  # ][ #  # ]:          0 :                 if (de_len <= 0)
     823                 :            :                         return -1;
     824                 :          0 :                 offset += de_len;
     825                 :          0 :                 de = (struct ext3_dir_entry_2 *) ((char *) de + de_len);
     826                 :            :         }
     827                 :            :         return 0;
     828                 :            : }
     829                 :            : 
     830                 :            : 
     831                 :            : /*
     832                 :            :  *      ext3_find_entry()
     833                 :            :  *
     834                 :            :  * finds an entry in the specified directory with the wanted name. It
     835                 :            :  * returns the cache buffer in which the entry was found, and the entry
     836                 :            :  * itself (as a parameter - res_dir). It does NOT read the inode of the
     837                 :            :  * entry - you'll have to do that yourself if you want to.
     838                 :            :  *
     839                 :            :  * The returned buffer_head has ->b_count elevated.  The caller is expected
     840                 :            :  * to brelse() it when appropriate.
     841                 :            :  */
     842                 :          0 : static struct buffer_head *ext3_find_entry(struct inode *dir,
     843                 :          0 :                                         struct qstr *entry,
     844                 :            :                                         struct ext3_dir_entry_2 **res_dir)
     845                 :            : {
     846                 :            :         struct super_block * sb;
     847                 :            :         struct buffer_head * bh_use[NAMEI_RA_SIZE];
     848                 :            :         struct buffer_head * bh, *ret = NULL;
     849                 :            :         unsigned long start, block, b;
     850                 :          0 :         const u8 *name = entry->name;
     851                 :            :         int ra_max = 0;         /* Number of bh's in the readahead
     852                 :            :                                    buffer, bh_use[] */
     853                 :            :         int ra_ptr = 0;         /* Current index into readahead
     854                 :            :                                    buffer */
     855                 :            :         int num = 0;
     856                 :            :         int nblocks, i, err;
     857                 :            :         int namelen;
     858                 :            : 
     859                 :          0 :         *res_dir = NULL;
     860                 :          0 :         sb = dir->i_sb;
     861                 :          0 :         namelen = entry->len;
     862         [ #  # ]:          0 :         if (namelen > EXT3_NAME_LEN)
     863                 :            :                 return NULL;
     864 [ #  # ][ #  # ]:          0 :         if ((namelen <= 2) && (name[0] == '.') &&
                 [ #  # ]
     865                 :          0 :             (name[1] == '.' || name[1] == 0)) {
     866                 :            :                 /*
     867                 :            :                  * "." or ".." will only be in the first block
     868                 :            :                  * NFS may look up ".."; "." should be handled by the VFS
     869                 :            :                  */
     870                 :            :                 block = start = 0;
     871                 :            :                 nblocks = 1;
     872                 :            :                 goto restart;
     873                 :            :         }
     874 [ #  # ][ #  # ]:          0 :         if (is_dx(dir)) {
     875                 :          0 :                 bh = ext3_dx_find_entry(dir, entry, res_dir, &err);
     876                 :            :                 /*
     877                 :            :                  * On success, or if the error was file not found,
     878                 :            :                  * return.  Otherwise, fall back to doing a search the
     879                 :            :                  * old fashioned way.
     880                 :            :                  */
     881 [ #  # ][ #  # ]:          0 :                 if (bh || (err != ERR_BAD_DX_DIR))
     882                 :            :                         return bh;
     883                 :            :                 dxtrace(printk("ext3_find_entry: dx failed, falling back\n"));
     884                 :            :         }
     885                 :          0 :         nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
     886                 :          0 :         start = EXT3_I(dir)->i_dir_start_lookup;
     887         [ #  # ]:          0 :         if (start >= nblocks)
     888                 :            :                 start = 0;
     889                 :            :         block = start;
     890                 :            : restart:
     891                 :            :         do {
     892                 :            :                 /*
     893                 :            :                  * We deal with the read-ahead logic here.
     894                 :            :                  */
     895         [ #  # ]:          0 :                 if (ra_ptr >= ra_max) {
     896                 :            :                         /* Refill the readahead buffer */
     897                 :            :                         ra_ptr = 0;
     898                 :            :                         b = block;
     899         [ #  # ]:          0 :                         for (ra_max = 0; ra_max < NAMEI_RA_SIZE; ra_max++) {
     900                 :            :                                 /*
     901                 :            :                                  * Terminate if we reach the end of the
     902                 :            :                                  * directory and must wrap, or if our
     903                 :            :                                  * search has finished at this block.
     904                 :            :                                  */
     905 [ #  # ][ #  # ]:          0 :                                 if (b >= nblocks || (num && block == start)) {
     906                 :          0 :                                         bh_use[ra_max] = NULL;
     907                 :          0 :                                         break;
     908                 :            :                                 }
     909                 :          0 :                                 num++;
     910                 :          0 :                                 bh = ext3_getblk(NULL, dir, b++, 0, &err);
     911                 :          0 :                                 bh_use[ra_max] = bh;
     912 [ #  # ][ #  # ]:          0 :                                 if (bh && !bh_uptodate_or_lock(bh)) {
     913                 :            :                                         get_bh(bh);
     914                 :          0 :                                         bh->b_end_io = end_buffer_read_sync;
     915                 :          0 :                                         submit_bh(READ | REQ_META | REQ_PRIO,
     916                 :            :                                                   bh);
     917                 :            :                                 }
     918                 :            :                         }
     919                 :            :                 }
     920         [ #  # ]:          0 :                 if ((bh = bh_use[ra_ptr++]) == NULL)
     921                 :            :                         goto next;
     922                 :            :                 wait_on_buffer(bh);
     923         [ #  # ]:          0 :                 if (!buffer_uptodate(bh)) {
     924                 :            :                         /* read error, skip block & hope for the best */
     925                 :          0 :                         ext3_error(sb, __func__, "reading directory #%lu "
     926                 :            :                                    "offset %lu", dir->i_ino, block);
     927                 :            :                         brelse(bh);
     928                 :            :                         goto next;
     929                 :            :                 }
     930                 :          0 :                 i = search_dirblock(bh, dir, entry,
     931                 :          0 :                             block << EXT3_BLOCK_SIZE_BITS(sb), res_dir);
     932         [ #  # ]:          0 :                 if (i == 1) {
     933                 :          0 :                         EXT3_I(dir)->i_dir_start_lookup = block;
     934                 :            :                         ret = bh;
     935                 :          0 :                         goto cleanup_and_exit;
     936                 :            :                 } else {
     937                 :            :                         brelse(bh);
     938         [ #  # ]:          0 :                         if (i < 0)
     939                 :            :                                 goto cleanup_and_exit;
     940                 :            :                 }
     941                 :            :         next:
     942         [ #  # ]:          0 :                 if (++block >= nblocks)
     943                 :            :                         block = 0;
     944         [ #  # ]:          0 :         } while (block != start);
     945                 :            : 
     946                 :            :         /*
     947                 :            :          * If the directory has grown while we were searching, then
     948                 :            :          * search the last part of the directory before giving up.
     949                 :            :          */
     950                 :            :         block = nblocks;
     951                 :          0 :         nblocks = dir->i_size >> EXT3_BLOCK_SIZE_BITS(sb);
     952         [ #  # ]:          0 :         if (block < nblocks) {
     953                 :            :                 start = 0;
     954                 :            :                 goto restart;
     955                 :            :         }
     956                 :            : 
     957                 :            : cleanup_and_exit:
     958                 :            :         /* Clean up the read-ahead blocks */
     959         [ #  # ]:          0 :         for (; ra_ptr < ra_max; ra_ptr++)
     960                 :          0 :                 brelse (bh_use[ra_ptr]);
     961                 :            :         return ret;
     962                 :            : }
     963                 :            : 
     964                 :          0 : static struct buffer_head * ext3_dx_find_entry(struct inode *dir,
     965                 :          0 :                         struct qstr *entry, struct ext3_dir_entry_2 **res_dir,
     966                 :            :                         int *err)
     967                 :            : {
     968                 :          0 :         struct super_block *sb = dir->i_sb;
     969                 :            :         struct dx_hash_info     hinfo;
     970                 :            :         struct dx_frame frames[2], *frame;
     971                 :            :         struct buffer_head *bh;
     972                 :            :         unsigned long block;
     973                 :            :         int retval;
     974                 :            : 
     975         [ #  # ]:          0 :         if (!(frame = dx_probe(entry, dir, &hinfo, frames, err)))
     976                 :            :                 return NULL;
     977                 :            :         do {
     978                 :          0 :                 block = dx_get_block(frame->at);
     979         [ #  # ]:          0 :                 if (!(bh = ext3_dir_bread (NULL, dir, block, 0, err)))
     980                 :            :                         goto errout;
     981                 :            : 
     982                 :          0 :                 retval = search_dirblock(bh, dir, entry,
     983                 :          0 :                                          block << EXT3_BLOCK_SIZE_BITS(sb),
     984                 :            :                                          res_dir);
     985         [ #  # ]:          0 :                 if (retval == 1) {
     986                 :          0 :                         dx_release(frames);
     987                 :          0 :                         return bh;
     988                 :            :                 }
     989                 :            :                 brelse(bh);
     990         [ #  # ]:          0 :                 if (retval == -1) {
     991                 :          0 :                         *err = ERR_BAD_DX_DIR;
     992                 :          0 :                         goto errout;
     993                 :            :                 }
     994                 :            : 
     995                 :            :                 /* Check to see if we should continue to search */
     996                 :          0 :                 retval = ext3_htree_next_block(dir, hinfo.hash, frame,
     997                 :            :                                                frames, NULL);
     998         [ #  # ]:          0 :                 if (retval < 0) {
     999                 :          0 :                         ext3_warning(sb, __func__,
    1000                 :            :                              "error reading index page in directory #%lu",
    1001                 :            :                              dir->i_ino);
    1002                 :          0 :                         *err = retval;
    1003                 :          0 :                         goto errout;
    1004                 :            :                 }
    1005         [ #  # ]:          0 :         } while (retval == 1);
    1006                 :            : 
    1007                 :          0 :         *err = -ENOENT;
    1008                 :            : errout:
    1009                 :            :         dxtrace(printk("%s not found\n", entry->name));
    1010                 :          0 :         dx_release (frames);
    1011                 :          0 :         return NULL;
    1012                 :            : }
    1013                 :            : 
    1014                 :          0 : static struct dentry *ext3_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
    1015                 :            : {
    1016                 :            :         struct inode * inode;
    1017                 :            :         struct ext3_dir_entry_2 * de;
    1018                 :            :         struct buffer_head * bh;
    1019                 :            : 
    1020         [ #  # ]:          0 :         if (dentry->d_name.len > EXT3_NAME_LEN)
    1021                 :            :                 return ERR_PTR(-ENAMETOOLONG);
    1022                 :            : 
    1023                 :          0 :         bh = ext3_find_entry(dir, &dentry->d_name, &de);
    1024                 :            :         inode = NULL;
    1025         [ #  # ]:          0 :         if (bh) {
    1026                 :          0 :                 unsigned long ino = le32_to_cpu(de->inode);
    1027                 :            :                 brelse (bh);
    1028         [ #  # ]:          0 :                 if (!ext3_valid_inum(dir->i_sb, ino)) {
    1029                 :          0 :                         ext3_error(dir->i_sb, "ext3_lookup",
    1030                 :            :                                    "bad inode number: %lu", ino);
    1031                 :          0 :                         return ERR_PTR(-EIO);
    1032                 :            :                 }
    1033                 :          0 :                 inode = ext3_iget(dir->i_sb, ino);
    1034         [ #  # ]:          0 :                 if (inode == ERR_PTR(-ESTALE)) {
    1035                 :          0 :                         ext3_error(dir->i_sb, __func__,
    1036                 :            :                                         "deleted inode referenced: %lu",
    1037                 :            :                                         ino);
    1038                 :          0 :                         return ERR_PTR(-EIO);
    1039                 :            :                 }
    1040                 :            :         }
    1041                 :          0 :         return d_splice_alias(inode, dentry);
    1042                 :            : }
    1043                 :            : 
    1044                 :            : 
    1045                 :          0 : struct dentry *ext3_get_parent(struct dentry *child)
    1046                 :            : {
    1047                 :            :         unsigned long ino;
    1048                 :          0 :         struct qstr dotdot = QSTR_INIT("..", 2);
    1049                 :            :         struct ext3_dir_entry_2 * de;
    1050                 :            :         struct buffer_head *bh;
    1051                 :            : 
    1052                 :          0 :         bh = ext3_find_entry(child->d_inode, &dotdot, &de);
    1053         [ #  # ]:          0 :         if (!bh)
    1054                 :            :                 return ERR_PTR(-ENOENT);
    1055                 :          0 :         ino = le32_to_cpu(de->inode);
    1056                 :            :         brelse(bh);
    1057                 :            : 
    1058         [ #  # ]:          0 :         if (!ext3_valid_inum(child->d_inode->i_sb, ino)) {
    1059                 :          0 :                 ext3_error(child->d_inode->i_sb, "ext3_get_parent",
    1060                 :            :                            "bad inode number: %lu", ino);
    1061                 :          0 :                 return ERR_PTR(-EIO);
    1062                 :            :         }
    1063                 :            : 
    1064                 :          0 :         return d_obtain_alias(ext3_iget(child->d_inode->i_sb, ino));
    1065                 :            : }
    1066                 :            : 
    1067                 :            : #define S_SHIFT 12
    1068                 :            : static unsigned char ext3_type_by_mode[S_IFMT >> S_SHIFT] = {
    1069                 :            :         [S_IFREG >> S_SHIFT]      = EXT3_FT_REG_FILE,
    1070                 :            :         [S_IFDIR >> S_SHIFT]      = EXT3_FT_DIR,
    1071                 :            :         [S_IFCHR >> S_SHIFT]      = EXT3_FT_CHRDEV,
    1072                 :            :         [S_IFBLK >> S_SHIFT]      = EXT3_FT_BLKDEV,
    1073                 :            :         [S_IFIFO >> S_SHIFT]      = EXT3_FT_FIFO,
    1074                 :            :         [S_IFSOCK >> S_SHIFT]     = EXT3_FT_SOCK,
    1075                 :            :         [S_IFLNK >> S_SHIFT]      = EXT3_FT_SYMLINK,
    1076                 :            : };
    1077                 :            : 
    1078                 :          0 : static inline void ext3_set_de_type(struct super_block *sb,
    1079                 :            :                                 struct ext3_dir_entry_2 *de,
    1080                 :            :                                 umode_t mode) {
    1081 [ #  # ][ #  # ]:          0 :         if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_FILETYPE))
                 [ #  # ]
    1082                 :          0 :                 de->file_type = ext3_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
    1083                 :            : }
    1084                 :            : 
    1085                 :            : /*
    1086                 :            :  * Move count entries from end of map between two memory locations.
    1087                 :            :  * Returns pointer to last entry moved.
    1088                 :            :  */
    1089                 :            : static struct ext3_dir_entry_2 *
    1090                 :          0 : dx_move_dirents(char *from, char *to, struct dx_map_entry *map, int count)
    1091                 :            : {
    1092                 :            :         unsigned rec_len = 0;
    1093                 :            : 
    1094         [ #  # ]:          0 :         while (count--) {
    1095                 :          0 :                 struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *) (from + map->offs);
    1096                 :          0 :                 rec_len = EXT3_DIR_REC_LEN(de->name_len);
    1097                 :          0 :                 memcpy (to, de, rec_len);
    1098                 :          0 :                 ((struct ext3_dir_entry_2 *) to)->rec_len =
    1099                 :            :                                 ext3_rec_len_to_disk(rec_len);
    1100                 :          0 :                 de->inode = 0;
    1101                 :          0 :                 map++;
    1102                 :          0 :                 to += rec_len;
    1103                 :            :         }
    1104                 :          0 :         return (struct ext3_dir_entry_2 *) (to - rec_len);
    1105                 :            : }
    1106                 :            : 
    1107                 :            : /*
    1108                 :            :  * Compact each dir entry in the range to the minimal rec_len.
    1109                 :            :  * Returns pointer to last entry in range.
    1110                 :            :  */
    1111                 :          0 : static struct ext3_dir_entry_2 *dx_pack_dirents(char *base, unsigned blocksize)
    1112                 :            : {
    1113                 :            :         struct ext3_dir_entry_2 *next, *to, *prev;
    1114                 :            :         struct ext3_dir_entry_2 *de = (struct ext3_dir_entry_2 *)base;
    1115                 :            :         unsigned rec_len = 0;
    1116                 :            : 
    1117                 :            :         prev = to = de;
    1118         [ #  # ]:          0 :         while ((char *)de < base + blocksize) {
    1119                 :            :                 next = ext3_next_entry(de);
    1120 [ #  # ][ #  # ]:          0 :                 if (de->inode && de->name_len) {
    1121                 :          0 :                         rec_len = EXT3_DIR_REC_LEN(de->name_len);
    1122         [ #  # ]:          0 :                         if (de > to)
    1123                 :          0 :                                 memmove(to, de, rec_len);
    1124                 :          0 :                         to->rec_len = ext3_rec_len_to_disk(rec_len);
    1125                 :            :                         prev = to;
    1126                 :          0 :                         to = (struct ext3_dir_entry_2 *) (((char *) to) + rec_len);
    1127                 :            :                 }
    1128                 :            :                 de = next;
    1129                 :            :         }
    1130                 :          0 :         return prev;
    1131                 :            : }
    1132                 :            : 
    1133                 :            : /*
    1134                 :            :  * Split a full leaf block to make room for a new dir entry.
    1135                 :            :  * Allocate a new block, and move entries so that they are approx. equally full.
    1136                 :            :  * Returns pointer to de in block into which the new entry will be inserted.
    1137                 :            :  */
    1138                 :          0 : static struct ext3_dir_entry_2 *do_split(handle_t *handle, struct inode *dir,
    1139                 :          0 :                         struct buffer_head **bh,struct dx_frame *frame,
    1140                 :            :                         struct dx_hash_info *hinfo, int *error)
    1141                 :            : {
    1142                 :          0 :         unsigned blocksize = dir->i_sb->s_blocksize;
    1143                 :            :         unsigned count, continued;
    1144                 :            :         struct buffer_head *bh2;
    1145                 :            :         u32 newblock;
    1146                 :            :         u32 hash2;
    1147                 :            :         struct dx_map_entry *map;
    1148                 :          0 :         char *data1 = (*bh)->b_data, *data2;
    1149                 :            :         unsigned split, move, size;
    1150                 :            :         struct ext3_dir_entry_2 *de = NULL, *de2;
    1151                 :          0 :         int     err = 0, i;
    1152                 :            : 
    1153                 :          0 :         bh2 = ext3_append (handle, dir, &newblock, &err);
    1154         [ #  # ]:          0 :         if (!(bh2)) {
    1155                 :          0 :                 brelse(*bh);
    1156                 :          0 :                 *bh = NULL;
    1157                 :          0 :                 goto errout;
    1158                 :            :         }
    1159                 :            : 
    1160                 :            :         BUFFER_TRACE(*bh, "get_write_access");
    1161                 :          0 :         err = ext3_journal_get_write_access(handle, *bh);
    1162         [ #  # ]:          0 :         if (err)
    1163                 :            :                 goto journal_error;
    1164                 :            : 
    1165                 :            :         BUFFER_TRACE(frame->bh, "get_write_access");
    1166                 :          0 :         err = ext3_journal_get_write_access(handle, frame->bh);
    1167         [ #  # ]:          0 :         if (err)
    1168                 :            :                 goto journal_error;
    1169                 :            : 
    1170                 :          0 :         data2 = bh2->b_data;
    1171                 :            : 
    1172                 :            :         /* create map in the end of data2 block */
    1173                 :          0 :         map = (struct dx_map_entry *) (data2 + blocksize);
    1174                 :          0 :         count = dx_make_map ((struct ext3_dir_entry_2 *) data1,
    1175                 :            :                              blocksize, hinfo, map);
    1176                 :          0 :         map -= count;
    1177                 :          0 :         dx_sort_map (map, count);
    1178                 :            :         /* Split the existing block in the middle, size-wise */
    1179                 :            :         size = 0;
    1180                 :            :         move = 0;
    1181         [ #  # ]:          0 :         for (i = count-1; i >= 0; i--) {
    1182                 :            :                 /* is more than half of this entry in 2nd half of the block? */
    1183         [ #  # ]:          0 :                 if (size + map[i].size/2 > blocksize/2)
    1184                 :            :                         break;
    1185                 :          0 :                 size += map[i].size;
    1186                 :          0 :                 move++;
    1187                 :            :         }
    1188                 :            :         /* map index at which we will split */
    1189                 :          0 :         split = count - move;
    1190                 :          0 :         hash2 = map[split].hash;
    1191                 :          0 :         continued = hash2 == map[split - 1].hash;
    1192                 :            :         dxtrace(printk("Split block %i at %x, %i/%i\n",
    1193                 :            :                 dx_get_block(frame->at), hash2, split, count-split));
    1194                 :            : 
    1195                 :            :         /* Fancy dance to stay within two buffers */
    1196                 :          0 :         de2 = dx_move_dirents(data1, data2, map + split, count - split);
    1197                 :          0 :         de = dx_pack_dirents(data1,blocksize);
    1198                 :          0 :         de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
    1199                 :          0 :         de2->rec_len = ext3_rec_len_to_disk(data2 + blocksize - (char *) de2);
    1200                 :            :         dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data1, blocksize, 1));
    1201                 :            :         dxtrace(dx_show_leaf (hinfo, (struct ext3_dir_entry_2 *) data2, blocksize, 1));
    1202                 :            : 
    1203                 :            :         /* Which block gets the new entry? */
    1204         [ #  # ]:          0 :         if (hinfo->hash >= hash2)
    1205                 :            :         {
    1206                 :          0 :                 swap(*bh, bh2);
    1207                 :            :                 de = de2;
    1208                 :            :         }
    1209                 :          0 :         dx_insert_block (frame, hash2 + continued, newblock);
    1210                 :          0 :         err = ext3_journal_dirty_metadata (handle, bh2);
    1211         [ #  # ]:          0 :         if (err)
    1212                 :            :                 goto journal_error;
    1213                 :          0 :         err = ext3_journal_dirty_metadata (handle, frame->bh);
    1214         [ #  # ]:          0 :         if (err)
    1215                 :            :                 goto journal_error;
    1216                 :            :         brelse (bh2);
    1217                 :            :         dxtrace(dx_show_index ("frame", frame->entries));
    1218                 :          0 :         return de;
    1219                 :            : 
    1220                 :            : journal_error:
    1221                 :          0 :         brelse(*bh);
    1222                 :            :         brelse(bh2);
    1223                 :          0 :         *bh = NULL;
    1224         [ #  # ]:          0 :         ext3_std_error(dir->i_sb, err);
    1225                 :            : errout:
    1226                 :          0 :         *error = err;
    1227                 :          0 :         return NULL;
    1228                 :            : }
    1229                 :            : 
    1230                 :            : 
    1231                 :            : /*
    1232                 :            :  * Add a new entry into a directory (leaf) block.  If de is non-NULL,
    1233                 :            :  * it points to a directory entry which is guaranteed to be large
    1234                 :            :  * enough for new directory entry.  If de is NULL, then
    1235                 :            :  * add_dirent_to_buf will attempt search the directory block for
    1236                 :            :  * space.  It will return -ENOSPC if no space is available, and -EIO
    1237                 :            :  * and -EEXIST if directory entry already exists.
    1238                 :            :  *
    1239                 :            :  * NOTE!  bh is NOT released in the case where ENOSPC is returned.  In
    1240                 :            :  * all other cases bh is released.
    1241                 :            :  */
    1242                 :          0 : static int add_dirent_to_buf(handle_t *handle, struct dentry *dentry,
    1243                 :            :                              struct inode *inode, struct ext3_dir_entry_2 *de,
    1244                 :            :                              struct buffer_head * bh)
    1245                 :            : {
    1246                 :          0 :         struct inode    *dir = dentry->d_parent->d_inode;
    1247                 :          0 :         const char      *name = dentry->d_name.name;
    1248                 :          0 :         int             namelen = dentry->d_name.len;
    1249                 :            :         unsigned long   offset = 0;
    1250                 :            :         unsigned short  reclen;
    1251                 :            :         int             nlen, rlen, err;
    1252                 :            :         char            *top;
    1253                 :            : 
    1254                 :          0 :         reclen = EXT3_DIR_REC_LEN(namelen);
    1255         [ #  # ]:          0 :         if (!de) {
    1256                 :          0 :                 de = (struct ext3_dir_entry_2 *)bh->b_data;
    1257                 :          0 :                 top = bh->b_data + dir->i_sb->s_blocksize - reclen;
    1258         [ #  # ]:          0 :                 while ((char *) de <= top) {
    1259         [ #  # ]:          0 :                         if (!ext3_check_dir_entry("ext3_add_entry", dir, de,
    1260                 :            :                                                   bh, offset)) {
    1261                 :            :                                 brelse (bh);
    1262                 :            :                                 return -EIO;
    1263                 :            :                         }
    1264         [ #  # ]:          0 :                         if (ext3_match (namelen, name, de)) {
    1265                 :            :                                 brelse (bh);
    1266                 :            :                                 return -EEXIST;
    1267                 :            :                         }
    1268                 :          0 :                         nlen = EXT3_DIR_REC_LEN(de->name_len);
    1269                 :          0 :                         rlen = ext3_rec_len_from_disk(de->rec_len);
    1270 [ #  # ][ #  # ]:          0 :                         if ((de->inode? rlen - nlen: rlen) >= reclen)
    1271                 :            :                                 break;
    1272                 :          0 :                         de = (struct ext3_dir_entry_2 *)((char *)de + rlen);
    1273                 :          0 :                         offset += rlen;
    1274                 :            :                 }
    1275         [ #  # ]:          0 :                 if ((char *) de > top)
    1276                 :            :                         return -ENOSPC;
    1277                 :            :         }
    1278                 :            :         BUFFER_TRACE(bh, "get_write_access");
    1279                 :          0 :         err = ext3_journal_get_write_access(handle, bh);
    1280         [ #  # ]:          0 :         if (err) {
    1281         [ #  # ]:          0 :                 ext3_std_error(dir->i_sb, err);
    1282                 :            :                 brelse(bh);
    1283                 :          0 :                 return err;
    1284                 :            :         }
    1285                 :            : 
    1286                 :            :         /* By now the buffer is marked for journaling */
    1287                 :          0 :         nlen = EXT3_DIR_REC_LEN(de->name_len);
    1288                 :          0 :         rlen = ext3_rec_len_from_disk(de->rec_len);
    1289         [ #  # ]:          0 :         if (de->inode) {
    1290                 :          0 :                 struct ext3_dir_entry_2 *de1 = (struct ext3_dir_entry_2 *)((char *)de + nlen);
    1291                 :          0 :                 de1->rec_len = ext3_rec_len_to_disk(rlen - nlen);
    1292                 :          0 :                 de->rec_len = ext3_rec_len_to_disk(nlen);
    1293                 :            :                 de = de1;
    1294                 :            :         }
    1295                 :          0 :         de->file_type = EXT3_FT_UNKNOWN;
    1296         [ #  # ]:          0 :         if (inode) {
    1297                 :          0 :                 de->inode = cpu_to_le32(inode->i_ino);
    1298                 :          0 :                 ext3_set_de_type(dir->i_sb, de, inode->i_mode);
    1299                 :            :         } else
    1300                 :          0 :                 de->inode = 0;
    1301                 :          0 :         de->name_len = namelen;
    1302                 :          0 :         memcpy (de->name, name, namelen);
    1303                 :            :         /*
    1304                 :            :          * XXX shouldn't update any times until successful
    1305                 :            :          * completion of syscall, but too many callers depend
    1306                 :            :          * on this.
    1307                 :            :          *
    1308                 :            :          * XXX similarly, too many callers depend on
    1309                 :            :          * ext3_new_inode() setting the times, but error
    1310                 :            :          * recovery deletes the inode, so the worst that can
    1311                 :            :          * happen is that the times are slightly out of date
    1312                 :            :          * and/or different from the directory change time.
    1313                 :            :          */
    1314                 :          0 :         dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
    1315                 :            :         ext3_update_dx_flag(dir);
    1316                 :          0 :         dir->i_version++;
    1317                 :          0 :         ext3_mark_inode_dirty(handle, dir);
    1318                 :            :         BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
    1319                 :          0 :         err = ext3_journal_dirty_metadata(handle, bh);
    1320         [ #  # ]:          0 :         if (err)
    1321         [ #  # ]:          0 :                 ext3_std_error(dir->i_sb, err);
    1322                 :            :         brelse(bh);
    1323                 :            :         return 0;
    1324                 :            : }
    1325                 :            : 
    1326                 :            : /*
    1327                 :            :  * This converts a one block unindexed directory to a 3 block indexed
    1328                 :            :  * directory, and adds the dentry to the indexed directory.
    1329                 :            :  */
    1330                 :          0 : static int make_indexed_dir(handle_t *handle, struct dentry *dentry,
    1331                 :            :                             struct inode *inode, struct buffer_head *bh)
    1332                 :            : {
    1333                 :          0 :         struct inode    *dir = dentry->d_parent->d_inode;
    1334                 :          0 :         const char      *name = dentry->d_name.name;
    1335                 :          0 :         int             namelen = dentry->d_name.len;
    1336                 :            :         struct buffer_head *bh2;
    1337                 :            :         struct dx_root  *root;
    1338                 :            :         struct dx_frame frames[2], *frame;
    1339                 :            :         struct dx_entry *entries;
    1340                 :            :         struct ext3_dir_entry_2 *de, *de2;
    1341                 :            :         char            *data1, *top;
    1342                 :            :         unsigned        len;
    1343                 :            :         int             retval;
    1344                 :            :         unsigned        blocksize;
    1345                 :            :         struct dx_hash_info hinfo;
    1346                 :            :         u32             block;
    1347                 :            :         struct fake_dirent *fde;
    1348                 :            : 
    1349                 :          0 :         blocksize =  dir->i_sb->s_blocksize;
    1350                 :            :         dxtrace(printk(KERN_DEBUG "Creating index: inode %lu\n", dir->i_ino));
    1351                 :          0 :         retval = ext3_journal_get_write_access(handle, bh);
    1352         [ #  # ]:          0 :         if (retval) {
    1353         [ #  # ]:          0 :                 ext3_std_error(dir->i_sb, retval);
    1354                 :          0 :                 brelse(bh);
    1355                 :          0 :                 return retval;
    1356                 :            :         }
    1357                 :          0 :         root = (struct dx_root *) bh->b_data;
    1358                 :            : 
    1359                 :            :         /* The 0th block becomes the root, move the dirents out */
    1360                 :          0 :         fde = &root->dotdot;
    1361                 :          0 :         de = (struct ext3_dir_entry_2 *)((char *)fde +
    1362                 :            :                         ext3_rec_len_from_disk(fde->rec_len));
    1363         [ #  # ]:          0 :         if ((char *) de >= (((char *) root) + blocksize)) {
    1364                 :          0 :                 ext3_error(dir->i_sb, __func__,
    1365                 :            :                            "invalid rec_len for '..' in inode %lu",
    1366                 :            :                            dir->i_ino);
    1367                 :          0 :                 brelse(bh);
    1368                 :            :                 return -EIO;
    1369                 :            :         }
    1370                 :          0 :         len = ((char *) root) + blocksize - (char *) de;
    1371                 :            : 
    1372                 :          0 :         bh2 = ext3_append (handle, dir, &block, &retval);
    1373         [ #  # ]:          0 :         if (!(bh2)) {
    1374                 :          0 :                 brelse(bh);
    1375                 :          0 :                 return retval;
    1376                 :            :         }
    1377                 :          0 :         EXT3_I(dir)->i_flags |= EXT3_INDEX_FL;
    1378                 :          0 :         data1 = bh2->b_data;
    1379                 :            : 
    1380                 :          0 :         memcpy (data1, de, len);
    1381                 :            :         de = (struct ext3_dir_entry_2 *) data1;
    1382                 :          0 :         top = data1 + len;
    1383         [ #  # ]:          0 :         while ((char *)(de2 = ext3_next_entry(de)) < top)
    1384                 :            :                 de = de2;
    1385                 :          0 :         de->rec_len = ext3_rec_len_to_disk(data1 + blocksize - (char *) de);
    1386                 :            :         /* Initialize the root; the dot dirents already exist */
    1387                 :            :         de = (struct ext3_dir_entry_2 *) (&root->dotdot);
    1388                 :          0 :         de->rec_len = ext3_rec_len_to_disk(blocksize - EXT3_DIR_REC_LEN(2));
    1389                 :          0 :         memset (&root->info, 0, sizeof(root->info));
    1390                 :          0 :         root->info.info_length = sizeof(root->info);
    1391                 :          0 :         root->info.hash_version = EXT3_SB(dir->i_sb)->s_def_hash_version;
    1392                 :          0 :         entries = root->entries;
    1393                 :            :         dx_set_block (entries, 1);
    1394                 :            :         dx_set_count (entries, 1);
    1395                 :            :         dx_set_limit (entries, dx_root_limit(dir, sizeof(root->info)));
    1396                 :            : 
    1397                 :            :         /* Initialize as for dx_probe */
    1398                 :          0 :         hinfo.hash_version = root->info.hash_version;
    1399         [ #  # ]:          0 :         if (hinfo.hash_version <= DX_HASH_TEA)
    1400                 :          0 :                 hinfo.hash_version += EXT3_SB(dir->i_sb)->s_hash_unsigned;
    1401                 :          0 :         hinfo.seed = EXT3_SB(dir->i_sb)->s_hash_seed;
    1402                 :          0 :         ext3fs_dirhash(name, namelen, &hinfo);
    1403                 :            :         frame = frames;
    1404                 :          0 :         frame->entries = entries;
    1405                 :          0 :         frame->at = entries;
    1406                 :          0 :         frame->bh = bh;
    1407                 :          0 :         bh = bh2;
    1408                 :            :         /*
    1409                 :            :          * Mark buffers dirty here so that if do_split() fails we write a
    1410                 :            :          * consistent set of buffers to disk.
    1411                 :            :          */
    1412                 :          0 :         ext3_journal_dirty_metadata(handle, frame->bh);
    1413                 :          0 :         ext3_journal_dirty_metadata(handle, bh);
    1414                 :          0 :         de = do_split(handle,dir, &bh, frame, &hinfo, &retval);
    1415         [ #  # ]:          0 :         if (!de) {
    1416                 :          0 :                 ext3_mark_inode_dirty(handle, dir);
    1417                 :          0 :                 dx_release(frames);
    1418                 :          0 :                 return retval;
    1419                 :            :         }
    1420                 :          0 :         dx_release(frames);
    1421                 :            : 
    1422                 :          0 :         return add_dirent_to_buf(handle, dentry, inode, de, bh);
    1423                 :            : }
    1424                 :            : 
    1425                 :            : /*
    1426                 :            :  *      ext3_add_entry()
    1427                 :            :  *
    1428                 :            :  * adds a file entry to the specified directory, using the same
    1429                 :            :  * semantics as ext3_find_entry(). It returns NULL if it failed.
    1430                 :            :  *
    1431                 :            :  * NOTE!! The inode part of 'de' is left at 0 - which means you
    1432                 :            :  * may not sleep between calling this and putting something into
    1433                 :            :  * the entry, as someone else might have used it while you slept.
    1434                 :            :  */
    1435                 :          0 : static int ext3_add_entry (handle_t *handle, struct dentry *dentry,
    1436                 :            :         struct inode *inode)
    1437                 :            : {
    1438                 :          0 :         struct inode *dir = dentry->d_parent->d_inode;
    1439                 :            :         struct buffer_head * bh;
    1440                 :            :         struct ext3_dir_entry_2 *de;
    1441                 :          0 :         struct super_block * sb;
    1442                 :            :         int     retval;
    1443                 :            :         int     dx_fallback=0;
    1444                 :            :         unsigned blocksize;
    1445                 :            :         u32 block, blocks;
    1446                 :            : 
    1447                 :          0 :         sb = dir->i_sb;
    1448                 :          0 :         blocksize = sb->s_blocksize;
    1449         [ #  # ]:          0 :         if (!dentry->d_name.len)
    1450                 :            :                 return -EINVAL;
    1451 [ #  # ][ #  # ]:          0 :         if (is_dx(dir)) {
    1452                 :          0 :                 retval = ext3_dx_add_entry(handle, dentry, inode);
    1453         [ #  # ]:          0 :                 if (!retval || (retval != ERR_BAD_DX_DIR))
    1454                 :            :                         return retval;
    1455                 :          0 :                 EXT3_I(dir)->i_flags &= ~EXT3_INDEX_FL;
    1456                 :            :                 dx_fallback++;
    1457                 :          0 :                 ext3_mark_inode_dirty(handle, dir);
    1458                 :            :         }
    1459                 :          0 :         blocks = dir->i_size >> sb->s_blocksize_bits;
    1460         [ #  # ]:          0 :         for (block = 0; block < blocks; block++) {
    1461         [ #  # ]:          0 :                 if (!(bh = ext3_dir_bread(handle, dir, block, 0, &retval)))
    1462                 :          0 :                         return retval;
    1463                 :            : 
    1464                 :          0 :                 retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
    1465         [ #  # ]:          0 :                 if (retval != -ENOSPC)
    1466                 :            :                         return retval;
    1467                 :            : 
    1468 [ #  # ][ #  # ]:          0 :                 if (blocks == 1 && !dx_fallback &&
    1469                 :          0 :                     EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_DIR_INDEX))
    1470                 :          0 :                         return make_indexed_dir(handle, dentry, inode, bh);
    1471                 :            :                 brelse(bh);
    1472                 :            :         }
    1473                 :          0 :         bh = ext3_append(handle, dir, &block, &retval);
    1474         [ #  # ]:          0 :         if (!bh)
    1475                 :          0 :                 return retval;
    1476                 :          0 :         de = (struct ext3_dir_entry_2 *) bh->b_data;
    1477                 :          0 :         de->inode = 0;
    1478                 :          0 :         de->rec_len = ext3_rec_len_to_disk(blocksize);
    1479                 :          0 :         return add_dirent_to_buf(handle, dentry, inode, de, bh);
    1480                 :            : }
    1481                 :            : 
    1482                 :            : /*
    1483                 :            :  * Returns 0 for success, or a negative error value
    1484                 :            :  */
    1485                 :          0 : static int ext3_dx_add_entry(handle_t *handle, struct dentry *dentry,
    1486                 :            :                              struct inode *inode)
    1487                 :            : {
    1488                 :            :         struct dx_frame frames[2], *frame;
    1489                 :            :         struct dx_entry *entries, *at;
    1490                 :            :         struct dx_hash_info hinfo;
    1491                 :            :         struct buffer_head * bh;
    1492                 :          0 :         struct inode *dir = dentry->d_parent->d_inode;
    1493                 :          0 :         struct super_block * sb = dir->i_sb;
    1494                 :            :         struct ext3_dir_entry_2 *de;
    1495                 :            :         int err;
    1496                 :            : 
    1497                 :          0 :         frame = dx_probe(&dentry->d_name, dir, &hinfo, frames, &err);
    1498         [ #  # ]:          0 :         if (!frame)
    1499                 :          0 :                 return err;
    1500                 :          0 :         entries = frame->entries;
    1501                 :          0 :         at = frame->at;
    1502                 :            : 
    1503         [ #  # ]:          0 :         if (!(bh = ext3_dir_bread(handle, dir, dx_get_block(frame->at), 0, &err)))
    1504                 :            :                 goto cleanup;
    1505                 :            : 
    1506                 :            :         BUFFER_TRACE(bh, "get_write_access");
    1507                 :          0 :         err = ext3_journal_get_write_access(handle, bh);
    1508         [ #  # ]:          0 :         if (err)
    1509                 :            :                 goto journal_error;
    1510                 :            : 
    1511                 :          0 :         err = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
    1512         [ #  # ]:          0 :         if (err != -ENOSPC) {
    1513                 :          0 :                 bh = NULL;
    1514                 :          0 :                 goto cleanup;
    1515                 :            :         }
    1516                 :            : 
    1517                 :            :         /* Block full, should compress but for now just split */
    1518                 :            :         dxtrace(printk("using %u of %u node entries\n",
    1519                 :            :                        dx_get_count(entries), dx_get_limit(entries)));
    1520                 :            :         /* Need to split index? */
    1521         [ #  # ]:          0 :         if (dx_get_count(entries) == dx_get_limit(entries)) {
    1522                 :            :                 u32 newblock;
    1523                 :            :                 unsigned icount = dx_get_count(entries);
    1524                 :          0 :                 int levels = frame - frames;
    1525                 :            :                 struct dx_entry *entries2;
    1526                 :            :                 struct dx_node *node2;
    1527                 :            :                 struct buffer_head *bh2;
    1528                 :            : 
    1529 [ #  # ][ #  # ]:          0 :                 if (levels && (dx_get_count(frames->entries) ==
    1530                 :            :                                dx_get_limit(frames->entries))) {
    1531                 :          0 :                         ext3_warning(sb, __func__,
    1532                 :            :                                      "Directory index full!");
    1533                 :          0 :                         err = -ENOSPC;
    1534                 :          0 :                         goto cleanup;
    1535                 :            :                 }
    1536                 :          0 :                 bh2 = ext3_append (handle, dir, &newblock, &err);
    1537         [ #  # ]:          0 :                 if (!(bh2))
    1538                 :            :                         goto cleanup;
    1539                 :          0 :                 node2 = (struct dx_node *)(bh2->b_data);
    1540                 :          0 :                 entries2 = node2->entries;
    1541                 :          0 :                 memset(&node2->fake, 0, sizeof(struct fake_dirent));
    1542                 :          0 :                 node2->fake.rec_len = ext3_rec_len_to_disk(sb->s_blocksize);
    1543                 :            :                 BUFFER_TRACE(frame->bh, "get_write_access");
    1544                 :          0 :                 err = ext3_journal_get_write_access(handle, frame->bh);
    1545         [ #  # ]:          0 :                 if (err)
    1546                 :            :                         goto journal_error;
    1547         [ #  # ]:          0 :                 if (levels) {
    1548                 :          0 :                         unsigned icount1 = icount/2, icount2 = icount - icount1;
    1549                 :          0 :                         unsigned hash2 = dx_get_hash(entries + icount1);
    1550                 :            :                         dxtrace(printk("Split index %i/%i\n", icount1, icount2));
    1551                 :            : 
    1552                 :            :                         BUFFER_TRACE(frame->bh, "get_write_access"); /* index root */
    1553                 :          0 :                         err = ext3_journal_get_write_access(handle,
    1554                 :            :                                                              frames[0].bh);
    1555         [ #  # ]:          0 :                         if (err)
    1556                 :            :                                 goto journal_error;
    1557                 :            : 
    1558                 :          0 :                         memcpy ((char *) entries2, (char *) (entries + icount1),
    1559                 :            :                                 icount2 * sizeof(struct dx_entry));
    1560                 :            :                         dx_set_count (entries, icount1);
    1561                 :            :                         dx_set_count (entries2, icount2);
    1562                 :            :                         dx_set_limit (entries2, dx_node_limit(dir));
    1563                 :            : 
    1564                 :            :                         /* Which index block gets the new entry? */
    1565         [ #  # ]:          0 :                         if (at - entries >= icount1) {
    1566                 :          0 :                                 frame->at = at = at - entries - icount1 + entries2;
    1567                 :          0 :                                 frame->entries = entries = entries2;
    1568                 :          0 :                                 swap(frame->bh, bh2);
    1569                 :            :                         }
    1570                 :          0 :                         dx_insert_block (frames + 0, hash2, newblock);
    1571                 :            :                         dxtrace(dx_show_index ("node", frames[1].entries));
    1572                 :            :                         dxtrace(dx_show_index ("node",
    1573                 :            :                                ((struct dx_node *) bh2->b_data)->entries));
    1574                 :          0 :                         err = ext3_journal_dirty_metadata(handle, bh2);
    1575         [ #  # ]:          0 :                         if (err)
    1576                 :            :                                 goto journal_error;
    1577                 :            :                         brelse (bh2);
    1578                 :            :                 } else {
    1579                 :            :                         dxtrace(printk("Creating second level index...\n"));
    1580                 :          0 :                         memcpy((char *) entries2, (char *) entries,
    1581                 :            :                                icount * sizeof(struct dx_entry));
    1582                 :            :                         dx_set_limit(entries2, dx_node_limit(dir));
    1583                 :            : 
    1584                 :            :                         /* Set up root */
    1585                 :            :                         dx_set_count(entries, 1);
    1586                 :          0 :                         dx_set_block(entries + 0, newblock);
    1587                 :          0 :                         ((struct dx_root *) frames[0].bh->b_data)->info.indirect_levels = 1;
    1588                 :            : 
    1589                 :            :                         /* Add new access path frame */
    1590                 :            :                         frame = frames + 1;
    1591                 :          0 :                         frame->at = at = at - entries + entries2;
    1592                 :          0 :                         frame->entries = entries = entries2;
    1593                 :          0 :                         frame->bh = bh2;
    1594                 :          0 :                         err = ext3_journal_get_write_access(handle,
    1595                 :            :                                                              frame->bh);
    1596         [ #  # ]:          0 :                         if (err)
    1597                 :            :                                 goto journal_error;
    1598                 :            :                 }
    1599                 :          0 :                 err = ext3_journal_dirty_metadata(handle, frames[0].bh);
    1600         [ #  # ]:          0 :                 if (err)
    1601                 :            :                         goto journal_error;
    1602                 :            :         }
    1603                 :          0 :         de = do_split(handle, dir, &bh, frame, &hinfo, &err);
    1604         [ #  # ]:          0 :         if (!de)
    1605                 :            :                 goto cleanup;
    1606                 :          0 :         err = add_dirent_to_buf(handle, dentry, inode, de, bh);
    1607                 :          0 :         bh = NULL;
    1608                 :          0 :         goto cleanup;
    1609                 :            : 
    1610                 :            : journal_error:
    1611         [ #  # ]:          0 :         ext3_std_error(dir->i_sb, err);
    1612                 :            : cleanup:
    1613         [ #  # ]:          0 :         if (bh)
    1614                 :            :                 brelse(bh);
    1615                 :          0 :         dx_release(frames);
    1616                 :          0 :         return err;
    1617                 :            : }
    1618                 :            : 
    1619                 :            : /*
    1620                 :            :  * ext3_delete_entry deletes a directory entry by merging it with the
    1621                 :            :  * previous entry
    1622                 :            :  */
    1623                 :          0 : static int ext3_delete_entry (handle_t *handle,
    1624                 :            :                               struct inode * dir,
    1625                 :            :                               struct ext3_dir_entry_2 * de_del,
    1626                 :            :                               struct buffer_head * bh)
    1627                 :            : {
    1628                 :            :         struct ext3_dir_entry_2 * de, * pde;
    1629                 :            :         int i;
    1630                 :            : 
    1631                 :            :         i = 0;
    1632                 :            :         pde = NULL;
    1633                 :          0 :         de = (struct ext3_dir_entry_2 *) bh->b_data;
    1634         [ #  # ]:          0 :         while (i < bh->b_size) {
    1635         [ #  # ]:          0 :                 if (!ext3_check_dir_entry("ext3_delete_entry", dir, de, bh, i))
    1636                 :            :                         return -EIO;
    1637         [ #  # ]:          0 :                 if (de == de_del)  {
    1638                 :            :                         int err;
    1639                 :            : 
    1640                 :            :                         BUFFER_TRACE(bh, "get_write_access");
    1641                 :          0 :                         err = ext3_journal_get_write_access(handle, bh);
    1642         [ #  # ]:          0 :                         if (err)
    1643                 :            :                                 goto journal_error;
    1644                 :            : 
    1645         [ #  # ]:          0 :                         if (pde)
    1646                 :          0 :                                 pde->rec_len = ext3_rec_len_to_disk(
    1647                 :          0 :                                         ext3_rec_len_from_disk(pde->rec_len) +
    1648                 :          0 :                                         ext3_rec_len_from_disk(de->rec_len));
    1649                 :            :                         else
    1650                 :          0 :                                 de->inode = 0;
    1651                 :          0 :                         dir->i_version++;
    1652                 :            :                         BUFFER_TRACE(bh, "call ext3_journal_dirty_metadata");
    1653                 :          0 :                         err = ext3_journal_dirty_metadata(handle, bh);
    1654         [ #  # ]:          0 :                         if (err) {
    1655                 :            : journal_error:
    1656         [ #  # ]:          0 :                                 ext3_std_error(dir->i_sb, err);
    1657                 :          0 :                                 return err;
    1658                 :            :                         }
    1659                 :            :                         return 0;
    1660                 :            :                 }
    1661                 :          0 :                 i += ext3_rec_len_from_disk(de->rec_len);
    1662                 :            :                 pde = de;
    1663                 :            :                 de = ext3_next_entry(de);
    1664                 :            :         }
    1665                 :            :         return -ENOENT;
    1666                 :            : }
    1667                 :            : 
    1668                 :          0 : static int ext3_add_nondir(handle_t *handle,
    1669                 :            :                 struct dentry *dentry, struct inode *inode)
    1670                 :            : {
    1671                 :          0 :         int err = ext3_add_entry(handle, dentry, inode);
    1672         [ #  # ]:          0 :         if (!err) {
    1673                 :          0 :                 ext3_mark_inode_dirty(handle, inode);
    1674                 :          0 :                 unlock_new_inode(inode);
    1675                 :          0 :                 d_instantiate(dentry, inode);
    1676                 :          0 :                 return 0;
    1677                 :            :         }
    1678                 :          0 :         drop_nlink(inode);
    1679                 :          0 :         unlock_new_inode(inode);
    1680                 :          0 :         iput(inode);
    1681                 :          0 :         return err;
    1682                 :            : }
    1683                 :            : 
    1684                 :            : /*
    1685                 :            :  * By the time this is called, we already have created
    1686                 :            :  * the directory cache entry for the new file, but it
    1687                 :            :  * is so far negative - it has no inode.
    1688                 :            :  *
    1689                 :            :  * If the create succeeds, we fill in the inode information
    1690                 :            :  * with d_instantiate().
    1691                 :            :  */
    1692                 :          0 : static int ext3_create (struct inode * dir, struct dentry * dentry, umode_t mode,
    1693                 :            :                 bool excl)
    1694                 :            : {
    1695                 :            :         handle_t *handle;
    1696                 :            :         struct inode * inode;
    1697                 :          0 :         int err, retries = 0;
    1698                 :            : 
    1699                 :          0 :         dquot_initialize(dir);
    1700                 :            : 
    1701                 :            : retry:
    1702                 :          0 :         handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
    1703         [ #  # ]:          0 :                                         EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
    1704         [ #  # ]:          0 :                                         EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
    1705         [ #  # ]:          0 :         if (IS_ERR(handle))
    1706                 :          0 :                 return PTR_ERR(handle);
    1707                 :            : 
    1708 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    1709                 :          0 :                 handle->h_sync = 1;
    1710                 :            : 
    1711                 :          0 :         inode = ext3_new_inode (handle, dir, &dentry->d_name, mode);
    1712                 :            :         err = PTR_ERR(inode);
    1713         [ #  # ]:          0 :         if (!IS_ERR(inode)) {
    1714                 :          0 :                 inode->i_op = &ext3_file_inode_operations;
    1715                 :          0 :                 inode->i_fop = &ext3_file_operations;
    1716                 :          0 :                 ext3_set_aops(inode);
    1717                 :          0 :                 err = ext3_add_nondir(handle, dentry, inode);
    1718                 :            :         }
    1719                 :          0 :         ext3_journal_stop(handle);
    1720 [ #  # ][ #  # ]:          0 :         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
    1721                 :            :                 goto retry;
    1722                 :          0 :         return err;
    1723                 :            : }
    1724                 :            : 
    1725                 :          0 : static int ext3_mknod (struct inode * dir, struct dentry *dentry,
    1726                 :            :                         umode_t mode, dev_t rdev)
    1727                 :            : {
    1728                 :            :         handle_t *handle;
    1729                 :            :         struct inode *inode;
    1730                 :          0 :         int err, retries = 0;
    1731                 :            : 
    1732                 :            :         if (!new_valid_dev(rdev))
    1733                 :            :                 return -EINVAL;
    1734                 :            : 
    1735                 :          0 :         dquot_initialize(dir);
    1736                 :            : 
    1737                 :            : retry:
    1738                 :          0 :         handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
    1739         [ #  # ]:          0 :                                         EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
    1740         [ #  # ]:          0 :                                         EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
    1741         [ #  # ]:          0 :         if (IS_ERR(handle))
    1742                 :          0 :                 return PTR_ERR(handle);
    1743                 :            : 
    1744 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    1745                 :          0 :                 handle->h_sync = 1;
    1746                 :            : 
    1747                 :          0 :         inode = ext3_new_inode (handle, dir, &dentry->d_name, mode);
    1748                 :            :         err = PTR_ERR(inode);
    1749         [ #  # ]:          0 :         if (!IS_ERR(inode)) {
    1750                 :          0 :                 init_special_inode(inode, inode->i_mode, rdev);
    1751                 :            : #ifdef CONFIG_EXT3_FS_XATTR
    1752                 :          0 :                 inode->i_op = &ext3_special_inode_operations;
    1753                 :            : #endif
    1754                 :          0 :                 err = ext3_add_nondir(handle, dentry, inode);
    1755                 :            :         }
    1756                 :          0 :         ext3_journal_stop(handle);
    1757 [ #  # ][ #  # ]:          0 :         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
    1758                 :            :                 goto retry;
    1759                 :          0 :         return err;
    1760                 :            : }
    1761                 :            : 
    1762                 :          0 : static int ext3_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
    1763                 :            : {
    1764                 :            :         handle_t *handle;
    1765                 :            :         struct inode *inode;
    1766                 :          0 :         int err, retries = 0;
    1767                 :            : 
    1768                 :          0 :         dquot_initialize(dir);
    1769                 :            : 
    1770                 :            : retry:
    1771         [ #  # ]:          0 :         handle = ext3_journal_start(dir, EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
    1772                 :            :                           4 + EXT3_XATTR_TRANS_BLOCKS);
    1773                 :            : 
    1774         [ #  # ]:          0 :         if (IS_ERR(handle))
    1775                 :          0 :                 return PTR_ERR(handle);
    1776                 :            : 
    1777                 :          0 :         inode = ext3_new_inode (handle, dir, NULL, mode);
    1778                 :            :         err = PTR_ERR(inode);
    1779         [ #  # ]:          0 :         if (!IS_ERR(inode)) {
    1780                 :          0 :                 inode->i_op = &ext3_file_inode_operations;
    1781                 :          0 :                 inode->i_fop = &ext3_file_operations;
    1782                 :          0 :                 ext3_set_aops(inode);
    1783                 :          0 :                 d_tmpfile(dentry, inode);
    1784                 :          0 :                 err = ext3_orphan_add(handle, inode);
    1785         [ #  # ]:          0 :                 if (err)
    1786                 :            :                         goto err_unlock_inode;
    1787                 :            :                 mark_inode_dirty(inode);
    1788                 :          0 :                 unlock_new_inode(inode);
    1789                 :            :         }
    1790                 :          0 :         ext3_journal_stop(handle);
    1791 [ #  # ][ #  # ]:          0 :         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
    1792                 :            :                 goto retry;
    1793                 :          0 :         return err;
    1794                 :            : err_unlock_inode:
    1795                 :          0 :         ext3_journal_stop(handle);
    1796                 :          0 :         unlock_new_inode(inode);
    1797                 :          0 :         return err;
    1798                 :            : }
    1799                 :            : 
    1800                 :          0 : static int ext3_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
    1801                 :            : {
    1802                 :            :         handle_t *handle;
    1803                 :            :         struct inode * inode;
    1804                 :            :         struct buffer_head * dir_block = NULL;
    1805                 :            :         struct ext3_dir_entry_2 * de;
    1806                 :          0 :         int err, retries = 0;
    1807                 :            : 
    1808         [ #  # ]:          0 :         if (dir->i_nlink >= EXT3_LINK_MAX)
    1809                 :            :                 return -EMLINK;
    1810                 :            : 
    1811                 :          0 :         dquot_initialize(dir);
    1812                 :            : 
    1813                 :            : retry:
    1814                 :          0 :         handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
    1815         [ #  # ]:          0 :                                         EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
    1816         [ #  # ]:          0 :                                         EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb));
    1817         [ #  # ]:          0 :         if (IS_ERR(handle))
    1818                 :          0 :                 return PTR_ERR(handle);
    1819                 :            : 
    1820 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    1821                 :          0 :                 handle->h_sync = 1;
    1822                 :            : 
    1823                 :          0 :         inode = ext3_new_inode (handle, dir, &dentry->d_name, S_IFDIR | mode);
    1824                 :          0 :         err = PTR_ERR(inode);
    1825         [ #  # ]:          0 :         if (IS_ERR(inode))
    1826                 :            :                 goto out_stop;
    1827                 :            : 
    1828                 :          0 :         inode->i_op = &ext3_dir_inode_operations;
    1829                 :          0 :         inode->i_fop = &ext3_dir_operations;
    1830                 :          0 :         inode->i_size = EXT3_I(inode)->i_disksize = inode->i_sb->s_blocksize;
    1831         [ #  # ]:          0 :         if (!(dir_block = ext3_dir_bread(handle, inode, 0, 1, &err)))
    1832                 :            :                 goto out_clear_inode;
    1833                 :            : 
    1834                 :            :         BUFFER_TRACE(dir_block, "get_write_access");
    1835                 :          0 :         err = ext3_journal_get_write_access(handle, dir_block);
    1836         [ #  # ]:          0 :         if (err)
    1837                 :            :                 goto out_clear_inode;
    1838                 :            : 
    1839                 :          0 :         de = (struct ext3_dir_entry_2 *) dir_block->b_data;
    1840                 :          0 :         de->inode = cpu_to_le32(inode->i_ino);
    1841                 :          0 :         de->name_len = 1;
    1842                 :          0 :         de->rec_len = ext3_rec_len_to_disk(EXT3_DIR_REC_LEN(de->name_len));
    1843                 :          0 :         strcpy (de->name, ".");
    1844                 :          0 :         ext3_set_de_type(dir->i_sb, de, S_IFDIR);
    1845                 :            :         de = ext3_next_entry(de);
    1846                 :          0 :         de->inode = cpu_to_le32(dir->i_ino);
    1847                 :          0 :         de->rec_len = ext3_rec_len_to_disk(inode->i_sb->s_blocksize -
    1848                 :            :                                         EXT3_DIR_REC_LEN(1));
    1849                 :          0 :         de->name_len = 2;
    1850                 :          0 :         strcpy (de->name, "..");
    1851                 :          0 :         ext3_set_de_type(dir->i_sb, de, S_IFDIR);
    1852                 :          0 :         set_nlink(inode, 2);
    1853                 :            :         BUFFER_TRACE(dir_block, "call ext3_journal_dirty_metadata");
    1854                 :          0 :         err = ext3_journal_dirty_metadata(handle, dir_block);
    1855         [ #  # ]:          0 :         if (err)
    1856                 :            :                 goto out_clear_inode;
    1857                 :            : 
    1858                 :          0 :         err = ext3_mark_inode_dirty(handle, inode);
    1859         [ #  # ]:          0 :         if (!err)
    1860                 :          0 :                 err = ext3_add_entry (handle, dentry, inode);
    1861                 :            : 
    1862         [ #  # ]:          0 :         if (err) {
    1863                 :            : out_clear_inode:
    1864                 :          0 :                 clear_nlink(inode);
    1865                 :          0 :                 unlock_new_inode(inode);
    1866                 :          0 :                 ext3_mark_inode_dirty(handle, inode);
    1867                 :          0 :                 iput (inode);
    1868                 :          0 :                 goto out_stop;
    1869                 :            :         }
    1870                 :          0 :         inc_nlink(dir);
    1871                 :            :         ext3_update_dx_flag(dir);
    1872                 :          0 :         err = ext3_mark_inode_dirty(handle, dir);
    1873         [ #  # ]:          0 :         if (err)
    1874                 :            :                 goto out_clear_inode;
    1875                 :            : 
    1876                 :          0 :         unlock_new_inode(inode);
    1877                 :          0 :         d_instantiate(dentry, inode);
    1878                 :            : out_stop:
    1879                 :            :         brelse(dir_block);
    1880                 :          0 :         ext3_journal_stop(handle);
    1881 [ #  # ][ #  # ]:          0 :         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
    1882                 :            :                 goto retry;
    1883                 :          0 :         return err;
    1884                 :            : }
    1885                 :            : 
    1886                 :            : /*
    1887                 :            :  * routine to check that the specified directory is empty (for rmdir)
    1888                 :            :  */
    1889                 :          0 : static int empty_dir (struct inode * inode)
    1890                 :            : {
    1891                 :            :         unsigned long offset;
    1892                 :            :         struct buffer_head * bh;
    1893                 :            :         struct ext3_dir_entry_2 * de, * de1;
    1894                 :            :         struct super_block * sb;
    1895                 :          0 :         int err = 0;
    1896                 :            : 
    1897                 :          0 :         sb = inode->i_sb;
    1898 [ #  # ][ #  # ]:          0 :         if (inode->i_size < EXT3_DIR_REC_LEN(1) + EXT3_DIR_REC_LEN(2) ||
    1899                 :            :             !(bh = ext3_dir_bread(NULL, inode, 0, 0, &err))) {
    1900         [ #  # ]:          0 :                 if (err)
    1901                 :          0 :                         ext3_error(inode->i_sb, __func__,
    1902                 :            :                                    "error %d reading directory #%lu offset 0",
    1903                 :            :                                    err, inode->i_ino);
    1904                 :            :                 else
    1905                 :          0 :                         ext3_warning(inode->i_sb, __func__,
    1906                 :            :                                      "bad directory (dir #%lu) - no data block",
    1907                 :            :                                      inode->i_ino);
    1908                 :            :                 return 1;
    1909                 :            :         }
    1910                 :          0 :         de = (struct ext3_dir_entry_2 *) bh->b_data;
    1911                 :            :         de1 = ext3_next_entry(de);
    1912 [ #  # ][ #  # ]:          0 :         if (le32_to_cpu(de->inode) != inode->i_ino ||
    1913         [ #  # ]:          0 :                         !le32_to_cpu(de1->inode) ||
    1914         [ #  # ]:          0 :                         strcmp (".", de->name) ||
    1915                 :          0 :                         strcmp ("..", de1->name)) {
    1916                 :          0 :                 ext3_warning (inode->i_sb, "empty_dir",
    1917                 :            :                               "bad directory (dir #%lu) - no `.' or `..'",
    1918                 :            :                               inode->i_ino);
    1919                 :            :                 brelse (bh);
    1920                 :            :                 return 1;
    1921                 :            :         }
    1922                 :          0 :         offset = ext3_rec_len_from_disk(de->rec_len) +
    1923                 :          0 :                         ext3_rec_len_from_disk(de1->rec_len);
    1924                 :            :         de = ext3_next_entry(de1);
    1925         [ #  # ]:          0 :         while (offset < inode->i_size ) {
    1926 [ #  # ][ #  # ]:          0 :                 if (!bh ||
    1927                 :          0 :                         (void *) de >= (void *) (bh->b_data+sb->s_blocksize)) {
    1928                 :          0 :                         err = 0;
    1929                 :            :                         brelse (bh);
    1930         [ #  # ]:          0 :                         if (!(bh = ext3_dir_bread (NULL, inode,
    1931                 :          0 :                                 offset >> EXT3_BLOCK_SIZE_BITS(sb), 0, &err))) {
    1932         [ #  # ]:          0 :                                 if (err)
    1933                 :          0 :                                         ext3_error(sb, __func__,
    1934                 :            :                                                    "error %d reading directory"
    1935                 :            :                                                    " #%lu offset %lu",
    1936                 :            :                                                    err, inode->i_ino, offset);
    1937                 :          0 :                                 offset += sb->s_blocksize;
    1938                 :          0 :                                 continue;
    1939                 :            :                         }
    1940                 :          0 :                         de = (struct ext3_dir_entry_2 *) bh->b_data;
    1941                 :            :                 }
    1942         [ #  # ]:          0 :                 if (!ext3_check_dir_entry("empty_dir", inode, de, bh, offset)) {
    1943                 :          0 :                         de = (struct ext3_dir_entry_2 *)(bh->b_data +
    1944                 :            :                                                          sb->s_blocksize);
    1945                 :          0 :                         offset = (offset | (sb->s_blocksize - 1)) + 1;
    1946                 :          0 :                         continue;
    1947                 :            :                 }
    1948         [ #  # ]:          0 :                 if (le32_to_cpu(de->inode)) {
    1949                 :            :                         brelse (bh);
    1950                 :            :                         return 0;
    1951                 :            :                 }
    1952                 :          0 :                 offset += ext3_rec_len_from_disk(de->rec_len);
    1953                 :            :                 de = ext3_next_entry(de);
    1954                 :            :         }
    1955                 :            :         brelse (bh);
    1956                 :            :         return 1;
    1957                 :            : }
    1958                 :            : 
    1959                 :            : /* ext3_orphan_add() links an unlinked or truncated inode into a list of
    1960                 :            :  * such inodes, starting at the superblock, in case we crash before the
    1961                 :            :  * file is closed/deleted, or in case the inode truncate spans multiple
    1962                 :            :  * transactions and the last transaction is not recovered after a crash.
    1963                 :            :  *
    1964                 :            :  * At filesystem recovery time, we walk this list deleting unlinked
    1965                 :            :  * inodes and truncating linked inodes in ext3_orphan_cleanup().
    1966                 :            :  */
    1967                 :          0 : int ext3_orphan_add(handle_t *handle, struct inode *inode)
    1968                 :            : {
    1969                 :          0 :         struct super_block *sb = inode->i_sb;
    1970                 :            :         struct ext3_iloc iloc;
    1971                 :            :         int err = 0, rc;
    1972                 :            : 
    1973                 :          0 :         mutex_lock(&EXT3_SB(sb)->s_orphan_lock);
    1974         [ #  # ]:          0 :         if (!list_empty(&EXT3_I(inode)->i_orphan))
    1975                 :            :                 goto out_unlock;
    1976                 :            : 
    1977                 :            :         /* Orphan handling is only valid for files with data blocks
    1978                 :            :          * being truncated, or files being unlinked. */
    1979                 :            : 
    1980                 :            :         /* @@@ FIXME: Observation from aviro:
    1981                 :            :          * I think I can trigger J_ASSERT in ext3_orphan_add().  We block
    1982                 :            :          * here (on s_orphan_lock), so race with ext3_link() which might bump
    1983                 :            :          * ->i_nlink. For, say it, character device. Not a regular file,
    1984                 :            :          * not a directory, not a symlink and ->i_nlink > 0.
    1985                 :            :          *
    1986                 :            :          * tytso, 4/25/2009: I'm not sure how that could happen;
    1987                 :            :          * shouldn't the fs core protect us from these sort of
    1988                 :            :          * unlink()/link() races?
    1989                 :            :          */
    1990 [ #  # ][ #  # ]:          0 :         J_ASSERT ((S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
         [ #  # ][ #  # ]
    1991                 :            :                 S_ISLNK(inode->i_mode)) || inode->i_nlink == 0);
    1992                 :            : 
    1993                 :            :         BUFFER_TRACE(EXT3_SB(sb)->s_sbh, "get_write_access");
    1994                 :          0 :         err = ext3_journal_get_write_access(handle, EXT3_SB(sb)->s_sbh);
    1995         [ #  # ]:          0 :         if (err)
    1996                 :            :                 goto out_unlock;
    1997                 :            : 
    1998                 :          0 :         err = ext3_reserve_inode_write(handle, inode, &iloc);
    1999         [ #  # ]:          0 :         if (err)
    2000                 :            :                 goto out_unlock;
    2001                 :            : 
    2002                 :            :         /* Insert this inode at the head of the on-disk orphan list... */
    2003                 :          0 :         NEXT_ORPHAN(inode) = le32_to_cpu(EXT3_SB(sb)->s_es->s_last_orphan);
    2004                 :          0 :         EXT3_SB(sb)->s_es->s_last_orphan = cpu_to_le32(inode->i_ino);
    2005                 :          0 :         err = ext3_journal_dirty_metadata(handle, EXT3_SB(sb)->s_sbh);
    2006                 :          0 :         rc = ext3_mark_iloc_dirty(handle, inode, &iloc);
    2007         [ #  # ]:          0 :         if (!err)
    2008                 :            :                 err = rc;
    2009                 :            : 
    2010                 :            :         /* Only add to the head of the in-memory list if all the
    2011                 :            :          * previous operations succeeded.  If the orphan_add is going to
    2012                 :            :          * fail (possibly taking the journal offline), we can't risk
    2013                 :            :          * leaving the inode on the orphan list: stray orphan-list
    2014                 :            :          * entries can cause panics at unmount time.
    2015                 :            :          *
    2016                 :            :          * This is safe: on error we're going to ignore the orphan list
    2017                 :            :          * anyway on the next recovery. */
    2018         [ #  # ]:          0 :         if (!err)
    2019                 :          0 :                 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
    2020                 :            : 
    2021                 :            :         jbd_debug(4, "superblock will point to %lu\n", inode->i_ino);
    2022                 :            :         jbd_debug(4, "orphan inode %lu will point to %d\n",
    2023                 :            :                         inode->i_ino, NEXT_ORPHAN(inode));
    2024                 :            : out_unlock:
    2025                 :          0 :         mutex_unlock(&EXT3_SB(sb)->s_orphan_lock);
    2026         [ #  # ]:          0 :         ext3_std_error(inode->i_sb, err);
    2027                 :          0 :         return err;
    2028                 :            : }
    2029                 :            : 
    2030                 :            : /*
    2031                 :            :  * ext3_orphan_del() removes an unlinked or truncated inode from the list
    2032                 :            :  * of such inodes stored on disk, because it is finally being cleaned up.
    2033                 :            :  */
    2034                 :          0 : int ext3_orphan_del(handle_t *handle, struct inode *inode)
    2035                 :            : {
    2036                 :            :         struct list_head *prev;
    2037                 :            :         struct ext3_inode_info *ei = EXT3_I(inode);
    2038                 :            :         struct ext3_sb_info *sbi;
    2039                 :            :         unsigned long ino_next;
    2040                 :            :         struct ext3_iloc iloc;
    2041                 :            :         int err = 0;
    2042                 :            : 
    2043                 :          0 :         mutex_lock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
    2044         [ #  # ]:          0 :         if (list_empty(&ei->i_orphan))
    2045                 :            :                 goto out;
    2046                 :            : 
    2047                 :          0 :         ino_next = NEXT_ORPHAN(inode);
    2048                 :          0 :         prev = ei->i_orphan.prev;
    2049                 :          0 :         sbi = EXT3_SB(inode->i_sb);
    2050                 :            : 
    2051                 :            :         jbd_debug(4, "remove inode %lu from orphan list\n", inode->i_ino);
    2052                 :            : 
    2053                 :            :         list_del_init(&ei->i_orphan);
    2054                 :            : 
    2055                 :            :         /* If we're on an error path, we may not have a valid
    2056                 :            :          * transaction handle with which to update the orphan list on
    2057                 :            :          * disk, but we still need to remove the inode from the linked
    2058                 :            :          * list in memory. */
    2059         [ #  # ]:          0 :         if (!handle)
    2060                 :            :                 goto out;
    2061                 :            : 
    2062                 :          0 :         err = ext3_reserve_inode_write(handle, inode, &iloc);
    2063         [ #  # ]:          0 :         if (err)
    2064                 :            :                 goto out_err;
    2065                 :            : 
    2066         [ #  # ]:          0 :         if (prev == &sbi->s_orphan) {
    2067                 :            :                 jbd_debug(4, "superblock will point to %lu\n", ino_next);
    2068                 :            :                 BUFFER_TRACE(sbi->s_sbh, "get_write_access");
    2069                 :          0 :                 err = ext3_journal_get_write_access(handle, sbi->s_sbh);
    2070         [ #  # ]:          0 :                 if (err)
    2071                 :            :                         goto out_brelse;
    2072                 :          0 :                 sbi->s_es->s_last_orphan = cpu_to_le32(ino_next);
    2073                 :          0 :                 err = ext3_journal_dirty_metadata(handle, sbi->s_sbh);
    2074                 :            :         } else {
    2075                 :            :                 struct ext3_iloc iloc2;
    2076                 :          0 :                 struct inode *i_prev =
    2077                 :            :                         &list_entry(prev, struct ext3_inode_info, i_orphan)->vfs_inode;
    2078                 :            : 
    2079                 :            :                 jbd_debug(4, "orphan inode %lu will point to %lu\n",
    2080                 :            :                           i_prev->i_ino, ino_next);
    2081                 :          0 :                 err = ext3_reserve_inode_write(handle, i_prev, &iloc2);
    2082         [ #  # ]:          0 :                 if (err)
    2083                 :            :                         goto out_brelse;
    2084                 :          0 :                 NEXT_ORPHAN(i_prev) = ino_next;
    2085                 :          0 :                 err = ext3_mark_iloc_dirty(handle, i_prev, &iloc2);
    2086                 :            :         }
    2087         [ #  # ]:          0 :         if (err)
    2088                 :            :                 goto out_brelse;
    2089                 :          0 :         NEXT_ORPHAN(inode) = 0;
    2090                 :          0 :         err = ext3_mark_iloc_dirty(handle, inode, &iloc);
    2091                 :            : 
    2092                 :            : out_err:
    2093         [ #  # ]:          0 :         ext3_std_error(inode->i_sb, err);
    2094                 :            : out:
    2095                 :          0 :         mutex_unlock(&EXT3_SB(inode->i_sb)->s_orphan_lock);
    2096                 :          0 :         return err;
    2097                 :            : 
    2098                 :            : out_brelse:
    2099                 :          0 :         brelse(iloc.bh);
    2100                 :            :         goto out_err;
    2101                 :            : }
    2102                 :            : 
    2103                 :          0 : static int ext3_rmdir (struct inode * dir, struct dentry *dentry)
    2104                 :            : {
    2105                 :            :         int retval;
    2106                 :            :         struct inode * inode;
    2107                 :            :         struct buffer_head * bh;
    2108                 :            :         struct ext3_dir_entry_2 * de;
    2109                 :            :         handle_t *handle;
    2110                 :            : 
    2111                 :            :         /* Initialize quotas before so that eventual writes go in
    2112                 :            :          * separate transaction */
    2113                 :          0 :         dquot_initialize(dir);
    2114                 :          0 :         dquot_initialize(dentry->d_inode);
    2115                 :            : 
    2116         [ #  # ]:          0 :         handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
    2117         [ #  # ]:          0 :         if (IS_ERR(handle))
    2118                 :          0 :                 return PTR_ERR(handle);
    2119                 :            : 
    2120                 :            :         retval = -ENOENT;
    2121                 :          0 :         bh = ext3_find_entry(dir, &dentry->d_name, &de);
    2122         [ #  # ]:          0 :         if (!bh)
    2123                 :            :                 goto end_rmdir;
    2124                 :            : 
    2125 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    2126                 :          0 :                 handle->h_sync = 1;
    2127                 :            : 
    2128                 :          0 :         inode = dentry->d_inode;
    2129                 :            : 
    2130                 :            :         retval = -EIO;
    2131         [ #  # ]:          0 :         if (le32_to_cpu(de->inode) != inode->i_ino)
    2132                 :            :                 goto end_rmdir;
    2133                 :            : 
    2134                 :            :         retval = -ENOTEMPTY;
    2135         [ #  # ]:          0 :         if (!empty_dir (inode))
    2136                 :            :                 goto end_rmdir;
    2137                 :            : 
    2138                 :          0 :         retval = ext3_delete_entry(handle, dir, de, bh);
    2139         [ #  # ]:          0 :         if (retval)
    2140                 :            :                 goto end_rmdir;
    2141         [ #  # ]:          0 :         if (inode->i_nlink != 2)
    2142                 :          0 :                 ext3_warning (inode->i_sb, "ext3_rmdir",
    2143                 :            :                               "empty directory has nlink!=2 (%d)",
    2144                 :            :                               inode->i_nlink);
    2145                 :          0 :         inode->i_version++;
    2146                 :          0 :         clear_nlink(inode);
    2147                 :            :         /* There's no need to set i_disksize: the fact that i_nlink is
    2148                 :            :          * zero will ensure that the right thing happens during any
    2149                 :            :          * recovery. */
    2150                 :          0 :         inode->i_size = 0;
    2151                 :          0 :         ext3_orphan_add(handle, inode);
    2152                 :          0 :         inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
    2153                 :          0 :         ext3_mark_inode_dirty(handle, inode);
    2154                 :          0 :         drop_nlink(dir);
    2155                 :            :         ext3_update_dx_flag(dir);
    2156                 :          0 :         ext3_mark_inode_dirty(handle, dir);
    2157                 :            : 
    2158                 :            : end_rmdir:
    2159                 :          0 :         ext3_journal_stop(handle);
    2160                 :            :         brelse (bh);
    2161                 :          0 :         return retval;
    2162                 :            : }
    2163                 :            : 
    2164                 :          0 : static int ext3_unlink(struct inode * dir, struct dentry *dentry)
    2165                 :            : {
    2166                 :            :         int retval;
    2167                 :            :         struct inode * inode;
    2168                 :            :         struct buffer_head * bh;
    2169                 :            :         struct ext3_dir_entry_2 * de;
    2170                 :            :         handle_t *handle;
    2171                 :            : 
    2172                 :            :         trace_ext3_unlink_enter(dir, dentry);
    2173                 :            :         /* Initialize quotas before so that eventual writes go
    2174                 :            :          * in separate transaction */
    2175                 :          0 :         dquot_initialize(dir);
    2176                 :          0 :         dquot_initialize(dentry->d_inode);
    2177                 :            : 
    2178         [ #  # ]:          0 :         handle = ext3_journal_start(dir, EXT3_DELETE_TRANS_BLOCKS(dir->i_sb));
    2179         [ #  # ]:          0 :         if (IS_ERR(handle))
    2180                 :          0 :                 return PTR_ERR(handle);
    2181                 :            : 
    2182 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    2183                 :          0 :                 handle->h_sync = 1;
    2184                 :            : 
    2185                 :            :         retval = -ENOENT;
    2186                 :          0 :         bh = ext3_find_entry(dir, &dentry->d_name, &de);
    2187         [ #  # ]:          0 :         if (!bh)
    2188                 :            :                 goto end_unlink;
    2189                 :            : 
    2190                 :          0 :         inode = dentry->d_inode;
    2191                 :            : 
    2192                 :            :         retval = -EIO;
    2193         [ #  # ]:          0 :         if (le32_to_cpu(de->inode) != inode->i_ino)
    2194                 :            :                 goto end_unlink;
    2195                 :            : 
    2196         [ #  # ]:          0 :         if (!inode->i_nlink) {
    2197                 :          0 :                 ext3_warning (inode->i_sb, "ext3_unlink",
    2198                 :            :                               "Deleting nonexistent file (%lu), %d",
    2199                 :            :                               inode->i_ino, inode->i_nlink);
    2200                 :          0 :                 set_nlink(inode, 1);
    2201                 :            :         }
    2202                 :          0 :         retval = ext3_delete_entry(handle, dir, de, bh);
    2203         [ #  # ]:          0 :         if (retval)
    2204                 :            :                 goto end_unlink;
    2205                 :          0 :         dir->i_ctime = dir->i_mtime = CURRENT_TIME_SEC;
    2206                 :            :         ext3_update_dx_flag(dir);
    2207                 :          0 :         ext3_mark_inode_dirty(handle, dir);
    2208                 :          0 :         drop_nlink(inode);
    2209         [ #  # ]:          0 :         if (!inode->i_nlink)
    2210                 :          0 :                 ext3_orphan_add(handle, inode);
    2211                 :          0 :         inode->i_ctime = dir->i_ctime;
    2212                 :          0 :         ext3_mark_inode_dirty(handle, inode);
    2213                 :            :         retval = 0;
    2214                 :            : 
    2215                 :            : end_unlink:
    2216                 :          0 :         ext3_journal_stop(handle);
    2217                 :            :         brelse (bh);
    2218                 :            :         trace_ext3_unlink_exit(dentry, retval);
    2219                 :          0 :         return retval;
    2220                 :            : }
    2221                 :            : 
    2222                 :          0 : static int ext3_symlink (struct inode * dir,
    2223                 :            :                 struct dentry *dentry, const char * symname)
    2224                 :            : {
    2225                 :            :         handle_t *handle;
    2226                 :            :         struct inode * inode;
    2227                 :          0 :         int l, err, retries = 0;
    2228                 :            :         int credits;
    2229                 :            : 
    2230                 :          0 :         l = strlen(symname)+1;
    2231         [ #  # ]:          0 :         if (l > dir->i_sb->s_blocksize)
    2232                 :            :                 return -ENAMETOOLONG;
    2233                 :            : 
    2234                 :          0 :         dquot_initialize(dir);
    2235                 :            : 
    2236         [ #  # ]:          0 :         if (l > EXT3_N_BLOCKS * 4) {
    2237                 :            :                 /*
    2238                 :            :                  * For non-fast symlinks, we just allocate inode and put it on
    2239                 :            :                  * orphan list in the first transaction => we need bitmap,
    2240                 :            :                  * group descriptor, sb, inode block, quota blocks, and
    2241                 :            :                  * possibly selinux xattr blocks.
    2242                 :            :                  */
    2243         [ #  # ]:          0 :                 credits = 4 + EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb) +
    2244                 :            :                           EXT3_XATTR_TRANS_BLOCKS;
    2245                 :            :         } else {
    2246                 :            :                 /*
    2247                 :            :                  * Fast symlink. We have to add entry to directory
    2248                 :            :                  * (EXT3_DATA_TRANS_BLOCKS + EXT3_INDEX_EXTRA_TRANS_BLOCKS),
    2249                 :            :                  * allocate new inode (bitmap, group descriptor, inode block,
    2250                 :            :                  * quota blocks, sb is already counted in previous macros).
    2251                 :            :                  */
    2252                 :          0 :                 credits = EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
    2253         [ #  # ]:          0 :                           EXT3_INDEX_EXTRA_TRANS_BLOCKS + 3 +
    2254         [ #  # ]:          0 :                           EXT3_MAXQUOTAS_INIT_BLOCKS(dir->i_sb);
    2255                 :            :         }
    2256                 :            : retry:
    2257                 :            :         handle = ext3_journal_start(dir, credits);
    2258         [ #  # ]:          0 :         if (IS_ERR(handle))
    2259                 :          0 :                 return PTR_ERR(handle);
    2260                 :            : 
    2261 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    2262                 :          0 :                 handle->h_sync = 1;
    2263                 :            : 
    2264                 :          0 :         inode = ext3_new_inode (handle, dir, &dentry->d_name, S_IFLNK|S_IRWXUGO);
    2265                 :            :         err = PTR_ERR(inode);
    2266         [ #  # ]:          0 :         if (IS_ERR(inode))
    2267                 :            :                 goto out_stop;
    2268                 :            : 
    2269         [ #  # ]:          0 :         if (l > EXT3_N_BLOCKS * 4) {
    2270                 :          0 :                 inode->i_op = &ext3_symlink_inode_operations;
    2271                 :          0 :                 ext3_set_aops(inode);
    2272                 :            :                 /*
    2273                 :            :                  * We cannot call page_symlink() with transaction started
    2274                 :            :                  * because it calls into ext3_write_begin() which acquires page
    2275                 :            :                  * lock which ranks below transaction start (and it can also
    2276                 :            :                  * wait for journal commit if we are running out of space). So
    2277                 :            :                  * we have to stop transaction now and restart it when symlink
    2278                 :            :                  * contents is written. 
    2279                 :            :                  *
    2280                 :            :                  * To keep fs consistent in case of crash, we have to put inode
    2281                 :            :                  * to orphan list in the mean time.
    2282                 :            :                  */
    2283                 :          0 :                 drop_nlink(inode);
    2284                 :          0 :                 err = ext3_orphan_add(handle, inode);
    2285                 :          0 :                 ext3_journal_stop(handle);
    2286         [ #  # ]:          0 :                 if (err)
    2287                 :            :                         goto err_drop_inode;
    2288                 :          0 :                 err = __page_symlink(inode, symname, l, 1);
    2289         [ #  # ]:          0 :                 if (err)
    2290                 :            :                         goto err_drop_inode;
    2291                 :            :                 /*
    2292                 :            :                  * Now inode is being linked into dir (EXT3_DATA_TRANS_BLOCKS
    2293                 :            :                  * + EXT3_INDEX_EXTRA_TRANS_BLOCKS), inode is also modified
    2294                 :            :                  */
    2295         [ #  # ]:          0 :                 handle = ext3_journal_start(dir,
    2296                 :          0 :                                 EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
    2297                 :            :                                 EXT3_INDEX_EXTRA_TRANS_BLOCKS + 1);
    2298         [ #  # ]:          0 :                 if (IS_ERR(handle)) {
    2299                 :            :                         err = PTR_ERR(handle);
    2300                 :          0 :                         goto err_drop_inode;
    2301                 :            :                 }
    2302                 :          0 :                 set_nlink(inode, 1);
    2303                 :          0 :                 err = ext3_orphan_del(handle, inode);
    2304         [ #  # ]:          0 :                 if (err) {
    2305                 :          0 :                         ext3_journal_stop(handle);
    2306                 :          0 :                         drop_nlink(inode);
    2307                 :          0 :                         goto err_drop_inode;
    2308                 :            :                 }
    2309                 :            :         } else {
    2310                 :          0 :                 inode->i_op = &ext3_fast_symlink_inode_operations;
    2311                 :          0 :                 memcpy((char*)&EXT3_I(inode)->i_data,symname,l);
    2312                 :          0 :                 inode->i_size = l-1;
    2313                 :            :         }
    2314                 :          0 :         EXT3_I(inode)->i_disksize = inode->i_size;
    2315                 :          0 :         err = ext3_add_nondir(handle, dentry, inode);
    2316                 :            : out_stop:
    2317                 :          0 :         ext3_journal_stop(handle);
    2318 [ #  # ][ #  # ]:          0 :         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
    2319                 :            :                 goto retry;
    2320                 :          0 :         return err;
    2321                 :            : err_drop_inode:
    2322                 :          0 :         unlock_new_inode(inode);
    2323                 :          0 :         iput(inode);
    2324                 :          0 :         return err;
    2325                 :            : }
    2326                 :            : 
    2327                 :          0 : static int ext3_link (struct dentry * old_dentry,
    2328                 :            :                 struct inode * dir, struct dentry *dentry)
    2329                 :            : {
    2330                 :            :         handle_t *handle;
    2331                 :          0 :         struct inode *inode = old_dentry->d_inode;
    2332                 :          0 :         int err, retries = 0;
    2333                 :            : 
    2334         [ #  # ]:          0 :         if (inode->i_nlink >= EXT3_LINK_MAX)
    2335                 :            :                 return -EMLINK;
    2336                 :            : 
    2337                 :          0 :         dquot_initialize(dir);
    2338                 :            : 
    2339                 :            : retry:
    2340         [ #  # ]:          0 :         handle = ext3_journal_start(dir, EXT3_DATA_TRANS_BLOCKS(dir->i_sb) +
    2341                 :            :                                         EXT3_INDEX_EXTRA_TRANS_BLOCKS + 1);
    2342         [ #  # ]:          0 :         if (IS_ERR(handle))
    2343                 :          0 :                 return PTR_ERR(handle);
    2344                 :            : 
    2345 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(dir))
    2346                 :          0 :                 handle->h_sync = 1;
    2347                 :            : 
    2348                 :          0 :         inode->i_ctime = CURRENT_TIME_SEC;
    2349                 :          0 :         inc_nlink(inode);
    2350                 :          0 :         ihold(inode);
    2351                 :            : 
    2352                 :          0 :         err = ext3_add_entry(handle, dentry, inode);
    2353         [ #  # ]:          0 :         if (!err) {
    2354                 :          0 :                 ext3_mark_inode_dirty(handle, inode);
    2355                 :            :                 /* this can happen only for tmpfile being
    2356                 :            :                  * linked the first time
    2357                 :            :                  */
    2358         [ #  # ]:          0 :                 if (inode->i_nlink == 1)
    2359                 :          0 :                         ext3_orphan_del(handle, inode);
    2360                 :          0 :                 d_instantiate(dentry, inode);
    2361                 :            :         } else {
    2362                 :          0 :                 drop_nlink(inode);
    2363                 :          0 :                 iput(inode);
    2364                 :            :         }
    2365                 :          0 :         ext3_journal_stop(handle);
    2366 [ #  # ][ #  # ]:          0 :         if (err == -ENOSPC && ext3_should_retry_alloc(dir->i_sb, &retries))
    2367                 :            :                 goto retry;
    2368                 :          0 :         return err;
    2369                 :            : }
    2370                 :            : 
    2371                 :            : #define PARENT_INO(buffer) \
    2372                 :            :         (ext3_next_entry((struct ext3_dir_entry_2 *)(buffer))->inode)
    2373                 :            : 
    2374                 :            : /*
    2375                 :            :  * Anybody can rename anything with this: the permission checks are left to the
    2376                 :            :  * higher-level routines.
    2377                 :            :  */
    2378                 :          0 : static int ext3_rename (struct inode * old_dir, struct dentry *old_dentry,
    2379                 :            :                            struct inode * new_dir,struct dentry *new_dentry)
    2380                 :            : {
    2381                 :            :         handle_t *handle;
    2382                 :            :         struct inode * old_inode, * new_inode;
    2383                 :            :         struct buffer_head * old_bh, * new_bh, * dir_bh;
    2384                 :            :         struct ext3_dir_entry_2 * old_de, * new_de;
    2385                 :            :         int retval, flush_file = 0;
    2386                 :            : 
    2387                 :          0 :         dquot_initialize(old_dir);
    2388                 :          0 :         dquot_initialize(new_dir);
    2389                 :            : 
    2390                 :            :         old_bh = new_bh = dir_bh = NULL;
    2391                 :            : 
    2392                 :            :         /* Initialize quotas before so that eventual writes go
    2393                 :            :          * in separate transaction */
    2394         [ #  # ]:          0 :         if (new_dentry->d_inode)
    2395                 :          0 :                 dquot_initialize(new_dentry->d_inode);
    2396         [ #  # ]:          0 :         handle = ext3_journal_start(old_dir, 2 *
    2397                 :          0 :                                         EXT3_DATA_TRANS_BLOCKS(old_dir->i_sb) +
    2398                 :            :                                         EXT3_INDEX_EXTRA_TRANS_BLOCKS + 2);
    2399         [ #  # ]:          0 :         if (IS_ERR(handle))
    2400                 :          0 :                 return PTR_ERR(handle);
    2401                 :            : 
    2402 [ #  # ][ #  # ]:          0 :         if (IS_DIRSYNC(old_dir) || IS_DIRSYNC(new_dir))
         [ #  # ][ #  # ]
    2403                 :          0 :                 handle->h_sync = 1;
    2404                 :            : 
    2405                 :          0 :         old_bh = ext3_find_entry(old_dir, &old_dentry->d_name, &old_de);
    2406                 :            :         /*
    2407                 :            :          *  Check for inode number is _not_ due to possible IO errors.
    2408                 :            :          *  We might rmdir the source, keep it as pwd of some process
    2409                 :            :          *  and merrily kill the link to whatever was created under the
    2410                 :            :          *  same name. Goodbye sticky bit ;-<
    2411                 :            :          */
    2412                 :          0 :         old_inode = old_dentry->d_inode;
    2413                 :          0 :         retval = -ENOENT;
    2414 [ #  # ][ #  # ]:          0 :         if (!old_bh || le32_to_cpu(old_de->inode) != old_inode->i_ino)
    2415                 :            :                 goto end_rename;
    2416                 :            : 
    2417                 :          0 :         new_inode = new_dentry->d_inode;
    2418                 :          0 :         new_bh = ext3_find_entry(new_dir, &new_dentry->d_name, &new_de);
    2419         [ #  # ]:          0 :         if (new_bh) {
    2420         [ #  # ]:          0 :                 if (!new_inode) {
    2421                 :            :                         brelse (new_bh);
    2422                 :            :                         new_bh = NULL;
    2423                 :            :                 }
    2424                 :            :         }
    2425         [ #  # ]:          0 :         if (S_ISDIR(old_inode->i_mode)) {
    2426         [ #  # ]:          0 :                 if (new_inode) {
    2427                 :          0 :                         retval = -ENOTEMPTY;
    2428         [ #  # ]:          0 :                         if (!empty_dir (new_inode))
    2429                 :            :                                 goto end_rename;
    2430                 :            :                 }
    2431                 :          0 :                 retval = -EIO;
    2432                 :            :                 dir_bh = ext3_dir_bread(handle, old_inode, 0, 0, &retval);
    2433         [ #  # ]:          0 :                 if (!dir_bh)
    2434                 :            :                         goto end_rename;
    2435         [ #  # ]:          0 :                 if (le32_to_cpu(PARENT_INO(dir_bh->b_data)) != old_dir->i_ino)
    2436                 :            :                         goto end_rename;
    2437                 :          0 :                 retval = -EMLINK;
    2438 [ #  # ][ #  # ]:          0 :                 if (!new_inode && new_dir!=old_dir &&
    2439                 :          0 :                                 new_dir->i_nlink >= EXT3_LINK_MAX)
    2440                 :            :                         goto end_rename;
    2441                 :            :         }
    2442         [ #  # ]:          0 :         if (!new_bh) {
    2443                 :          0 :                 retval = ext3_add_entry (handle, new_dentry, old_inode);
    2444         [ #  # ]:          0 :                 if (retval)
    2445                 :            :                         goto end_rename;
    2446                 :            :         } else {
    2447                 :            :                 BUFFER_TRACE(new_bh, "get write access");
    2448                 :          0 :                 retval = ext3_journal_get_write_access(handle, new_bh);
    2449         [ #  # ]:          0 :                 if (retval)
    2450                 :            :                         goto journal_error;
    2451                 :          0 :                 new_de->inode = cpu_to_le32(old_inode->i_ino);
    2452         [ #  # ]:          0 :                 if (EXT3_HAS_INCOMPAT_FEATURE(new_dir->i_sb,
    2453                 :            :                                               EXT3_FEATURE_INCOMPAT_FILETYPE))
    2454                 :          0 :                         new_de->file_type = old_de->file_type;
    2455                 :          0 :                 new_dir->i_version++;
    2456                 :          0 :                 new_dir->i_ctime = new_dir->i_mtime = CURRENT_TIME_SEC;
    2457                 :          0 :                 ext3_mark_inode_dirty(handle, new_dir);
    2458                 :            :                 BUFFER_TRACE(new_bh, "call ext3_journal_dirty_metadata");
    2459                 :          0 :                 retval = ext3_journal_dirty_metadata(handle, new_bh);
    2460         [ #  # ]:          0 :                 if (retval)
    2461                 :            :                         goto journal_error;
    2462                 :            :                 brelse(new_bh);
    2463                 :            :                 new_bh = NULL;
    2464                 :            :         }
    2465                 :            : 
    2466                 :            :         /*
    2467                 :            :          * Like most other Unix systems, set the ctime for inodes on a
    2468                 :            :          * rename.
    2469                 :            :          */
    2470                 :          0 :         old_inode->i_ctime = CURRENT_TIME_SEC;
    2471                 :          0 :         ext3_mark_inode_dirty(handle, old_inode);
    2472                 :            : 
    2473                 :            :         /*
    2474                 :            :          * ok, that's it
    2475                 :            :          */
    2476 [ #  # ][ #  # ]:          0 :         if (le32_to_cpu(old_de->inode) != old_inode->i_ino ||
    2477         [ #  # ]:          0 :             old_de->name_len != old_dentry->d_name.len ||
    2478         [ #  # ]:          0 :             strncmp(old_de->name, old_dentry->d_name.name, old_de->name_len) ||
    2479                 :          0 :             (retval = ext3_delete_entry(handle, old_dir,
    2480                 :            :                                         old_de, old_bh)) == -ENOENT) {
    2481                 :            :                 /* old_de could have moved from under us during htree split, so
    2482                 :            :                  * make sure that we are deleting the right entry.  We might
    2483                 :            :                  * also be pointing to a stale entry in the unused part of
    2484                 :            :                  * old_bh so just checking inum and the name isn't enough. */
    2485                 :            :                 struct buffer_head *old_bh2;
    2486                 :            :                 struct ext3_dir_entry_2 *old_de2;
    2487                 :            : 
    2488                 :          0 :                 old_bh2 = ext3_find_entry(old_dir, &old_dentry->d_name,
    2489                 :            :                                           &old_de2);
    2490         [ #  # ]:          0 :                 if (old_bh2) {
    2491                 :          0 :                         retval = ext3_delete_entry(handle, old_dir,
    2492                 :            :                                                    old_de2, old_bh2);
    2493                 :            :                         brelse(old_bh2);
    2494                 :            :                 }
    2495                 :            :         }
    2496         [ #  # ]:          0 :         if (retval) {
    2497                 :          0 :                 ext3_warning(old_dir->i_sb, "ext3_rename",
    2498                 :            :                                 "Deleting old file (%lu), %d, error=%d",
    2499                 :            :                                 old_dir->i_ino, old_dir->i_nlink, retval);
    2500                 :            :         }
    2501                 :            : 
    2502         [ #  # ]:          0 :         if (new_inode) {
    2503                 :          0 :                 drop_nlink(new_inode);
    2504                 :          0 :                 new_inode->i_ctime = CURRENT_TIME_SEC;
    2505                 :            :         }
    2506                 :          0 :         old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME_SEC;
    2507                 :            :         ext3_update_dx_flag(old_dir);
    2508         [ #  # ]:          0 :         if (dir_bh) {
    2509                 :            :                 BUFFER_TRACE(dir_bh, "get_write_access");
    2510                 :          0 :                 retval = ext3_journal_get_write_access(handle, dir_bh);
    2511         [ #  # ]:          0 :                 if (retval)
    2512                 :            :                         goto journal_error;
    2513                 :          0 :                 PARENT_INO(dir_bh->b_data) = cpu_to_le32(new_dir->i_ino);
    2514                 :            :                 BUFFER_TRACE(dir_bh, "call ext3_journal_dirty_metadata");
    2515                 :          0 :                 retval = ext3_journal_dirty_metadata(handle, dir_bh);
    2516         [ #  # ]:          0 :                 if (retval) {
    2517                 :            : journal_error:
    2518         [ #  # ]:          0 :                         ext3_std_error(new_dir->i_sb, retval);
    2519                 :            :                         goto end_rename;
    2520                 :            :                 }
    2521                 :          0 :                 drop_nlink(old_dir);
    2522         [ #  # ]:          0 :                 if (new_inode) {
    2523                 :          0 :                         drop_nlink(new_inode);
    2524                 :            :                 } else {
    2525                 :          0 :                         inc_nlink(new_dir);
    2526                 :            :                         ext3_update_dx_flag(new_dir);
    2527                 :          0 :                         ext3_mark_inode_dirty(handle, new_dir);
    2528                 :            :                 }
    2529                 :            :         }
    2530                 :          0 :         ext3_mark_inode_dirty(handle, old_dir);
    2531         [ #  # ]:          0 :         if (new_inode) {
    2532                 :          0 :                 ext3_mark_inode_dirty(handle, new_inode);
    2533         [ #  # ]:          0 :                 if (!new_inode->i_nlink)
    2534                 :          0 :                         ext3_orphan_add(handle, new_inode);
    2535         [ #  # ]:          0 :                 if (ext3_should_writeback_data(new_inode))
    2536                 :            :                         flush_file = 1;
    2537                 :            :         }
    2538                 :          0 :         retval = 0;
    2539                 :            : 
    2540                 :            : end_rename:
    2541                 :            :         brelse (dir_bh);
    2542                 :            :         brelse (old_bh);
    2543                 :            :         brelse (new_bh);
    2544                 :          0 :         ext3_journal_stop(handle);
    2545 [ #  # ][ #  # ]:          0 :         if (retval == 0 && flush_file)
    2546                 :          0 :                 filemap_flush(old_inode->i_mapping);
    2547                 :          0 :         return retval;
    2548                 :            : }
    2549                 :            : 
    2550                 :            : /*
    2551                 :            :  * directories can handle most operations...
    2552                 :            :  */
    2553                 :            : const struct inode_operations ext3_dir_inode_operations = {
    2554                 :            :         .create         = ext3_create,
    2555                 :            :         .lookup         = ext3_lookup,
    2556                 :            :         .link           = ext3_link,
    2557                 :            :         .unlink         = ext3_unlink,
    2558                 :            :         .symlink        = ext3_symlink,
    2559                 :            :         .mkdir          = ext3_mkdir,
    2560                 :            :         .rmdir          = ext3_rmdir,
    2561                 :            :         .mknod          = ext3_mknod,
    2562                 :            :         .tmpfile        = ext3_tmpfile,
    2563                 :            :         .rename         = ext3_rename,
    2564                 :            :         .setattr        = ext3_setattr,
    2565                 :            : #ifdef CONFIG_EXT3_FS_XATTR
    2566                 :            :         .setxattr       = generic_setxattr,
    2567                 :            :         .getxattr       = generic_getxattr,
    2568                 :            :         .listxattr      = ext3_listxattr,
    2569                 :            :         .removexattr    = generic_removexattr,
    2570                 :            : #endif
    2571                 :            :         .get_acl        = ext3_get_acl,
    2572                 :            : };
    2573                 :            : 
    2574                 :            : const struct inode_operations ext3_special_inode_operations = {
    2575                 :            :         .setattr        = ext3_setattr,
    2576                 :            : #ifdef CONFIG_EXT3_FS_XATTR
    2577                 :            :         .setxattr       = generic_setxattr,
    2578                 :            :         .getxattr       = generic_getxattr,
    2579                 :            :         .listxattr      = ext3_listxattr,
    2580                 :            :         .removexattr    = generic_removexattr,
    2581                 :            : #endif
    2582                 :            :         .get_acl        = ext3_get_acl,
    2583                 :            : };

Generated by: LCOV version 1.9