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